CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/26 11:57:14

Modified files:
	sys/conf       : newvers.sh 

Log message:
Welcome to 6.0-current.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/26 12:09:07

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c armv7_start.S 

Log message:
Remove the restriction that the kernel needs to be loaded at the bottom of
physical memory.  This makes it possible to boot OpenBSD on platforms that
have physical memory start at address 0x00000000 as the EFI bootloader will
only attempt to load kernels at address 0x10000000 and above to work around
a bug in the u-boot EFI API layer.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/07/26 12:18:04

Modified files:
	sys/dev/usb    : if_rsu.c 

Log message:
In rsu(4), put code that twiddles HT data in the ic under #ifdef notyet.
Some code paths in this driver peek at ic_htcaps and act upon it, so let's
play it safe until this driver gets its 11n support enabled on purpose.
Spotted while investigating the bug fixed in r1.35.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/26 12:27:42

Modified files:
	sys/conf       : GENERIC 

Log message:
pool debug dance, part deux


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/07/26 13:07:09

Modified files:
	lib/libc/arch/powerpc/gen: flt_rounds.c fpgetround.c 
	lib/libc/arch/sh/gen: flt_rounds.c fpgetround.c 
	lib/libc/arch/alpha/gen: fpgetround.c 
	lib/libc/arch/hppa/gen: fpgetround.c 
	lib/libc/arch/m88k/gen: fpgetround.c 
	lib/libc/arch/mips64/gen: fpgetround.c 
	lib/libc/arch/sparc/gen: fpgetround.c 
	lib/libc/arch/sparc64/gen: fpgetround.c 
	lib/libc/softfloat: fpgetround.c 
Added files:
	lib/libc/hidden: ieeefp.h 

Log message:
Wrap fpgetround() so internal calls to it (seen on arm, powerpc, and sh)
go direct instead of through the PLT.

ok millert@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/07/26 16:10:10

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c 
	sys/arch/armv7/exynos: exclock.c exdisplay.c exdog.c exehci.c 
	                       exesdhc.c exgpio.c exiic.c exmct.c 
	                       expower.c exsysreg.c exuart.c 
	sys/arch/armv7/imx: imxuart.c 
	sys/arch/armv7/omap: omap_com.c 
	sys/arch/armv7/sunxi: sxiuart.c 
	sys/arch/armv7/vexpress: pl011.c virtio_mmio.c 
	sys/dev/ofw    : fdt.c fdt.h 

Log message:
Rename struct fdt_memory to fdt_reg to match the member name
used in the fdt attach args and the device tree.

ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/07/26 16:36:54

Modified files:
	.              : 60.html index.html lyrics.html older.html 
	                 orders.html 
Added files:
	images         : 60a_right.jpg cd60-s.gif cdaudio3-m.gif 
	                 cdaudio3-s.gif cdaudio3.gif poster36-s.gif 
	                 poster36.jpg puff.jpg 

Log message:
Activate pre-orders for 6.0.  Release the first of the songs ("6 for 6")


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/26 19:36:37

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

Log message:
zero sizeof a struct not sizeof the pointer to it
ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/26 19:52:03

Modified files:
	usr.bin/printf : printf.c 

Log message:
fix signed char extension bugs. from fade@cock.li. ok guenther.
As a personal remark, I'll add that it's not necessary to cast a value
to a function's return type. The compiler is happy to do that for you.
But such casts can hide warnings and bugs.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/07/26 20:26:26

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

Log message:
after system resume, re-write backlight level


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/07/27 00:55:44

Modified files:
	usr.sbin/relayd: relay_http.c relayd.c relayd.h 
Added files:
	regress/usr.sbin/relayd: args-http-host.pl args-http-host2.pl 
	                         args-http-host3.pl args-http-host4.pl 

Log message:
Improve parsing of the Host by following RFC 7230 Section 5.4 more strictly:

- Respond with a 400 (Bad Request) if there is more than one Host:
header to prevent ambiguities.

- Make sure that the host in the optional absolute form of
request-target (eg. GET http://www.target.com/ HTTP/1.1) matches the
Host: value.  Proxies are supposed to ignore the Host: value if the
request-target exists, but relayd used to ignore the absolute
request-target form instead.  In HTTP terminology, relayd is a gateway
and not a proxy, but it has to make sure that the host is validated
consistently.

OK benno@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/07/27 05:02:42

Modified files:
	usr.sbin/relayd: relay_http.c 
	usr.sbin/httpd : server_http.c 

Log message:
According to RFC 7231 4.3.7, OPTIONS may have body. "Although this
specification does not define any use for such a payload, future
extensions to HTTP might use the OPTIONS body to make more detailed
queries about the target resource." The future has arrived.

Found and tested by Michael Lechtermann
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/07/27 05:28:40

Modified files:
	sys/arch/octeon/dev: octeon_uartbus.c 

Log message:
Remove unnecessary remapping of registers.

ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/07/27 05:45:02

Modified files:
	sys/arch/arm/include: fdt.h 
	sys/arch/arm/simplebus: simplebus.c 
	sys/arch/armv7/imx: if_fec.c imxahci.c imxdog.c imxehci.c 
	                    imxesdhc.c imxgpio.c imxiic.c imxuart.c 
	sys/arch/armv7/omap: if_cpsw.c omap_com.c omdog.c ommmc.c 
	                     ti_iic.c 
	sys/arch/armv7/sunxi: sxie.c sxiuart.c 

Log message:
Instead of passing the raw reg property to simplebus nodes,
pass a pre-processed array of fdt_reg structs.  This means
that the drivers don't have to understand the cell properties
themselves but can rely on the 64-bit addr/size pairs.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/07/27 06:55:41

Modified files:
	share/man/man9 : srp_enter.9 

Log message:
Missing word ("no").


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/07/27 06:57:10

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

Log message:
hunting around for some sporadic error message. Removing the hash entry
entirely is slightly better.

noticed by sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/07/27 06:58:21

Modified files:
	usr.sbin/pkg_add: pkg_info.1 
	usr.sbin/pkg_add/OpenBSD: PkgInfo.pm 

Log message:
don't include firmwares in the fuzzy auto-reinstall list


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/07/27 07:02:03

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

Log message:
checking for firmware works better if I pass thru all options


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/07/27 07:02:50

Modified files:
	share/man/man9 : socreate.9 

Log message:
document the so_upcall option to socreate


CVSROOT:	/cvs
Module name:	www
Changes by:	espie@cvs.openbsd.org	2016/07/27 07:45:01

Modified files:
	papers         : index.html 

Log message:
links to full conference and video


CVSROOT:	/cvs
Module name:	www
Changes by:	espie@cvs.openbsd.org	2016/07/27 07:51:01

Modified files:
	.              : 60.html 

Log message:
+proot
+pkg_add/pkg_info branch syntax


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/27 08:44:59

Modified files:
	sbin/sysctl    : sysctl.c 
	usr.bin/vmstat : vmstat.c 
	sys/sys        : vmmeter.h 

Log message:
increase the size of forkstat fields to accomodate large values


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/27 08:48:56

Modified files:
	sys/uvm        : uvm_amap.c 

Log message:
check flags with mask instead of equality, in case we decide to mix
another flag in at some point. ok stefan


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/27 09:12:36

Modified files:
	sys/arch/sparc/sparc: mem.c 
	sys/arch/sparc64/sparc64: mem.c 

Log message:
ansify mem.c to the latest fashion. with a fix from mike burns. ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/27 14:51:46

Modified files:
	sbin/sysctl    : sysctl.8 

Log message:
correct syntax for baddynamic example. from Holger Mikolon


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/27 14:53:47

Modified files:
	usr.bin/yacc   : main.c yacc.1 

Log message:
it should not be necessary for yacc to use TMPDIR, /tmp is good enough.
ok beck deraadt guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/07/27 15:12:49

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
When pmap_page_remove() is called by UVM, a physical page is to be
removed from pmaps it currently is in.  To check if a virtual address
pointing to that physical page has been mapped, the code uses
the l2pte_valid() function.  Unfortunately there is a difference
between being valid and the PTE being zero.  If a page is mapped
but has never been accessed, it will be non-zero but invalid.

In that case the PTE for that virtual address will not be zeroed
and the virtual address will be removed from the vm page struct.

The next time someone tries to map a page to that virtual address,
other pmap code will consider the virtual address to be already
mapped, even though that assumption is completely wrong.

To make sure this does not happen, check the PTE for zero.  This way
the PTE will be zeroed correctly.  The check for zero is how other
ARM pmap code also handles this issue.

ok kettenis@ tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/27 15:13:39

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

Log message:
improve comments a bit. ok mlarkin tom


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/27 15:13:49

Modified files:
	sys/dev/ofw    : ofw_gpio.c ofw_gpio.h 

Log message:
Add interface to facilitate iterating over gpios.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/07/27 15:25:25

Modified files:
	sys/arch/arm/armv7: armv7_space.c 

Log message:
Remove a feature to re-use existing early bootstrap mappings. This
allowed you to pass a virtual address, which you received from an
early bootstrap mapping, as physical address to bus_space_map(9).

It breaks bus_space_map(9) for peripherals that are after 0xC0000000,
as it assumes that everything after that address cannot be a real
peripheral.  But that's wrong.  It does not make sense to pass a
virtual address to bus_space_map(9) anyway, so just get rid of this
whole "feature".

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/07/27 16:03:52

Modified files:
	sys/arch/armv7/sunxi: sunxi.c 

Log message:
Get interrupts going for the Allwinner-R8 chip.

ok kettenis@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/07/27 17:18:12

Modified files:
	usr.bin/ssh    : atomicio.c 

Log message:
better bounds check on iovcnt (we only ever use fixed, positive values)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/27 21:52:41

Modified files:
	lib/libc/hash  : rmd160.3 

Log message:
RMD160Update actually takes size_t length


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/07/28 03:21:01

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

Log message:
firmware is the plural;


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/28 06:08:14

Modified files:
	sys/dev/pv     : hyperv.c if_xnf.c 
	sys/kern       : kern_pledge.c 

Log message:
Convert ifq_deq_{begin,rollback,commit} dance to a single ifq_dequeue


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/28 06:12:16

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Revert previous commit


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/28 06:26:04

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

Log message:
Revert previous commit


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/07/28 07:05:52

Modified files:
	usr.sbin/tcpdump: print-icmp6.c 

Log message:
Use long labs(3) for pointer arithmetic.
Found by David Hill with clang.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/28 10:08:56

Modified files:
	sys/arch/i386/i386: mem.c 

Log message:
replace hand rolled physlock with real rwlock. ok mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/07/28 10:20:21

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

Log message:
some text cutting, after feedback from jsing;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/07/28 10:22:06

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

Log message:
remove HISTORY: it was a nonsense;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/07/28 10:36:02

Modified files:
	bin/ksh        : sh.1 

Log message:
remove note about command substitution and double quotes: it is probable
that i misunderstood something when i wrote it;

found by guenther and naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	zhuk@cvs.openbsd.org	2016/07/28 11:19:24

Modified files:
	distrib/notes  : m4.common 

Log message:
Typo in the installation notes, from Roman Yakovlev.

Too bad this highly critical bugfix will miss release.

okay deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/28 11:35:13

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

Log message:
Remove top level ring processing loops as too ambiguous


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/28 15:37:10

Modified files:
	sbin/restore   : main.c 

Log message:
after getenv, check for empty string too. ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/28 15:37:45

Modified files:
	usr.bin/mg     : fileio.c mg.1 
	usr.bin/mail   : mail.1 temp.c 
	usr.bin/ftp    : ftp.1 util.c 

Log message:
these programs probably do not need to use TMPDIR. ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/28 15:40:25

Modified files:
	usr.bin/mg     : fileio.c 

Log message:
strncmp is a more reasonable way to check the beginning of a string.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/28 15:45:00

Modified files:
	usr.bin/top    : machine.c 

Log message:
rework realloc loop. there's no need to shrink the allocation between
calls. if we need a big space once, we'll likely need a big space again.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/28 15:57:57

Modified files:
	sys/dev/acpi   : acpi.c acpicpu.c acpimadt.c acpivar.h 
	sys/arch/i386/i386: cpu.c mainbus.c mpbios.c 
	sys/arch/i386/include: cpu.h cpuvar.h 
	sys/arch/amd64/amd64: cpu.c mainbus.c mpbios.c 
	sys/arch/amd64/include: cpu.h cpuvar.h 

Log message:
Store the acpi processor ID/UID in struct cpu_info, and use it to attach
acpicpu(4) drivers to the right cpu(4).

ok mlarkin@, guenther@


CVSROOT:	/cvs
Module name:	www
Changes by:	tim@cvs.openbsd.org	2016/07/28 16:47:22

Modified files:
	.              : plus.html 

Log message:
June 1-7. Based on a diff from Rafael Neves.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/28 22:41:53

Modified files:
	sys/arch/macppc/dev: thermal.c 

Log message:
Reorder code to avoid a divide by zero when there are no sensors.
Tested by and ok mglocker@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/07/29 00:46:15

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Only flush the virtual page if it was actually mapped.  Otherwise
we will run into translation faults.

ok tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	giovanni@cvs.openbsd.org	2016/07/29 02:53:07

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
log ip addresses as well in authentication phase
ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/07/29 04:00:12

Modified files:
	usr.sbin/relayd: http.h relay_http.c relayd.conf.5 

Log message:
Add support for common WebDAV methods;  from httpd.

Found and tested by Michael Lechtermann
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/07/29 04:09:27

Modified files:
	usr.sbin/relayd: relay_http.c relayd.c relayd.conf.5 relayd.h 

Log message:
Bump copyright in files that I touched last.
(btw. hostated-hoststated-relayd's 10th birthday is on Dec 16.)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/07/29 09:38:23

Modified files:
	openssh        : legacy.html 

Log message:
fix some odd wording; noted by ross richards


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/07/29 10:36:51

Modified files:
	usr.sbin/vmd   : config.c vmd.c vmd.h vmm.c 

Log message:
Allow starting a VM again after it was terminated

If a VM exits, terminate it and remove it from the list of
available VMs. That allows a VM with name `foo' to be restarted
after it has exited.

This changes structures shared between vmd and vmctl. You need to
rebuild vmctl also.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/07/29 11:38:41

Modified files:
	share/man/man5 : resolv.conf.5 

Log message:
max name servers is currently 5, not 3, apparently;
from remi locherer


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/29 12:31:22

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

Log message:
Reduce the amount of sent TX producer notifications; from FreeBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/29 12:31:51

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

Log message:
Reduce the amount of sent RX producer notifications; from FreeBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/29 12:33:12

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

Log message:
Update TX completion event index when putting a packet on the ring


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/29 12:35:45

Modified files:
	bin/md5        : md5.c 

Log message:
all of the update functions take a size_t. correct type and casts.
ok deraadt millert


CVSROOT:	/cvs
Module name:	src
Changes by:	rpointel@cvs.openbsd.org	2016/07/29 12:57:39

Modified files:
	lib/libexpat/lib: xmlparse.c 

Log message:
Fix regression introduced by patch to CVE-2016-0718: Tag names were cut off in some cases.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/29 13:06:03

Modified files:
	sys/kern       : Tag: OPENBSD_5_8 vfs_subr.c 

Log message:
backport 1.249 null pointer check:
Prevent NULL-pointer call for filesystems that don't provide vfs_sysctl
in their vfsops.

Issue reported by Tim Newsham.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/29 13:06:50

Modified files:
	sys/kern       : Tag: OPENBSD_5_9 vfs_subr.c 

Log message:
backport 1.249 null pointer check:
Prevent NULL-pointer call for filesystems that don't provide vfs_sysctl
in their vfsops.

Issue reported by Tim Newsham.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/07/29 14:44:40

Modified files:
	sys/uvm        : uvm_map.c 

Log message:
add a check that the arguments to isavail don't overflow.
callers should probably check too, but checking here won't hurt.
possible panic reported by tim newsham.
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/29 15:05:26

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

Log message:
Loop until we've read all available responses


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/29 15:27:43

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Move xen interrupt handlers to dedicated task queues

Handling receive and transmit for multiple networking interfaces
in a "shared interrupt" within normal interrupt vector code path
introduces too much delay from the hypervisor POV which prevents
it from injecting further completion event interrupts for Rx and
Tx queues.

Additionally, Netfront backend driver includes a mechanism to
detect Rx ring stalls and "turn the carrier off" when the guest
is not replenishing the ring (e.g. due to missing completion
interrupts) that relies on guest waking up periodically and making
sure that the Rx ring completion handling is progressing.

Having tried both task queue + timeout and interrupts + timeout
approaches, it appears that using  the task queue is more flexible
and provides superior performance under heavy network load.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/29 16:01:57

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

Log message:
Disable receive ring slot accounting

In the Netfront case it appears that by having scheduler decide when
to run the workload we don't need to involve additional mechanisms
to artificially limit resource availability to achieve better
performance under heavy load.  On the contrary, by performing a
single pass through Rx and Tx completion rings and having scheduler
decide when to run the next attempt, we limit the amount of time
spent in the packet processing and achieve system responsiveness.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/07/29 16:25:28

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

Log message:
Add a periodic timer to workaround missing completion events


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/07/29 21:05:22

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

Log message:
old keys no longer needed


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/07/29 21:25:49

Modified files:
	sys/arch/alpha/stand/boot: Makefile 
	sys/arch/alpha/stand/bootxx: Makefile 
	sys/arch/alpha/stand/netboot: Makefile 
	sys/arch/amd64/stand/biosboot: Makefile 
	sys/arch/amd64/stand/boot: Makefile 
	sys/arch/amd64/stand/cdboot: Makefile 
	sys/arch/amd64/stand/cdbr: Makefile 
	sys/arch/amd64/stand/mbr: Makefile 
	sys/arch/amd64/stand/pxeboot: Makefile 
	sys/arch/armish/stand: Makefile.inc 
	sys/arch/hppa/stand/boot: Makefile 
	sys/arch/hppa/stand/cdboot: Makefile 
	sys/arch/i386/stand/biosboot: Makefile 
	sys/arch/i386/stand/boot: Makefile 
	sys/arch/i386/stand/cdboot: Makefile 
	sys/arch/i386/stand/cdbr: Makefile 
	sys/arch/i386/stand/mbr: Makefile 
	sys/arch/i386/stand/pxeboot: Makefile 
	sys/arch/landisk/stand/boot: Makefile 
	sys/arch/landisk/stand/mbr: Makefile 
	sys/arch/landisk/stand/xxboot: Makefile 
	sys/arch/loongson/stand/boot: Makefile 
	sys/arch/luna88k/stand/boot: Makefile 
	sys/arch/macppc/stand/boot.mac: Makefile 
	sys/arch/macppc/stand/ofwboot: Makefile 
	sys/arch/octeon/stand/boot: Makefile 
	sys/arch/sgi/stand/boot: Makefile 
	sys/arch/socppc/stand/boot: Makefile 
	sys/arch/socppc/stand/mbr: Makefile 
	sys/arch/sparc/stand/boot: Makefile 
	sys/arch/sparc/stand/bootxx: Makefile 
	sys/arch/sparc64/stand/ofwboot: Makefile 
	sys/arch/zaurus/stand/zboot: Makefile 
	sys/arch/zaurus/stand/zbsdmod: Makefile 

Log message:
Prep for relro: make sure it's off for any non-PIE stand/ program

ok millert@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 00:25:21

Modified files:
	usr.sbin/rcctl : rcctl.sh 

Log message:
This is effectively a ksh(1) script.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 00:31:17

Modified files:
	usr.sbin/sysmerge: sysmerge.sh 

Log message:
Remove compat code.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/30 02:07:01

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c 
	sys/arch/armv7/conf: files.armv7 
Removed files:
	sys/arch/armv7/armv7: uboot_tags.c 

Log message:
Stop pretending we can still boot without an FDT.  Remove the code paths
handling ATAGS and cleanup the early boot code.

ok patrick@, tom@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/07/30 03:29:14

Modified files:
	sys/arch/octeon/dev: if_cnmac.c 

Log message:
Drop a redundant parameter of octeon_eth_buf_free_work().


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/07/30 03:45:09

Modified files:
	sys/arch/octeon/dev: if_cnmac.c if_cnmacvar.h 

Log message:
Remove disabled jumbo frame checks. They will not be needed
for jumbo frame support.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:48:51

src/regress/usr.bin/mandoc/db

Update of /cvs/src/regress/usr.bin/mandoc/db
In directory cvs.openbsd.org:/tmp/cvs-serv3668/db

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:49:28

src/regress/usr.bin/mandoc/db/binedit

Update of /cvs/src/regress/usr.bin/mandoc/db/binedit
In directory cvs.openbsd.org:/tmp/cvs-serv77890/binedit

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db/binedit added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:49:28

src/regress/usr.bin/mandoc/db/dbm_dump

Update of /cvs/src/regress/usr.bin/mandoc/db/dbm_dump
In directory cvs.openbsd.org:/tmp/cvs-serv77890/dbm_dump

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db/dbm_dump added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:49:28

src/regress/usr.bin/mandoc/db/makeinodes

Update of /cvs/src/regress/usr.bin/mandoc/db/makeinodes
In directory cvs.openbsd.org:/tmp/cvs-serv77890/makeinodes

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db/makeinodes added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:49:28

src/regress/usr.bin/mandoc/db/man

Update of /cvs/src/regress/usr.bin/mandoc/db/man
In directory cvs.openbsd.org:/tmp/cvs-serv77890/man

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db/man added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:49:28

src/regress/usr.bin/mandoc/db/out

Update of /cvs/src/regress/usr.bin/mandoc/db/out
In directory cvs.openbsd.org:/tmp/cvs-serv77890/out

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db/out added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:49:28

src/regress/usr.bin/mandoc/db/run

Update of /cvs/src/regress/usr.bin/mandoc/db/run
In directory cvs.openbsd.org:/tmp/cvs-serv77890/run

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db/run added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/30 04:56:13

Added files:
	regress/usr.bin/mandoc/db: Makefile 
	regress/usr.bin/mandoc/db/binedit: Makefile binedit.1 binedit.c 
	regress/usr.bin/mandoc/db/dbm_dump: Makefile dbm_dump.1 
	                                    dbm_dump.c 
	regress/usr.bin/mandoc/db/makeinodes: Makefile makeinodes.1 
	                                      makeinodes.c 
	regress/usr.bin/mandoc/db/man: empty.1 fn.3 in.3 sh.1 
	                               sortnames.1 va.3 xr.1 
	regress/usr.bin/mandoc/db/out: all.derr all.mout empty.dout 
	                               empty.merr fn.dout in.dout 
	                               onepage.dout padfentry.dout 
	                               padfmagic.dout padfpage.dout 
	                               padientry.dout padimacro.dout 
	                               padipage.dout padmacros.dout 
	                               padmentry.dout padmmacro.dout 
	                               padmpage.dout sh.dout so.dout 
	                               so_rev.dout sortnames.dout 
	                               sortpages.dout sortpages_rev.dout 
	                               threemacros.dout threepages.dout 
	                               twoarch.dout twopages.dout 
	                               twosect.dout va.dout xr.dout 
	regress/usr.bin/mandoc/db/run: Makefile 

Log message:
test suite for the new mandoc.db(5) format;
will be enabled after committing in src/usr.bin/mandoc


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/07/30 06:18:35

Modified files:
	.              : Makefile 
	xserver        : Makefile.bsd-wrapper 
Removed files:
	kdrive         : Makefile.bsd-wrapper 

Log message:
Merge the build of Xephyr in the main xserver build.

Recent X server doesn't require to build the DIX with different
options for xfree86 and kdrive.

Tested for beeing a no-op on m88k by Kenji Aoyama. Thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/07/30 07:36:32

src/regress/usr.bin/jot

Update of /cvs/src/regress/usr.bin/jot
In directory cvs.openbsd.org:/tmp/cvs-serv23761/jot

Log Message:
Directory /cvs/src/regress/usr.bin/jot added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/07/30 07:55:54

Added files:
	regress/usr.bin/jot: Makefile regress.ascii.out 
	                     regress.block.out regress.dddd.out 
	                     regress.dddh.out regress.ddhd.out 
	                     regress.ddhd2.out regress.ddhh.out 
	                     regress.ddhh2.out regress.dhdd.out 
	                     regress.dhdh.out regress.dhhd.out 
	                     regress.dhhd2.out regress.dhhh.out 
	                     regress.dhhh2.out regress.ed.out 
	                     regress.grep.out regress.hddd.out 
	                     regress.hddd2.out regress.hddh.out 
	                     regress.hddh2.out regress.hdhd.out 
	                     regress.hdhd2.out regress.hdhh.out 
	                     regress.hdhh2.out regress.hhdd.out 
	                     regress.hhdd2.out regress.hhdh.out 
	                     regress.hhdh2.out regress.hhhd.out 
	                     regress.hhhd2.out regress.hhhh.out 
	                     regress.hhhh2.out regress.m4 
	                     regress.man1.out regress.man10.out 
	                     regress.man2.out regress.man3.out 
	                     regress.man4.out regress.man5.out 
	                     regress.man6.out regress.man7.out 
	                     regress.man8.out regress.man9.out 
	                     regress.n21.out regress.rand1.out 
	                     regress.rand2.out regress.sh 
	                     regress.stutter.out regress.stutter2.out 
	                     regress.tabs.out regress.wX1.out 
	                     regress.wXl.out regress.wc.out 
	                     regress.wdl.out regress.wdn.out 
	                     regress.we.out regress.wf.out 
	                     regress.wg.out regress.wgd.out 
	                     regress.wo.out regress.wp1.out 
	                     regress.wp2.out regress.wp3.out 
	                     regress.wp4.out regress.wp5.out 
	                     regress.wp6.out regress.wu.out 
	                     regress.wwe.out regress.wx.out 
	                     regress.wxn.out regress.x.out 
	                     regress.xaa.out regress.yes.out 

Log message:
Add regression tests for jot(1).

Adapted from FreeBSD's test suite by attila () stalphonsos ! com.

Minor tweaks:
* make tests work properly with 'make obj' and setting VERBOSE
* add 10 tests checking some examples in our man page
* disable the dddd test for now since it loops forever

Besides dddd, the following five tests fail: dhhd dhhd2 wp3 wp4 wp5
Suggested fixes for these are on tech@

Many thanks to attila for doing the hard work!


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/07/30 07:57:21

Modified files:
	regress/usr.bin: Makefile 

Log message:
hook up regression tests for jot(1)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/07/30 08:10:58

Modified files:
	devel/cvsweb   : Makefile 
	devel/cvsweb/pkg: README 

Log message:
update paths for Perl 5.20.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:17:14

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.5.17.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:17:58

Modified files:
	x11/gnome/caribou: Makefile distinfo 
	x11/gnome/caribou/pkg: PLIST 

Log message:
Update to caribou-0.4.21.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:18:35

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/pkg: PLIST 

Log message:
Update to cups-filters-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/07/30 08:19:12

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
update to afl 2.21b


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:19:14

Modified files:
	mail/cyrus-imapd: Makefile distinfo 
	mail/cyrus-imapd/patches: patch-configure 
	mail/cyrus-imapd/pkg: PLIST 
Added files:
	mail/cyrus-imapd/patches: patch-imap_tls_c 

Log message:
Update to cyrus-imapd-2.5.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:19:51

Modified files:
	devel/harfbuzz : Makefile distinfo 
	devel/harfbuzz/pkg: PLIST-main 

Log message:
Update to harfbuzz-1.3.0.
- tested in a bulk


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:20:25

Modified files:
	print/hplip    : Makefile distinfo 
	print/hplip/patches: patch-Makefile_in 
	print/hplip/pkg: PLIST-hpijs 

Log message:
Update to hplip-3.16.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:21:09

Modified files:
	x11/gnome/latexila: Makefile distinfo 
	x11/gnome/latexila/pkg: PLIST 

Log message:
Update to latexila-3.20.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:21:44

Modified files:
	security/libgcrypt: Makefile distinfo 

Log message:
Update to libgcrypt-1.7.2.

ok sthen@ before lock


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:22:13

Modified files:
	security/libgpg-error: Makefile distinfo 

Log message:
Update to libgpg-error-1.24.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/07/30 08:22:19

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/pkg: PLIST 

Log message:
build some additional board configurations


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:22:43

Modified files:
	devel/libidn   : Makefile distinfo 
Removed files:
	devel/libidn/patches: patch-lib_idna_c patch-lib_nfkc_c 
	                      patch-src_idn_c 

Log message:
Update to libidn-1.33.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:23:29

Modified files:
	security/libtasn1: Makefile distinfo 
Added files:
	security/libtasn1/patches: patch-configure_ac 

Log message:
Update to libtasn1-4.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:24:01

Modified files:
	textproc/meld  : Makefile distinfo 

Log message:
Update to meld-3.16.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:24:33

Modified files:
	x11/gnome/nautilus: Makefile distinfo 
	x11/gnome/nautilus/pkg: PLIST 

Log message:
Update to nautilus-3.20.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:25:01

Modified files:
	x11/gnome/orca : Makefile distinfo 

Log message:
Update to orca-3.20.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:25:37

Modified files:
	www/owncloud   : Makefile distinfo 
	www/owncloud/patches: 
	                      patch-apps_updatenotification_appinfo_info_xml 
	                      patch-version_php 
	www/owncloud/pkg: PLIST README 

Log message:
Update to owncloud-9.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:26:36

Modified files:
	security/passwdqc: Makefile distinfo 
Added files:
	security/passwdqc/patches: patch-pwqcheck_c 

Log message:
Update to passwdqc-1.3.1 and unbreak (getpwnam_shadow).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:27:05

Modified files:
	sysutils/salt-testing: Makefile distinfo 

Log message:
Update to salt-testing-2016.7.22.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:27:29

Modified files:
	sysutils/salt  : Makefile distinfo 
	sysutils/salt/patches: patch-salt_states_archive_py 
	sysutils/salt/pkg: PLIST 
Removed files:
	sysutils/salt/patches: patch-salt_modules_mount_py 

Log message:
Update to salt-2016.3.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:27:55

Modified files:
	graphics/shotwell: Makefile distinfo 
	graphics/shotwell/patches: patch-configure 
	graphics/shotwell/pkg: PLIST 
Removed files:
	graphics/shotwell/patches: patch-Makefile patch-chkver 
	                           patch-plugins_Makefile_plugin_mk 

Log message:
Update to shotwell-0.23.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:28:40

Modified files:
	net/netatalk3  : Makefile distinfo 
	net/netatalk3/patches: patch-config_afp_conf_tmpl 
	                       patch-etc_afpd_uam_c 
	                       patch-libatalk_dsi_dsi_tcp_c 
Added files:
	net/netatalk3/patches: patch-etc_afpd_volume_c 
Removed files:
	net/netatalk3/patches: patch-bin_afppasswd_afppasswd_c 
	                       patch-etc_uams_uams_dhx2_passwd_c 
	                       patch-etc_uams_uams_dhx_passwd_c 
	                       patch-etc_uams_uams_passwd_c 
	                       patch-etc_uams_uams_randnum_c 
	                       patch-include_atalk_acl_h 

Log message:
Update to netatalk-3.1.9 and simplify getpwnam_shadow() patching.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/07/30 08:34:15

Modified files:
	sysutils/dtb   : Makefile distinfo 
	sysutils/dtb/pkg: PLIST 

Log message:
update to linux 4.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:35:24

Modified files:
	net/py-boto    : Makefile distinfo 

Log message:
Update to py-boto-2.42.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:43:07

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

Log message:
Update to py-botocore-1.4.41.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:43:25

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

Log message:
Update to py-s3transfer-0.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:43:51

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.51.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 08:47:34

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-119.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/07/30 08:50:22

Modified files:
	games/quakespasm: Makefile distinfo 

Log message:
update to quakespasm 0.92.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/07/30 09:41:37

Modified files:
	games/redeclipse: Makefile distinfo 
	games/redeclipse/patches: patch-Makefile 
	games/redeclipse/pkg: PLIST-data 

Log message:
update to Red Eclipse 1.5.5


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/07/30 09:44:45

Modified files:
	share/man/man4 : dwiic.4 ihidev.4 ims.4 imt.4 

Log message:
add an authors section for some drivers i authored


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/07/30 10:25:04

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/dev/acpi   : files.acpi 
	share/man/man4 : acpi.4 
Added files:
	sys/dev/acpi   : acpials.c 
	share/man/man4 : acpials.4 

Log message:
add acpials(4), an acpi driver for ambient light sensors

hw.sensors.acpials0.illuminance0=11.00 lx (ambient light sensor)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/30 10:37:55

Modified files:
	sys/uvm        : uvm_addr.c 

Log message:
Add a few checks for potential integer overflow and underflow related to the
size of an address range.

ok deraadt@, tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/30 10:43:44

Modified files:
	sys/uvm        : uvm_map.c 

Log message:
Check for wraparound before the "commit" phase of uvm_map() and uvm_mapanon(),
to prevent hitting assertions and/or corrupting data structures during that
phase.

ok deraadt@, tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 12:07:34

Modified files:
	sysutils/sysclean: Makefile distinfo 

Log message:
Update to sysclean-1.9.

from Sebastien Marie (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/30 12:08:46

Modified files:
	net/icbirc     : Makefile 

Log message:
Remove Sebastien Marie from MAINTAINER as per his request.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/07/30 12:33:31

Modified files:
	sysutils/fabric: Makefile distinfo 
	sysutils/fabric/pkg: PLIST 

Log message:
Update to Fabric 1.12. From MAINTAINER.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/07/30 12:47:28

Modified files:
	lang/racket-minimal: Makefile distinfo 
	lang/racket-minimal/pkg: PLIST 

Log message:
Update to Racket 6.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/07/30 12:53:13

Modified files:
	x11/sct        : Makefile distinfo 

Log message:
update to 0.2, unbreak build on non-i386/amd64 archs


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/07/30 14:48:01

Modified files:
	audio/mpg123   : Makefile distinfo 

Log message:
update to 1.23.6 for minor regression fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 14:53:11

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-2.0.5: usual dissector crashes, infinite loops, etc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 14:53:55

Modified files:
	net/wireshark  : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
MFC: update to wireshark-2.0.5: usual dissector crashes, infinite loops, etc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 14:54:39

Modified files:
	net/wireshark  : Tag: OPENBSD_5_9 Makefile distinfo 

Log message:
MFC: update to wireshark-2.0.5: usual dissector crashes, infinite loops, etc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:06:32

Modified files:
	net/dhcpcd     : Makefile distinfo 
Removed files:
	net/dhcpcd/patches: patch-ipv4ll_c 

Log message:
update to dhcpcd-6.11.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:08:20

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.2.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:12:15

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/pkg: PLIST-main 
Added files:
	telephony/asterisk/patches: patch-res_res_rtp_asterisk_c 

Log message:
update to asterisk-13.10.0 and patch for libressl (upstream tests
OPENSSL_VERSION_NUMBER < 0x10002000L to see if DTLSv1_method is available;
it's an error at runtime only as it's in a dlopen'd module, and doesn't
crash the process, just fails loading the module, so you don't notice
until you wonder why calls are all failing...)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:14:00

Modified files:
	security/pcsc-tools: Makefile distinfo 
	security/pcsc-tools/patches: patch-ATR_analysis 

Log message:
update to pcsc-tools-1.4.27


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:20:33

Modified files:
	net/mirmon     : Makefile distinfo 
	net/mirmon/patches: patch-mirmon_pl 

Log message:
update to mirmon-2.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:22:46

Modified files:
	www/casperjs   : Makefile distinfo 

Log message:
update to casperjs-1.1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:36:45

Modified files:
	devel/p5-Net-Server: Makefile 
Added files:
	devel/p5-Net-Server/patches: patch-lib_Net_Server_Proto_pm 

Log message:
Teach p5-Net-Server that we don't have sysctl net.inet6.ip6.v6only any more,
to stop it from trying to bind to only the v6 socket. Fixes a problem reported
by Solene Rapenne and Alex Greif. Diagnosed with jca.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:37:52

Modified files:
	devel/p5-Net-Server: Tag: OPENBSD_6_0 Makefile 
Added files:
	devel/p5-Net-Server/patches: Tag: OPENBSD_6_0 
	                             patch-lib_Net_Server_Proto_pm 

Log message:
MFC Teach p5-Net-Server that we don't have sysctl net.inet6.ip6.v6only any more,
to stop it from trying to bind to only the v6 socket. Fixes a problem reported
by Solene Rapenne and Alex Greif. Diagnosed with jca.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:40:55

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/30 15:43:24

Modified files:
	sysutils/bacula: Makefile distinfo 

Log message:
update to bacula-7.4.3


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/07/30 16:04:04

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
use the style from the man page examples for getaddrinfo, which makes a
bit more sense

ok jung@ deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/07/30 17:37:41

Modified files:
	.              : 60.html 

Log message:
describe nuances behind wxallowed


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/07/30 17:55:35

Modified files:
	gnu/usr.bin/perl/dist/IO/lib/IO: Dir.pm File.pm Handle.pm 
	                                 Pipe.pm Poll.pm Seekable.pm 
	                                 Select.pm Socket.pm 
	gnu/usr.bin/perl/dist/IO/lib/IO/Socket: INET.pm UNIX.pm 

Log message:
Revert unneeded version bump for perl modules

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/30 21:49:51

Modified files:
	sys/arch/arm/include: armreg.h 
	sys/arch/arm/arm: cpufunc.c 

Log message:
Instead of testing MIDR values for every model of Cortex processor check
MMFR0 for an ARMv7 VMSA MMU that can handle short descriptors when
setting ARMv7 function pointers.  ARMv8 in AArch32 mode is documented to
set the same bits.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/30 22:23:14

Modified files:
	share/man/man4 : Makefile 

Log message:
install acpials.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/30 22:24:06

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/31 00:15:57

Modified files:
	x11/gnome/maps : Makefile distinfo 

Log message:
Update to gnome-maps-3.20.2 and unbreak: now uses the Mapbox API instead of
MapQuest.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/31 00:16:43

Modified files:
	meta/gnome     : Makefile 

Log message:
Put the dependency on x11/gnome/maps back.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/31 00:19:53

Modified files:
	www/owncloud   : Tag: OPENBSD_6_0 Makefile distinfo 
	www/owncloud/patches: Tag: OPENBSD_6_0 patch-version_php 
	www/owncloud/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
Bugfix update to owncloud-9.0.4; keeping up-to-date on the previous
release to ease upgrade to 9.1.X for 6.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/31 00:24:38

Modified files:
	sys/arch/arm/include: armreg.h 
	sys/arch/arm/arm: cpu.c 

Log message:
Recognise Cortex A35 and Cortex A73.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/31 01:18:28

ports/x11/gnome/yelp/files

Update of /cvs/ports/x11/gnome/yelp/files
In directory cvs.openbsd.org:/tmp/cvs-serv43217/files

Log Message:
Directory /cvs/ports/x11/gnome/yelp/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/31 01:19:39

Modified files:
	x11/gnome/yelp : Makefile 
	x11/gnome/yelp/pkg: PLIST 
Added files:
	x11/gnome/yelp/files: yelp-groff 
	x11/gnome/yelp/patches: patch-libyelp_yelp-man-parser_c 

Log message:
Unbreak displaying man pages; BZ#648854


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/31 01:36:16

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add Xeon E3-1200 v5 host bridge and some more Sunrise Point H PCH ids.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/31 01:37:04

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/07/31 03:18:01

Modified files:
	sys/arch/arm/arm: conf.c vm_machdep.c 

Log message:
Use ansi style function declarations.  No binary change.
From Robert Tate.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/31 06:51:49

Modified files:
	sys/dev/usb    : if_smsc.c 

Log message:
Use m_devget(9).

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/07/31 07:11:44

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/files: audio_manager_openbsd.cc 
	                    audio_manager_openbsd.h sndio_input.h 
	                    sndio_output.cc sndio_output.h 
	www/chromium/patches: 
	                      patch-ash_display_mirror_window_controller_cc 
	                      patch-base_base_gypi 
	                      patch-base_message_loop_message_loop_cc 
	                      patch-base_trace_event_process_memory_dump_cc 
	                      patch-build_all_gyp 
	                      patch-build_common_gypi 
	                      patch-chrome_app_chrome_main_delegate_cc 
	                      patch-chrome_app_chrome_main_delegate_h 
	                      patch-chrome_app_generated_resources_grd 
	                      patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_after_startup_task_utils_cc 
	                      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_prefs_cc 
	                      patch-chrome_browser_extensions_api_messaging_message_service_cc 
	                      patch-chrome_browser_extensions_browser_context_keyed_service_factories_cc 
	                      patch-chrome_browser_notifications_message_center_notification_manager_cc 
	                      patch-chrome_browser_platform_util_linux_cc 
	                      patch-chrome_browser_renderer_preferences_util_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_task_manager_task_manager_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_browser_view_prefs_cc 
	                      patch-chrome_browser_ui_startup_startup_browser_creator_cc 
	                      patch-chrome_browser_ui_views_ash_chrome_browser_main_extra_parts_ash_cc 
	                      patch-chrome_browser_ui_views_chrome_views_delegate_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_tabs_tab_drag_controller_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_strip_cc 
	                      patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                      patch-chrome_browser_ui_webui_options_browser_options_handler_cc 
	                      patch-chrome_browser_web_applications_web_app_h 
	                      patch-chrome_chrome_browser_extensions_gypi 
	                      patch-chrome_chrome_browser_gypi 
	                      patch-chrome_chrome_browser_ui_gypi 
	                      patch-chrome_chrome_common_gypi 
	                      patch-chrome_chrome_exe_gypi 
	                      patch-chrome_chrome_utility_gypi 
	                      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_extensions_api_schemas_gypi 
	                      patch-chrome_common_extensions_command_cc 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-chrome_common_url_constants_cc 
	                      patch-chrome_common_url_constants_h 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-components_audio_modem_modem_impl_cc 
	                      patch-components_metrics_gypi 
	                      patch-components_storage_monitor_storage_monitor_openbsd_h 
	                      patch-content_app_content_main_runner_cc 
	                      patch-content_browser_accessibility_browser_accessibility_manager_h 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_child_process_launcher_cc 
	                      patch-content_browser_download_base_file_cc 
	                      patch-content_browser_gamepad_gamepad_provider_cc 
	                      patch-content_browser_gpu_gpu_data_manager_impl_private_cc 
	                      patch-content_browser_gpu_gpu_internals_ui_cc 
	                      patch-content_browser_ppapi_plugin_process_host_cc 
	                      patch-content_browser_renderer_host_render_widget_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_time_zone_monitor_cc 
	                      patch-content_browser_utility_process_host_impl_cc 
	                      patch-content_content_browser_gypi 
	                      patch-content_content_common_gypi 
	                      patch-content_content_renderer_gypi 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_ppapi_plugin_ppapi_plugin_main_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_devtools_v8_sampling_profiler_cc 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-device_battery_battery_gyp 
	                      patch-device_serial_serial_service_impl_cc 
	                      patch-extensions_browser_api_serial_serial_api_cc 
	                      patch-gpu_config_gpu_info_collector_linux_cc 
	                      patch-gpu_gpu_config_gypi 
	                      patch-gpu_gpu_ipc_service_gypi 
	                      patch-gpu_tools_tools_gyp 
	                      patch-ipc_ipc_message_utils_cc 
	                      patch-media_audio_audio_manager_cc 
	                      patch-media_audio_audio_manager_h 
	                      patch-media_base_video_frame_cc 
	                      patch-media_base_video_frame_h 
	                      patch-media_capture_video_video_capture_device_cc 
	                      patch-media_capture_video_video_capture_device_factory_cc 
	                      patch-media_capture_video_video_capture_device_h 
	                      patch-media_media_gyp 
	                      patch-net_base_network_change_notifier_cc 
	                      patch-net_base_network_interfaces_posix_cc 
	                      patch-net_dns_address_sorter_posix_cc 
	                      patch-net_dns_dns_util_cc 
	                      patch-net_net_common_gypi 
	                      patch-net_net_gypi 
	                      patch-net_proxy_proxy_service_cc 
	                      patch-net_tools_get_server_time_get_server_time_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-remoting_remoting_all_gyp 
	                      patch-remoting_remoting_host_gypi 
	                      patch-third_party_WebKit_Source_platform_blink_platform_gyp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_h 
	                      patch-third_party_WebKit_Source_platform_fonts_SimpleFontData_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_h 
	                      patch-third_party_WebKit_Source_web_PopupMenuImpl_cpp 
	                      patch-third_party_ffmpeg_ffmpeg_generated_gypi 
	                      patch-third_party_libjingle_libjingle_gyp 
	                      patch-third_party_libjpeg_turbo_libjpeg_gyp 
	                      patch-third_party_pdfium_pdfium_gyp 
	                      patch-third_party_protobuf_src_google_protobuf_stubs_atomicops_h 
	                      patch-third_party_protobuf_src_google_protobuf_stubs_strutil_h 
	                      patch-third_party_webrtc_base_base_gyp 
	                      patch-third_party_webrtc_base_network_cc 
	                      patch-third_party_webrtc_base_physicalsocketserver_cc 
	                      patch-third_party_webrtc_build_common_gypi 
	                      patch-tools_gyp_pylib_gyp_generator_ninja_py 
	                      patch-ui_base_ime_input_method_factory_cc 
	                      patch-ui_base_resource_resource_bundle_cc 
	                      patch-ui_base_ui_base_gyp 
	                      patch-ui_events_devices_x11_device_data_manager_x11_cc 
	                      patch-ui_gfx_gfx_gyp 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_gl_gl_gyp 
	                      patch-ui_gl_sync_control_vsync_provider_cc 
	                      patch-ui_message_center_message_center_style_h 
	                      patch-ui_message_center_views_message_center_button_bar_cc 
	                      patch-ui_message_center_views_message_center_button_bar_h 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_style_platform_style_cc 
	                      patch-ui_views_views_gyp 
	                      patch-ui_views_window_dialog_delegate_cc 
	                      patch-v8_src_globals_h 
	                      patch-v8_src_log-utils_h 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: patch-chrome_browser_platform_util_h 
	                      patch-chrome_browser_resources_safe_browsing_gen_file_type_proto_py 
	                      patch-chrome_chrome_resources_gyp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_h 
	                      patch-third_party_pdfium_build_gyp_standalone_gypi 
	                      patch-third_party_protobuf_src_google_protobuf_stubs_platform_macros_h 
	                      patch-ui_gl_sync_control_vsync_provider_h 
	                      patch-ui_message_center_views_message_view_factory_cc 
	                      patch-ui_views_bubble_bubble_dialog_delegate_cc 
	                      patch-ui_webui_resources_js_icon_js 
	                      patch-v8_src_profiler_sampler_cc 
Removed files:
	www/chromium/patches: 
	                      patch-chrome_browser_ui_ash_system_tray_delegate_common_cc 
	                      patch-chrome_browser_ui_views_exclusive_access_bubble_views_cc 
	                      patch-third_party_ffmpeg_libavutil_autorename_libavutil_cpu_c 
	                      patch-third_party_pdfium_build_standalone_gypi 
	                      patch-ui_message_center_views_message_center_view_cc 
	                      patch-ui_message_center_views_notification_view_cc 
	                      patch-ui_views_bubble_bubble_delegate_cc 
	                      patch-ui_views_controls_button_label_button_cc 
	                      patch-ui_views_controls_scrollbar_base_scroll_bar_cc 
	                      patch-ui_webui_resources_js_util_js 

Log message:
update to 52.0.2743.82


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/07/31 07:46:05

Modified files:
	security/pdf-parser: Makefile distinfo 

Log message:
small update to 0.6.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/07/31 07:48:55

Modified files:
	sysutils/usmb  : Makefile 
Added files:
	sysutils/usmb/patches: patch-usmb_c 

Log message:
fusermount->umount fix

Diff from Solène Rapenne


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/07/31 08:02:05

Modified files:
	games/dhewm3   : Makefile distinfo 

Log message:
update to dhewm3 1.4.1
ok pascal@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/07/31 11:49:38

Modified files:
	devel/llvm     : Makefile distinfo 

Log message:
Update to llvm-3.8.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/07/31 11:54:37

Modified files:
	www/surf2      : Makefile distinfo 
	www/surf2/patches: patch-config_def_h 

Log message:
update to surf2-0.6.20160708


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/07/31 12:55:16

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Ask for DHO_BOOTFILE_NAME and DHO_TFTP_SERVER by default. May prove
useful to autoinstall in the future and in the meantime can provide
information on what the dhcp server has done with the desired server
name and file name info.

Original diff from Patrik Lundin via tech@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/07/31 13:12:26

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

Log message:
Duplicated decls


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/07/31 13:17:41

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

Log message:
Turn two global variables into variables local to main.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/07/31 13:23:24

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

Log message:
Rename the route socket to a more useful name.

Avoid a bunch of "warning: declaration of 's' shadows a global
declaration" while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/07/31 13:30:32

Modified files:
	lib/libssl/src/crypto: opensslv.h 

Log message:
bump for LibreSSL 2.5.x


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/07/31 14:13:12

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

Log message:
Close /dev/hotplug on exec(). Otherwise a restart of the daemon may
fail, because the device is occupied by a child process.

from Alexey Vatchenko
ok jca


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/07/31 15:13:53

Modified files:
	.              : 60.html 

Log message:
spelling: seperate -> separate


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/31 15:30:06

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-storage_connect_reldef_cpp 
	databases/mariadb/pkg: PLIST-main PLIST-tests 
Removed files:
	databases/mariadb/patches: 
	                           patch-storage_innobase_include_os0sync_h 

Log message:
update to mariadb-10.0.26, from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/07/31 15:35:11

Modified files:
	security/libtasn1: Makefile 

Log message:
now needs help2man


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

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
According to te armv7 ARM TLB entries that caused a Permission fault might
be held in the TLB.  On top of that valid page table entries might be
speculatively loaded into the TLB.  As a result we need to flush TLB entries
even when the page in question has not been referenced.

Fixes pmap_fault_fixup messages on Cortex-A53, and presumably also on
Cortex-A7.

ok patrick@, guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/07/31 16:27:07

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Remove devmap stuff which is unused on armv7.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/07/31 17:35:26

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
Some base system pages, for example perl(1), contain non-ASCII
characters in their source code, so switch on charset autodetection
in the same way as in man(1) itself.
Issue reported by Pavan Maddamsetti at gmail dot com on bugs@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/07/31 17:53:35

Log message:
    Import emulators/hatari from Frederic Cambus
    
    Hatari is an Atari ST/STE/TT/Falcon emulator for Linux, FreeBSD, NetBSD,
    BeOS, Mac-OSX and other Systems which are supported by the SDL library.
    Unlike most other open source ST emulators which try to give you a good
    environment for running GEM applications, Hatari tries to emulate the
    hardware as close as possible so that it is able to run most of the old
    Atari games and demos.  Because of this, it may be somewhat slower than
    less accurate emulators.
    
    OK bentley@ on initial tarball
    OK awolk@, abieber@ on latest tarball
    
    Status:
    
    Vendor Tag:	awolk
    Release Tags:	awolk_20160801
    
    N ports/emulators/hatari/Makefile
    N ports/emulators/hatari/distinfo
    N ports/emulators/hatari/pkg/PLIST
    N ports/emulators/hatari/pkg/DESCR
    N ports/emulators/hatari/patches/patch-src_CMakeLists_txt
    N ports/emulators/hatari/patches/patch-CMakeLists_txt
    N ports/emulators/hatari/patches/patch-share_CMakeLists_txt
    N ports/emulators/hatari/patches/patch-tools_CMakeLists_txt
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/07/31 17:56:12

Modified files:
	emulators      : Makefile 

Log message:
Add emulators/hatari to build


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/07/31 18:16:53

Log message:
    Import emulators/virtualjaguar from Frederic Cambus
    
    Virtual Jaguar is a portable Atari Jaguar emulator. The software was
    originally developed by David Raingeard of Potato Emulation.
    
    Currently all the major subsystems found in a real Jaguar are emulated
    to some degree.
    
    OK awolk@, abieber@
    
    Status:
    
    Vendor Tag:	awolk
    Release Tags:	awolk_20160801
    
    N ports/emulators/virtualjaguar/Makefile
    N ports/emulators/virtualjaguar/distinfo
    N ports/emulators/virtualjaguar/pkg/DESCR
    N ports/emulators/virtualjaguar/pkg/PLIST
    N ports/emulators/virtualjaguar/patches/patch-jaguarcore_mak
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/07/31 18:20:00

Modified files:
	emulators      : Makefile 

Log message:
Add emulators/virtualjaguar to the build


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/07/31 18:48:22

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
document default for DISTDIR


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/07/31 19:43:03

Modified files:
	openssh        : legacy.html 

Log message:
Some error corrections and wording improvements from ross at rlr.id.au with
some changes by me.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/07/31 19:44:18

Modified files:
	openssh        : legacy.html 

Log message:
Use "legacyhost" instead of 127.0.0.1 in examples.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/08/01 01:06:20

Modified files:
	openssh        : legacy.html 

Log message:
Consistent capitalization of HostKeyAlgorithms to match man page; also from
Ross L Richardson.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/01 01:22:00

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/01 01:23:29

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

Log message:
shorten the openssl dgst text; in particular, do not try to
list all the available digests;


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/01 02:38:11

Modified files:
	net/syncthing  : Makefile distinfo 

Log message:
Update net/syncthing to 0.14.3.

OK awolk@, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/01 02:38:58

Log message:
    import devel/cvs2gitdump, ok aja@ juanfra@
    
    A small python script which imports a cvs tree into a git or svn repository.
    It has a small footprint, is fast, and supports incremental import, but does
    not support branches.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20160801
    
    N ports/devel/cvs2gitdump/distinfo
    N ports/devel/cvs2gitdump/Makefile
    N ports/devel/cvs2gitdump/pkg/DESCR
    N ports/devel/cvs2gitdump/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/01 02:39:05

Modified files:
	devel          : Makefile 

Log message:
+cvs2gitdump


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/01 02:56:40

Modified files:
	geo/gdal       : Makefile distinfo 
	geo/gdal/patches: patch-configure 

Log message:
Bugfix update to gdal 2.1.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/08/01 04:25:02

Modified files:
	games/warzone2100: Makefile distinfo 
	games/warzone2100/patches: patch-configure_ac 
	                           patch-src_Makefile_in 

Log message:
update to warzone2100-3.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/01 04:32:39

Modified files:
	usr.bin/mandoc : Makefile main.c mandocdb.c mansearch.c 
	                 mansearch.h 
Added files:
	usr.bin/mandoc : dba.c dba.h dba_array.c dba_array.h dba_read.c 
	                 dba_write.c dba_write.h dbm.c dbm.h dbm_map.c 
	                 dbm_map.h 
Removed files:
	usr.bin/mandoc : mansearch_const.c 

Log message:
Remove the dependency on SQLite without loss of functionality.
Drop the obsolete names_check() now that we deleted MLINKS.
Run "doas makewhatis" after compiling and installing this.

Earlier version tested by jmc@ and jturner@;
"commit it all" deraadt@   "commit and dodge" krw@


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/08/01 04:47:23

Modified files:
	faq            : current.html 

Log message:
run makewhatis(8) to update the mandoc.db(5) files


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/01 04:56:31

Modified files:
	sys/dev/usb    : umass_scsi.c 

Log message:
Set SDEV_UMASS on all umass devices, even when they use ATAPI or
UFI command sets. Probe all the LUNs a device reports instead of
assuming ATAPI and UFI devices always have 1 LUN.

Motivated by the device David Vasek reported as claiming to be
ATAPI but wanting to use >1 LUN. Committing quickly to smoke out
the inevitable device that works in the exact opposite way. All
hail USB.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/08/01 05:38:49

Modified files:
	net/seafile    : Makefile.inc 
	net/seafile/ccnet: distinfo 
	net/seafile/client: distinfo 
	net/seafile/seafile: distinfo 

Log message:
update to seafile-5.1.4


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2016/08/01 05:41:00

Modified files:
	build          : Makefile 
	build/mirrors  : openssh-ftp.html.head 
	openssh        : ftp.html index.html openbsd.html 

Log message:
openssh-7.3


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2016/08/01 05:42:56

Added files:
	openssh/txt    : release-7.3 

Log message:
openssh-7.3 relnotes


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2016/08/01 05:49:36

Modified files:
	openssh        : index.html 

Log message:
correct release name


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/01 06:04:25

Modified files:
	faq            : current.html 

Log message:
help my future self with update60.html and mark the transition to
6.0-current with a small comment


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/01 06:24:38

Modified files:
	share/man/man5 : mandoc.db.5 

Log message:
document the new file format


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/01 06:29:36

Modified files:
	sysutils/multitail: Makefile distinfo 
	sysutils/multitail/patches: patch-multitail_conf 
	sysutils/multitail/pkg: DESCR 
Added files:
	sysutils/multitail/patches: patch-xclip_c 

Log message:
Update sysutils/multitail to 6.4.2

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/01 07:48:33

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

Log message:
Mark shared producer and consumer indices volatile


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/01 08:13:28

Modified files:
	net/netatalk3  : Makefile 
	net/netatalk3/patches: patch-config_afp_conf_tmpl 

Log message:
Tweak config file.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/01 08:17:00

Modified files:
	sys/arch/armv7/armv7: intr.c 
	sys/arch/armv7/include: intr.h 

Log message:
Implement an FDT-aware interrupt establish API.  This means the drivers
don't need to know where to attach to.  Instead the API will take care
of finding the correct interrupt establish for a given device node and
will call it with the correct data.

Adapted from the OFW GPIO framework.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/01 08:37:39

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

Log message:
Don't forget to destroy the taskqueue on interrupt disestablish


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/01 09:04:40

Modified files:
	www/goaccess   : Makefile distinfo 

Log message:
Update to goaccess-1.0.2.

ok william@ (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/01 09:43:25

Modified files:
	faq            : current.html 

Log message:
zap stray 'a'


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/01 09:58:22

Modified files:
	sys/arch/alpha/alpha: mem.c 
	sys/arch/arm/arm: mem.c 
	sys/arch/hppa/dev: mem.c 
	sys/arch/m88k/m88k: mem.c 
	sys/arch/mips64/mips64: mem.c 

Log message:
bring the light of ansi to a few more files


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/08/01 10:32:10

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Do not pass VM name directly to setproctitle format string.

Use a secure idiom instead.
ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/08/01 10:40:09

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

Log message:
Make sure variables are initialized before using them

In elf.c, do not increment `s' before it is initialized. At the time
of the increment, `s' is otherwise unused anyway.

In elflink.c, initialize sec_contents and l_sec_contents to make
sure that the free(sec_contents) and free(l_sec_contents) are called
on valid pointers.

ok jca@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/01 11:04:18

Modified files:
	libexec/login_lchpass: login_lchpass.c 

Log message:
zap unused var


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/01 11:30:50

Modified files:
	net/haproxy    : Makefile distinfo 

Log message:
update to haproxy-1.6.7

from David Carlier


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/01 11:32:19

Modified files:
	lib/libtls     : tls.c tls.h tls_config.c tls_conninfo.c 
	                 tls_init.3 tls_internal.h tls_server.c 

Log message:
Add ALPN support to libtls.

ok beck@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/01 11:40:23

Modified files:
	lib/libtls     : tls.h 

Log message:
Bump TLS_API for addition of ALPN support.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/01 12:20:19

Modified files:
	share/man/man8 : afterboot.8 

Log message:
the default smtpd setup does not require newaliases be run;
noted by consus

ok gilles


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2016/08/01 12:27:35

Modified files:
	usr.bin/vi/common: exf.c options.c 
	usr.bin/vi/docs/USD.doc/vi.man: vi.1 
	usr.bin/vi/docs/USD.doc/vi.ref: set.opt.roff 
	usr.bin/vi/ex  : ex_filter.c 
	usr.bin/vi/include: options_def.h 

Log message:
Remove vi's "directory" option and TMPDIR support.

ok jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/01 12:30:00

Modified files:
	emulators/mgba : Makefile distinfo 
	emulators/mgba/pkg: PLIST-main 

Log message:
Update to mgba-0.4.1.

Release notes:
https://mgba.io/2016/07/11/mgba-0.4.1/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/01 12:31:29

Modified files:
	emulators/fceux: Makefile distinfo 
	emulators/fceux/patches: patch-SConstruct patch-fceux_desktop 
	emulators/fceux/pkg: PLIST 

Log message:
Update to fceux-2.2.3.

Release notes:
http://www.fceux.com/web/pressrelease-2.2.3.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/08/01 12:35:40

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/patches: patch-configure_ac patch-poppler_XRef_cc 
	                       patch-qt5_src_Makefile_in 
	print/poppler/pkg: PLIST-main 

Log message:
Update to poppler-0.46.0.

Simplify patch for configure.ac.

Non need to set ac_cv_prog_MOCQT5 or ac_cv_prog_MOCQT52 in
CONFIGURE_ENV (noticed by zhuk@).


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/01 13:19:15

Modified files:
	sys/uvm        : Tag: OPENBSD_5_8 uvm_map.c 

Log message:
backport overflow checks from 1.218 and 1.219:
add a check that the arguments to isavail don't overflow.
callers should probably check too, but checking here won't hurt.
possible panic reported by tim newsham.
Check for wraparound before the "commit" phase of uvm_map() and uvm_mapanon(),
to prevent hitting assertions and/or corrupting data structures during that
phase.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/01 13:19:46

Modified files:
	games/openttd  : Makefile distinfo 
	games/openttd/pkg: PLIST 

Log message:
Update to openttd-1.6.1.

Release notes:
http://us.binaries.openttd.org/binaries/releases/1.6.1/changelog.txt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/01 13:20:24

Modified files:
	sys/uvm        : Tag: OPENBSD_5_9 uvm_map.c 

Log message:
backport overflow checks from 1.218 and 1.219:
add a check that the arguments to isavail don't overflow.
callers should probably check too, but checking here won't hurt.
possible panic reported by tim newsham.
Check for wraparound before the "commit" phase of uvm_map() and uvm_mapanon(),
to prevent hitting assertions and/or corrupting data structures during that
phase.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/01 13:22:56

Modified files:
	sys/uvm        : Tag: OPENBSD_6_0 uvm_map.c 

Log message:
backport overflow checks from 1.218 and 1.219:
add a check that the arguments to isavail don't overflow.
callers should probably check too, but checking here won't hurt.
possible panic reported by tim newsham.
Check for wraparound before the "commit" phase of uvm_map() and uvm_mapanon(),
to prevent hitting assertions and/or corrupting data structures during that
phase.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/01 14:07:19

Modified files:
	faq            : upgrade59.html 

Log message:
minor fixes found while working on upgrade60.html


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/01 14:10:23

Modified files:
	faq            : current.html 

Log message:
minor tweaks found while working on upgrade60.html


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/01 14:11:23

Modified files:
	.              : 60.html 

Log message:
zap extra 'it'


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/08/01 14:26:34

Modified files:
	audio          : Makefile 
	converters     : Makefile 
	databases      : Makefile 
	devel          : Makefile 
	graphics       : Makefile 
	net            : Makefile 
	security       : Makefile 
	sysutils       : Makefile 
	textproc       : Makefile 
	www            : Makefile 

Log message:
Remove building of ruby21 ports by default

Add building of ruby22 and ruby23 versions of devel/ruby-ffi.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/08/01 14:30:25

Modified files:
	usr.bin/wall   : wall.c 

Log message:
Allow a bel character in wall. This was missed when migrating away from
vis(3). This brings the allowed characters on par with write(1).

Noticed by consus <at> gmx <dot> com
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/01 14:46:33

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
Repair makewhatis -t, sorry for breaking it in the previous commit.
Committing this quickly because it hurts package builders.
Regression reported by naddy@.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/01 15:08:20

Modified files:
	sys/arch/armv7/armv7: intr.c 

Log message:
Looks like patrick@ committed an older version of the diff.  Fix this, and
rename a few variables and functions to be a bit more consistent with other
armv7 code.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/01 15:14:45

Modified files:
	usr.sbin/relayd: http.h relay_http.c 

Log message:
rfc 7230 3.3.3 says: response with a status code of 1xx
(Informational) or 204 (No Content) MUST not have a Content-Length.
Add a check for that.
ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/01 15:15:30

Modified files:
	usr.sbin/httpd : http.h 

Log message:
sync http.h with relayd
ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/01 15:25:53

Modified files:
	usr.sbin/relayd: relay_http.c 

Log message:
whitespace and 80 columns, no binary change


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/08/01 15:44:37

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

Log message:
Update to devel/intellij 2016.2, and make Caspar Schutijser actual
maintainer (with his agreement, of course). Caspar already put in updating
this port more effort than me in this year, so it's a logical step forward.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/01 15:45:30

Modified files:
	devel/jdk/1.8  : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2016/08/01 15:46:48

Modified files:
	libressl       : index.html releases.html 

Log message:
update for 2.4.2 / 2.3.7


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/01 16:17:36

Added files:
	faq            : upgrade60.html 

Log message:
first version of upgrade60.html.
note: this is work in progress, largely untested and not yet linked
from the main site.

with lots of help from tj and input from sthen, natano


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/01 16:21:19

Modified files:
	faq            : faq7.html 

Log message:
add missing .5 to the termcap man link.

From Paul Kelly, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/01 18:23:01

Added files:
	sysutils/bacula/patches: patch-src_lib_edit_c 

Log message:
Use LL for large int constants to fix 32-bit.


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2016/08/01 18:41:28

Modified files:
	openssh        : report.html 

Log message:
update link to tracking bug for future OpenSSH 7.4 release


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/02 00:25:58

Modified files:
	devel/git      : Makefile distinfo 

Log message:
Update to git-2.9.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/08/02 00:42:56

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
update to afl 2.23b


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/02 01:47:11

Modified files:
	lib/libtls     : tls.c tls.h tls_config.c tls_conninfo.c 
	                 tls_init.3 tls_internal.h tls_server.c 
	                 tls_verify.c 

Log message:
Revert previous since it adds new symbols.

Requested by deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/08/02 02:17:20

Modified files:
	graphics/gimp/stable: Makefile distinfo 
	graphics/gimp/stable/pkg: PLIST 

Log message:
Bugfix update to 2.8.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/02 02:43:21

Modified files:
	graphics/pngcrush: Makefile distinfo 

Log message:
Update to pngcrush-1.8.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/02 02:52:12

Modified files:
	graphics/p5-GD-Graph: Makefile distinfo 

Log message:
Update to p5-GD-Graph-1.53.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/02 03:48:40

Modified files:
	sys/conf       : Tag: OPENBSD_6_0 newvers.sh 

Log message:
OPENBSD_6_0 is now -stable
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/08/02 04:10:13

Modified files:
	audio/umurmur  : Makefile 

Log message:
- update HOMEPAGE
- remove DISTNAME. It is properly generated from GH_* vars.
Maintainer timeout.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/08/02 04:19:55

Modified files:
	games/warzone2100: Makefile distinfo 
	games/warzone2100/patches: patch-configure_ac 
	                           patch-src_Makefile_in 
	games/warzone2100/pkg: PLIST 
Added files:
	games/warzone2100/patches: patch-icons_Makefile_in 

Log message:
bugfix update to warzone2100-3.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2016/08/02 06:17:13

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl 2016.08.01

New extractors:
- arkena
- lcp
- ninenow
- nintendo
- odatv
- roosterteeth
- rudo
- stitcher

Removed nextmovie.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/02 08:18:44

Modified files:
	faq            : upgrade60.html 

Log message:
zap some verbose flags, clean up whitespace, add and move some man links


CVSROOT:	/cvs
Module name:	www
Changes by:	sobrado@cvs.openbsd.org	2016/08/02 08:26:55

Modified files:
	.              : 60.html 

Log message:
OpenSSH changes, features and bug fixes.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/02 10:00:10

Modified files:
	sbin/fdisk     : cmd.c 

Log message:
capitalize a question like all the others

ok krw


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/02 10:05:32

Modified files:
	usr.sbin/ripd  : control.c control.h ripd.c ripd.h ripe.c 
	usr.sbin/ripctl: ripctl.c 

Log message:
Allow specifying an alternate socket path.

This allows one to run multiple ripd instances, for example to serve
multiple rdomains.  Diff from Nima GHOTBI, ok claudio@ florian@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/02 10:09:55

Modified files:
	usr.bin/libtool/LT/Mode: Link.pm 

Log message:
Ignore the -bindir option, meaningless on OpenBSD.

Lack of -bindir handling is not a problem right now because -bindir is
passed to cc(1) which ignores it, and because read(2) on /usr/local/bin
returns 0 right now, so ld(1) copes with it.  But there are plans to
make read(2) fail with EISDIR.

Input from and bulk builds thanks to ajacoutot@, ok ajacoutot@ espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/02 10:17:54

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

Log message:
Ensure that "lim" is initialized and reset at each loop run.

Avoids possible invalid memory accesses.  ok florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/08/02 10:47:12

Log message:
    Import XMLStarlet 1.6.1
    
    XMLStarlet is a command line XML toolkit which can be used to transform, query,
    validate, and edit XML documents and files using a simple set of shell commands
    in a similar way it is done for plain text files using
    grep/sed/awk/tr/diff/patch.
    
    OK jca@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_2016-Aug-02
    
    N ports/textproc/xmlstarlet/Makefile
    N ports/textproc/xmlstarlet/distinfo
    N ports/textproc/xmlstarlet/pkg/PLIST
    N ports/textproc/xmlstarlet/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/08/02 10:51:22

Modified files:
	textproc       : Makefile 

Log message:
Hook up XMLStarlet


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/02 10:57:30

Modified files:
	.              : errata58.html errata59.html errata60.html 

Log message:
release kernel errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/02 11:00:09

Modified files:
	usr.sbin/rtadvd: Makefile config.c dump.c if.c rtadvd.c rtadvd.h 
Removed files:
	usr.sbin/rtadvd: timer.c timer.h 

Log message:
Move to libevent; ok florian@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/02 11:42:25

Modified files:
	.              : report.html 

Log message:
Use shortened man links (from Paul Kelly) + some minor cleanup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/02 11:43:30

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

Log message:
Update to firefox-esr 45.3.0.

- See https://www.mozilla.org/en-US/firefox/45.3.0/releasenotes/
- Fixes MFSA-2016-62->65,67,70,72,73,76->80


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/02 11:50:04

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/patches: patch-media_ffvpx_config_h 
	                             patch-security_manager_pki_resources_content_exceptionDialog_js 
	                             patch-storage_mozStorageConnection_cpp 
	www/mozilla-firefox/pkg: PLIST 
	www/firefox-i18n: Makefile.inc distinfo 
Removed files:
	www/mozilla-firefox/patches: patch-gfx_skia_moz_build 
	                             patch-gtk3.20.diff 
	                             patch-media_libcubeb_src_cubeb_sndio_c 
	                             patch-toolkit_components_protobuf_src_google_protobuf_stubs_atomicops_h 

Log message:
Update to firefox 48.0.

- See https://www.mozilla.org/en-US/firefox/48.0/releasenotes/
- Fixes MFSA 2016-62->84
- See
https://blog.mozilla.org/blog/2016/08/02/exciting-improvements-in-firefox-for-desktop-and-android/
for user-facing changes
- Switch CONFIGURE_STYLE to simple as it's really not a gnu script
anymore..
- Remove gtk 3.20 jumbo patch, most gtk3 issues are either fixed or
being worked on, and the patch isnt maintainable
- Remove patch-gfx_skia_moz_build, it isn't needed anymore on i386, and
SSE2 will soon be a hard runtime requirement anyway
- Remove patch-media_libcubeb_src_cubeb_sndio_c, merged upstream (#1153151 & #1153179)
- Remove
patch-toolkit_components_protobuf_src_google_protobuf_stubs_atomicops_h,
merged upstream (#1192556)
- Note that WebRT was removed


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/08/02 14:17:06

Modified files:
	bin/ed         : sub.c 

Log message:
Fix the begin of word bug in s-command, similar to sed.

nit fix and OK schwarze@


CVSROOT:	/cvs
Module name:	www
Changes by:	tim@cvs.openbsd.org	2016/08/02 15:20:46

Modified files:
	.              : plus.html 

Log message:
June 8-30. Based on a diff from Rafael Neves.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/02 16:52:55

Modified files:
	graphics/ImageMagick: Makefile distinfo 

Log message:
update to ImageMagick-6.9.5-4, with (amongst others) some buffer overflow fixes


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/02 21:12:07

Modified files:
	.              : lyrics.html 60.html 
Added files:
	images         : 60b_left.jpg 60b_right.jpg 

Log message:
Release the 2nd song that will go along with the 6.0 release.
Black Hat -- lyrics by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/08/02 22:23:55

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

Log message:
Fix bug introduced in rev 1.467 which causes "buffer_get_bignum_ret:
incomplete message" errors when built with WITH_SSH1 and run such that no
Protocol 1 ephemeral host key is generated (eg "Protocol 2", no SSH1 host
key supplied).  Reported by rainer.laatsch at t-online.de, ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/02 23:41:57

Modified files:
	usr.bin/ssh    : cipher-chachapoly.c cipher.c cipher.h packet.c 
	                 sshkey.c 

Log message:
small refactor of cipher.c: make ciphercontext opaque to callers
feedback and ok markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/02 23:47:09

Modified files:
	astro/stellarium: Makefile distinfo 
	astro/stellarium/pkg: PLIST 

Log message:
Update to stellarium-0.15.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/03 00:18:18

Modified files:
	security/ophcrack: Makefile distinfo 
	security/ophcrack/patches: patch-src_samdump2_samdump2_c 
Removed files:
	security/ophcrack/patches: patch-src_lmtable_c 

Log message:
Update to ophcrack-3.6.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/03 00:38:47

Modified files:
	security/aide  : Makefile distinfo 
	security/aide/patches: patch-configure patch-doc_aide_1_in 
	                       patch-src_util_c 

Log message:
Update to aide-0.16.
Drop maintainership.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/03 00:43:21

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

Log message:
shorten the openssl dhparam text;
guenther helped rewrite the -dsaparam parts.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/03 01:05:05

Modified files:
	sys/arch/arm/arm: cpufunc.c cpufunc_asm_armv7.S 

Log message:
The ARMv7 architecture deprecates the separate Instruction and Data TLB
maintanenance instruction and recommends to only use the instructions that
operate on the unified TLB.  Those instructions will flush both TLBs on
implementations that still have separate Instruction and Data TLBs.  Switch
the TLB maintenance primitives over to use those.  This allows us to reduce
the number of primitives on armv7.  We still keep separate "ID" and "D"
variants as we still have to flush the branch predictor when changing the
mappings of pages that contain instructions.

ok jsg@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/03 01:26:01

Modified files:
	.              : lyrics.html 

Log message:
Fix word order: them let -> let them
spotted by Gerald Hanuer


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/03 01:33:31

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/patches: patch-src_makefile 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.31.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 02:28:27

Modified files:
	sysutils/terraform: Makefile distinfo 
	sysutils/terraform/pkg: PLIST 

Log message:
Update to terraform-0.7.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 02:40:59

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

Log message:
Update to py-boto3-1.4.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 02:41:26

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.42.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 02:41:44

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 02:42:06

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.52.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 02:43:23

Modified files:
	productivity/tryton/tryton: Makefile distinfo 

Log message:
Update to tryton-3.2.16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 02:44:51

Modified files:
	net/gnugk      : Makefile 

Log message:
Skip bogus version spec.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/08/03 03:07:02

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

Log message:
Fix minimum size when pane status line is enabled, reported by Y Petremann.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/08/03 03:08:40

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

Log message:
We only replace the first %%, not multiple (use %2 for second).


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/03 03:21:30

Modified files:
	telephony/baresip/baresip: Makefile distinfo 
	telephony/baresip/baresip/patches: patch-src_config_c 
	telephony/baresip/baresip/pkg: PLIST-main 

Log message:
update to baresip-0.4.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/03 03:24:15

Modified files:
	mail/offlineimap: Makefile distinfo 
	mail/offlineimap/patches: patch-offlineimap_conf 
	mail/offlineimap/pkg: PLIST 

Log message:
update to offlineimap 7.0.4, from Remi Locherer (maintainer).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/03 03:26:00

Modified files:
	graphics/ansilove: Makefile distinfo 

Log message:
update to ansilove-3.0.4, from maintainer Frederic Cambus


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/03 03:30:16

Log message:
    import devel/cvs-fast-export, ok landry@
    
    cvs-fast-export analyzes a collection of RCS files and, when possible,
    emits an equivalent history in the form of a git fast-import stream.
    Not all possible histories can be rendered this way; the program tries
    to emit useful warnings when it can't.
    
    A wrapper script called cvsconvert runs a conversion to git and
    looks for content mismatches with the original CVS.
    
    The analysis stage of this code originally travelled as "parsecvs" and
    was written by Keith Packard in early 2006. It was briefly maintained by
    Bart Massey before passing to Eric S. Raymond in late 2012.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20160803
    
    N ports/devel/cvs-fast-export/Makefile
    N ports/devel/cvs-fast-export/distinfo
    N ports/devel/cvs-fast-export/pkg/PLIST
    N ports/devel/cvs-fast-export/pkg/DESCR
    N ports/devel/cvs-fast-export/patches/patch-Makefile
    N ports/devel/cvs-fast-export/patches/patch-lex_l
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/03 03:30:52

Modified files:
	devel          : Makefile 

Log message:
+cvs-fast-export


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 03:34:10

Modified files:
	lang/go        : go.port.mk 

Log message:
Properly strip go binaries when !DEBUG.
On big executables, size drops by ~40%.

with and ok czarkoff@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 03:34:39

Modified files:
	devel/go-check-v1: Makefile 
	devel/go-tools : Makefile 
	devel/hub      : Makefile 
	net/go-net     : Makefile 
	net/syncthing  : Makefile 
	net/websocketd : Makefile 
	security/go-crypto: Makefile 
	security/vault : Makefile 
	sysutils/beats/filebeat: Makefile 
	sysutils/beats/hwsensorsbeat: Makefile 
	sysutils/beats/packetbeat: Makefile 
	sysutils/beats/topbeat: Makefile 
	sysutils/consul: Makefile 
	sysutils/packer: Makefile 
	sysutils/serf  : Makefile 
	sysutils/terraform: Makefile 
	textproc/go-text: Makefile 
	textproc/go-xlsx: Makefile 
	textproc/xlsx2csv: Makefile 

Log message:
Bump after recent go MODULE change.

ok czarkoff@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/03 05:14:16

Modified files:
	devel/keystone : Makefile distinfo 
	devel/keystone/pkg: PLIST 
Removed files:
	devel/keystone/patches: patch-kstool_kstool_cpp 

Log message:
Update to keystone-0.9.1.

from Frederic Cambus (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/08/03 05:33:11

Modified files:
	faq/ports      : specialtopics.html 

Log message:
Schwarze@ is such a slacker, the #Mandoc section was outdated to the
point of absurdity.  Groff/mandoc checks have no longer been optional
for a long time, and stale advice of other kinds lingered here, too.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/03 05:52:43

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Simplify the way we handle TLB flushes.  Since ARMv7 effectively has a
unified TLB there is not much point in optimizing TLB flushing for pages
that have never been executable.  The only difference is a flush of the
branch predictor and even that isn't necessary anymore on all but the oldest
Cortex cores.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/03 06:43:46

Log message:
    import devel/reposurgeon, ok landry@
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20160803
    
    N ports/devel/reposurgeon/Makefile
    N ports/devel/reposurgeon/distinfo
    N ports/devel/reposurgeon/pkg/PLIST
    N ports/devel/reposurgeon/pkg/DESCR
    N ports/devel/reposurgeon/patches/patch-repotool
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/03 06:44:28

Modified files:
	devel          : Makefile 

Log message:
+reposurgeon


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 07:06:42

Modified files:
	audio/flite    : Makefile 
	audio/flite/pkg: MESSAGE 
	comms/zmtx-zmrx: Makefile 
	comms/zmtx-zmrx/pkg: MESSAGE 
	games/lincity-ng: Makefile 
	games/lincity-ng/pkg: MESSAGE 
	lang/jikes     : Makefile 
	lang/jikes/pkg : MESSAGE 
	mail/postfix/snapshot: Makefile 
	mail/postfix/snapshot/pkg: MESSAGE 
	mail/postfix/stable: Makefile 
	mail/solid-pop3d: Makefile 
	mail/solid-pop3d/pkg: MESSAGE 
	mail/tmda      : Makefile 
	mail/tmda/pkg  : MESSAGE 
	misc/xnc       : Makefile 
	misc/xnc/pkg   : MESSAGE 
	net/gajim      : Makefile 
	net/gajim/pkg  : MESSAGE 
	net/mon/client : Makefile 
	net/mon/client/pkg: MESSAGE 
	net/rtg        : Makefile 
	net/rtg/pkg    : MESSAGE 

Log message:
Zap trailing spaces at EOL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/03 07:21:13

Modified files:
	fonts/gohufont : Makefile distinfo 
	fonts/gohufont/pkg: PLIST 

Log message:
Update to gohufont-2.1.

from David Hill, ok maintainer.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/03 07:44:49

Modified files:
	sys/dev/usb    : umass.c umass_scsi.c umass_scsi.h 

Log message:
Fold umass_atapi_attach() and umass_scsi_setup() into umass_scsi_attach() to
shorten and simplify code.

No intentional functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2016/08/03 07:49:37

Modified files:
	productivity/homebank: Makefile distinfo 
	productivity/homebank/pkg: PLIST 

Log message:
update to 5.0.9
ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2016/08/03 07:56:56

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

Log message:
Update node to the latest.

Full ChangeLog:
https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V4.md#4.4.7

OK juanfra@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/03 08:55:58

Modified files:
	sys/dev/pv     : xen.c xenreg.h xenvar.h 

Log message:
Use an atomic operation to clear pending event bits

Pending event bits are located in a shared memory and are potentially
accessed by multiple CPUs running dom0 and the guest VM.  It appears
that a failure to synchronize changes to this shared memory leads to
race conditions resulting in the guest missing out on notifications.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/03 09:08:06

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

Log message:
Remove the periodic timer and do rescheduling during Rx completion

This change adds a check into the Rx ring completion routine that
schedules an interrupt task to be executed immediately after if
consumer index has already advanced itself.  The benefit of doing
this compared to an additional loop after replenishing the ring
(as done in FreeBSD for example) is that first of all this goes
through the loop in the taskqueue thread with a yeild check to
prevent CPU hogging and second is that it triggers Tx completion
as well since interrupt handler runs both.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/08/03 09:17:20

Modified files:
	games/freeciv  : Makefile distinfo 

Log message:
bugfix update to freeciv-2.5.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/03 09:40:31

Modified files:
	net/tor        : Makefile distinfo 
Removed files:
	net/tor/patches: patch-Makefile_in patch-configure_ac 

Log message:
Update to 0.2.8.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/03 10:27:25

Modified files:
	sbin/pfctl     : pfctl_optimize.c 

Log message:
A couple of "a->blah == a->blah" -> "a->blah == b->blah".

Spotted by the Echelon team with AppChecker static analyzer.

ok sashan@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/03 10:30:17

Modified files:
	images         : cdaudio3-m.gif cdaudio3-s.gif cdaudio3.gif 

Log message:
There is also an audio collection CD coming ("The songs 5.2 - 6.0")
Cute cover -- drawn by Erick who works with Claudio...


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/03 10:32:08

Modified files:
	usr.bin/infocmp: infocmp.c 

Log message:
strnames[i][0] == 'k' && strnames[i][0] == 'f' should be
strnames[i][0] == 'k' && strnames[i][1] == 'f'.

Spotted by the Echelon team with AppChecker static analyzer.

millert@ naddy@ and ncurses 6.0 all agree.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/03 11:14:41

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Use atomic operations to manipulate event masking bits


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/03 11:23:38

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/dev/acpi   : files.acpi 
Added files:
	sys/dev/acpi   : tpm.c 

Log message:
add a minimal TPM 1.2 driver just to issue a "save state" command
before suspending, in order to fix suspend/resume on some newer
machines.

more cleanup and TPM 2.0 support coming later.

earlier version ok pirofti
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/03 11:29:18

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

Log message:
don't complain about invalid checksum if the bios isn't writing it
properly, the user isn't going to do anything about it


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/03 11:33:50

Modified files:
	sys/arch/amd64/isa: clock.c 

Log message:
not having a century is a known layout by now


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/03 12:47:57

Modified files:
	mail/claws-mail: Makefile 
	mail/claws-mail/patches: patch-configure_ac 
Added files:
	mail/claws-mail/patches: patch-src_common_ssl_c 

Log message:
mail/claws-mail: Fix SSL cert verification.

Also re-gen a patch.

OK danj@, jung@. Thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/03 12:55:49

Modified files:
	x11/motif      : Makefile distinfo 
	x11/motif/patches: patch-lib_Xm_TextF_c patch-lib_Xm_XpmI_h 
	x11/motif/pkg  : PLIST 
Removed files:
	x11/motif/patches: patch-config_cf_Motif_tmpl 

Log message:
Update to 2.3.6, which removes all imake configuration.  All dependent
ports still build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/03 13:13:17

Log message:
    OK benoit@
    
    Comment:
    BASIC converter to C translator for Unix system
    
    Description:
    BaCon is a BASIC to C translator for Unix-based systems. It intends to be a
    programming aid in creating tools which can be compiled on different platforms
    (including 64bit environments), while trying to revive the days of the good old
    BASIC.
    
    Maintainer: Juan Francisco Cantero Hurtado <juanfra@openbsd.org>
    
    WWW: http://www.basic-converter.org/
    
    Status:
    
    Vendor Tag:	juanfra
    Release Tags:	juanfra_20160803
    
    N ports/lang/bacon/Makefile
    N ports/lang/bacon/distinfo
    N ports/lang/bacon/patches/patch-Makefile_in
    N ports/lang/bacon/pkg/DESCR
    N ports/lang/bacon/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/03 13:31:23

Modified files:
	xserver/hw/xfree86/common: xf86AutoConfig.c 

Log message:
xserver: fix an off-by-one error that lead to asprintf("%s", NULL)

reported by deraadt@, fix reviewed in X.Org by Keith Packard.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/03 14:25:48

Modified files:
	faq            : faq6.html 

Log message:
Understanding IP addressing is no longer available on scribd.
Replace it with its web.archive.org version.

Broken link and replacement found by Michael Reed, thanks!


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/03 14:33:55

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/03 14:40:25

Modified files:
	faq            : faq6.html 

Log message:
zap an extra 'href=' that snuck in


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/03 14:44:08

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

Log message:
Security update to 7.50.1.
CVE-2016-5419: TLS session resumption client cert bypass
CVE-2016-5420: Re-using connections with wrong client cert
CVE-2016-5421: use of connection struct after free


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/08/03 14:45:36

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
Fix typo, spotted by Holger Mikolon <holger@mikolon.com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/03 15:55:07

Modified files:
	devel/py-certifi: Makefile distinfo 

Log message:
update to py-certifi-2016.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/03 15:56:14

Modified files:
	devel/py-gevent: Makefile distinfo 

Log message:
update to py-gevent-1.1.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/03 15:57:08

Modified files:
	devel/py-dulwich: Makefile distinfo 

Log message:
update to py-dulwich-0.14.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/03 16:03:17

Modified files:
	telephony/asterisk-openbsd-moh: Makefile distinfo 
	telephony/asterisk-openbsd-moh/pkg: PLIST 

Log message:
catch up to 5.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/03 16:04:40

Modified files:
	net/curl       : Tag: OPENBSD_5_9 Makefile 
Added files:
	net/curl/patches: Tag: OPENBSD_5_9 patch-lib_multi_c 
	                  patch-lib_url_c patch-lib_urldata_h 
	                  patch-lib_vtls_vtls_c 

Log message:
Security fixes:
CVE-2016-5419: TLS session resumption client cert bypass
CVE-2016-5420: Re-using connections with wrong client cert
CVE-2016-5421: use of connection struct after free


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/08/03 16:13:31

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

Log message:
mirror.litnet.lt now does anoncvs; also add city (Kaunas)


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/03 16:46:44

Modified files:
	share/man/man4 : Makefile acpi.4 
Added files:
	share/man/man4 : tpm.4 

Log message:
add a man page for tpm(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/03 16:47:44

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

Log message:
reference dwiic here too


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/03 16:50:47

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

Log message:
move acpimcfg to keep list sorted


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/03 17:13:54

Modified files:
	usr.sbin/map-mbone: mapper.c 

Log message:
Apply fix from mrouted 3.8 via NetBSD. Our mbone support may
be slightly dated.

Spotted by the Echelon team with AppChecker static analyzer.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/03 17:22:48

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

Log message:
Apply fix from David Binderman via NetBSD. "Use all 3 of b, p, n
to determine if route changed".

Spotted by the Echelon team with AppChecker static analyzer.

NetBSD fix pointed out by millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/03 17:37:25

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

Log message:
Apply a warning fix from lukem@NetBSD circa 1997 (more '()'), and
one from he@NetBSD circa 1998 (more '{}').

Makes gcc happier.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/03 18:23:48

Modified files:
	.              : lyrics.html 

Log message:
don't link to the store for items that can't be bought there anymore.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/03 18:29:25

Modified files:
	faq            : faq6.html 

Log message:
sthen noticed that 3com's guide was very dated and suggested
to replace it with the relevant chapter of the TCP/IP guide
that contains essentially the same info + a lot more nearby.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/03 18:36:35

Modified files:
	faq            : upgrade59.html 

Log message:
hook up upgrade60.html


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/03 18:59:29

Modified files:
	faq            : current.html 

Log message:
Now that both installation methods on upgrade60.html have been successfully
tested (including iwm), roll current.html.

The info for upgrading to snaps from way back is now on upgrade60.html.
If you're not yet past the ABI breaks, you shouldn't upgrade directly
from source anyway.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/03 19:22:11

Modified files:
	faq            : upgrade60.html 

Log message:
use reverse alphabetical order for manually untarring the sets.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/03 22:38:01

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

Log message:
Update to gputils-1.4.2.

ok benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/03 23:25:52

Modified files:
	security/passwdqc: Makefile 
Removed files:
	security/passwdqc/patches: patch-pwqcheck_c 

Log message:
When I grow up, I want to be like Stuart so:
"remove incorrect getpwnam_shadow patch, spotted by Solar Designer (thanks!)"


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/03 23:39:28

Modified files:
	share/man/man4 : acpi.4 tpm.4 

Log message:
tpm tweaks;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/04 01:45:21

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.291.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/04 01:47:18

Modified files:
	sysutils/salt-testing: Makefile distinfo 

Log message:
Update to salt-testing-2016.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/04 01:51:35

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-120.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/04 03:18:53

Modified files:
	regress/usr.bin/mandoc/db/out: all.derr empty.dout fn.dout 
	                               in.dout onepage.dout 
	                               padfentry.dout padfmagic.dout 
	                               padfpage.dout padientry.dout 
	                               padimacro.dout padipage.dout 
	                               padmacros.dout padmentry.dout 
	                               padmmacro.dout padmpage.dout 
	                               sh.dout so.dout so_rev.dout 
	                               sortnames.dout sortpages.dout 
	                               sortpages_rev.dout 
	                               threemacros.dout threepages.dout 
	                               twoarch.dout twopages.dout 
	                               twosect.dout va.dout xr.dout 
	regress/usr.bin/mandoc/db/run: Makefile 

Log message:
adjust database file name and version number to what was committed


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2016/08/04 03:29:28

Log message:
    python-nbxmpp is a Python library that provides a way for Python
    applications to use Jabber/XMPP networks in a non-blocking way.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	pea
    Release Tags:	pea_20160804
    
    N ports/net/py-nbxmpp/Makefile
    N ports/net/py-nbxmpp/distinfo
    N ports/net/py-nbxmpp/pkg/DESCR
    N ports/net/py-nbxmpp/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/04 03:33:53

Modified files:
	usr.bin/mandoc : dba_read.c 

Log message:
Fix an assertion failure that happened when trying to add a page
with makewhatis -d to a completely empty database.
Reported by Mark Patruck <mark at wrapped dot cx>, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2016/08/04 03:35:11

Modified files:
	net            : Makefile 

Log message:
Add py-nbxmpp
ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/04 04:08:13

Modified files:
	astro/ansiweather: Makefile distinfo 

Log message:
Update astro/ansiweather to 1.08

from Frederic Cambus - MAINTAINER, thanks!

OK abieber@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/04 04:48:03

Modified files:
	net/curl       : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/curl/patches: Tag: OPENBSD_6_0 patch-lib_multi_c 
	                  patch-lib_url_c patch-lib_urldata_h 
	                  patch-lib_vtls_vtls_c 

Log message:
Security fixes:
CVE-2016-5419: TLS session resumption client cert bypass
CVE-2016-5420: Re-using connections with wrong client cert
CVE-2016-5421: use of connection struct after free


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/04 05:16:23

Modified files:
	devel/py-tz    : Makefile distinfo 

Log message:
Update to py-tz 2016.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/04 05:24:41

Modified files:
	devel/py-test-runner: Makefile distinfo 

Log message:
Update to py-test-runner 2.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/04 05:39:11

Modified files:
	devel/py-test-mock: Makefile distinfo 

Log message:
Update to py-test-mock 1.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/04 05:44:37

Modified files:
	devel/py-test-cov: Makefile distinfo 
	devel/py-test-cov/pkg: PLIST 

Log message:
Update to py-test-cov 2.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/04 05:47:58

Modified files:
	textproc/py-alabaster: Makefile distinfo 

Log message:
Update to py-alabaster 0.7.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/04 06:07:13

Modified files:
	databases/py-pickleshare: Makefile distinfo 

Log message:
Update to py-pickleshare 0.7.3


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/04 06:17:37

Modified files:
	sys/arch/armv7/armv7: intr.c 
	sys/arch/armv7/include: intr.h 
	sys/arch/arm/mainbus: mainbus.c 

Log message:
Add support for pre-registering interrupts.  This allows device drivers to
establish interrupts before their interrupt controller attaches, solving
dependency problems in various device trees.

Also add support for handing interrupt handlers over to parent interrupt
controllers.

ok jsg@ patrick@ (on an earlier diff)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/04 06:35:11

Modified files:
	devel/py-astroid: Makefile distinfo 

Log message:
Update to py-astroid 1.4.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/04 06:58:30

Modified files:
	meta/xfce      : Makefile 
	meta/xfce/pkg  : README-main 

Log message:
meta/xfce: Document a workaround for a nasty bug in xfsettingsd.

Hoping this will save others time.

OK landry@. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/04 07:10:31

Modified files:
	sys/arch/octeon/dev: cn30xxgmx.c if_cnmac.c if_cnmacvar.h 

Log message:
Add support for jumbo frames.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/04 07:22:20

Modified files:
	share/man/man4/man4.octeon: cnmac.4 

Log message:
Mention jumbo frames.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/04 08:14:05

Modified files:
	sys/arch/armv7/imx: if_fec.c 

Log message:
After fixing up some of the AR8035 PHY registers, issue a reset.  This seems
to fix autonegotiation at 100BaseTX.  Drop the bit of code that powers up
the PHY as the reset should already take care of that.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/04 08:14:41

Modified files:
	converters/libpst: Makefile distinfo 
	converters/libpst/patches: patch-configure 
	converters/libpst/pkg: PLIST-main 

Log message:
Update to libpst-0.6.67.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/04 08:31:50

Modified files:
	sys/arch/armv7/imx: files.imx 
Added files:
	sys/arch/armv7/imx: imxgpc.c 

Log message:
Add imxgpc(4), a driver for the i.MX6 General Power Controller (GPC) which
acts as a "transparent" interrupt controller.  This driver just hands
interrupt handlers to its parent (the Cortex-A9 GIC).  It doesn't implement
any powermanagement features yet.

ok patrick@


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

Modified files:
	audio/opus     : Makefile distinfo 

Log message:
maintenance update to 1.1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/04 09:43:00

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 52.0.2743.116


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/04 09:52:52

Modified files:
	sys/arch/arm/cortex: ampintc.c files.cortex 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/imx: if_fec.c imxahci.c imxehci.c imxesdhc.c 
	                    imxiic.c imxuart.c 

Log message:
Dynamically attach ampintc(4) and make it register itself as an interrupt
controller.  Switch all i.MX6 devices over to the new FDT-aware interrupt
establish API and enable imxgpc(4).

This may break other platforms that use ampintc(4) as their interrupt
controller.  We will fix this as soon as possible by switching them over
to the new interrupt establish API as well.

This also removes the hack in fec(4) to avoid the gpio-based interrupt
workaround.  This commit is an essential step on the road to fix that
issue properly.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/04 12:22:35

Modified files:
	.              : 60.html 

Log message:
some pkg counts


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/04 12:42:54

Modified files:
	.              : lyrics.html 

Log message:
make the lyrics to "another smash of the stack" display properly on
smaller screens by redoing the <br> dance.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/04 13:07:13

Modified files:
	.              : lyrics.html 

Log message:
typo: resistence -> resistance


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/08/04 14:46:24

Modified files:
	sys/netinet    : in_pcb.c in_pcb.h udp_usrreq.c 
	sys/netinet6   : icmp6.c in6_pcb.c in6_src.c ip6_var.h nd6_nbr.c 
	                 raw_ip6.c udp6_output.c 

Log message:
Commit in6_selectsrc() split again, with missing assignment fixed.


CVSROOT:	/cvs
Module name:	www
Changes by:	tim@cvs.openbsd.org	2016/08/04 16:29:31

Modified files:
	.              : plus.html 

Log message:
July 1-15


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/04 18:26:30

Modified files:
	.              : plus.html 

Log message:
missing )


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/08/04 19:00:56

Modified files:
	gnu/usr.bin/perl: Tag: OPENBSD_5_8 patchlevel.h 
	gnu/usr.bin/perl/cpan/Archive-Tar/bin: Tag: OPENBSD_5_8 ptar 
	                                       ptardiff ptargrep 
	gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive: Tag: OPENBSD_5_8 
	                                               Tar.pm 
	gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/Tar: Tag: 
	                                                   OPENBSD_5_8 
	                                                   Constant.pm 
	                                                   File.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib: Tag: OPENBSD_5_8 CPAN.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/App: Tag: OPENBSD_5_8 Cpan.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN: Tag: OPENBSD_5_8 Author.pm 
	                                     Bundle.pm CacheMgr.pm 
	                                     Complete.pm Debug.pm 
	                                     DeferredCode.pm 
	                                     Distribution.pm 
	                                     Distroprefs.pm 
	                                     Distrostatus.pm FTP.pm 
	                                     FirstTime.pm 
	                                     HandleConfig.pm Index.pm 
	                                     InfoObj.pm Kwalify.pm 
	                                     Mirrors.pm Module.pm Nox.pm 
	                                     Prompt.pm Queue.pm Shell.pm 
	                                     Tarzip.pm URL.pm Version.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Exception: Tag: OPENBSD_5_8 
	                                               RecursiveDependency.pm 
	                                               blocked_urllist.pm 
	                                               yaml_not_installed.pm 
	                                               yaml_process_error.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/FTP: Tag: OPENBSD_5_8 
	                                         netrc.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/HTTP: Tag: OPENBSD_5_8 
	                                          Client.pm 
	                                          Credentials.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/LWP: Tag: OPENBSD_5_8 
	                                         UserAgent.pm 
	gnu/usr.bin/perl/cpan/CPAN/scripts: Tag: OPENBSD_5_8 cpan 
	gnu/usr.bin/perl/cpan/Digest: Tag: OPENBSD_5_8 Digest.pm 
	gnu/usr.bin/perl/cpan/Digest/Digest: Tag: OPENBSD_5_8 base.pm 
	                                     file.pm 
	gnu/usr.bin/perl/cpan/Digest-SHA: Tag: OPENBSD_5_8 shasum 
	gnu/usr.bin/perl/cpan/Digest-SHA/lib/Digest: Tag: OPENBSD_5_8 
	                                             SHA.pm 
	gnu/usr.bin/perl/cpan/Encode: Tag: OPENBSD_5_8 Encode.pm 
	gnu/usr.bin/perl/cpan/Encode/Encode: Tag: OPENBSD_5_8 _PM.e2x 
	gnu/usr.bin/perl/cpan/Encode/bin: Tag: OPENBSD_5_8 enc2xs piconv 
	                                  ucmlint unidump 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/bin: Tag: OPENBSD_5_8 
	                                              instmodsh 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils: Tag: 
	                                                       OPENBSD_5_8 
	                                                       Liblist.pm 
	                                                       MM.pm 
	                                                       MM_AIX.pm 
	                                                       MM_Any.pm 
	                                                       MM_BeOS.pm 
	                                                       MM_Cygwin.pm 
	                                                       MM_DOS.pm 
	                                                       MM_Darwin.pm 
	                                                       MM_MacOS.pm 
	                                                       MM_NW5.pm 
	                                                       MM_OS2.pm 
	                                                       MM_QNX.pm 
	                                                       MM_UWIN.pm 
	                                                       MM_Unix.pm 
	                                                       MM_VMS.pm 
	                                                       MM_VOS.pm 
	                                                       MM_Win32.pm 
	                                                       MM_Win95.pm 
	                                                       MY.pm 
	                                                       MakeMaker.pm 
	                                                       Mkbootstrap.pm 
	                                                       Mksymlists.pm 
	                                                       testlib.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command: 
	                                                               Tag: 
	                                                               OPENBSD_5_8 
	                                                               MM.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist: 
	                                                               Tag: 
	                                                               OPENBSD_5_8 
	                                                               Kid.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker: 
	                                                                 Tag: 
	                                                                 OPENBSD_5_8 
	                                                                 Config.pm 
	                                                                 FAQ.pod 
	                                                                 Tutorial.pod 
	gnu/usr.bin/perl/cpan/File-Fetch/lib/File: Tag: OPENBSD_5_8 
	                                           Fetch.pm 
	gnu/usr.bin/perl/cpan/HTTP-Tiny/lib/HTTP: Tag: OPENBSD_5_8 
	                                          Tiny.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/bin: Tag: OPENBSD_5_8 
	                                       zipdetails 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/Compress: Tag: OPENBSD_5_8 
	                                                Zlib.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/File: Tag: OPENBSD_5_8 
	                                            GlobMapper.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress: Tag: 
	                                                   OPENBSD_5_8 
	                                                   Base.pm 
	                                                   Bzip2.pm 
	                                                   Deflate.pm 
	                                                   Gzip.pm 
	                                                   RawDeflate.pm 
	                                                   Zip.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Adapter: Tag: 
	                                                           OPENBSD_5_8 
	                                                           Bzip2.pm 
	                                                           Deflate.pm 
	                                                           Identity.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Base: Tag: 
	                                                        OPENBSD_5_8 
	                                                        Common.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Gzip: Tag: 
	                                                        OPENBSD_5_8 
	                                                        Constants.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Zip: Tag: 
	                                                       OPENBSD_5_8 
	                                                       Constants.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Zlib: Tag: 
	                                                        OPENBSD_5_8 
	                                                        Constants.pm 
	                                                        Extra.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress: Tag: 
	                                                     OPENBSD_5_8 
	                                                     AnyInflate.pm 
	                                                     AnyUncompress.pm 
	                                                     Base.pm 
	                                                     Bunzip2.pm 
	                                                     Gunzip.pm 
	                                                     Inflate.pm 
	                                                     RawInflate.pm 
	                                                     Unzip.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/Adapter: 
	                                                             Tag: 
	                                                             OPENBSD_5_8 
	                                                             Bunzip2.pm 
	                                                             Identity.pm 
	                                                             Inflate.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/private: Tag: OPENBSD_5_8 
	                                           MakeUtil.pm 
	gnu/usr.bin/perl/cpan/IPC-Cmd/lib/IPC: Tag: OPENBSD_5_8 Cmd.pm 
	gnu/usr.bin/perl/cpan/JSON-PP/bin: Tag: OPENBSD_5_8 json_pp 
	gnu/usr.bin/perl/cpan/JSON-PP/lib/JSON: Tag: OPENBSD_5_8 PP.pm 
	gnu/usr.bin/perl/cpan/Locale-Maketext-Simple/lib/Locale/Maketext: 
	                                                                  Tag: 
	                                                                  OPENBSD_5_8 
	                                                                  Simple.pm 
	gnu/usr.bin/perl/cpan/Memoize: Tag: OPENBSD_5_8 Memoize.pm 
	gnu/usr.bin/perl/cpan/Memoize/Memoize: Tag: OPENBSD_5_8 
	                                       AnyDBM_File.pm Expire.pm 
	                                       ExpireFile.pm 
	                                       ExpireTest.pm 
	                                       NDBM_File.pm SDBM_File.pm 
	                                       Storable.pm 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod: Tag: OPENBSD_5_8 
	                                           Perldoc.pm 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: Tag: 
	                                                   OPENBSD_5_8 
	                                                   BaseTo.pm 
	                                                   GetOptsOO.pm 
	                                                   ToANSI.pm 
	                                                   ToChecker.pm 
	                                                   ToMan.pm 
	                                                   ToNroff.pm 
	                                                   ToPod.pm 
	                                                   ToRtf.pm 
	                                                   ToTerm.pm 
	                                                   ToText.pm 
	                                                   ToTk.pm 
	                                                   ToXml.pm 
	gnu/usr.bin/perl/cpan/Sys-Syslog: Tag: OPENBSD_5_8 Syslog.pm 
	gnu/usr.bin/perl/cpan/Test/lib: Tag: OPENBSD_5_8 Test.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/bin: Tag: OPENBSD_5_8 prove 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App: Tag: OPENBSD_5_8 
	                                            Prove.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove: Tag: 
	                                                  OPENBSD_5_8 
	                                                  State.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/State: Tag: 
	                                                        OPENBSD_5_8 
	                                                        Result.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/State/Result: 
	                                                               Tag: 
	                                                               OPENBSD_5_8 
	                                                               Test.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP: Tag: OPENBSD_5_8 
	                                            Base.pm Harness.pm 
	                                            Object.pm Parser.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter: Tag: 
	                                                      OPENBSD_5_8 
	                                                      Base.pm 
	                                                      Color.pm 
	                                                      Console.pm 
	                                                      File.pm 
	                                                      Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/Console: 
	                                                              Tag: 
	                                                              OPENBSD_5_8 
	                                                              ParallelSession.pm 
	                                                              Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/File: Tag: 
	                                                           OPENBSD_5_8 
	                                                           Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Harness: Tag: 
	                                                    OPENBSD_5_8 
	                                                    Env.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser: Tag: 
	                                                   OPENBSD_5_8 
	                                                   Aggregator.pm 
	                                                   Grammar.pm 
	                                                   Iterator.pm 
	                                                   IteratorFactory.pm 
	                                                   Multiplexer.pm 
	                                                   Result.pm 
	                                                   ResultFactory.pm 
	                                                   Scheduler.pm 
	                                                   Source.pm 
	                                                   SourceHandler.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Iterator: Tag: 
	                                                            OPENBSD_5_8 
	                                                            Array.pm 
	                                                            Process.pm 
	                                                            Stream.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Result: Tag: 
	                                                          OPENBSD_5_8 
	                                                          Bailout.pm 
	                                                          Comment.pm 
	                                                          Plan.pm 
	                                                          Pragma.pm 
	                                                          Test.pm 
	                                                          Unknown.pm 
	                                                          Version.pm 
	                                                          YAML.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Scheduler: 
	                                                             Tag: 
	                                                             OPENBSD_5_8 
	                                                             Job.pm 
	                                                             Spinner.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/SourceHandler: 
	                                                                 Tag: 
	                                                                 OPENBSD_5_8 
	                                                                 Executable.pm 
	                                                                 File.pm 
	                                                                 Handle.pm 
	                                                                 Perl.pm 
	                                                                 RawTAP.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/YAMLish: Tag: 
	                                                           OPENBSD_5_8 
	                                                           Reader.pm 
	                                                           Writer.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/Test: Tag: OPENBSD_5_8 
	                                             Harness.pm 
	gnu/usr.bin/perl/cpan/libnet/Net: Tag: OPENBSD_5_8 Cmd.pm 
	                                  Config.pm Domain.pm FTP.pm 
	                                  NNTP.pm Netrc.pm POP3.pm 
	                                  SMTP.pm Time.pm 
	gnu/usr.bin/perl/cpan/libnet/Net/FTP: Tag: OPENBSD_5_8 A.pm E.pm 
	                                      I.pm L.pm dataconn.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Command/lib/ExtUtils: Tag: 
	                                                     OPENBSD_5_8 
	                                                     Command.pm 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils: Tag: 
	                                                     OPENBSD_5_8 
	                                                     ParseXS.pm 
	                                                     Typemaps.pm 
	                                                     xsubpp 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS: 
	                                                             Tag: 
	                                                             OPENBSD_5_8 
	                                                             Constants.pm 
	                                                             CountLines.pm 
	                                                             Eval.pm 
	                                                             Utilities.pm 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps: 
	                                                              Tag: 
	                                                              OPENBSD_5_8 
	                                                              Cmd.pm 
	                                                              InputMap.pm 
	                                                              OutputMap.pm 
	                                                              Type.pm 
	gnu/usr.bin/perl/dist/I18N-LangTags/lib/I18N: Tag: OPENBSD_5_8 
	                                              LangTags.pm 
	gnu/usr.bin/perl/dist/I18N-LangTags/lib/I18N/LangTags: Tag: 
	                                                       OPENBSD_5_8 
	                                                       Detect.pm 
	                                                       List.pm 
	gnu/usr.bin/perl/dist/IO: Tag: OPENBSD_5_8 IO.pm 
	gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale: Tag: 
	                                                  OPENBSD_5_8 
	                                                  Maketext.pm 
	gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale/Maketext: Tag: 
	                                                           OPENBSD_5_8 
	                                                           Guts.pm 
	                                                           GutsLoader.pm 
	gnu/usr.bin/perl/dist/Module-CoreList: Tag: OPENBSD_5_8 corelist 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module: Tag: 
	                                                  OPENBSD_5_8 
	                                                  CoreList.pm 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList: Tag: 
	                                                           OPENBSD_5_8 
	                                                           TieHashDelta.pm 
	                                                           Utils.pm 
	gnu/usr.bin/perl/dist/Net-Ping/lib/Net: Tag: OPENBSD_5_8 Ping.pm 
	gnu/usr.bin/perl/dist/PathTools: Tag: OPENBSD_5_8 Cwd.pm 
	gnu/usr.bin/perl/dist/PathTools/lib/File: Tag: OPENBSD_5_8 
	                                          Spec.pm 
	gnu/usr.bin/perl/dist/PathTools/lib/File/Spec: Tag: OPENBSD_5_8 
	                                               Cygwin.pm Epoc.pm 
	                                               Functions.pm 
	                                               Mac.pm OS2.pm 
	                                               Unix.pm VMS.pm 
	                                               Win32.pm 
	gnu/usr.bin/perl/dist/Storable: Tag: OPENBSD_5_8 Storable.pm 
	gnu/usr.bin/perl/dist/base/lib: Tag: OPENBSD_5_8 base.pm 
	                                fields.pm 
	gnu/usr.bin/perl/dist/bignum/lib: Tag: OPENBSD_5_8 bigint.pm 
	                                  bignum.pm bigrat.pm 
	gnu/usr.bin/perl/dist/bignum/lib/Math/BigFloat: Tag: OPENBSD_5_8 
	                                                Trace.pm 
	gnu/usr.bin/perl/dist/bignum/lib/Math/BigInt: Tag: OPENBSD_5_8 
	                                              Trace.pm 
	gnu/usr.bin/perl/ext/Pod-Html/bin: Tag: OPENBSD_5_8 pod2html 
	gnu/usr.bin/perl/ext/Pod-Html/lib/Pod: Tag: OPENBSD_5_8 Html.pm 
	gnu/usr.bin/perl/lib: Tag: OPENBSD_5_8 perl5db.pl 
	gnu/usr.bin/perl/t/porting: Tag: OPENBSD_5_8 customized.dat 
	gnu/usr.bin/perl/utils: Tag: OPENBSD_5_8 c2ph.PL h2ph.PL h2xs.PL 
	                        libnetcfg.PL perlbug.PL perldoc.PL 
	                        perlivp.PL splain.PL 
	gnu/usr.bin/perl/x2p: Tag: OPENBSD_5_8 find2perl.PL s2p.PL 

Log message:
Patch perl CVE-2016-1238

The problem relates to Perl 5 ("perl") loading modules from the
includes directory array ("@INC") in which the last element is the
current directory (".").  That means that, when "perl" wants to
load a module (during first compilation or during lazy loading of
a module in run-time), perl will look for the module in the current
directory at the end, since '.' is the last include directory in
its array of include directories to seek. The issue is with requiring
libraries that are in "." but are not otherwise installed.

The major problem with this behavior is that it unexpectedly puts
a user at risk whenever they execute any Perl scripts from a directory
that is writable by other accounts on the system. For instance, if
a user is logged in as root and changes directory into /tmp or an
account's home directory, it is possible to now run any shell
commands that are written in C, Python or Ruby without fear.

The same isn't true for any shell commands that are written in Perl,
since a significant proportion of Perl scripts will execute code
in the current working directory whenever they are run. For example,
if a user on a shared system creates the file /tmp/Pod/Perldoc/Toterm.pm,
and then I log in as root, change directory to /tmp, and run "perldoc
perlrun", it will execute the code they have placed in the file.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/08/04 19:01:40

Modified files:
	gnu/usr.bin/perl: Tag: OPENBSD_5_9 patchlevel.h 
	gnu/usr.bin/perl/cpan/Archive-Tar/bin: Tag: OPENBSD_5_9 ptar 
	                                       ptardiff ptargrep 
	gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive: Tag: OPENBSD_5_9 
	                                               Tar.pm 
	gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/Tar: Tag: 
	                                                   OPENBSD_5_9 
	                                                   Constant.pm 
	                                                   File.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib: Tag: OPENBSD_5_9 CPAN.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/App: Tag: OPENBSD_5_9 Cpan.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN: Tag: OPENBSD_5_9 Author.pm 
	                                     Bundle.pm CacheMgr.pm 
	                                     Complete.pm Debug.pm 
	                                     DeferredCode.pm 
	                                     Distribution.pm 
	                                     Distroprefs.pm 
	                                     Distrostatus.pm FTP.pm 
	                                     FirstTime.pm 
	                                     HandleConfig.pm Index.pm 
	                                     InfoObj.pm Kwalify.pm 
	                                     Mirrors.pm Module.pm Nox.pm 
	                                     Prompt.pm Queue.pm Shell.pm 
	                                     Tarzip.pm URL.pm Version.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Exception: Tag: OPENBSD_5_9 
	                                               RecursiveDependency.pm 
	                                               blocked_urllist.pm 
	                                               yaml_not_installed.pm 
	                                               yaml_process_error.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/FTP: Tag: OPENBSD_5_9 
	                                         netrc.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/HTTP: Tag: OPENBSD_5_9 
	                                          Client.pm 
	                                          Credentials.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/LWP: Tag: OPENBSD_5_9 
	                                         UserAgent.pm 
	gnu/usr.bin/perl/cpan/CPAN/scripts: Tag: OPENBSD_5_9 cpan 
	gnu/usr.bin/perl/cpan/Digest: Tag: OPENBSD_5_9 Digest.pm 
	gnu/usr.bin/perl/cpan/Digest/Digest: Tag: OPENBSD_5_9 base.pm 
	                                     file.pm 
	gnu/usr.bin/perl/cpan/Digest-SHA: Tag: OPENBSD_5_9 shasum 
	gnu/usr.bin/perl/cpan/Digest-SHA/lib/Digest: Tag: OPENBSD_5_9 
	                                             SHA.pm 
	gnu/usr.bin/perl/cpan/Encode: Tag: OPENBSD_5_9 Encode.pm 
	gnu/usr.bin/perl/cpan/Encode/Encode: Tag: OPENBSD_5_9 _PM.e2x 
	gnu/usr.bin/perl/cpan/Encode/bin: Tag: OPENBSD_5_9 enc2xs piconv 
	                                  ucmlint unidump 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/bin: Tag: OPENBSD_5_9 
	                                              instmodsh 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils: Tag: 
	                                                       OPENBSD_5_9 
	                                                       Liblist.pm 
	                                                       MM.pm 
	                                                       MM_AIX.pm 
	                                                       MM_Any.pm 
	                                                       MM_BeOS.pm 
	                                                       MM_Cygwin.pm 
	                                                       MM_DOS.pm 
	                                                       MM_Darwin.pm 
	                                                       MM_MacOS.pm 
	                                                       MM_NW5.pm 
	                                                       MM_OS2.pm 
	                                                       MM_QNX.pm 
	                                                       MM_UWIN.pm 
	                                                       MM_Unix.pm 
	                                                       MM_VMS.pm 
	                                                       MM_VOS.pm 
	                                                       MM_Win32.pm 
	                                                       MM_Win95.pm 
	                                                       MY.pm 
	                                                       MakeMaker.pm 
	                                                       Mkbootstrap.pm 
	                                                       Mksymlists.pm 
	                                                       testlib.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command: 
	                                                               Tag: 
	                                                               OPENBSD_5_9 
	                                                               MM.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist: 
	                                                               Tag: 
	                                                               OPENBSD_5_9 
	                                                               Kid.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker: 
	                                                                 Tag: 
	                                                                 OPENBSD_5_9 
	                                                                 Config.pm 
	                                                                 FAQ.pod 
	                                                                 Tutorial.pod 
	gnu/usr.bin/perl/cpan/File-Fetch/lib/File: Tag: OPENBSD_5_9 
	                                           Fetch.pm 
	gnu/usr.bin/perl/cpan/HTTP-Tiny/lib/HTTP: Tag: OPENBSD_5_9 
	                                          Tiny.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/bin: Tag: OPENBSD_5_9 
	                                       zipdetails 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/Compress: Tag: OPENBSD_5_9 
	                                                Zlib.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/File: Tag: OPENBSD_5_9 
	                                            GlobMapper.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress: Tag: 
	                                                   OPENBSD_5_9 
	                                                   Base.pm 
	                                                   Bzip2.pm 
	                                                   Deflate.pm 
	                                                   Gzip.pm 
	                                                   RawDeflate.pm 
	                                                   Zip.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Adapter: Tag: 
	                                                           OPENBSD_5_9 
	                                                           Bzip2.pm 
	                                                           Deflate.pm 
	                                                           Identity.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Base: Tag: 
	                                                        OPENBSD_5_9 
	                                                        Common.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Gzip: Tag: 
	                                                        OPENBSD_5_9 
	                                                        Constants.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Zip: Tag: 
	                                                       OPENBSD_5_9 
	                                                       Constants.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Zlib: Tag: 
	                                                        OPENBSD_5_9 
	                                                        Constants.pm 
	                                                        Extra.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress: Tag: 
	                                                     OPENBSD_5_9 
	                                                     AnyInflate.pm 
	                                                     AnyUncompress.pm 
	                                                     Base.pm 
	                                                     Bunzip2.pm 
	                                                     Gunzip.pm 
	                                                     Inflate.pm 
	                                                     RawInflate.pm 
	                                                     Unzip.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/Adapter: 
	                                                             Tag: 
	                                                             OPENBSD_5_9 
	                                                             Bunzip2.pm 
	                                                             Identity.pm 
	                                                             Inflate.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/private: Tag: OPENBSD_5_9 
	                                           MakeUtil.pm 
	gnu/usr.bin/perl/cpan/IPC-Cmd/lib/IPC: Tag: OPENBSD_5_9 Cmd.pm 
	gnu/usr.bin/perl/cpan/JSON-PP/bin: Tag: OPENBSD_5_9 json_pp 
	gnu/usr.bin/perl/cpan/JSON-PP/lib/JSON: Tag: OPENBSD_5_9 PP.pm 
	gnu/usr.bin/perl/cpan/Locale-Maketext-Simple/lib/Locale/Maketext: 
	                                                                  Tag: 
	                                                                  OPENBSD_5_9 
	                                                                  Simple.pm 
	gnu/usr.bin/perl/cpan/Memoize: Tag: OPENBSD_5_9 Memoize.pm 
	gnu/usr.bin/perl/cpan/Memoize/Memoize: Tag: OPENBSD_5_9 
	                                       AnyDBM_File.pm Expire.pm 
	                                       ExpireFile.pm 
	                                       ExpireTest.pm 
	                                       NDBM_File.pm SDBM_File.pm 
	                                       Storable.pm 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod: Tag: OPENBSD_5_9 
	                                           Perldoc.pm 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: Tag: 
	                                                   OPENBSD_5_9 
	                                                   BaseTo.pm 
	                                                   GetOptsOO.pm 
	                                                   ToANSI.pm 
	                                                   ToChecker.pm 
	                                                   ToMan.pm 
	                                                   ToNroff.pm 
	                                                   ToPod.pm 
	                                                   ToRtf.pm 
	                                                   ToTerm.pm 
	                                                   ToText.pm 
	                                                   ToTk.pm 
	                                                   ToXml.pm 
	gnu/usr.bin/perl/cpan/Sys-Syslog: Tag: OPENBSD_5_9 Syslog.pm 
	gnu/usr.bin/perl/cpan/Test/lib: Tag: OPENBSD_5_9 Test.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/bin: Tag: OPENBSD_5_9 prove 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App: Tag: OPENBSD_5_9 
	                                            Prove.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove: Tag: 
	                                                  OPENBSD_5_9 
	                                                  State.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/State: Tag: 
	                                                        OPENBSD_5_9 
	                                                        Result.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/State/Result: 
	                                                               Tag: 
	                                                               OPENBSD_5_9 
	                                                               Test.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP: Tag: OPENBSD_5_9 
	                                            Base.pm Harness.pm 
	                                            Object.pm Parser.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter: Tag: 
	                                                      OPENBSD_5_9 
	                                                      Base.pm 
	                                                      Color.pm 
	                                                      Console.pm 
	                                                      File.pm 
	                                                      Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/Console: 
	                                                              Tag: 
	                                                              OPENBSD_5_9 
	                                                              ParallelSession.pm 
	                                                              Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/File: Tag: 
	                                                           OPENBSD_5_9 
	                                                           Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Harness: Tag: 
	                                                    OPENBSD_5_9 
	                                                    Env.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser: Tag: 
	                                                   OPENBSD_5_9 
	                                                   Aggregator.pm 
	                                                   Grammar.pm 
	                                                   Iterator.pm 
	                                                   IteratorFactory.pm 
	                                                   Multiplexer.pm 
	                                                   Result.pm 
	                                                   ResultFactory.pm 
	                                                   Scheduler.pm 
	                                                   Source.pm 
	                                                   SourceHandler.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Iterator: Tag: 
	                                                            OPENBSD_5_9 
	                                                            Array.pm 
	                                                            Process.pm 
	                                                            Stream.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Result: Tag: 
	                                                          OPENBSD_5_9 
	                                                          Bailout.pm 
	                                                          Comment.pm 
	                                                          Plan.pm 
	                                                          Pragma.pm 
	                                                          Test.pm 
	                                                          Unknown.pm 
	                                                          Version.pm 
	                                                          YAML.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Scheduler: 
	                                                             Tag: 
	                                                             OPENBSD_5_9 
	                                                             Job.pm 
	                                                             Spinner.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/SourceHandler: 
	                                                                 Tag: 
	                                                                 OPENBSD_5_9 
	                                                                 Executable.pm 
	                                                                 File.pm 
	                                                                 Handle.pm 
	                                                                 Perl.pm 
	                                                                 RawTAP.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/YAMLish: Tag: 
	                                                           OPENBSD_5_9 
	                                                           Reader.pm 
	                                                           Writer.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/Test: Tag: OPENBSD_5_9 
	                                             Harness.pm 
	gnu/usr.bin/perl/cpan/libnet/Net: Tag: OPENBSD_5_9 Cmd.pm 
	                                  Config.pm Domain.pm FTP.pm 
	                                  NNTP.pm Netrc.pm POP3.pm 
	                                  SMTP.pm Time.pm 
	gnu/usr.bin/perl/cpan/libnet/Net/FTP: Tag: OPENBSD_5_9 A.pm E.pm 
	                                      I.pm L.pm dataconn.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Command/lib/ExtUtils: Tag: 
	                                                     OPENBSD_5_9 
	                                                     Command.pm 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils: Tag: 
	                                                     OPENBSD_5_9 
	                                                     ParseXS.pm 
	                                                     Typemaps.pm 
	                                                     xsubpp 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS: 
	                                                             Tag: 
	                                                             OPENBSD_5_9 
	                                                             Constants.pm 
	                                                             CountLines.pm 
	                                                             Eval.pm 
	                                                             Utilities.pm 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps: 
	                                                              Tag: 
	                                                              OPENBSD_5_9 
	                                                              Cmd.pm 
	                                                              InputMap.pm 
	                                                              OutputMap.pm 
	                                                              Type.pm 
	gnu/usr.bin/perl/dist/I18N-LangTags/lib/I18N: Tag: OPENBSD_5_9 
	                                              LangTags.pm 
	gnu/usr.bin/perl/dist/I18N-LangTags/lib/I18N/LangTags: Tag: 
	                                                       OPENBSD_5_9 
	                                                       Detect.pm 
	                                                       List.pm 
	gnu/usr.bin/perl/dist/IO: Tag: OPENBSD_5_9 IO.pm 
	gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale: Tag: 
	                                                  OPENBSD_5_9 
	                                                  Maketext.pm 
	gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale/Maketext: Tag: 
	                                                           OPENBSD_5_9 
	                                                           Guts.pm 
	                                                           GutsLoader.pm 
	gnu/usr.bin/perl/dist/Module-CoreList: Tag: OPENBSD_5_9 corelist 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module: Tag: 
	                                                  OPENBSD_5_9 
	                                                  CoreList.pm 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList: Tag: 
	                                                           OPENBSD_5_9 
	                                                           TieHashDelta.pm 
	                                                           Utils.pm 
	gnu/usr.bin/perl/dist/Net-Ping/lib/Net: Tag: OPENBSD_5_9 Ping.pm 
	gnu/usr.bin/perl/dist/PathTools: Tag: OPENBSD_5_9 Cwd.pm 
	gnu/usr.bin/perl/dist/PathTools/lib/File: Tag: OPENBSD_5_9 
	                                          Spec.pm 
	gnu/usr.bin/perl/dist/PathTools/lib/File/Spec: Tag: OPENBSD_5_9 
	                                               Cygwin.pm Epoc.pm 
	                                               Functions.pm 
	                                               Mac.pm OS2.pm 
	                                               Unix.pm VMS.pm 
	                                               Win32.pm 
	gnu/usr.bin/perl/dist/Storable: Tag: OPENBSD_5_9 Storable.pm 
	gnu/usr.bin/perl/dist/base/lib: Tag: OPENBSD_5_9 base.pm 
	                                fields.pm 
	gnu/usr.bin/perl/dist/bignum/lib: Tag: OPENBSD_5_9 bigint.pm 
	                                  bignum.pm bigrat.pm 
	gnu/usr.bin/perl/dist/bignum/lib/Math/BigFloat: Tag: OPENBSD_5_9 
	                                                Trace.pm 
	gnu/usr.bin/perl/dist/bignum/lib/Math/BigInt: Tag: OPENBSD_5_9 
	                                              Trace.pm 
	gnu/usr.bin/perl/ext/Pod-Html/bin: Tag: OPENBSD_5_9 pod2html 
	gnu/usr.bin/perl/ext/Pod-Html/lib/Pod: Tag: OPENBSD_5_9 Html.pm 
	gnu/usr.bin/perl/lib: Tag: OPENBSD_5_9 perl5db.pl 
	gnu/usr.bin/perl/t/porting: Tag: OPENBSD_5_9 customized.dat 
	gnu/usr.bin/perl/utils: Tag: OPENBSD_5_9 c2ph.PL h2ph.PL h2xs.PL 
	                        libnetcfg.PL perlbug.PL perldoc.PL 
	                        perlivp.PL splain.PL 
	gnu/usr.bin/perl/x2p: Tag: OPENBSD_5_9 find2perl.PL s2p.PL 

Log message:
Patch perl CVE-2016-1238

The problem relates to Perl 5 ("perl") loading modules from the
includes directory array ("@INC") in which the last element is the
current directory (".").  That means that, when "perl" wants to
load a module (during first compilation or during lazy loading of
a module in run-time), perl will look for the module in the current
directory at the end, since '.' is the last include directory in
its array of include directories to seek. The issue is with requiring
libraries that are in "." but are not otherwise installed.

The major problem with this behavior is that it unexpectedly puts
a user at risk whenever they execute any Perl scripts from a directory
that is writable by other accounts on the system. For instance, if
a user is logged in as root and changes directory into /tmp or an
account's home directory, it is possible to now run any shell
commands that are written in C, Python or Ruby without fear.

The same isn't true for any shell commands that are written in Perl,
since a significant proportion of Perl scripts will execute code
in the current working directory whenever they are run. For example,
if a user on a shared system creates the file /tmp/Pod/Perldoc/Toterm.pm,
and then I log in as root, change directory to /tmp, and run "perldoc
perlrun", it will execute the code they have placed in the file.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/08/04 19:05:26

Modified files:
	gnu/usr.bin/perl/dist/IO/lib/IO: Tag: OPENBSD_6_0 Dir.pm File.pm 
	                                 Handle.pm Pipe.pm Poll.pm 
	                                 Seekable.pm Select.pm Socket.pm 
	gnu/usr.bin/perl/dist/IO/lib/IO/Socket: Tag: OPENBSD_6_0 INET.pm 
	                                        UNIX.pm 

Log message:
Revert version bumps on perl modules

These shouldn't have been bumped with the CVE-2016-1238 change and
cause problems with IO::Socket::IP.

Noticed by many, requested by sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	lteo@cvs.openbsd.org	2016/08/04 19:28:10

Modified files:
	.              : 60.html 

Log message:
bpf(4) device cloning


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:20:50

Log message:
    Import progit-1084.
    
    Pro Git (Second Edition) is your fully-updated guide to Git and its usage in
    the modern world. Git has come a long way since it was first developed by
    Linus Torvalds for Linux kernel development. It has taken the open source
    world by storm since its inception in 2005, and this book teaches you how to
    use it like a pro.
    
    Effective and well-implemented version control is a necessity for successful
    web projects, whether large or small. With this book you'll learn how to
    master the world of distributed version workflow, use the distributed
    features of Git to the full, and extend Git to meet your every need.
    
    ok benoit@ krw@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160804
    
    N ports/books/progit/Makefile
    N ports/books/progit/distinfo
    N ports/books/progit/pkg/PLIST
    N ports/books/progit/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:21:14

Modified files:
	books          : Makefile 

Log message:
+progit


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:23:59

Modified files:
	emulators/mgba : Makefile 
Added files:
	emulators/mgba/pkg: DESCR-libretro PLIST-libretro 

Log message:
Add a new libretro subpackage for mgba, for use with RetroArch.

ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:26:42

Modified files:
	emulators/nestopia: Makefile 
	emulators/nestopia/patches: patch-source_unix_gtkui_gtkui_h 
Added files:
	emulators/nestopia/patches: patch-libretro_Makefile 
	emulators/nestopia/pkg: DESCR-libretro DESCR-main PLIST-libretro 
	                        PLIST-main 
Removed files:
	emulators/nestopia/pkg: DESCR PLIST 

Log message:
Add a new libretro subpackage for nestopia, for use with RetroArch.

ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:27:52

Log message:
    Import retroarch-1.3.4.
    
    RetroArch is the reference frontend for the libretro API. Popular examples
    of implementations for this API includes videogame system emulators and game
    engines, but also more generalized 3D programs. These programs are
    instantiated as dynamic libraries, or "libretro cores".
    
    libretro is an API that exposes generic audio/video/input callbacks. A
    frontend for libretro (such as RetroArch) handles video output, audio
    output, input and application lifecycle. A libretro core written in portable
    C or C++ can run seamlessly on many platforms with very little/no porting
    effort.
    
    RetroArch attempts to be small and lean, while still having all the useful
    core features expected from an emulator. It is designed to be very portable
    and features a gamepad-centric UI. It also has a full-featured command-line
    interface.
    
    ok juanfra@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160804
    
    N ports/emulators/retroarch/Makefile
    N ports/emulators/retroarch/distinfo
    N ports/emulators/retroarch/pkg/PLIST
    N ports/emulators/retroarch/pkg/DESCR
    N ports/emulators/retroarch/patches/patch-Makefile
    N ports/emulators/retroarch/patches/patch-audio_audio_driver_c
    N ports/emulators/retroarch/patches/patch-retroarch_cfg
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:29:13

Modified files:
	emulators      : Makefile 

Log message:
+retroarch


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:34:25

Log message:
    Import mplus-fonts-060.
    
    The M+ OUTLINE FONTS is a collection of sans-serif fonts.
    
    It includes Japanese kana and over 5,000 kanji glyphs, as well as Latin
    glyph sets from Basic Latin, Latin-1 Supplement, Latin Extended-A, and
    IPA extensions.
    
    ok benoit@ juanfra@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160804
    
    N ports/fonts/mplus-fonts/Makefile
    N ports/fonts/mplus-fonts/distinfo
    N ports/fonts/mplus-fonts/pkg/DESCR
    N ports/fonts/mplus-fonts/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:34:56

Modified files:
	fonts          : Makefile 

Log message:
+mplus-fonts


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:38:56

Log message:
    Import ace-1.4.
    
    The Ace of Penguins is a set of Unix/X solitaire games based on the ones
    available for Windows but with a number of enhancements.
    
    The latest version includes clones of Freecell, Golf, Mastermind,
    Merlin, Minesweeper, Pegged, Solitaire, Taipei (with editor!), and
    Thornq.
    
    ok juanfra@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160804
    
    N ports/games/ace/Makefile
    N ports/games/ace/distinfo
    N ports/games/ace/patches/patch-lib_make-imglib_c
    N ports/games/ace/patches/patch-lib_xwin_c
    N ports/games/ace/patches/patch-lib_help_c
    N ports/games/ace/pkg/DESCR
    N ports/games/ace/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:39:25

Modified files:
	games          : Makefile 

Log message:
+ace


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:44:10

Log message:
    Import nonolib-4.3.1.
    
    nonolib is a C library to solve nonogram puzzles, written by Dr. Steven
    Simpson.
    
    ok juanfra@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160804
    
    N ports/math/nonolib/Makefile
    N ports/math/nonolib/distinfo
    N ports/math/nonolib/patches/patch-puzzle_c
    N ports/math/nonolib/pkg/DESCR
    N ports/math/nonolib/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:44:50

Log message:
    Import nonogram-1.9.13.
    
    nonogram is a terminal-based command-line nonogram puzzle solver, written
    by Dr. Steven Simpson.
    
    ok juanfra@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160804
    
    N ports/math/nonogram/Makefile
    N ports/math/nonogram/distinfo
    N ports/math/nonogram/pkg/DESCR
    N ports/math/nonogram/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:45:34

Modified files:
	math           : Makefile 

Log message:
+{nonogram,nonolib}


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/04 23:47:37

Modified files:
	emulators/retroarch: Makefile 

Log message:
Look in LOCALBASE for headers as retroarch already does for libraries.

It's not strictly necessary but provides a pleasing symmetry.

requested by juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/05 00:54:01

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.20.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/05 00:56:58

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Update to NSS 3.25, will be required by firefox 49.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.25_release_notes


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/05 01:04:32

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.43.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/05 01:04:48

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.53.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/08/05 01:54:15

Modified files:
	lib/libc/net   : gethostbyname.3 

Log message:
Make RES_OPTIONS point directly to resolv.conf(5) instead of going through
resolver(3).

OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/05 02:10:51

Modified files:
	lib/libradius  : radius_new_request_packet.3 

Log message:
grammar fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/05 02:12:12

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

Log message:
shorten the openssl dsa text;


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/05 04:34:18

Modified files:
	usr.bin/rusers : rusers.c 

Log message:
Switch from select(2) to poll(2); ok millert@

No need to check for POLLHUP since those are UDP sockets.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/05 05:01:30

Modified files:
	graphics/feh   : Makefile distinfo 
	graphics/feh/patches: patch-man_feh_pre 

Log message:
Update to feh-2.16.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/05 05:23:42

Modified files:
	databases/redis: Makefile distinfo 
	databases/redis/patches: patch-redis_conf 

Log message:
Update to redis-3.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/05 05:30:14

Modified files:
	databases/ruby-redis: Makefile distinfo 

Log message:
Update to ruby-redis-3.3.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/05 05:32:28

Modified files:
	usr.sbin/route6d: Makefile route6d.8 route6d.c 
Added files:
	usr.sbin/route6d: log.c log.h 

Log message:
Rework logging.

Use log.c like in many other daemons, with small additions to maintain
a log queue (useful to dump a single log line with several logging
statements).  Use log.c to dump the internal state, and remove the -R
option (a similar feature will be implemented differently soon).

The end goal is to avoid touching the filesystem and use much tighter
pledge(2) restrictions.

Tested by Freddy Dissaux.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/05 05:34:51

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

Log message:
Use tighter pledge(2) restrictions.

Made possible by the logging overhaul.  Tested by Freddy Dissaux.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/05 05:36:24

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

Log message:
Fixup the condition that prevented heartbeat & co. from attaching


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/05 05:37:57

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

Log message:
Trigger link state update only on media status updates


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/05 05:38:00

Modified files:
	usr.sbin/route6d: route6d.8 route6d.c 

Log message:
Add a -u switch to always log route insertions/deletions.

Route updates (and associated warnings) are always prefixed with "RTADD"
or "RTDEL".  This is useful for people that previously used the -R
option that got removed.

Tested by Freddy Dissaux.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 05:40:22

Modified files:
	sys/conf       : files 

Log message:
imxahci(4) needs ahci.c


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/05 05:44:10

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

Log message:
Kill an unused macro

...instead of leaving an XXX about it.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/05 05:53:23

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

Log message:
Using a macro to save 4 chars is mere obfuscation.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/08/05 06:53:57

Modified files:
	mail/amavisd-new: Makefile 
	mail/amavisd-new/patches: patch-amavisd 

Log message:
More DKIM fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/05 07:18:27

Modified files:
	sys/arch/octeon/dev: if_cnmac.c if_cnmacvar.h 

Log message:
Drop a pointless link carrier check from the RX path.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/05 07:21:31

Modified files:
	usr.bin/jot    : jot.c 

Log message:
Initialize reps, begin, end, steps to their defaults.

Makes jot - - - - behave the same way as jot -, jot - - and jot - - -
instead of spurting out zeroes indefinitely.
Fixes the dddd regression test and matches FreeBSD and NetBSD.

From attila () stalphonsos ! com, thanks!
'good direction' deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/05 07:23:09

Modified files:
	x11/windowmaker: Makefile 
Added files:
	x11/windowmaker/patches: patch-src_WindowMaker_h 
	                         patch-src_actions_c patch-src_wmspec_c 

Log message:
Merge fix from upstream:

Fix stacking order of dock and fullscreen.

This reverts the commits:
311ab6b08ccf ("Raise fullscreened window")
a504370f3b27 ("Remove WMFullscreenLevel")

Removing WMFullscreenLevel had the side effect that a dock or panel
having the _NET_WM_WINDOW_TYPE_DOCK type would stack on top of
fullscreen windows, obscuring part of them.  This is unwanted. No
other window should cover a focused fullscreen window.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/05 07:24:04

Modified files:
	regress/usr.bin/jot: regress.sh 

Log message:
enable dddd regression test


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 07:31:29

Modified files:
	sys/arch/arm/cortex: agtimer.c 

Log message:
Unmask the timer output signal for real.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/05 07:33:21

Modified files:
	usr.bin/jot    : jot.c 

Log message:
If "%%" appears in the format string, skip it properly.

Part of pjanzen's fixes in r1.8, but was lost in r1.17.
Fixes regression tests wp3, wp4, wp5.

'good direction' deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/05 07:43:38

Modified files:
	usr.bin/jot    : jot.c 

Log message:
If reps and steps were omitted, while begin and end were specified,
use a default step size of +1 or -1.  Fixes the last two failing
regression tests dhhd and dhhd2.  Adapted from FreeBSD.

'good direction' deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/05 07:49:19

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

Log message:
All four arguments can be omitted by specifying a dash.
While there, remove a superfluous 's'.

discussed with jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/05 07:55:33

Modified files:
	x11/windowmaker: Makefile 
	x11/windowmaker/patches: patch-src_actions_c 
Added files:
	x11/windowmaker/patches: patch-src_cycling_c 

Log message:
Merge commit 5561199c871293cca0b3dc2c6feff0d7783111c6 from upstream.

Allow alt+tabbed windows over fullscreen

Fullscreen windows should only be on top when they are in focus. Change
the stacking level temporarily back to WMNormalLevel if the fullscreen
window loses focus due to an alt+tab operation.

Change the stacking level back to WMFullscreenLevel if the fullscreen
window receives the focus again.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/05 08:02:23

Modified files:
	usr.sbin/dhcpd : dhcp.c dhcpd.h options.c 

Log message:
Don't leak the option data of non-DHCPINFORM messages received on
the udp socket.

Found by David Carlier.

ok yasuoka@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/05 08:33:36

Modified files:
	audio/opusfile : Makefile distinfo 
	audio/opusfile/patches: patch-configure patch-src_http_c 
	audio/opusfile/pkg: PLIST 

Log message:
update to 0.8; ok maintainer Sergey Bronnikov


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/05 09:25:23

Modified files:
	multimedia/mediainfo: Makefile distinfo 
Removed files:
	multimedia/mediainfo/patches: 
	                              patch-MediaInfoLib_Project_GNU_Library_libmediainfo-config_in 
	                              patch-ZenLib_Project_GNU_Library_libzen-config_in 

Log message:
maintenance update to 0.7.87


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/05 09:42:05

Modified files:
	libexec/ld.so  : util.c 

Log message:
use a larger chunk for getentropy() and save some for next time.
coalesces some syscalls instead of one per random number.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/05 10:16:06

Modified files:
	lib/libc/net   : gethostbyname.3 resolver.3 

Log message:
Obvious minor fixes:
* Add missing .Dv, .Ev, and .Fa macros.
* Delete deprecated .Tn macros.
* Mark up global variable names with .Va, not with .Fa or .Li.
* Mark up config file commands with .Ic, not with .Fa.
* Fix HISTORY, trivial to verify from the CSRG archive CD.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/05 10:25:20

Modified files:
	games/spider   : Makefile 
	games/spider/pkg: PLIST 

Log message:
+@conflict ace-*. Spotted by aja@.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/05 10:39:52

Modified files:
	.              : lyrics.html 

Log message:
much better flow


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/05 10:46:50

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/05 11:02:04

Modified files:
	share/man/man5 : resolv.conf.5 

Log message:
* Properly distinguish commands (.Ic) and command modifiers (.Cm).
* Consistently use .Nm for the page name, do not oscillate to .Pa.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/05 11:20:30

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
fix a typo that prevented names from .Dt from getting priority over
names from .Sh NAME; no dire consequences on OpenBSD since we no
longer have MLINKS for mdoc(7) pages


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/05 11:25:51

Modified files:
	lib/libssl/src/crypto/conf: conf_lib.c 

Log message:
Do not *printf %s NULL
ok bcook


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/08/05 11:53:40

Modified files:
	devel/reposurgeon: Makefile 

Log message:
Add missing build dependency textproc/asciidoc.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/05 12:05:44

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

Log message:
Remove incorrect optimization: ring data portion size is not power of 2


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/05 12:12:20

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

Log message:
Read events array offset must be calculated in bytes


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/05 12:12:48

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

Log message:
Fixup incorrect EAGAIN handling


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/05 12:16:04

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

Log message:
Switch pending event clearing to an atomic swap operation

Rather than performing an atomic bit clearing for every encountered
event bit set we can adjust the code to perform an atomic swap of a
single row of the events array and decrease the amount of expensive
atomic operations.

From FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/05 12:31:21

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

Log message:
Switch pending event clearing to an atomic swap operation

Rather than performing an atomic bit clearing for every encountered
event bit set we can adjust the code to perform an atomic swap of a
single row of the events array and decrease the amount of expensive
atomic operations.

Same optimization as for Hyper-V.  From FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 13:00:25

Modified files:
	sys/conf       : files 
	sys/arch/armv7/sunxi: a1xintc.c files.sunxi sunxi.c sxiahci.c 
	                      sxie.c sxiehci.c sxiuart.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Switch the sunxi platform over to the new interrupt establish API.  This
involves turning sxiahci(4) into a real driver that dynamically attaches.
ehci(4) now also attaches dynamically.

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/05 13:52:19

Modified files:
	sysutils/colorls: Makefile distinfo 
	sysutils/colorls/patches: patch-colorls_1 patch-ls_c 
	                          patch-print_c 

Log message:
sync with OpenBSD 6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/05 13:56:35

Modified files:
	infrastructure/db: config.no-gawk 

Log message:
Set ac_cv_path_AWK, as probably intended.

ac_cv_prog_AWK is already set in config.site.  These variables are used
by different autoconf macros.  Tested in a bulk build.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 13:56:52

Modified files:
	sys/arch/arm/arm: cpufunc_asm_armv7.S 

Log message:
Replace inappropriate use of CP15_CNTPCT with CP_DCCIMVAC.
No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 14:38:17

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi 
Added files:
	sys/arch/armv7/sunxi: sxiintc.c sxiintc.h 
Removed files:
	sys/arch/armv7/sunxi: a1xintc.c a1xintc.h 

Log message:
We don't want drivers with numbers in their names.

Requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 14:41:10

Modified files:
	share/man/man4/man4.armv7: Makefile 
Added files:
	share/man/man4/man4.armv7: sxiintc.4 
Removed files:
	share/man/man4/man4.armv7: a1xintc.4 

Log message:
a1xintc(4) -> sxiintc(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 15:28:13

Modified files:
	sys/arch/armv7/sunxi: sxiehci.c 

Log message:
Check if we have the required "reg" property.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 15:29:23

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi sxirtc.c 

Log message:
Dynamically attach sxirtc(4); another board_id check bites the dust.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/05 15:37:39

Modified files:
	usr.bin/mandoc : dba.c 

Log message:
missing <endian.h> reported by Bapt@iste Daroussin, found on FreeBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 15:39:02

Modified files:
	sys/arch/armv7/sunxi: sunxi.c 

Log message:
Remove sxirtc(4) from the tables now that it attaches dynamically.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/05 15:40:25

Modified files:
	share/man/man4/man4.armv7: sunxi.4 

Log message:
a1xintc -> sxiintc;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/05 15:42:06

Modified files:
	regress/usr.bin/mandoc/db/out: onepage.dout padfentry.dout 
	                               padfpage.dout padientry.dout 
	                               padipage.dout padmentry.dout 
	                               padmpage.dout so.dout so_rev.dout 
	                               sortnames.dout sortpages.dout 
	                               sortpages_rev.dout 
	                               threemacros.dout threepages.dout 
	                               twoarch.dout twopages.dout 
	                               twosect.dout 

Log message:
adjust expected output after the NAME_HEAD fix in mandocdb.c rev. 1.175


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 15:45:37

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi sunxi.c sxidog.c 

Log message:
Dynamically attach sxidog(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/05 15:45:57

Modified files:
	regress/usr.bin/mandoc: Makefile 

Log message:
enable the mandoc.db(5) regression suite, code is stable enough now


CVSROOT:	/cvs
Module name:	www
Changes by:	tim@cvs.openbsd.org	2016/08/05 16:10:20

Modified files:
	.              : plus.html 

Log message:
July 16-26. Based on a diff from Rafael Neves.


CVSROOT:	/cvs
Module name:	www
Changes by:	tim@cvs.openbsd.org	2016/08/05 16:14:37

Modified files:
	.              : plus60.html plus.html 

Log message:
Move 6.0 changes


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/05 16:19:24

Modified files:
	sys/arch/armv7/sunxi: sxie.c 

Log message:
Use m_devget(4).  From Artturi Alm.


CVSROOT:	/cvs
Module name:	www
Changes by:	tim@cvs.openbsd.org	2016/08/05 16:21:08

Modified files:
	.              : plus60.html 

Log message:
Simplify man links


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/05 17:22:00

Modified files:
	lang/bacon     : Makefile 
	lang/bacon/pkg : PLIST 

Log message:
The man page is broken. Remove it until upstream fixes the problems.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/05 17:27:28

Modified files:
	games/supertuxkart: Makefile distinfo 
	games/supertuxkart/patches: 
	                            patch-lib_angelscript_source_as_callfunc_x64_gcc_cpp 
	                            patch-lib_irrlicht_CMakeLists_txt 
	games/supertuxkart/pkg: PLIST 
Removed files:
	games/supertuxkart/patches: 
	                            patch-lib_irrlicht_source_Irrlicht_COSOperator_cpp 
	                            patch-lib_irrlicht_source_Irrlicht_os_cpp 

Log message:
Update to 0.9.2, from David CARLIER, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/05 18:04:39

Modified files:
	sys/arch/arm/mainbus: mainbus.c 

Log message:
Set up the fdt attach args for devices that attach directly to mainbus
the same way as for those that attach to simplebus.

ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/05 18:16:50

Modified files:
	share/man/man4/man4.armv7: sunxi.4 sxidog.4 sxiintc.4 

Log message:
adjust for fdt changes


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/05 18:30:47

Modified files:
	sys/arch/armv7/vexpress: files.vexpress virtio_mmio.c vexpress.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Dynamically attach virtio(4) using the FDT.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/05 18:34:24

Modified files:
	share/man/man4/man4.armv7: vexpress.4 

Log message:
virtio no longer attaches to vexpress


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/05 18:40:54

Modified files:
	sys/arch/armv7/vexpress: files.vexpress vexpress.c pl031.c 
	share/man/man4/man4.armv7: plrtc.4 vexpress.4 
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Dynamically attach plrtc(4) using the FDT.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/05 18:54:02

Modified files:
	share/man/man4/man4.armv7: pluart.4 vexpress.4 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/vexpress: files.vexpress pl011.c vexpress.c 

Log message:
Dynamically attach pluart(4) using the FDT.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/05 19:51:04

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/05 22:03:20

Modified files:
	sys/arch/armv7/imx: if_fec.c 

Log message:
remove now unused board specific phy defines


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/05 22:32:24

Modified files:
	sys/arch/octeon/dev: cn30xxpipreg.h if_cnmac.c if_cnmacvar.h 

Log message:
Log RX errors only when the interface's debug flag is set.

While here, remove unused PIP error code aliases.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/06 00:40:05

Modified files:
	sysutils/u-boot: Makefile 

Log message:
Mark BROKEN on powerpc: Error: FDT_ERR_BADMAGIC


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/06 00:47:46

Modified files:
	multimedia/mpv : Makefile 

Log message:
Mark BROKEN on powerpc: atomics detection fails


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/06 00:52:32

ports/sysutils/exfat-fuse/patches

Update of /cvs/ports/sysutils/exfat-fuse/patches
In directory cvs.openbsd.org:/tmp/cvs-serv65245/patches

Log Message:
Directory /cvs/ports/sysutils/exfat-fuse/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/06 00:53:44

Added files:
	sysutils/exfat-fuse/patches: patch-libexfat_platform_h 

Log message:
Unbreak build on little-endian architectures: we have swap{16,32,64}, not
bswap{16,32,64}. Checking whether it actually works is left as an
exercise to the reader..


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/08/06 01:08:59

Modified files:
	sbin/iked      : parse.y 

Log message:
Unbreak PSK authentication, broken by previous.

ok reyk@ florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/08/06 02:07:51

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/patches: patch-include_configs_ti_omap5_common_h 
Added files:
	sysutils/u-boot/patches: patch-include_compiler_h 

Log message:
use endian.h macros and attempt to build on powerpc again


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/06 03:32:05

Modified files:
	sys/arch/mips64/include: mips_cpu.h 
	sys/arch/octeon/octeon: locore.S 

Log message:
Add PageGrain bits.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/06 03:50:55

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Disable edma(4).  It isn't currently used and is getting in the way of
future changes as it establishes an interrupt but hasn't been converted
to attach with the fdt.

ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 03:51:36

Modified files:
	lib/libXfixes  : ChangeLog Makefile.in aclocal.m4 config.h.in 
	                 configure configure.ac 
	lib/libXfixes/man: Makefile.in 
	lib/libXfixes/src: Makefile.in Xfixesint.h 
Added files:
	lib/libXfixes  : compile 

Log message:
Update to libXfixes 5.0.2. No functional changes.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 03:56:29

Modified files:
	lib/libXi      : ChangeLog Makefile.in configure configure.ac 
	lib/libXi/src  : XChDProp.c XExtInt.c XGMotion.c XGetCPtr.c 
	                 XGetDCtl.c XGetFCtl.c XGetKMap.c XGetMMap.c 
	                 XGetProp.c XGetVers.c XIAllowEvents.c 
	                 XIGrabDevice.c XIHierarchy.c XIProperties.c 
	                 XIQueryDevice.c XIQueryVersion.c XISelEv.c 
	                 XIint.h XListDProp.c XOpenDev.c XQueryDv.c 
Added files:
	lib/libXi      : compile 

Log message:
Update to libXi 1.7.6


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 03:59:49

Modified files:
	proto/inputproto: ChangeLog configure.ac 
	proto/inputproto/specs: Makefile.am XI2proto.txt 

Log message:
Update to inputproto 2.3.2. only documentation updates


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/06 04:07:45

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/omap: files.omap if_cpsw.c intc.c omap.c 
	                     omap_com.c ommmc.c ti_iic.c 
	share/man/man4/man4.armv7: intc.4 omap.4 

Log message:
Dynamically attach intc(4) using the FDT and switch omap/am335x
drivers that use the FDT over to the FDT interrupt establish API.

ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 04:57:55

Modified files:
	proto/videoproto: ChangeLog Xv.h compile configure.ac 

Log message:
Update to videoproto 2.3.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 04:58:40

Modified files:
	proto/x11proto : ChangeLog HPkeysym.h Xpoll.h.in configure.ac 

Log message:
Update to x11proto 7.0.29


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/06 05:04:47

Modified files:
	sys/arch/arm/cortex: ampintc.c 

Log message:
Rework ampintc's interrupt disestablish code to make it actually do
its job.  Recalculate the mask after the handler is taken from the
list to properly set the new prioritization.

ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 05:08:41

Modified files:
	app/xkbcomp    : ChangeLog configure configure.ac expr.c 
	                 listing.c parseutils.c symbols.c 

Log message:
Update to xkbcomp 1.3.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 05:15:37

Modified files:
	app/xinput     : ChangeLog Makefile.in aclocal.m4 configure 
	                 configure.ac 
	app/xinput/man : Makefile.in 
	app/xinput/src : Makefile.in property.c test_xi2.c 
Added files:
	app/xinput     : compile 

Log message:
Update to xinput 1.6.2


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/06 05:16:08

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	www
Changes by:	tim@cvs.openbsd.org	2016/08/06 07:13:19

Modified files:
	.              : plus.html 

Log message:
Bump version. Noticed by bytevolcano at safe-mail dot net.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/06 08:29:48

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Fix multicast mode (destination is a multicast IP): the BCAST and
MCAST flags have to be cleared from the mbuf after decapsulating
packets.  This fixes tunneled broadcast packets, eg. ARP.  It used to
work before the input path was changed the flags got cleared later in
the stack.

OK yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/06 08:33:33

Modified files:
	sys/net        : if_vxlan.c if_vxlan.h 

Log message:
Add support for IPv6 tunnel endpoints.  This currently only works for
unicast mode, multicast is not yet supported.

ifconfig vxlan0 tunnel fd00::1 fd00::2

Roughly based on an earlier diff by goda@
OK yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/06 08:41:14

Modified files:
	regress/usr.bin/jot: regress.sh 
Added files:
	regress/usr.bin/jot: regress.rdhhh.out regress.rhdhh.out 

Log message:
If you see code like this, you know something's quite wrong
(present in some form since r1.1, still present in r1.31):

229                 case 013:
230                         if (randomize)
231                                 begin = BEGIN_DEF;
232                         else if (reps == 0)
233                                 errx(1, "Must specify begin if reps == 0");
234                         begin = ender - reps * s + s;

Add two tests that check for the intended behavior.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/06 09:17:50

ports/devel/leatherman/patches

Update of /cvs/ports/devel/leatherman/patches
In directory cvs.openbsd.org:/tmp/cvs-serv13214/patches

Log Message:
Directory /cvs/ports/devel/leatherman/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/06 09:18:52

Added files:
	devel/leatherman/patches: patch-curl_tests_client_test_cc 
	                          patch-curl_tests_mock_curl_cc 

Log message:
fix compilation with curl 7.50.0; from upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/06 09:40:21

src/regress/usr.bin/jot/obj

Update of /cvs/src/regress/usr.bin/jot/obj
In directory cvs.openbsd.org:/tmp/cvs-serv21504/obj

Log Message:
Directory /cvs/src/regress/usr.bin/jot/obj added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/06 09:46:33

Modified files:
	regress/usr.bin/jot: regress.sh 
Added files:
	regress/usr.bin/jot: regress.dbbd.out regress.dbbh.out 
	                     regress.ddhd3.out regress.ddhh3.out 
	                     regress.dhdd3.out regress.dhdh3.out 
	                     regress.dhhd3.out regress.dhhd4.out 
	                     regress.dhhh3.out regress.dhhh4.out 
	                     regress.hbbd.out regress.hbbh.out 
	                     regress.hdhd3.out regress.hdhd4.out 
	                     regress.hdhh3.out regress.hdhh4.out 
	                     regress.hhdd3.out regress.hhdd4.out 
	                     regress.hhdh3.out regress.hhdh4.out 
	                     regress.hhhd3.out regress.hhhd4.out 
	                     regress.hhhh3.out regress.hhhh4.out 

Log message:
Add more tests for better code coverage:
What happens if begin and end are reversed?  What if they are equal?

While there, add a few comments on the purpose of the tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/06 10:30:07

Modified files:
	lang/moarvm    : Makefile distinfo 
	lang/moarvm/patches: patch-Configure_pl 
	lang/moarvm/pkg: PLIST 
Removed files:
	lang/moarvm/patches: patch-src_6model_reprs_P6bigint_c 
	                     patch-src_math_bigintops_c 

Log message:
Update to 2016.07; similar diff from Caspar Schutijser on ports@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/06 10:30:53

Modified files:
	lang/nqp       : Makefile distinfo 

Log message:
Update to 2016.07; similar diff from Caspar Schutijser.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/06 10:31:37

Modified files:
	lang/rakudo    : Makefile distinfo 
	lang/rakudo/pkg: PLIST 
Removed files:
	lang/rakudo/patches: patch-tools_build_Makefile-Moar_in 
	                     patch-tools_build_install-core-dist_pl 

Log message:
Update to 2016.07; similar diff from Caspar Schutijser.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/06 10:46:25

Modified files:
	sys/arch/arm/include: armreg.h 
	sys/arch/arm/arm: cpufunc_asm_armv7.S pmap7.c 

Log message:
Put page tables in normal cachable memory on armv7.  Check if the MMU walks
the page tables coherently and also skip flushing modified ptes out of the
cache in that case.  Speeds up building a kernel with a factor of two on
Cortex-A9 (tested by me) and Cortex-A8 (tested by mglocker@).

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/06 11:12:34

Added files:
	sys/dev/ofw    : ofw_pinctrl.c ofw_pinctrl.h 

Log message:
Add a generic pinctrl "framework".

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/06 11:16:13

Modified files:
	sys/arch/arm/conf: files.arm 
	sys/arch/armv7/conf: files.armv7 

Log message:
Build ofw_pinctrl.o and ofw_gpio.o on armv7.  The latters here from the
generic arm files list.  There is no point in building it on armish or
zaurus.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/06 11:18:38

Modified files:
	sys/arch/armv7/imx: if_fec.c imxehci.c imxesdhc.c imxgpc.c 
	                    imxiic.c imxiomuxc.c imxiomuxcvar.h 
	                    imxuart.c 

Log message:
Switch imx over to the generic pinctrl API.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/06 11:25:15

Modified files:
	sys/arch/arm/cortex: ampintc.c 
	sys/arch/armv7/armv7: intr.c 
	sys/arch/armv7/include: intr.h 

Log message:
Extend the interrupt controller API with a disestablish functionality.
This will be helpful for interrupt combiner that need to re-establish
their main interrupt when their interrupt priorities change.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/06 12:12:13

Modified files:
	sys/arch/armv7/imx: imxgpio.c imxgpiovar.h 

Log message:
Implement interrupt controller functionality in the i.MX6 GPIO
driver.  This allows us to use to hook up the Ethernet interrupt
on the Nitrogen6x, SabreLite and WandBoard like it's described
in the device tree.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/06 12:18:48

Modified files:
	sys/arch/arm/cortex: ampintc.c 

Log message:
Always allocate intrhand with M_WAITOK.

Requested by and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/06 12:21:34

Modified files:
	sys/arch/armv7/omap: intc.c omgpio.c 
	sys/arch/armv7/sunxi: sxiintc.c 

Log message:
Always allocate intrhand with M_WAITOK.

Requested by and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 13:16:09

Modified files:
	lib/libc/arch/arm: SYS.h 
	lib/libc/arch/arm/gen: _setjmp.S divsi3.S setjmp.S sigsetjmp.S 
	lib/libc/arch/arm/string: _memcpy.S bcopy.S bzero.S ffs.S 
	                          memcmp.S memcpy.S memmove.S memset.S 
	                          strcmp.S strncmp.S 
	lib/libc/arch/arm/sys: Ovfork.S brk.S cerror.S sbrk.S 
	                       sigpending.S sigprocmask.S sigsuspend.S 
	                       tfork_thread.S 
Added files:
	lib/libc/arch/arm: DEFS.h 

Log message:
Use internal names for __errno, _memcpy, memset, and {,_}{set,long}jmp
Eliminate pointless use of PIC_SYM()
Split out DEFS.h from SYS.h like some other archs

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/06 13:56:51

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

Log message:
reset timeout to null when relooping


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/06 15:21:06

Modified files:
	distrib/sets/lists/base: md.alpha md.amd64 md.armish md.armv7 
	                         md.hppa md.i386 md.landisk md.loongson 
	                         md.luna88k md.macppc md.octeon md.sgi 
	                         md.socppc md.sparc md.sparc64 md.zaurus 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/06 16:19:48

Modified files:
	faq            : index.html faq10.html 

Log message:
expand on the "applying patches" section by detailing how base and port
updates are handled in the current/stable/release branches.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/06 16:56:12

Modified files:
	.              : errata58.html errata59.html errata60.html 

Log message:
release perl and relayd errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2016/08/06 18:21:57

Modified files:
	sys/dev/usb    : if_ure.c if_urereg.h 

Log message:
add $OpenBSD$ tags


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/06 19:33:52

Modified files:
	multimedia/libvpx: Makefile distinfo 
	multimedia/libvpx/patches: patch-build_make_Makefile 
	                           patch-configure patch-examples_mk 
	                           patch-libs_mk 

Log message:
Update to libvpx-1.6.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:02:57

Modified files:
	sys/arch/arm/include: setjmp.h 
	lib/libc/arch/arm/gen: _setjmp.S setjmp.S 

Log message:
Add XOR cookies for lr and sp.  Stop saving/restoring r12 to/from the jmpbuf.
Switch from calling obsolete sig{block,setmask} to directly using the
sigprocmask syscall.

ok deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:28:12

Modified files:
	lib/csu        : boot.h 

Log message:
Flip the #ifdef logic: amd64, i386, and mips64 were the only static PIE
archs using the #else case


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:30:04

Modified files:
	lib/csu        : boot.h 

Log message:
Psych: amd64 has been passing &_DYNAMIC to _dl_boot_bind() for 19 months


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:30:55

Modified files:
	lib/csu/i386   : md_init.h 
	lib/csu        : boot.h 

Log message:
Teach i386 to pass &_DYNAMIC to _dl_boot_bind()


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:34:52

Modified files:
	lib/csu        : boot.h 
	lib/csu/alpha  : md_init.h 

Log message:
alpha already calculates &_DYNAMIC for the _reloc_alpha_got() call, so
save that and pass it to _dl_boot_bind() too


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:44:00

Modified files:
	lib/csu/mips64 : md_init.h 
	lib/csu        : boot.h 

Log message:
Teach mips64 to pass &_DYNAMIC to _dl_boot_bind().

mips64be testing by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:57:19

Modified files:
	libexec/ld.so  : boot.c 

Log message:
Flip the #ifdef logic: amd64, arm, i386, and mips64 are the only archs
using the #else case


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 20:59:27

Modified files:
	libexec/ld.so  : boot.c 

Log message:
hahahah: amd64 has been passing &_DYNAMIC to _dl_boot_bind() for
*149 months*


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 21:01:53

Modified files:
	libexec/ld.so/mips64: ldasm.S 
	libexec/ld.so  : boot.c 

Log message:
Teach mips64 to pass &_DYNAMIC to _dl_boot_bind()

mips64be testing by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 21:03:44

Modified files:
	libexec/ld.so  : boot.c 
	libexec/ld.so/i386: ldasm.S 

Log message:
Teach i386 to pass &_DYNAMIC to _dl_boot_bind()


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/06 21:05:23

Modified files:
	libexec/ld.so  : boot.c 
	libexec/ld.so/alpha: ldasm.S 

Log message:
As with csu, alpha passes &_DYNAMIC to _reloc_alpha_got(), so just
save that and pass it to _dl_boot_bind() too


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/06 21:27:21

Modified files:
	lib/libcrypto/crypto: getentropy_aix.c getentropy_freebsd.c 
	                      getentropy_hpux.c getentropy_linux.c 
	                      getentropy_netbsd.c getentropy_osx.c 
	                      getentropy_solaris.c getentropy_win.c 

Log message:
Update the link for the getentropy(2) manual to man.openbsd.org/

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2016/08/07 00:41:39

Modified files:
	emulators/nestopia: Makefile 

Log message:
Bump revision

Ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/07 01:33:05

Modified files:
	lang/php/7.0   : Makefile 

Log message:
BROKEN-sparc64: SIGBUS during phar generation


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/07 01:53:45

Modified files:
	usr.sbin/relayd: Tag: OPENBSD_6_0 relay_http.c relayd.c relayd.h 

Log message:
Improve parsing of the Host-header by following RFC 7230 Section 5.4 more
strictly. MFC relay_http.c v 1.57, relayd.c v 1.154, relayd.h v 1.224


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/07 01:54:07

Modified files:
	usr.sbin/relayd: Tag: OPENBSD_5_9 relay_http.c relayd.c relayd.h 

Log message:
Improve parsing of the Host-header by following RFC 7230 Section 5.4 more
strictly. MFC relay_http.c v 1.57, relayd.c v 1.154, relayd.h v 1.224


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/07 01:54:42

Modified files:
	usr.sbin/relayd: Tag: OPENBSD_5_8 relay_http.c relayd.c relayd.h 

Log message:
Improve parsing of the Host-header by following RFC 7230 Section 5.4 more
strictly. MFC relay_http.c v 1.57, relayd.c v 1.154, relayd.h v 1.224


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/07 02:59:25

Modified files:
	usr.bin/pkg-config: pkg-config 

Log message:
Update online manual path to man.openbsd.org.

ok espie


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/07 04:00:40

Modified files:
	fonts/fantasque-sans: Makefile 

Log message:
Mark BROKEN on sparc64 & macppc: fontforge doesn't validate fonts.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/07 07:49:12

Modified files:
	sys/net        : if_vxlan.c if_vxlan.h 

Log message:
Define VXLAN_VNI_UNSET and VXLAN_VNI_MAX instead of using magic numbers.
No functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/07 08:26:26

Modified files:
	sys/net        : if_vxlan.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/07 09:54:25

src/sys/arch/armv7/broadcom

Update of /cvs/src/sys/arch/armv7/broadcom
In directory cvs.openbsd.org:/tmp/cvs-serv9475/broadcom

Log Message:
Directory /cvs/src/sys/arch/armv7/broadcom added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/07 10:01:35

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

Log message:
Update net/corebird to 1.3

upstream changelog:
- The build system will now check for gtksink
- Remove libgee dependency
- The compose tweet window will now a save the current text on cancel
- Allow self-retweeting
- Fade loaded inline media in
- Twitter wont send mp4 urls for their videos anymore starting August 1st, so
support HLS videos
- Query full-length DMs
- Support muting in profiles

OK abieber@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/07 11:46:36

Modified files:
	sys/arch/armv7/armv7: platform.c 
	sys/arch/armv7/conf: GENERIC files.armv7 
Added files:
	sys/arch/armv7/broadcom: bcm2835_dwctwo.c bcm2835_muart.c 
	                         bcm2836_intr.c files.broadcom 

Log message:
Initial support for Raspberry Pi 2/3.  All the hard work done by patrick@, I
just cleaned things up a bit.  Any bugs introduced in that process are
entirely mine.

This doesn't work yet.  But when it does, you'll need recent firmware from
the Raspberry Pi Foundation git repository at

https://github.com/raspberrypi/firmware

The device tree for the Raspberry Pi is somewhat in flux as bits and pieces
to support the Raspberry Pi 2 and 3 are committed to the mainline Linux
kernel.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/07 12:00:53

Modified files:
	sys/arch/armv7/conf: RAMDISK 

Log message:
Add the Raspberry Pi 2/3 devices here as well.

Spotted by patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/07 12:43:18

Modified files:
	sys/arch/armv7/broadcom: bcm2836_intr.c 

Log message:
Use the device tree to lookup the address of the ARM control logic and remove
some debug crap that I accidentally committed.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/07 13:59:07

Modified files:
	gnu/usr.bin/binutils-2.17/ld: ldlang.c 

Log message:
If an output section is skipped because of a constraint, then skip it
when generating the link map output (-M) too

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/07 14:00:39

Modified files:
	gnu/usr.bin/binutils-2.17/ld: genscripts.sh 
	gnu/usr.bin/binutils-2.17/ld/emultempl: elf32.em 

Log message:
Since we have kbind(2), we don't need -znow to use -zrelro

ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/07 15:27:36

Modified files:
	app/xterm      : Imakefile MANIFEST Tekproc.c XTerm.ad button.c 
	                 cachedGCs.c charproc.c configure.in ctlseqs.ms 
	                 ctlseqs.txt cursor.c data.c data.h doublechr.c 
	                 fontutils.c graphics.c graphics.h 
	                 graphics_regis.c graphics_regis.h 
	                 graphics_sixel.c graphics_sixel.h input.c 
	                 keysym2ucs.c main.c menu.c menu.h misc.c 
	                 precompose.c print.c ptydata.c ptyx.h 
	                 scrollback.c scrollbar.c termcap terminfo 
	                 trace.c trace.h util.c uxterm.desktop version.c 
	                 version.h wcwidth.c xstrings.c 
	                 xterm.appdata.xml xterm.dat xterm.desktop 
	                 xterm.h xterm.log.html xterm.man xtermcap.c 
	                 xtermcfg.h xtermcfg.hin 
	app/xterm/package: xterm.spec 
	app/xterm/package/debian: changelog rules 
	app/xterm/package/freebsd: Makefile 
	app/xterm/unicode: README convmap.pl keysym.map 
	                   precompose.c.tail 
Added files:
	app/xterm      : html.c svg.c 

Log message:
Update to xterm-325. Testing by krw@, shadchin@ and naddy@. Thanks


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/07 15:28:11

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/07 15:40:20

Modified files:
	net/lftp       : Makefile distinfo 
	net/lftp/patches: patch-configure 

Log message:
update to 4.7.3; from maintainer Rafael Sadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/07 17:06:39

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

Log message:
Make iwm(4) automagically recover from fatal firmware errors by leaving the
interface marked UP and scheduling the init task. Matches iwn(4) behaviour.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/07 18:40:58

Modified files:
	.              : ddb.html 

Log message:
zap stray '>' and shorten some links.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/08/08 01:24:27

Modified files:
	usr.sbin/switchd: ofcconn.c 

Log message:
Split ofcconn into switch part and connection part to make the switch
part be able to have multiple connections.

ok reyk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/08 01:35:38

Added files:
	graphics/ctl/patches: patch-ctlrender_tiff_file_cc 
	                      patch-lib_IlmCtl_CtlExc_cpp 
	                      patch-lib_IlmCtl_CtlTypeStorage_cpp 
	                      patch-lib_dpx_dpx_util_cc 

Log message:
Fix alloca.h remnants.

These remnants weren't catched up before, because previously cmake
was just issuing a warning for missing includes:

/usr/ports/pobj/ctl-1.5.2/CTL-ctl-1.5.2/lib/IlmCtl/CtlTypeStorage.cpp:67:20: warning: alloca.h: No such file or directory

While now (cmake>=3.6) it properly errors out.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/08 01:44:48

Modified files:
	devel/cmake    : Makefile distinfo 
	devel/cmake/patches: patch-CMakeLists_txt 
	                     patch-Modules_Compiler_GNU_cmake 
	                     patch-Modules_FindBoost_cmake 
	                     patch-Modules_FindJNI_cmake 
	                     patch-Modules_FindLua_cmake 
	                     patch-Modules_FindQt4_cmake 
	                     patch-Source_cmComputeLinkInformation_cxx 
	                     patch-Source_cmGeneratorTarget_cxx 
	                     patch-Source_cmInstallCommand_cxx 
	                     patch-Source_cmTarget_cxx 
	                     patch-Source_cmake_cxx 
	                     patch-Source_kwsys_SystemTools_cxx 
	devel/cmake/pkg: PLIST 

Log message:
Update to CMake-3.6.1.

Tested in a bulk build by naddy@: the one and only fallout has been
fixed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/08 02:06:54

Modified files:
	audio/mpd      : Makefile distinfo 
	audio/mpd/patches: patch-Makefile_in patch-configure 

Log message:
Update to mpd-0.19.18


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/08/08 02:22:29

Modified files:
	usr.sbin/switchd: ofcconn.c 

Log message:
Fix previous.  Obvously the condition is reversed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/08 02:58:27

Modified files:
	devel/gdb      : Makefile distinfo 

Log message:
Update to gdb 7.11.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/08/08 03:06:46

Modified files:
	devel/afl      : Makefile distinfo 
	devel/afl/patches: patch-Makefile 
	devel/afl/pkg  : PLIST 

Log message:
update to afl 2.29b


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/08 03:06:47

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
ARMv7 data caches are "effectively" PIPT.  This means there is in general
no need to clean and/or invalidate cached pages.  So remove most of the
cache cleaning and invalidation from the pmap.  We still need to synchronize
the instruction cache with the data cache in various places though.  And we
also need to make sure that we clean and invalidate when we make a page
non-cachable.

Tested by Daniel Bolgheroni, mglocker@ and jsg@. on Cortex-A8 and myself on
Cortex-A9.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/08 04:10:56

Modified files:
	sys/arch/armv7/imx: imxesdhc.c 

Log message:
Implement mmc power sequencing; makes the sdo interface on the cubox-i work
and see the BCM4330 wireless (for which we don't have a driver yet).

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/08 04:53:52

Modified files:
	net/sbm        : Makefile distinfo 

Log message:
Update to sbm-0.8, adding support for SIGINFO.

From upstream/maintainer Dimitris Papastamos


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/08 06:02:23

ports/devel/py-cffi/patches

Update of /cvs/ports/devel/py-cffi/patches
In directory cvs.openbsd.org:/tmp/cvs-serv61676/patches

Log Message:
Directory /cvs/ports/devel/py-cffi/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/08 06:16:43

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.20.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/08 06:17:04

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.20.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/08 06:17:23

Modified files:
	mail/evolution-ews: Makefile distinfo 

Log message:
Update to evolution-ews-3.20.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/08 07:09:35

Modified files:
	net/p5-Socket6 : Makefile distinfo 

Log message:
update p5-Socket6 to 0.28


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/08 07:09:36

Modified files:
	sys/netinet6   : in6.c 

Log message:
Execute address hooks in the update case.

This matches what IPv4 is doing and unbreak carp(4) when the same
address is set twice, for example when running netstart(8) multiple
times.

Issue reported by and fix from Simon Mages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/08 08:14:01

Modified files:
	graphics/openimageio: Makefile distinfo 
	graphics/openimageio/patches: patch-src_libutil_sysutil_cpp 
	graphics/openimageio/pkg: PLIST 

Log message:
Update to OpenImageIO 1.6.16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/08 08:14:18

Modified files:
	graphics/blender: Makefile distinfo 

Log message:
Update to blender 2.77a.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/08 08:45:31

Modified files:
	faq            : upgrade60.html 

Log message:
Provide a shorter alternative for the long list of tar commands.
With input from halex@

While there, tweak vertical spacing after </pre> a bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/08 08:47:52

Modified files:
	sys/arch/arm/include: pmap.h 
	sys/arch/arm/arm: pmap7.c 
	sys/arch/arm/armv7: armv7_space.c 

Log message:
Mapping non-cachable memory as cachable and subsequently changing the mapping
to non-cachable is retarded.  Fix this by introducing PMAP_NOCACHE and
PMAP_DEVICE flags that can be or'ed into the physical address passed to
pmap_kenter(9), like we have on many of our other architectures.  This way we
can also properly distinguish between device memory and normal (non-cachable)
memory.

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/08 09:05:17

Modified files:
	multimedia/mpv : Makefile distinfo 

Log message:
update to mpv-0.18.1


CVSROOT:	/cvs
Module name:	src
Changes by:	sobrado@cvs.openbsd.org	2016/08/08 09:09:33

Modified files:
	usr.bin/vi/build: recover 
	usr.bin/vi/docs: help 
	usr.bin/vi/docs/USD.doc/vi.man: vi.1 
	usr.bin/vi/docs/USD.doc/vi.ref: set.opt.roff vi.ref 

Log message:
/tmp and /var/tmp are the same, consistently use the former in both
build/recover and documentation.

ok millert@, tb@, martijn@ and schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/08 09:27:25

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.034


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/08 10:08:15

Modified files:
	security/p5-Net_SSLeay: Makefile distinfo 

Log message:
update p5-Net-SSLeay to 1.77


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/08 10:09:41

Modified files:
	sysutils/borgbackup: Makefile distinfo 
	sysutils/borgbackup/pkg: PLIST 

Log message:
update to borgbackup-1.0.6

From Björn Ketelaars, no objection from maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/08 10:20:39

Modified files:
	www/chromium   : Makefile 

Log message:
add ax_gen into prebuild


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/08 10:39:06

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

Log message:
Fixup incorrect format specification bugs spotted by jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/08/08 10:45:51

Modified files:
	usr.sbin/ldpd  : labelmapping.c lde.c log.c 

Log message:
Normalize the received prefixes.

We need to use ldp_applymask() to normalize the received
prefixes. Example: 10.1.1.0/16 -> 10.1.0.0/16.

Additionally, stop using IANA's AF numbers in map->fec.prefix.af and use
AF_INET/AF_INET6 instead. This makes the code much simpler, use AF_IPV[46]
only when necessary (decoding/encoding prefixes).

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/08/08 10:48:53

Modified files:
	usr.sbin/eigrpd: eigrpe.c log.c rde.c 

Log message:
rde and eigrpe should use exit(3) instead of _exit(2)

Since recently these processes call exec() after fork(), so they should
stop using _exit(2) and use exit(3) instead when shutting down.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/08 10:49:17

Modified files:
	usr.sbin/switchd: control.c 

Log message:
Handle imsg_read() EAGAIN like the man page code example.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/08 10:52:15

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

Log message:
Create socket with SOCK_NONBLOCK instead of using fcntl() without the
proper flag handling.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/08 11:15:51

Modified files:
	sys/uvm        : uvm_mmap.c 

Log message:
W^X violations are only permitted for binaries marked "wxneeded" on
"wxallowed" filesystems.  mmap(2) & mprotect(2) now return ENOTSUP.
(To diagnose buggy programs, consider using sysctl kern.wxabort=1 and
looking at the coredumps)
ok kettenis tedu naddy


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/08 11:38:38

Modified files:
	faq            : current.html 

Log message:
mention W^X enforcement regime


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/08 11:45:41

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-CMakeLists_txt 
	                  patch-cmake_FindGDAL_cmake 
	                  patch-cmake_FindGEOS_cmake 
	                  patch-cmake_FindPostgres_cmake 
	                  patch-doc_CMakeLists_txt 
	                  patch-src_app_qgisapp_cpp 
	                  patch-src_core_CMakeLists_txt 
	                  patch-src_core_qgsapplication_cpp 
	                  patch-src_server_CMakeLists_txt 
	geo/qgis/pkg   : PLIST 
Added files:
	geo/qgis/patches: patch-python_core___init___py patch-utf 
Removed files:
	geo/qgis/patches: patch-scripts_pyuic4-wrapper_py 
	                  patch-scripts_pyuic4-wrapper_sh 

Log message:
Update to QGIS 2.16.1.

See http://changelog.qgis.org/en/qgis/version/2.16.0/.

Add two patches reverting selected chunks of upstream commits leading to
segfaults in python/sip initializations, until if figure out what's
wrong in upstream ticket #15347, hopefully at g2k16. With those two
commits reverted, it runs fine...


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/08 12:13:51

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

Log message:
trim the dsaparam section; ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/08 12:36:19

Modified files:
	multimedia/motion: Makefile 
	multimedia/motion/pkg: DESCR 

Log message:
tweak DESCR (if->whether), prompted by a different diff from Michael McConville


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/08 13:27:12

Modified files:
	sys/arch/zaurus/zaurus: zaurus_machdep.c 
	sys/arch/armish/armish: armish_machdep.c 
	sys/arch/arm/arm: arm32_machdep.c 
	sys/arch/armv7/armv7: armv7_machdep.c 

Log message:
Move the cpu_setup() call to the end of initarm().  On Cortex-A53 processors
atomic instructions don't work unless the data cache is enabled.  This happens
in cpu_setup(), but that gets currently called from cpu_startup() which runs
after a number of kernel subsystems have been initialized.  Since some of
these subsystems use locks, which need atomic instructions, we fault on
Cortex-A53.  Since at the end of initarm() we're done setting up the pmap
and initializing other low-level sense, calling cpu_setup() here makes much
more sense.

Remove setting up proc0paddr as well from cpu_startup(), since that already
happens in initarm().

Tested on zaurus by deraadt@.

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/08/08 15:38:42

Modified files:
	usr.sbin/eigrpd: eigrpd.c eigrpd.h 

Log message:
Simplify shutdown process

On shutdown, there's no need to use kill(2) to kill the child
processes. Just closing the IPC sockets will make the children receive
an EOF, break out from the event loop and then exit.

This "pipe teardown" removes a PID reuse race condition, makes the code
simpler and allow us to remove "proc" from pledge.

OK and tweaks from claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/08/08 15:42:14

Modified files:
	usr.sbin/ldpd  : lde.c ldpe.c log.c 

Log message:
Use exit(3) instead of _exit(2) in the child processes.

Since recently the child processes call exec() after fork(), so they should
stop using _exit(2) and use exit(3) instead when shutting down.

Ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/08/08 15:44:00

Modified files:
	usr.sbin/bgpd  : log.c rde.c session.c 

Log message:
Use exit(3) instead of _exit(2) in the child processes.

Since recently the child processes call exec() after fork(), so they
should stop using _exit(2) and use exit(3) instead when shutting down.

Ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/08 15:59:20

Modified files:
	libexec/ld.so  : library.c library_mquery.c loader.c resolve.c 
	                 resolve.h 

Log message:
Look for a PT_GNU_RELRO section per object and, if present, mprotect that
range instead of the [__got_start, __got_end) range.
On many archs this will cover _DYNAMIC too, so move up the DT_DEBUG handling
to before relocations and the mprotect are done.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/08 16:05:26

Modified files:
	lib/csu        : boot.h 

Log message:
Look for a PT_GNU_RELRO section and, if present, mprotect that range
instead of the [__got_start, __got_end) range.

Also, instead of mprotecting the [__plt_start, __plt_end) range,
just scan for sections which are both writable and executable and
mprotect them to read-only.  (This part was stolen from kettenis@)

ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	kettenis@cvs.openbsd.org	2016/08/08 16:07:32

Modified files:
	.              : plat.html 

Log message:
Damn, Theo says this is a real platform now.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/08/08 16:40:57

Modified files:
	usr.bin/ssh    : mux.c 

Log message:
Improve error message for overlong ControlPath.  ok markus@ djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:34:05

Modified files:
	mail/lumail    : Makefile 
	mail/mimetic   : Makefile 
	mail/trojita   : Makefile 

Log message:
Remove myself as MAINTAINER. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:34:34

Modified files:
	sysutils/sslmate: Makefile 

Log message:
Remove myself as MAINTAINER. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:35:01

Modified files:
	editors/se     : Makefile 

Log message:
Remove myself as MAINTAINER. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:36:54

Modified files:
	net            : Makefile 

Log message:
Unhook clamz and p5-Net-Abuse-Utils-Spamhaus. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/08/08 19:38:21

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
afl-2.29b distfile was rerolled to change docs
reported by naddy


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:38:27

Removed files:
	net/clamz      : Makefile distinfo 
	net/clamz/patches: patch-Makefile_in 
	net/clamz/pkg  : DESCR PLIST 

Log message:
Remove clamz. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:39:12

Removed files:
	net/p5-Net-Abuse-Utils-Spamhaus: Makefile distinfo 
	net/p5-Net-Abuse-Utils-Spamhaus/pkg: DESCR PLIST 

Log message:
Remove p5-Net-Abuse-Utils-Spamhaus. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:40:52

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add clamz and p5-Net-Abuse-Utils-Spamhaus to quirks


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:41:37

Modified files:
	lang           : Makefile 

Log message:
Unhook mlite. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:42:33

Removed files:
	lang/mlite     : Makefile distinfo 
	lang/mlite/pkg : DESCR PLIST 

Log message:
Remove mlite. ok juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 19:43:33

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add mlite removal to quirks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 20:11:26

Modified files:
	sysutils/login_duo: Makefile distinfo 
	sysutils/login_duo/pkg: PLIST 

Log message:
Update login_duo to 1.9.19


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/08 20:25:35

Modified files:
	sys/kern       : uipc_syscalls.c 
	regress/lib/libpthread/restart/connect: connect.c 

Log message:
When interrupted, connect() should leave the socket connecting in the
background, similar to a non-blocking socket.  Return EALREADY whenever
already connecting, not just for non-blocking sockets.  Fix from {Free,Net}BSD

Prompted by a report from Michael Reed (m.reed (at) mykolab.com)
ok millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/08 20:30:06

Modified files:
	devel/quirks/files: Quirks.pm 

Log message:
Fix missing commas. No bump since I just added these.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/08 21:58:35

Modified files:
	libexec/ld.so/arm: ldasm.S 
	libexec/ld.so  : boot.c 

Log message:
Teach arm to pass &_DYNAMIC to _dl_boot_bind(); can optimize later in tree


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/08 22:28:13

Modified files:
	www/chromium   : Makefile 

Log message:
add another pre-build target


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/08 23:57:01

Modified files:
	sysutils/hotplug-diskmount: Makefile distinfo 
	sysutils/hotplug-diskmount/patches: patch-hotplug-diskmount_8 
Removed files:
	sysutils/hotplug-diskmount/patches: patch-hotplug-diskmount_c 

Log message:
Update to hotplug-diskmount-1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 01:03:26

Modified files:
	mail/mozilla-thunderbird: Makefile 
Added files:
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_js_src_jit_ExecutableAllocator_cpp 

Log message:
Enable nonWritableJitCode to fix mmap W^X violations

OK landry@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 01:16:10

Modified files:
	lib/freetype   : CMakeLists.txt ChangeLog ChangeLog.20 
	                 ChangeLog.21 ChangeLog.22 ChangeLog.23 
	                 ChangeLog.24 ChangeLog.25 Jamfile Makefile 
	                 README shlib_version vms_make.com 
	lib/freetype/builds: exports.mk 
	lib/freetype/builds/cmake: iOS.cmake 
	lib/freetype/builds/unix: config.guess config.sub configure 
	                          configure.ac configure.raw unix-cc.in 
	lib/freetype/builds/wince/vc2005-ce: freetype.sln 
	                                     freetype.vcproj index.html 
	lib/freetype/builds/wince/vc2008-ce: freetype.sln 
	                                     freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2005: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2008: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2010: freetype.sln 
	                                    freetype.vcxproj 
	                                    freetype.vcxproj.filters 
	                                    index.html 
	lib/freetype/builds/windows/visualc: freetype.dsp 
	                                     freetype.vcproj index.html 
	lib/freetype/builds/windows/visualce: freetype.dsp 
	                                      freetype.vcproj index.html 
	lib/freetype/devel: ftoption.h 
	lib/freetype/docs: CHANGES FTL.TXT freetype-config.1 release 
	lib/freetype/docs/reference: 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-pfr_fonts.html 
	                             ft2-quick_advance.html 
	                             ft2-raster.html ft2-sfnt_names.html 
	                             ft2-sizes_management.html 
	                             ft2-system_interface.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/include/freetype: freetype.h ftautoh.h ftcache.h 
	                               ftcffdrv.h ftcid.h ftgzip.h 
	                               ftimage.h ftotval.h ftsystem.h 
	                               ftttdrv.h tttables.h 
	lib/freetype/include/freetype/config: ftoption.h ftstdlib.h 
	lib/freetype/include/freetype/internal: ftdriver.h ftmemory.h 
	                                        ftobjs.h ftrfork.h 
	                                        internal.h tttypes.h 
	lib/freetype/src/autofit: afblue.c afblue.dat afblue.h afcjk.c 
	                          afhints.c afhints.h aflatin.c 
	                          aflatin2.c aflatin2.h afranges.c 
	                          afscript.h afstyles.h aftypes.h 
	lib/freetype/src/base: ftadvanc.c ftbitmap.c fthash.c ftmac.c 
	                       ftobjs.c ftoutln.c ftrfork.c ftstream.c 
	                       md5.c 
	lib/freetype/src/bdf: bdflib.c 
	lib/freetype/src/cache: ftccache.h ftccmap.c ftcmanag.c ftcmru.h 
	lib/freetype/src/cff: cf2error.h cf2hints.h cffdrivr.c 
	                      cffgload.c cffgload.h cffload.c cffobjs.c 
	                      cffparse.c cffparse.h cfftoken.h 
	                      cfftypes.h 
	lib/freetype/src/cid: cidparse.c 
	lib/freetype/src/gxvalid: gxvcommn.c gxvcommn.h gxvjust.c 
	                          gxvkern.c gxvlcar.c gxvmort1.c 
	                          gxvtrak.c 
	lib/freetype/src/gzip: ftgzip.c zlib.h 
	lib/freetype/src/otvalid: otvmath.c 
	lib/freetype/src/pcf: pcfread.c 
	lib/freetype/src/pfr: pfrgload.c pfrload.c pfrobjs.c pfrsbit.c 
	                      pfrtypes.h 
	lib/freetype/src/psaux: psobjs.c 
	lib/freetype/src/pshinter: pshalgo.c pshglob.c 
	lib/freetype/src/raster: ftraster.c 
	lib/freetype/src/sfnt: sfobjs.c ttcmap.c ttpost.c ttpost.h 
	lib/freetype/src/smooth: ftgrays.c 
	lib/freetype/src/tools/docmaker: tohtml.py 
	lib/freetype/src/tools/ftfuzzer: ftfuzzer.cc runinput.cc 
	lib/freetype/src/truetype: ttdriver.c ttgload.c ttgxvar.c 
	                           ttinterp.c ttinterp.h ttobjs.c 
	                           ttsubpix.c ttsubpix.h 
	lib/freetype/src/type1: t1afm.c t1load.c t1objs.c 
	lib/freetype/src/type42: t42parse.c 
Added files:
	lib/freetype/docs: VERSIONS.TXT 
	lib/freetype/src/tools/ftfuzzer: rasterfuzzer.cc 
Removed files:
	lib/freetype/docs: VERSION.DLL 

Log message:
Update to FreeType 2.6.5

ok matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 01:19:53

Modified files:
	.              : 3RDPARTY 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	matthieu@cvs.openbsd.org	2016/08/09 01:38:20

Modified files:
	mail/p5-Email-Send: Makefile 

Log message:
add devel/p5-Module-Pluggable to RUN_DEPENDS.
ok nigel@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 01:53:53

Modified files:
	lib/freetype/docs: documentation.html 
	lib/freetype/docs/design: basic-design.png design-5.html 
	                          detailed-design.png library-model.png 
	                          simple-model.png 
	lib/freetype/docs/glyphs: bbox1.png bbox2.png 
	                          body_comparison.png bravo_kerned.png 
	                          bravo_unkerned.png clipping.png 
	                          down_flow.png glyphs-3.html grid_1.png 
	                          points_conic.png points_conic2.png 
	                          points_cubic.png points_segment.png 
	                          twlewis1.png twlewis2.png up_flow.png 
	lib/freetype/docs/image: BlendingExamples.png 
	                         freetype-262-autohinter-stem-darkening-demo1.png 
	                         freetype-262-autohinter-stem-darkening-demo2.png 
	                         freetype-262-new-old-filter.png 
	lib/freetype/docs/tutorial: example3.cpp metrics.png 
	                            metrics2.png step3.html 
Added files:
	lib/freetype/docs/glyphs: layout.png layout2.png metrics.png 
	                          metrics2.png 
	lib/freetype/docs/image: BlendingExamples-thumbnail.png 
	                         freetype-262-autohinter-stem-darkening-demo1-thumbnail.png 
	                         freetype-262-autohinter-stem-darkening-demo2-thumbnail.png 
	                         freetype-262-new-old-filter-thumbnail.png 
Removed files:
	lib/freetype/docs/glyphs: Image1.png Image2.png Image3.png 
	                          Image4.png 
	lib/freetype/docs/image: BlendingExamples-thumbnail.jpg 
	                         freetype-262-autohinter-stem-darkening-demo1-thumbnail.jpg 
	                         freetype-262-autohinter-stem-darkening-demo2-thumbnail.jpg 
	                         freetype-262-new-old-filter-thumbnail.jpg 

Log message:
Update to freetype-doc-2.6.5


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 02:13:57

Removed files:
	lib/freetype/docs/design: basic-design.png detailed-design.png 
	                          library-model.png simple-model.png 
	lib/freetype/docs/glyphs: bbox1.png bbox2.png 
	                          body_comparison.png bravo_kerned.png 
	                          bravo_unkerned.png clipping.png 
	                          down_flow.png grid_1.png layout.png 
	                          layout2.png metrics.png metrics2.png 
	                          points_conic.png points_conic2.png 
	                          points_cubic.png points_segment.png 
	                          twlewis1.png twlewis2.png up_flow.png 
	lib/freetype/docs/image: BlendingExamples-thumbnail.png 
	                         BlendingExamples.png favicon.ico 
	                         favicon_-30.ico favicon_-60.ico 
	                         favicon_-90.ico favicon_30.ico 
	                         favicon_60.ico favicon_90.ico 
	                         fond2-small.png fond2.png fond3.jpg 
	                         fond3.png fond3_-30.png fond3_-60.png 
	                         fond3_-90.png fond3_30.png fond3_60.png 
	                         fond3_90.png 
	                         freetype-262-autohinter-stem-darkening-demo1-thumbnail.png 
	                         freetype-262-autohinter-stem-darkening-demo1.png 
	                         freetype-262-autohinter-stem-darkening-demo2-thumbnail.png 
	                         freetype-262-autohinter-stem-darkening-demo2.png 
	                         freetype-262-new-old-filter-thumbnail.png 
	                         freetype-262-new-old-filter.png 
	                         freetype.jpg top.gif 
	lib/freetype/docs/tutorial: metrics.png metrics2.png 

Log message:
Remove binary files


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 02:16:45

Added files:
	lib/freetype/docs/design: basic-design.png detailed-design.png 
	                          library-model.png simple-model.png 
	lib/freetype/docs/glyphs: bbox1.png bbox2.png 
	                          body_comparison.png bravo_kerned.png 
	                          bravo_unkerned.png clipping.png 
	                          down_flow.png grid_1.png layout.png 
	                          layout2.png metrics.png metrics2.png 
	                          points_conic.png points_conic2.png 
	                          points_cubic.png points_segment.png 
	                          twlewis1.png twlewis2.png up_flow.png 
	lib/freetype/docs/image: BlendingExamples-thumbnail.png 
	                         BlendingExamples.png favicon.ico 
	                         favicon_-30.ico favicon_-60.ico 
	                         favicon_-90.ico favicon_30.ico 
	                         favicon_60.ico favicon_90.ico 
	                         fond2-small.png fond2.png fond3.jpg 
	                         fond3.png fond3_-30.png fond3_-60.png 
	                         fond3_-90.png fond3_30.png fond3_60.png 
	                         fond3_90.png 
	                         freetype-262-autohinter-stem-darkening-demo1-thumbnail.png 
	                         freetype-262-autohinter-stem-darkening-demo1.png 
	                         freetype-262-autohinter-stem-darkening-demo2-thumbnail.png 
	                         freetype-262-autohinter-stem-darkening-demo2.png 
	                         freetype-262-new-old-filter-thumbnail.png 
	                         freetype-262-new-old-filter.png 
	                         freetype.jpg top.gif 
	lib/freetype/docs/tutorial: metrics.png metrics2.png 

Log message:
Re-add binary files using 'cvs add -kb'


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 02:25:20

Modified files:
	devel/hs-async : Makefile distinfo 
	devel/hs-enclosed-exceptions: Makefile 
	devel/hs-lifted-async: Makefile 
	devel/hs-shelly: Makefile 

Log message:
Update to hs-async-2.1.0

Ok kili@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/09 02:33:32

Modified files:
	databases/hs-hedis: Makefile distinfo 

Log message:
Update to hedis-0.9.3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/09 05:04:46

Modified files:
	bin/ksh        : emacs.c 

Log message:
In emacs incremental search mode (^R),
make commands starting with the escape key (^[) work as documented.
Long-standing bug, this time reported by Dave minus Cohen dot com.
OK natano@ halex@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/09 05:16:53

Modified files:
	sysutils/duplicity: Makefile distinfo 
	sysutils/duplicity/patches: patch-bin_duplicity 
	sysutils/duplicity/pkg: PLIST 

Log message:
update to duplicity-0.7.09

Tested by Rune Pade, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2016/08/09 06:00:00

Modified files:
	graphics/gimp/stable: Makefile 
Added files:
	graphics/gimp/stable/patches: patch-app_core_gimptagcache_c 

Log message:
Guard against printf("%s", NULL) that can be hit on exit and in the
open dialog.

ok giovanni


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/09 06:06:58

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

Log message:
Document that connect goes async when interrupted by signal.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/09 06:09:40

Modified files:
	usr.bin/ftp    : ftp.c 

Log message:
When connect(2) is interrupted by a signal it continues asynchronously
and you need to do the same poll(2) dance as if the socket was
non-blocking.  Fixes a crash when the window is resized while
connecting.  OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/09 06:43:02

Modified files:
	mail/evolution : Makefile 

Log message:
Link with --as-needed again; otherwise it takes 60 seconds or so to start
evolution.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/09 07:13:51

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
The page tables are cached now, and given the significant speedup, I
don't think we'll ever go back.  So let's ditch the code that tries to
check and patch up incorrect memory attributes.

Also realize that pmap_clean_page(pg, FALSE) doesn't do anything
anymore so remove those calls and drop the 2nd argument from
pmap_clean_page(pg, TRUE) calls.

Last but not least, get rid of pmap_pte_init_generic() here.  The only
useful thing it did was setting pmap_copy_page_func() and
pmap_zero_page_func().

This diff should not introduce any change in behaviour.

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2016/08/09 07:45:01

Modified files:
	infrastructure/man/man1: proot.1 

Log message:
elementary mdoc(7) and wording cleanup


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 08:38:10

Modified files:
	.              : 60.html lyrics.html 
Added files:
	images         : 60c_right.jpg 

Log message:
release song #3.  "money" isn't from the same album, but whatever :)


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/09 09:04:35

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

Log message:
Check xs->status for SCSI_CHECK even in underrun situations.

Lets Bacula find the end of medium on LTO5 drive.

Reported & fix tested by Kor son of Rynar.

ok mikeb@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/09 09:08:15

Modified files:
	usr.bin/mandoc : main.c mdoc_validate.c 

Log message:
fix printf("%s", NULL);
found while investigating an unrelated bug report from jsg@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 10:26:30

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

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/09 10:51:48

Modified files:
	.              : lyrics.html 

Log message:
regularily -> regularly


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/08/09 10:52:42

Modified files:
	sys/arch/armv7/sunxi: sxiuart.c 

Log message:
Just re-set the line speed when required.  This fixes a serial console
hang seen on the allwinner,sun5i-r8.

ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/09 11:07:33

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

Log message:
trim the ec text;


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/09 11:34:06

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

Log message:
Expand the asynchronous connect information and move it out of
ERRORS and into a new second paragraph.  Adapted from NetBSD.
OK deraadt@ jmc@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tedu@cvs.openbsd.org	2016/08/09 11:41:23

Modified files:
	lib/freetype   : shlib_version 

Log message:
just dump the major. freetype changes probably extend beyond just the
obviously visible symbol additions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/08/09 11:44:00

Modified files:
	meta/haskell-platform: Makefile 

Log message:
Update devel/hs-async to 2.1.0.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 12:18:01

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

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 12:47:12

Modified files:
	.              : 60.html 

Log message:
sparc64 pkg count


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/09 12:52:59

Modified files:
	sysutils/borgbackup: Makefile 

Log message:
switch maintainership from Michael Reed to Bjorn Ketelaars


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/09 12:54:59

xenocara/dist/fontconfig/fc-blanks

Update of /cvs/xenocara/dist/fontconfig/fc-blanks
In directory cvs.openbsd.org:/tmp/cvs-serv35059/fc-blanks

Log Message:
Directory /cvs/xenocara/dist/fontconfig/fc-blanks added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/09 12:57:45

Modified files:
	dist/fontconfig: ChangeLog INSTALL Makefile.am Makefile.in 
	                 README aclocal.m4 compile config.guess 
	                 config.h.in config.sub configure configure.ac 
	                 depcomp fontconfig.spec fonts.conf.in 
	                 install-sh ltmain.sh missing test-driver 
	dist/fontconfig/conf.d: 10-no-sub-pixel.conf 
	                        10-scale-bitmap-fonts.conf 
	                        30-metric-aliases.conf 45-latin.conf 
	                        60-latin.conf Makefile.am Makefile.in 
	dist/fontconfig/doc: FcAtomicCreate.3 FcAtomicDeleteNew.3 
	                     FcAtomicDestroy.3 FcAtomicLock.3 
	                     FcAtomicNewFile.3 FcAtomicOrigFile.3 
	                     FcAtomicReplaceOrig.3 FcAtomicUnlock.3 
	                     FcBlanksAdd.3 FcBlanksCreate.3 
	                     FcBlanksDestroy.3 FcBlanksIsMember.3 
	                     FcCacheCopySet.3 FcCacheCreateTagFile.3 
	                     FcCacheDir.3 FcCacheNumFont.3 
	                     FcCacheNumSubdir.3 FcCacheSubdir.3 
	                     FcCharSetAddChar.3 FcCharSetCopy.3 
	                     FcCharSetCount.3 FcCharSetCoverage.3 
	                     FcCharSetCreate.3 FcCharSetDelChar.3 
	                     FcCharSetDestroy.3 FcCharSetEqual.3 
	                     FcCharSetFirstPage.3 FcCharSetHasChar.3 
	                     FcCharSetIntersect.3 
	                     FcCharSetIntersectCount.3 
	                     FcCharSetIsSubset.3 FcCharSetMerge.3 
	                     FcCharSetNew.3 FcCharSetNextPage.3 
	                     FcCharSetSubtract.3 
	                     FcCharSetSubtractCount.3 FcCharSetUnion.3 
	                     FcConfigAppFontAddDir.3 
	                     FcConfigAppFontAddFile.3 
	                     FcConfigAppFontClear.3 FcConfigBuildFonts.3 
	                     FcConfigCreate.3 FcConfigDestroy.3 
	                     FcConfigEnableHome.3 FcConfigFilename.3 
	                     FcConfigGetBlanks.3 FcConfigGetCache.3 
	                     FcConfigGetCacheDirs.3 
	                     FcConfigGetConfigDirs.3 
	                     FcConfigGetConfigFiles.3 
	                     FcConfigGetCurrent.3 FcConfigGetFontDirs.3 
	                     FcConfigGetFonts.3 
	                     FcConfigGetRescanInterval.3 
	                     FcConfigGetSysRoot.3 FcConfigHome.3 
	                     FcConfigParseAndLoad.3 FcConfigReference.3 
	                     FcConfigSetCurrent.3 
	                     FcConfigSetRescanInterval.3 
	                     FcConfigSetSysRoot.3 FcConfigSubstitute.3 
	                     FcConfigSubstituteWithPat.3 
	                     FcConfigUptoDate.3 FcDefaultSubstitute.3 
	                     FcDirCacheClean.3 FcDirCacheLoad.3 
	                     FcDirCacheLoadFile.3 FcDirCacheRead.3 
	                     FcDirCacheRescan.3 FcDirCacheUnlink.3 
	                     FcDirCacheUnload.3 FcDirCacheValid.3 
	                     FcDirSave.3 FcDirScan.3 FcFileIsDir.3 
	                     FcFileScan.3 FcFini.3 FcFontList.3 
	                     FcFontMatch.3 FcFontRenderPrepare.3 
	                     FcFontSetAdd.3 FcFontSetCreate.3 
	                     FcFontSetDestroy.3 FcFontSetList.3 
	                     FcFontSetMatch.3 FcFontSetPrint.3 
	                     FcFontSetSort.3 FcFontSetSortDestroy.3 
	                     FcFontSort.3 FcFreeTypeCharIndex.3 
	                     FcFreeTypeCharSet.3 
	                     FcFreeTypeCharSetAndSpacing.3 
	                     FcFreeTypeQuery.3 FcFreeTypeQueryFace.3 
	                     FcGetDefaultLangs.3 FcGetLangs.3 
	                     FcGetVersion.3 FcInit.3 
	                     FcInitBringUptoDate.3 FcInitLoadConfig.3 
	                     FcInitLoadConfigAndFonts.3 
	                     FcInitReinitialize.3 FcIsLower.3 
	                     FcIsUpper.3 FcLangGetCharSet.3 
	                     FcLangNormalize.3 FcLangSetAdd.3 
	                     FcLangSetCompare.3 FcLangSetContains.3 
	                     FcLangSetCopy.3 FcLangSetCreate.3 
	                     FcLangSetDel.3 FcLangSetDestroy.3 
	                     FcLangSetEqual.3 FcLangSetGetLangs.3 
	                     FcLangSetHasLang.3 FcLangSetHash.3 
	                     FcLangSetSubtract.3 FcLangSetUnion.3 
	                     FcMatrixCopy.3 FcMatrixEqual.3 
	                     FcMatrixInit.3 FcMatrixMultiply.3 
	                     FcMatrixRotate.3 FcMatrixScale.3 
	                     FcMatrixShear.3 FcNameConstant.3 
	                     FcNameGetConstant.3 FcNameGetObjectType.3 
	                     FcNameParse.3 FcNameRegisterConstants.3 
	                     FcNameRegisterObjectTypes.3 FcNameUnparse.3 
	                     FcNameUnregisterConstants.3 
	                     FcNameUnregisterObjectTypes.3 
	                     FcObjectSetAdd.3 FcObjectSetBuild.3 
	                     FcObjectSetCreate.3 FcObjectSetDestroy.3 
	                     FcPatternAdd-Type.3 FcPatternAdd.3 
	                     FcPatternAddWeak.3 FcPatternBuild.3 
	                     FcPatternCreate.3 FcPatternDel.3 
	                     FcPatternDestroy.3 FcPatternDuplicate.3 
	                     FcPatternEqual.3 FcPatternEqualSubset.3 
	                     FcPatternFilter.3 FcPatternFormat.3 
	                     FcPatternGet-Type.3 FcPatternGet.3 
	                     FcPatternHash.3 FcPatternPrint.3 
	                     FcPatternReference.3 FcPatternRemove.3 
	                     FcStrBasename.3 FcStrCmp.3 
	                     FcStrCmpIgnoreCase.3 FcStrCopy.3 
	                     FcStrCopyFilename.3 FcStrDirname.3 
	                     FcStrDowncase.3 FcStrFree.3 
	                     FcStrListCreate.3 FcStrListDone.3 
	                     FcStrListFirst.3 FcStrListNext.3 
	                     FcStrPlus.3 FcStrSetAdd.3 
	                     FcStrSetAddFilename.3 FcStrSetCreate.3 
	                     FcStrSetDel.3 FcStrSetDestroy.3 
	                     FcStrSetEqual.3 FcStrSetMember.3 FcStrStr.3 
	                     FcStrStrIgnoreCase.3 FcToLower.3 
	                     FcUcs4ToUtf8.3 FcUtf16Len.3 FcUtf16ToUcs4.3 
	                     FcUtf8Len.3 FcUtf8ToUcs4.3 FcValueDestroy.3 
	                     FcValueEqual.3 FcValuePrint.3 FcValueSave.3 
	                     Makefile.am Makefile.in fcconfig.fncs 
	                     fcconfig.sgml fcpattern.fncs fcpattern.sgml 
	                     fontconfig-devel.pdf fontconfig-devel.sgml 
	                     fontconfig-devel.txt fontconfig-user.html 
	                     fontconfig-user.pdf fontconfig-user.sgml 
	                     fontconfig-user.txt fonts-conf.5 
	dist/fontconfig/doc/fontconfig-devel: fcatomiccreate.html 
	                                      fcatomicdeletenew.html 
	                                      fcatomicdestroy.html 
	                                      fcatomiclock.html 
	                                      fcatomicnewfile.html 
	                                      fcatomicorigfile.html 
	                                      fcatomicreplaceorig.html 
	                                      fcatomicunlock.html 
	                                      fcblanksadd.html 
	                                      fcblankscreate.html 
	                                      fcblanksdestroy.html 
	                                      fcblanksismember.html 
	                                      fccachecopyset.html 
	                                      fccachecreatetagfile.html 
	                                      fccachedir.html 
	                                      fccachenumfont.html 
	                                      fccachenumsubdir.html 
	                                      fccachesubdir.html 
	                                      fccharsetaddchar.html 
	                                      fccharsetcopy.html 
	                                      fccharsetcount.html 
	                                      fccharsetcoverage.html 
	                                      fccharsetcreate.html 
	                                      fccharsetdelchar.html 
	                                      fccharsetdestroy.html 
	                                      fccharsetequal.html 
	                                      fccharsetfirstpage.html 
	                                      fccharsethaschar.html 
	                                      fccharsetintersect.html 
	                                      fccharsetintersectcount.html 
	                                      fccharsetissubset.html 
	                                      fccharsetmerge.html 
	                                      fccharsetnew.html 
	                                      fccharsetnextpage.html 
	                                      fccharsetsubtract.html 
	                                      fccharsetsubtractcount.html 
	                                      fccharsetunion.html 
	                                      fcconfigappfontadddir.html 
	                                      fcconfigappfontaddfile.html 
	                                      fcconfigappfontclear.html 
	                                      fcconfigbuildfonts.html 
	                                      fcconfigcreate.html 
	                                      fcconfigdestroy.html 
	                                      fcconfigenablehome.html 
	                                      fcconfigfilename.html 
	                                      fcconfiggetblanks.html 
	                                      fcconfiggetcache.html 
	                                      fcconfiggetcachedirs.html 
	                                      fcconfiggetconfigdirs.html 
	                                      fcconfiggetconfigfiles.html 
	                                      fcconfiggetcurrent.html 
	                                      fcconfiggetfontdirs.html 
	                                      fcconfiggetfonts.html 
	                                      fcconfiggetrescaninterval.html 
	                                      fcconfiggetsysroot.html 
	                                      fcconfighome.html 
	                                      fcconfigparseandload.html 
	                                      fcconfigreference.html 
	                                      fcconfigsetcurrent.html 
	                                      fcconfigsetrescaninterval.html 
	                                      fcconfigsetsysroot.html 
	                                      fcconfigsubstitute.html 
	                                      fcconfigsubstitutewithpat.html 
	                                      fcconfiguptodate.html 
	                                      fcdefaultsubstitute.html 
	                                      fcdircacheclean.html 
	                                      fcdircacheload.html 
	                                      fcdircacheloadfile.html 
	                                      fcdircacheread.html 
	                                      fcdircacherescan.html 
	                                      fcdircacheunlink.html 
	                                      fcdircacheunload.html 
	                                      fcdircachevalid.html 
	                                      fcdirsave.html 
	                                      fcdirscan.html 
	                                      fcfileisdir.html 
	                                      fcfilescan.html 
	                                      fcfontlist.html 
	                                      fcfontmatch.html 
	                                      fcfontrenderprepare.html 
	                                      fcfontsetadd.html 
	                                      fcfontsetcreate.html 
	                                      fcfontsetdestroy.html 
	                                      fcfontsetlist.html 
	                                      fcfontsetmatch.html 
	                                      fcfontsetprint.html 
	                                      fcfontsetsort.html 
	                                      fcfontsetsortdestroy.html 
	                                      fcfontsort.html 
	                                      fcfreetypecharindex.html 
	                                      fcfreetypecharset.html 
	                                      fcfreetypecharsetandspacing.html 
	                                      fcfreetypequery.html 
	                                      fcfreetypequeryface.html 
	                                      fcgetdefaultlangs.html 
	                                      fcgetlangs.html 
	                                      fcislower.html 
	                                      fcisupper.html 
	                                      fclanggetcharset.html 
	                                      fclangnormalize.html 
	                                      fclangsetadd.html 
	                                      fclangsetcompare.html 
	                                      fclangsetcontains.html 
	                                      fclangsetcopy.html 
	                                      fclangsetcreate.html 
	                                      fclangsetdel.html 
	                                      fclangsetdestroy.html 
	                                      fclangsetequal.html 
	                                      fclangsetgetlangs.html 
	                                      fclangsethash.html 
	                                      fclangsethaslang.html 
	                                      fclangsetsubtract.html 
	                                      fclangsetunion.html 
	                                      fcmatrixcopy.html 
	                                      fcmatrixequal.html 
	                                      fcmatrixinit.html 
	                                      fcmatrixmultiply.html 
	                                      fcmatrixrotate.html 
	                                      fcmatrixscale.html 
	                                      fcmatrixshear.html 
	                                      fcnameconstant.html 
	                                      fcnamegetconstant.html 
	                                      fcnamegetobjecttype.html 
	                                      fcnameparse.html 
	                                      fcnameregisterconstants.html 
	                                      fcnameregisterobjecttypes.html 
	                                      fcnameunparse.html 
	                                      fcnameunregisterconstants.html 
	                                      fcnameunregisterobjecttypes.html 
	                                      fcobjectsetadd.html 
	                                      fcobjectsetbuild.html 
	                                      fcobjectsetcreate.html 
	                                      fcobjectsetdestroy.html 
	                                      fcpatternadd-type.html 
	                                      fcpatternbuild.html 
	                                      fcpatterndel.html 
	                                      fcpatternformat.html 
	                                      fcpatternget-type.html 
	                                      fcpatternget.html 
	                                      fcpatternprint.html 
	                                      fcpatternremove.html 
	                                      fcstrbasename.html 
	                                      fcstrcmp.html 
	                                      fcstrcmpignorecase.html 
	                                      fcstrcopy.html 
	                                      fcstrcopyfilename.html 
	                                      fcstrdirname.html 
	                                      fcstrdowncase.html 
	                                      fcstrfree.html 
	                                      fcstrlistcreate.html 
	                                      fcstrlistdone.html 
	                                      fcstrlistfirst.html 
	                                      fcstrlistnext.html 
	                                      fcstrplus.html 
	                                      fcstrsetadd.html 
	                                      fcstrsetaddfilename.html 
	                                      fcstrsetcreate.html 
	                                      fcstrsetdel.html 
	                                      fcstrsetdestroy.html 
	                                      fcstrsetequal.html 
	                                      fcstrsetmember.html 
	                                      fcstrstr.html 
	                                      fcstrstrignorecase.html 
	                                      fctolower.html 
	                                      fcucs4toutf8.html 
	                                      fcutf16len.html 
	                                      fcutf16toucs4.html 
	                                      fcutf8len.html 
	                                      fcutf8toucs4.html 
	                                      fcvaluedestroy.html 
	                                      fcvalueequal.html 
	                                      fcvalueprint.html 
	                                      fcvaluesave.html t1.html 
	                                      x102.html x19.html 
	dist/fontconfig/fc-cache: Makefile.in fc-cache.1 fc-cache.c 
	                          fc-cache.sgml 
	dist/fontconfig/fc-case: CaseFolding.txt Makefile.am Makefile.in 
	                         fccase.h 
	dist/fontconfig/fc-cat: Makefile.in fc-cat.1 fc-cat.c 
	                        fc-cat.sgml 
	dist/fontconfig/fc-glyphname: Makefile.in 
	dist/fontconfig/fc-lang: Makefile.in fclang.h ja.orth ko.orth 
	dist/fontconfig/fc-list: Makefile.in 
	dist/fontconfig/fc-match: Makefile.in 
	dist/fontconfig/fc-pattern: Makefile.in 
	dist/fontconfig/fc-query: Makefile.in fc-query.1 fc-query.c 
	                          fc-query.sgml 
	dist/fontconfig/fc-scan: Makefile.in fc-scan.1 fc-scan.c 
	                         fc-scan.sgml 
	dist/fontconfig/fc-validate: Makefile.in 
	dist/fontconfig/fontconfig: Makefile.in fcprivate.h fontconfig.h 
	dist/fontconfig/m4: libtool.m4 ltoptions.m4 ltsugar.m4 
	                    ltversion.m4 lt~obsolete.m4 
	dist/fontconfig/src: Makefile.am Makefile.in fcarch.c fcatomic.c 
	                     fcatomic.h fcblanks.c fccache.c fccfg.c 
	                     fccharset.c fccompat.c fcdbg.c fcdefault.c 
	                     fcdir.c fcfreetype.c fcinit.c fcint.h 
	                     fclang.c fclist.c fcmatch.c fcname.c 
	                     fcobjs.c fcobjs.h fcobjshash.gperf fcpat.c 
	                     fcstat.c fcstr.c fcwindows.h fcxml.c 
	dist/fontconfig/test: Makefile.am Makefile.in run-test.sh 
	                      test-migration.c 
	lib/fontconfig/common: config.h fcalias.h fcaliastail.h 
	lib/fontconfig/doc: Makefile 
	lib/fontconfig/src: Makefile fcobjshash.h fcstdint.h 
	                    shlib_version 
Added files:
	dist/fontconfig/conf.d: 10-hinting-full.conf 
	                        10-hinting-medium.conf 
	                        10-hinting-none.conf 
	                        10-hinting-slight.conf 
	dist/fontconfig/doc: FcRangeCopy.3 FcRangeCreateDouble.3 
	                     FcRangeCreateInteger.3 FcRangeDestroy.3 
	                     FcRangeGetDouble.3 FcWeightFromOpenType.3 
	                     FcWeightToOpenType.3 fcrange.fncs 
	                     fcrange.sgml fcweight.fncs fcweight.sgml 
	dist/fontconfig/doc/fontconfig-devel: fcrangecopy.html 
	                                      fcrangecreatedouble.html 
	                                      fcrangecreateinteger.html 
	                                      fcrangedestroy.html 
	                                      fcrangegetdouble.html 
	                                      fcweightfromopentype.html 
	                                      fcweighttoopentype.html 
	dist/fontconfig/fc-blanks: Makefile.am Makefile.in fc-blanks.py 
	                           fcblanks.h fcblanks.tmpl.h 
	dist/fontconfig/m4: pkg.m4 
	dist/fontconfig/src: fcrange.c fcweight.c 
	dist/fontconfig/test: test-bz89617.c test-bz96676.c 
Removed files:
	dist/fontconfig/src: fchash.c fcobjshash.h fcstdint.h 

Log message:
Update to fontconfig 2.12.1.

Tested by krw@, dcoppa@, ok dcoppa@.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/09 12:58:31

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/09 12:59:55

Modified files:
	xserver        : ChangeLog Makefile.in TODO configure 
	                 configure.ac 
	xserver/Xext   : Makefile.in panoramiXprocs.c saver.c shm.c 
	xserver/Xi     : Makefile.in exevents.c 
	xserver/composite: Makefile.in 
	xserver/config : Makefile.in 
	xserver/damageext: Makefile.in 
	xserver/dbe    : Makefile.in 
	xserver/dix    : Makefile.in cursor.c devices.c enterleave.c 
	                 ptrveloc.c 
	xserver/doc    : Makefile.in 
	xserver/doc/dtrace: Makefile.in 
	xserver/dri3   : Makefile.in 
	xserver/exa    : Makefile.in exa_glyphs.c exa_render.c 
	xserver/fb     : Makefile.in 
	xserver/glamor : Makefile.in glamor.c glamor.h 
	                 glamor_composite_glyphs.c 
	                 glamor_compositerects.c glamor_copy.c 
	                 glamor_dash.c glamor_egl.c glamor_fbo.c 
	                 glamor_priv.h glamor_program.c glamor_render.c 
	                 glamor_spans.c glamor_text.c glamor_transfer.c 
	                 glamor_transform.c glamor_transform.h 
	xserver/glx    : Makefile.in glxext.c 
	xserver/hw     : Makefile.in 
	xserver/hw/dmx : Makefile.in 
	xserver/hw/dmx/config: Makefile.in 
	xserver/hw/dmx/config/man: Makefile.in 
	xserver/hw/dmx/doc: Makefile.in 
	xserver/hw/dmx/doxygen: Makefile.in 
	xserver/hw/dmx/examples: Makefile.in 
	xserver/hw/dmx/glxProxy: Makefile.in 
	xserver/hw/dmx/input: Makefile.in 
	xserver/hw/dmx/man: Makefile.in 
	xserver/hw/kdrive: Makefile.in 
	xserver/hw/kdrive/ephyr: Makefile.in 
	xserver/hw/kdrive/ephyr/man: Makefile.in 
	xserver/hw/kdrive/fake: Makefile.in 
	xserver/hw/kdrive/fbdev: Makefile.in 
	xserver/hw/kdrive/linux: Makefile.in keyboard.c 
	xserver/hw/kdrive/src: Makefile.in 
	xserver/hw/vfb : Makefile.in 
	xserver/hw/vfb/man: Makefile.in 
	xserver/hw/xfree86: Makefile.in 
	xserver/hw/xfree86/common: Makefile.in xf86Config.c 
	                           xf86Configure.c xf86Init.c 
	                           xf86Privstr.h 
	xserver/hw/xfree86/ddc: Makefile.in 
	xserver/hw/xfree86/dixmods: Makefile.in 
	xserver/hw/xfree86/doc: Makefile.in 
	xserver/hw/xfree86/dri: Makefile.in 
	xserver/hw/xfree86/dri2: Makefile.in 
	xserver/hw/xfree86/dri2/pci_ids: Makefile.in 
	xserver/hw/xfree86/drivers: Makefile.in 
	xserver/hw/xfree86/drivers/modesetting: Makefile.am Makefile.in 
	                                        driver.c 
	                                        drmmode_display.c 
	                                        drmmode_display.h 
	                                        present.c 
	xserver/hw/xfree86/exa: Makefile.in 
	xserver/hw/xfree86/exa/man: Makefile.in 
	xserver/hw/xfree86/fbdevhw: Makefile.in 
	xserver/hw/xfree86/fbdevhw/man: Makefile.in 
	xserver/hw/xfree86/glamor_egl: Makefile.in 
	xserver/hw/xfree86/i2c: Makefile.in 
	xserver/hw/xfree86/int10: Makefile.in xf86x86emu.c 
	xserver/hw/xfree86/loader: Makefile.in 
	xserver/hw/xfree86/man: Makefile.in xorg.conf.man 
	xserver/hw/xfree86/modes: Makefile.in xf86Crtc.c 
	xserver/hw/xfree86/os-support: Makefile.in 
	xserver/hw/xfree86/os-support/bsd: Makefile.in 
	xserver/hw/xfree86/os-support/bus: Makefile.in 
	xserver/hw/xfree86/os-support/hurd: Makefile.in 
	xserver/hw/xfree86/os-support/linux: Makefile.in lnx_init.c 
	xserver/hw/xfree86/os-support/misc: Makefile.in 
	xserver/hw/xfree86/os-support/solaris: Makefile.in 
	xserver/hw/xfree86/os-support/stub: Makefile.in 
	xserver/hw/xfree86/parser: Makefile.in 
	xserver/hw/xfree86/ramdac: Makefile.in 
	xserver/hw/xfree86/shadowfb: Makefile.in 
	xserver/hw/xfree86/utils: Makefile.in 
	xserver/hw/xfree86/utils/cvt: Makefile.in 
	xserver/hw/xfree86/utils/gtf: Makefile.in 
	xserver/hw/xfree86/utils/man: Makefile.in 
	xserver/hw/xfree86/vbe: Makefile.in 
	xserver/hw/xfree86/vgahw: Makefile.in 
	xserver/hw/xfree86/x86emu: Makefile.in 
	xserver/hw/xfree86/x86emu/x86emu: regs.h 
	xserver/hw/xnest: Makefile.in 
	xserver/hw/xnest/man: Makefile.in 
	xserver/hw/xquartz: Makefile.in 
	xserver/hw/xquartz/GL: Makefile.in 
	xserver/hw/xquartz/bundle: Info.plist.cpp Makefile.am 
	                           Makefile.in 
	xserver/hw/xquartz/mach-startup: Makefile.in 
	xserver/hw/xquartz/man: Makefile.in 
	xserver/hw/xquartz/pbproxy: Makefile.in 
	xserver/hw/xquartz/xpr: Makefile.in 
	xserver/hw/xwayland: Makefile.in xwayland-cursor.c 
	                     xwayland-glamor-xv.c xwayland-glamor.c 
	                     xwayland-output.c xwayland-shm.c xwayland.h 
	xserver/hw/xwin: Makefile.in 
	xserver/hw/xwin/glx: Makefile.in 
	xserver/hw/xwin/man: Makefile.in 
	xserver/hw/xwin/winclipboard: Makefile.in 
	xserver/include: Makefile.in xkbsrv.h 
	xserver/man    : Makefile.in 
	xserver/mi     : Makefile.in 
	xserver/miext  : Makefile.in 
	xserver/miext/damage: Makefile.in 
	xserver/miext/rootless: Makefile.in 
	xserver/miext/shadow: Makefile.in 
	xserver/miext/sync: Makefile.in 
	xserver/os     : Makefile.in access.c 
	xserver/present: Makefile.in present.c 
	xserver/pseudoramiX: Makefile.in 
	xserver/randr  : Makefile.in rrprovider.c 
	xserver/record : Makefile.in 
	xserver/render : Makefile.in picture.h 
	xserver/test   : Makefile.in 
	xserver/test/xi1: Makefile.in 
	xserver/test/xi2: Makefile.in 
	xserver/xfixes : Makefile.in 
	xserver/xkb    : Makefile.in xkb.c xkbEvents.c xkbLEDs.c 
Added files:
	xserver/hw/xfree86/drivers/modesetting: sh3224.c sh3224.h 

Log message:
Update to xserver 1.18.4

tested by krw@ and dcoppa@ ok dcoppa@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/09 13:00:18

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 13:23:43

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

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 13:40:13

Modified files:
	lib/fontconfig/src: shlib_version 

Log message:
extra space


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/08/09 15:24:32

Modified files:
	etc            : Makefile 
	etc/mtree      : special 
Removed files:
	etc            : csh.cshrc csh.login csh.logout 

Log message:
remove pointless csh placeholder files from /etc

ok jung@ (some time ago) phessler@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 15:30:00

Modified files:
	distrib/sets/lists/xbase: md.alpha md.amd64 md.armish md.armv7 
	                          md.hppa md.i386 md.landisk md.loongson 
	                          md.luna88k md.macppc md.octeon md.sgi 
	                          md.socppc md.sparc md.sparc64 
	                          md.zaurus 
	distrib/sets/lists/xshare: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/09 16:06:34

Modified files:
	distrib/sets/lists/xbase: md.amd64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 17:16:26

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

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/08/09 17:20:05

Modified files:
	distrib/sets/lists/xbase: md.alpha md.hppa md.loongson 
	                          md.luna88k md.macppc md.octeon md.sgi 
	                          md.socppc md.sparc md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	czarkoff@cvs.openbsd.org	2016/08/09 17:27:33

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

Log message:
Xr vmx(4)

"go for it" jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/09 20:58:44

Modified files:
	gnu/usr.bin/binutils-2.17/ld: ldmain.c 
	gnu/usr.bin/binutils-2.17/ld/emulparams: armelf_obsd.sh 
	                                         elf32ppc_obsd.sh 
	                                         elf64btsmip_obsd.sh 
	                                         elf64ltsmip_obsd.sh 
	                                         hppaobsd.sh 
	                                         shelf_obsd.sh 
	gnu/usr.bin/binutils-2.17/ld/scripttempl: elf.sc 

Log message:
Cover your kid's remaining eye and lock up the pets for the great old ones
have been disturbed: rework the linker script and then enable RELRO support
on all but mips64 (something something padding) and m88k (untested).
This extends the RO coverage from just .got and .cdtors to also include
.openbsd.randomdata, .jcr, .dynamic, and .data.rel.ro., and moves more
segments from the text section to the rodata section.  Depends on the
previous csu and ld.so work; reinstall those *before* rebuilding ld, or
just get a snapshot.

clues from kettenis
assistance testing and ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/08/09 23:46:47

Modified files:
	faq            : current.html 

Log message:
Add RELRO


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/10 00:12:46

Modified files:
	x11/gnome/photos: Makefile distinfo 

Log message:
Update to gnome-photos-3.20.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/10 00:20:59

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

Log message:
Update to py-botocore-1.4.44.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/10 00:21:19

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.54.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/10 00:46:36

Modified files:
	sys/arch/arm/arm: cpuswitch7.S 

Log message:
On armv7 we put the vector page up high and never have to bother switching it.
Remove the code to do so from cpuswitch().

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/10 00:51:57

Modified files:
	sys/arch/armv7/armv7: platform.c 
	sys/arch/armv7/conf: GENERIC 
	sys/arch/arm/cortex: agtimer.c files.cortex 

Log message:
Dynamically attach agtimer(4).  Since agtimer(4) also provides the delay()
function for platforms that have it, rework the code a bit such that it can
be used before agtimer(4) attaches.  Introduce a new agtimer_init()
function that checks whether the CPU implements the Generic Timer feature
and switches to agtimer_delay() if that feature is present.  Call this
function from the generic platform initialization code.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/08/10 01:08:28

Modified files:
	lang/ghc       : Makefile 

Log message:
Mark ghc as wxneeded for now.

A real fix would be to remove PROT_EXEC from mmapForLinker() in
rts/Linker.c and to flip PROT_WRITE / PROT_EXEC  in loadObj_()
when it's done, but this requires a little bit more time for
testing (turnaround times for building and testing ghc aren't
that funny).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/10 01:09:37

Modified files:
	sys/arch/armv7/conf: RAMDISK 

Log message:
attach agtimer with fdt on RAMDISK as well


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/10 01:53:02

Modified files:
	sys/ufs/ext2fs : ext2fs_extern.h ext2fs_subr.c ext2fs_vfsops.c 

Log message:
ext2fs only has one set of specops/fifoops
ok mpi tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/10 02:04:57

Modified files:
	sys/ufs/ffs    : ffs_extern.h ffs_subr.c ffs_vfsops.c 
	sys/ufs/ufs    : ufs_extern.h ufs_vnops.c 

Log message:
ufs_vinit() should really be called ffs_vinit(); it's only called from
ffs code.
ok mpi tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/10 02:50:24

Modified files:
	x11/xmobar     : Makefile distinfo 
	x11/xmobar/files: Batt.hs Binding.hsc 
	x11/xmobar/patches: patch-samples_xmobar_config 
	                    patch-src_Plugins_Monitors_hs 
	                    patch-xmobar_cabal 

Log message:
Update to xmobar-0.24.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/08/10 03:32:15

Modified files:
	net/owncloudclient: Makefile distinfo 
	net/owncloudclient/patches: patch-src_gui_application_cpp 

Log message:
update to owncloudclient-2.2.3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/10 05:02:30

Modified files:
	usr.bin/mandoc : term.c term_ps.c 

Log message:
Fix assertion failures caused by whitespace inside \o'' (overstrike)
sequences that jsg@ found with afl(1):
* Avoid writing \t\b in term.c.
* Handle trailing \b in term_ps.c.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/10 05:33:01

Modified files:
	sys/ufs/ffs    : ffs_subr.c 

Log message:
fix previous; ffs_vinit() requires #ifdef _KERNEL to not break the
sbin/fsck_ffs build. bad natano!
reported by naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/10 06:04:57

Modified files:
	usr.bin/mandoc : mdoc_validate.c 

Log message:
When validating a .Bl list that defaults to -item for want of a type,
don't let a subsequent -width access mdoc_argnames[] out of bounds.
Found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/10 06:22:33

Modified files:
	textproc/p5-XML-LibXML: Makefile distinfo 

Log message:
update p5-XML-LibXML to 2.0128


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2016/08/10 06:28:33

Modified files:
	faq            : faq14.html 

Log message:
change wd(4) to sd(4) in the "RAID and disk encryption" section.
The instructions in the "Full disk encryption" part are verified by me.
ok and feedback tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/10 06:29:02

Modified files:
	usr.bin/mandoc : mdoc_validate.c 

Log message:
Don't printf("%s", NULL) if .It has a macro as an argument
in a list of a type where items don't takes arguments.
Issue found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/10 06:35:00

Modified files:
	textproc/p5-XML-LibXSLT: Makefile distinfo 

Log message:
update p5-XML-LibXSLT to 1.95


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/10 07:10:17

Modified files:
	regress/usr.bin/mandoc/mdoc/Bl: emptyitem.in emptyitem.out_ascii 
	                                emptyitem.out_lint notype.in 
	                                notype.out_ascii notype.out_lint 

Log message:
regression tests for mdoc_validate.c revisions 1.219 and 1.220


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2016/08/10 07:27:17

Modified files:
	.              : 60.html 

Log message:
Misc 6.0 improvements and mention Ocaml 4.3.0.


CVSROOT:	/cvs
Module name:	www
Changes by:	landry@cvs.openbsd.org	2016/08/10 07:30:56

Modified files:
	.              : 60.html 

Log message:
fix sparc64 pkg count (8570, not 8750), and set alpha pkg count (7422). powerpc soon over..


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 07:33:34

Modified files:
	devel/p5-Config-IniFiles: Makefile distinfo 

Log message:
update to p5-Config-IniFiles-2.93


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 07:33:56

Modified files:
	devel/iso-codes: Makefile distinfo 

Log message:
update to iso-codes-3.69


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 07:34:18

Modified files:
	devel/ruby-rspec/3/core: Makefile distinfo 

Log message:
update to rspec-core-3.5.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 07:39:49

Modified files:
	net/apache-activemq: Makefile distinfo 
	net/apache-activemq/pkg: PLIST 

Log message:
update to apache-activemq-5.14.0


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2016/08/10 07:49:33

Modified files:
	.              : 60.html 

Log message:
Installer improvement. Mention tmpfs not enabled by default.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 08:01:04

Modified files:
	sysutils/monit : Makefile distinfo 

Log message:
update to monit-5.19.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 08:06:14

Modified files:
	devel/leatherman: Makefile distinfo 
Removed files:
	devel/leatherman/patches: patch-curl_tests_client_test_cc 
	                          patch-curl_tests_mock_curl_cc 

Log message:
update to leatherman-0.8.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 08:06:20

Modified files:
	sysutils/facter: Makefile distinfo 

Log message:
update to facter-3.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 08:09:39

Modified files:
	sysutils/tmux-mem-cpu-load: Makefile distinfo 
Removed files:
	sysutils/tmux-mem-cpu-load/patches: patch-openbsd_memory_cc 

Log message:
update to tmux-mem-cpu-load-3.4.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/10 08:27:18

Modified files:
	.              : Makefile.cross 
	distrib        : Makefile 
	distrib/notes  : Makefile 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 
	distrib/special/disklabel: Makefile 
	distrib/special/installboot: Makefile 
	etc            : Makefile 
	etc/mtree      : 4.4BSD.dist 
	lib/libarch/arm: Makefile 
	regress/etc/MAKEDEV: Makefile 
	sbin/disklabel : Makefile 
	share/man/man4 : Makefile com.4 iic.4 pci.4 
	share/man/man8 : Makefile 
	sys            : Makefile 
	sys/dev/ic     : re.c 
	sys/dev/microcode/atmel: Makefile 
	sys/dev/microcode/kue: Makefile 
	sys/dev/microcode/ral: Makefile 
	sys/dev/microcode/rum: Makefile 
	sys/dev/microcode/tusb3410: Makefile 
	sys/dev/microcode/udl: Makefile 
	sys/dev/microcode/zydas: Makefile 
	sys/kern       : Makefile 
	usr.sbin/hotplugd: Makefile 
	usr.sbin/pcidump: Makefile 
Removed files:
	distrib/armish : Makefile 
	distrib/armish/ramdisk: Makefile Makefile.inc install.md list 
	distrib/notes/armish: contents features hardware install prep 
	                      upgrade whatis xfer 
	distrib/sets/lists/base: md.armish 
	distrib/sets/lists/comp: md.armish 
	distrib/sets/lists/etc: md.armish 
	distrib/sets/lists/game: md.armish 
	distrib/sets/lists/man: md.armish 
	etc/etc.armish : MAKEDEV MAKEDEV.md Makefile Makefile.inc 
	                 disktab fbtab login.conf sysctl.conf ttys 
	share/man/man4/man4.armish: Makefile autoconf.4 intro.4 mem.4 
	share/man/man8/man8.armish: MAKEDEV.8 Makefile 
	sys/arch/armish: Makefile 
	sys/arch/armish/armish: armish_machdep.c armish_start.S 
	                        autoconf.c genassym.cf 
	sys/arch/armish/conf: GENERIC Makefile.armish RAMDISK 
	                      files.armish 
	sys/arch/armish/dev: com_obio.c i80321_mainbus.c iq80321_pci.c 
	                     iq80321reg.h iq80321var.h obio.c 
	                     obio_space.c obiovar.h pci_addr_fixup.c 
	                     pciide_machdep.c 
	sys/arch/armish/include: _float.h _types.h apmvar.h 
	                         armish_intr.h asm.h atomic.h 
	                         bootconfig.h bus.h cdefs.h conf.h cpu.h 
	                         db_machdep.h disklabel.h endian.h 
	                         exec.h fenv.h fp.h frame.h ieee.h 
	                         ieeefp.h intr.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 ptrace.h reg.h 
	                         reloc.h setjmp.h signal.h spinlock.h 
	                         stdarg.h sysarch.h tcb.h trap.h 
	                         vmparam.h 
	sys/arch/armish/stand: Makefile Makefile.inc 
	sys/arch/armish/stand/boot: Makefile boot.8 clock.c conf.c 
	                            dev_armish.c devopen.c exec.c 
	                            ldscript libsa.h machdep.c ns16550.c 
	                            pciide.c start.S time.c wd.c wdc.c 
	                            wdvar.h 

Log message:
armish handled some early-gen arm machines, which required tons of
workarounds.  Some of them will soon stand in the way of armv7.
Off to the attic you go.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 08:30:39

Modified files:
	textproc/py-cssutils: Makefile distinfo 
	textproc/py-cssutils/pkg: PLIST 

Log message:
- update to cssutils-1.0.1
- add python3 flavor


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 08:31:14

Modified files:
	textproc       : Makefile 

Log message:
+py-cssutils,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 08:51:27

Modified files:
	textproc/py-cssutils: Makefile 
	textproc/py-cssutils/pkg: PLIST 

Log message:
resolve conflict with unflavored package


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/10 09:19:39

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

Log message:
remove armish


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/10 09:54:29

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/patches: patch-runtime_filetype_vim 
	                     patch-runtime_syntax_c_vim 
	                     patch-src_configure_in patch-src_vim_h 
	editors/vim/pkg: DESCR-lang DESCR-main PLIST-lang PLIST-main 
Added files:
	editors/vim/patches: patch-runtime_gvim_desktop 
Removed files:
	editors/vim/files: gvim.desktop 

Log message:
update to vim-7.4.2181, from frantisek holop, and I trimmed DESCR-lang a bit.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/10 10:07:58

Modified files:
	.              : plat.html armish.html 

Log message:
goodbye armish


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/10 10:12:13

Modified files:
	sys/ntfs       : ntfs_ihash.h 

Log message:
Kill stale prototypes.
ok deraadt millert stefan


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/10 11:37:01

Modified files:
	regress/usr.bin/mdoclint: mdoclint 
	share/man/man7 : mdoc.7 

Log message:
no more armish;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/10 11:41:08

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

Log message:
shorten ecparam;


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/10 12:04:55

Modified files:
	.              : zaurus.html 
	faq            : faq1.html faq4.html faq14.html 

Log message:
remove armish mentions.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/10 12:39:04

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
move armish and hppa64 down in the dropdown box; reminded by jmc@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/10 12:58:25

Modified files:
	driver         : Makefile 
Removed files:
	distrib/notes  : README.armish 
	distrib/sets/lists/xbase: md.armish 
	distrib/sets/lists/xetc: md.armish 
	distrib/sets/lists/xfont: md.armish 
	distrib/sets/lists/xserv: md.armish 
	distrib/sets/lists/xshare: md.armish 

Log message:
Goodbye armish


CVSROOT:	/cvs
Module name:	www
Changes by:	matthieu@cvs.openbsd.org	2016/08/10 13:12:37

Modified files:
	faq            : current.html 

Log message:
Missing <body> opening tag.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/10 13:21:37

Modified files:
	editors/emacs  : Makefile 
	editors/emacs/patches: patch-configure 

Log message:
Looks like powerpc doesn't need bss-plt layout anymore.

Thanks guenther@ for the tests & report.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/10 13:46:43

Modified files:
	bin/df         : df.1 
	bin/ln         : ln.1 
	bin/ls         : ls.1 

Log message:
fix HISTORY; from Sevan Janiyan <venture37 at geeklan dot co dot uk>;
checked with http://minnie.tuhs.org/cgi-bin/utree.pl?file=V1/man/man1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/10 14:16:43

Modified files:
	usr.bin/mandoc : mdoc_validate.c 

Log message:
Don't deref NULL if the only child of the first .Sh is an empty
in-line macro, and don't printf("%s", NULL) if the first child
of the first .Sh is a macro; again found by tb@ with afl(1).
(No, you should never use macros in any .Sh at all, please.)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/10 14:19:45

Modified files:
	www/seamonkey  : Makefile 
Added files:
	www/seamonkey/patches: 
	                       patch-mozilla_js_src_jit_ExecutableAllocator_cpp 

Log message:
Enable nonWritableJitCode to fix mmap W^X violations


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/10 14:30:34

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

Log message:
Remove the encrypted password length check.  The admin should be
able to put whatever they like in the encrypted password field,
regardless of whether it can be matched or not.  Having this check
just makes it harder to add new encrypted password functions.
This also fixes "usermode -Z" which was the impetus for the change.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/10 14:46:09

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: elf.c 
	gnu/usr.bin/binutils-2.17/binutils: readelf.c 
	gnu/usr.bin/binutils-2.17/include/elf: common.h 
	gnu/usr.bin/binutils-2.17/ld: ldgram.y 

Log message:
Teach readelf and objdump about the PT_OPENBSD_BOOTDATA section value.
Teach ld to access that and PT_GNU_RELRO in linker scripts.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/10 14:52:47

Log message:
    import sysutils/sysmon, from George Rosamond, ok landry
    
    Sysmon is a network monitoring tool designed to provide high performance and
    accurate network monitoring.
    
    This tool is available in the public domain for anyone to use it that is
    interested. It provides better performance and checking capabilities than other
    tools such as Rover, Nocmon (not this: Nocmonitor), Whatsup, Big Brother, and
    other such tools.
    
    Configuration is simple and hierarchical, and can easily integrate email alerts.
    
    Currently supported protocols include SMTP, IMAP, HTTP, TCP, UDP, NNTP, and
    PING. Sysmon also provides a simple web output of monitored hosts.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20160810
    
    N ports/sysutils/sysmon/Makefile
    N ports/sysutils/sysmon/distinfo
    N ports/sysutils/sysmon/pkg/DESCR
    N ports/sysutils/sysmon/pkg/PLIST
    N ports/sysutils/sysmon/pkg/sysmond.rc
    N ports/sysutils/sysmon/pkg/README
    N ports/sysutils/sysmon/patches/patch-examples_sysmon_conf_dist
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/10 14:53:14

Modified files:
	sysutils       : Makefile 

Log message:
+sysmon


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/10 14:53:27

Modified files:
	textproc/wkhtmltopdf: Makefile distinfo 

Log message:
update to wkhtmltopdf-0.12.3.2, from Frank Groeneveld


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/10 14:54:35

Modified files:
	gnu/usr.bin/binutils-2.17/ld: ldmain.c 
	gnu/usr.bin/binutils-2.17/ld/emulparams: elf64btsmip_obsd.sh 
	                                         elf64ltsmip_obsd.sh 

Log message:
auto-dope-slap: mips64 has 16K pages, not 4K.  With that fixed, enable RELRO

Per feedback from kettenis@, Miod, and deraadt@, the padding between
text and rodata will be retained for consistency with other archs,
to minimize reliance on the R4000 EOP bug workaround, and to enable
possible future work.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/10 15:22:43

Modified files:
	sys/arch/arm/arm: cpufunc.c 
	sys/arch/arm/include: pmap.h pte.h 

Log message:
Shuffle armv7 access permission bits around to something that is compatible
with setting the Access Flag Enable bit in the System Control Register.
The new settings mean that read-only userland pages are no longer writable
by the kernel, which is a good thing.  Set the Access Flag Enable bit.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/10 16:28:51

Modified files:
	sys/arch/arm/include: pte.h 

Log message:
Add defines for the Access Flag as found on armv7.  Fix definition of the
non Global bit Small page desciptions.  iConsistently name the S-bit
Sharable in comments.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/10 18:28:06

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
The ARMv7 ARM says that the TLB may hold translation table entries at any
level of the translation table, including entries that point to further
levels of the tables.  This means that we have to do a TLB flush whenever
we invalidate an L1 slot too.  Doing so fixes the pmap_fault_fixup
issue on Cortex-A7 processors.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/10 18:58:22

Modified files:
	sys/net        : if.c 

Log message:
take TASKQ_CANTSLEEP way from the softnet taskq.

the big reason for this is to let us use rw locks in the network
stack, which is how at least two major efforts outside the tree
have approached making pf mpsafe.

this was discussed at length at n2k16. there was general agreement
that this is necessary for us to move smp work forward in the stack.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/10 19:17:33

Modified files:
	sys/uvm        : uvm.h uvm_map.c uvm_map.h 

Log message:
replace abuse of the static map entries RB_ENTRY pointers with an SLIST

free static entries are kept in a simple linked list, so use SLIST
to make this obvious. the RB_PARENT manipulations are ugly and
confusing.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/10 19:32:31

Modified files:
	sys/kern       : kern_task.c 

Log message:
shuffle some code to make it more symmetrical.

no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/08/10 19:42:12

Modified files:
	etc            : moduli 
	usr.bin/ssh/moduli-gen: moduli.2048 moduli.3072 moduli.4096 
	                        moduli.6144 moduli.7680 moduli.8192 

Log message:
Update moduli file.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/10 19:53:18

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/omap: files.omap omap.c omehci.c 

Log message:
Dynamically attach omehci using the FDT.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/10 21:05:53

Modified files:
	lib/libc       : Symbols.list 
	lib/libc/arch/m88k: Symbols.list 

Log message:
Between relro and previous RWX work, the __{got,plt}_{start,end} symbols
are no longer needed by ld.so.  Move them to the m88k-specific list, as
it hasn't made the jump.

ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/10 21:57:34

Modified files:
	.              : plat.html 

Log message:
silence w3 validator warning; from lists at wrant.com


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/10 22:33:06

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/omap: files.omap omap.c omgpio.c 
	share/man/man4/man4.armv7: omap.4 omgpio.4 

Log message:
Dynamically attach omgpio(4) using the FDT.

am335x has a compatible string of "ti,omap4-gpio" and has the same
offsets as omap4, so combine the omap4 and am335x cases when setting up
function pointers.


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/08/11 01:25:09

Modified files:
	faq            : current.html 

Log message:
Rewrite RELRO entry to (hopefully) be clearer about the benefit, and
explain how to upgrade over the change.  Oh, and mips64 is now relro too

prodded by jmc@ and tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/08/11 01:28:55

Modified files:
	faq            : current.html 

Log message:
No need for NOMAN in lib/csu


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 01:34:30

Modified files:
	devel/json-glib: Makefile distinfo 
	devel/json-glib/pkg: PLIST 

Log message:
update to json-glib-1.2.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 01:37:41

Modified files:
	x11/gnome/calculator: Makefile distinfo 

Log message:
update to gnome-calculator-3.20.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 01:38:45

Modified files:
	databases/ruby-hiera3: Makefile distinfo 

Log message:
update to hiera3-3.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 01:39:29

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 

Log message:
update to gnome-online-accounts-3.20.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/11 01:42:27

Modified files:
	emulators/gambatte: Makefile 

Log message:
Fix gambatte PKGNAME.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/11 01:42:52

Modified files:
	emulators/desmume: Makefile 

Log message:
Mark desmume wxneeded.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/11 01:43:20

Modified files:
	emulators/mupen64plus/ui-console: Makefile 
Added files:
	emulators/mupen64plus/ui-console/patches: 
	                                          patch-projects_unix_Makefile 

Log message:
Mark mupen64plus wxneeded.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/11 02:17:30

Log message:
    Import gentium-5.000.
    
    Gentium is a typeface family designed to enable the diverse ethnic groups
    around the world who use the Latin, Cyrillic and Greek scripts to produce
    readable, high-quality publications. It supports a wide range of Latin- and
    Cyrillic-based alphabets.
    
    ok benoit@ czarkoff@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160811
    
    N ports/fonts/gentium/Makefile
    N ports/fonts/gentium/distinfo
    N ports/fonts/gentium/pkg/DESCR
    N ports/fonts/gentium/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/11 02:18:02

Modified files:
	fonts          : Makefile 

Log message:
+gentium


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/11 02:58:30

Modified files:
	faq            : current.html 

Log message:
tweak previous: rephrase slightly, remove one more NOMAN= and replace
bullet list with the usual FAQ style for lists of commands.

while there, zap some unneeded <p>'s and fix a misplaced </b>


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 03:12:22

Modified files:
	graphics/birdfont: Makefile distinfo 
Added files:
	graphics/birdfont/patches: patch-configure patch-dodo_py 

Log message:
- update to birdfont-2.16.5


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/11 03:30:57

Modified files:
	sys/conf       : files 

Log message:
fuse requires ufs_ihash.c
ok mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/11 03:50:05

Modified files:
	devel/py-test-cov: Makefile distinfo 

Log message:
Minor update to py-test-cov 2.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/11 04:20:36

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

Log message:
Update to py-parsing 2.1.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/11 04:27:33

Modified files:
	net/libbind    : Makefile 
	net/libbind/pkg: DESCR 

Log message:
step up the warning about only using libbind for special use cases.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/11 04:46:27

Modified files:
	usr.bin/mandoc : mdoc_validate.c 

Log message:
If a .Bd display is on the one hand doomed to be deleted because
it has no type, but is on the other hand breaking another block,
delete its end marker as well, or the end marker may remain behind
as an orphan, triggering an assertion in the terminal formatter.
Problem found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 04:57:30

Modified files:
	textproc/elasticsearch: Makefile distinfo 

Log message:
- update to elasticsearch-2.3.5

from Pavel Korovin


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 04:59:08

Modified files:
	www/kibana     : Makefile distinfo 
	www/kibana/pkg : PLIST 

Log message:
- update to kibana-4.5.4

from Pavel Korovin (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 05:01:45

Modified files:
	sysutils/rofi  : Makefile distinfo 

Log message:
update to rofi-1.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 05:28:42

Modified files:
	games/solarus/solarus: Makefile distinfo 
	games/solarus/solarus/pkg: PLIST 

Log message:
update to solarus-1.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 05:29:10

Modified files:
	games/solarus/roth: Makefile distinfo 
	games/solarus/roth/patches: patch-CMakeLists_txt 

Log message:
update to zelda_roth_se-1.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 05:29:15

Modified files:
	games/solarus/zsxd: Makefile distinfo 
	games/solarus/zsxd/patches: patch-CMakeLists_txt 

Log message:
update to zsxd-1.11.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 05:29:36

Modified files:
	games/solarus/zsdx: Makefile distinfo 
	games/solarus/zsdx/patches: patch-CMakeLists_txt 

Log message:
update to zsdx-1.11.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/11 05:34:13

Modified files:
	lang/smlnj     : Makefile 
	lang/smlnj/patches: patch-base_runtime_objs_mk_ppc-openbsd 
	                    patch-base_runtime_objs_mk_x86-openbsd 

Log message:
wxneeded


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/11 05:39:19

Modified files:
	usr.bin/mandoc : mdoc_validate.c 

Log message:
oops, fix stupid typo in previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/11 05:41:42

Modified files:
	sysutils/ruby-puppet/4: Makefile distinfo 

Log message:
update to puppet-4.5.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/11 06:04:17

Modified files:
	net/knot       : Makefile distinfo 

Log message:
Update to knot-1.6.8

from Pierre Emeriaud


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/08/11 18:24:29

Modified files:
	faq            : faq10.html 

Log message:
Rewrite most of the "#locales" section to remove the about 10 worst
instances of outdated, inaccurate, and misleading information.
In particular, kill all the half-wrong, sweeping generalizations.
Stop recommending locale(1) -a, it is a mostly useless stub only
needed for POSIX compatibility.

I suspect the paragraph about the text console is also mostly lies,
but don't know enough about it to touch it.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/11 20:24:48

Modified files:
	.              : want.html 

Log message:
wanted in Calgary:

Nexus compatible RJ45 SFP's ... official Cisco ones that will reliably
do 100mbit.

I am tired of this trap.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jcs@cvs.openbsd.org	2016/08/11 20:44:36

Modified files:
	x11            : Makefile 
	x11/dzen2      : Makefile 
	x11/dzen2/patches: patch-config_mk 

Log message:
add an xft flavor to dzen2

ok maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/11 21:02:55

Modified files:
	devel/py-parsing: Makefile distinfo 

Log message:
Update to py-parsing 2.1.7


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/11 21:22:41

Modified files:
	sys/arch/armv7/omap: if_cpsw.c omap_com.c omgpio.c ommmc.c 
	                     sitara_cm.c sitara_cm.h ti_iic.c 

Log message:
Switch omap to the generic ofw pinctrl framework.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/12 00:13:54

Modified files:
	devel/ectags   : Makefile 
Added files:
	devel/ectags/patches: patch-read_c 

Log message:
Fix segfault while running ctags on a binary file.

From Anton Lindqvist <anton dot lindqvist at gmail dot com>


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/12 00:15:18

Modified files:
	share/man/man3 : intro.3 

Log message:
no more libarm;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/12 00:16:19

Modified files:
	bin/ksh        : sh.1 

Log message:
rework initial text a little, to read better;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/12 00:17:22

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

Log message:
shorten openssl enc, with help from jsing;
ok jsing beck


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/12 00:21:12

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

Log message:
trim errstr, and zap gendh (deprecated) entirely;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/08/12 01:01:43

Modified files:
	sysutils/py-elasticsearch-curator: Makefile distinfo 
	sysutils/py-elasticsearch-curator/pkg: PLIST 

Log message:
Major update to 4.0.5

With the update of elasticsearch Curator to the 4.x version, the CLI interface
changed. Instead of parameters, yaml configuration files are used to steer
actions of curator. Configuration file documentation can be found on the
curator reference pages.
https://www.elastic.co/guide/en/elasticsearch/client/curator/4.0/index.html

Update from Pavel Korovin (p AT tristero se)
Also tested by jasper@


CVSROOT:	/cvs
Module name:	www
Changes by:	sebastia@cvs.openbsd.org	2016/08/12 01:02:28

Modified files:
	faq            : current.html 

Log message:
Mention the py-elasticsearch-curator update and the CLI API change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/12 01:10:18

Modified files:
	x11/rxvt-unicode: Makefile 

Log message:
Fix WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/08/12 01:24:36

Modified files:
	misc/mc        : Makefile distinfo 
	misc/mc/patches: patch-configure patch-src_diffviewer_ydiff_c 
Removed files:
	misc/mc/patches: patch-src_vfs_fish_helpers_ls 

Log message:
update to mc-4.8.17
OK robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/12 02:09:05

Modified files:
	mail/zarafa/zarafa: Makefile distinfo 
	mail/zarafa/zarafa/patches: patch-common_ECLogger_cpp 
	                            patch-installer_linux_search_cfg 
	                            patch-provider_libserver_ECSession_cpp 
	                            patch-spooler_DAgent_cpp 
	mail/zarafa/zarafa/pkg: PLIST-main README-main 
Added files:
	mail/zarafa/zarafa/pkg: DESCR-mapi PLIST-mapi 
Removed files:
	mail/zarafa/zarafa/patches: patch-php-webclient-ajax__htaccess 
	                            patch-php-webclient-ajax_config_php_dist 
	mail/zarafa/zarafa/pkg: DESCR-web PLIST-web 

Log message:
update to 7.2.4.29


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/12 02:09:34

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

Log message:
update to 2.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/12 02:09:57

Modified files:
	mail/z-push    : Makefile distinfo 
	mail/z-push/patches: patch-config_php 
	mail/z-push/pkg: PLIST 

Log message:
update to 2.3.0 and switch the dep to zarafa,-mapi


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/12 02:11:20

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
zarafa-webaccess is gone, long live zarafa-mapi


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/12 02:15:05

Modified files:
	faq            : current.html 

Log message:
add [packages] marker + new sentence, new line.
fix a date and add some whitespace consistency.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/12 02:16:43

Modified files:
	x11/xfce4/thunar-vcs: Makefile distinfo 
	x11/xfce4/thunar-vcs/pkg: PLIST 

Log message:
update to thunar-vcs 0.1.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/12 02:17:39

Removed files:
	x11/xfce4/thunar-vcs/patches: patch-configure_ac 

Log message:
Patch was removed


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 02:36:25

Modified files:
	games/solarus/roth/patches: patch-CMakeLists_txt 
	games/solarus/zsdx/patches: patch-CMakeLists_txt 
	games/solarus/zsxd/patches: patch-CMakeLists_txt 

Log message:
merged upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 02:37:37

Modified files:
	devel/py-sip   : Makefile 
	devel/py-sip/pkg: PLIST 

Log message:
add python3 flavor

ok shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 02:38:50

Log message:
    import py-PEG2 2.15.2
    
    pyPEG is a plain and simple intrinsic parser interpreter framework for
    Python version 2.7 and 3.x. It is based on Parsing Expression Grammar,
    PEG. With pyPEG you can parse many formal languages in a very easy way.
    
    ok shadchin@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20161208
    
    N ports/textproc/py-PEG2/distinfo
    N ports/textproc/py-PEG2/Makefile
    N ports/textproc/py-PEG2/pkg/PLIST
    N ports/textproc/py-PEG2/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 02:39:42

Modified files:
	textproc       : Makefile 

Log message:
+py-PEG2
+py-PEG2,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 02:40:40

Log message:
    import cpp-hocon-0.1.2
    
    This is a port of the TypesafeConfig library to C++.  The library
    provides C++ support for the HOCON configuration file format.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20161208
    
    N ports/devel/cpp-hocon/Makefile
    N ports/devel/cpp-hocon/distinfo
    N ports/devel/cpp-hocon/pkg/DESCR
    N ports/devel/cpp-hocon/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 02:41:18

Modified files:
	devel          : Makefile 

Log message:
+cpp-hocon


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 02:42:52

Modified files:
	sysutils/facter: Makefile distinfo 
	sysutils/facter/patches: patch-lib_CMakeLists_txt 
Removed files:
	sysutils/facter/patches: patch-CMakeLists_txt 
	                         patch-lib_inc_internal_facts_openbsd_networking_resolver_hpp 
	                         patch-lib_src_facts_bsd_filesystem_resolver_cc 
	                         patch-lib_src_facts_openbsd_memory_resolver_cc 
	                         patch-lib_src_facts_openbsd_networking_resolver_cc 
	                         patch-lib_src_facts_openbsd_virtualization_resolver_cc 

Log message:
update to facter-3.4.0

https://docs.puppet.com/facter/3.4/release_notes.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 03:00:10

Modified files:
	x11/py-qt5/pkg : PLIST-docs 

Log message:
fix stray MODPY_PY_PREFIX that would break with python3

no bump since this port doesn't build with python3 yet (forthcoming)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 03:20:01

Log message:
    import utfcpp-2.3.4
    
    "Many C++ developers miss an easy and portable way of handling Unicode
    encoded strings. The original C++ Standard (known as C++98 or C++03) is
    Unicode agnostic. C++11 provides some support for Unicode on core
    language and library level: u8, u, and U character and string literals,
    char16_t and char32_t character types, u16string and u32string library
    classes, and codecvt support for conversions between Unicode encoding
    forms. In the meantime, developers use third party libraries like ICU,
    OS specific capabilities, or simply roll out their own solutions.
    In order to easily handle UTF-8 encoded Unicode strings, I came up with
    a small generic library. For anybody used to work with STL algorithms
    and iterators, it should be easy and natural to use."
    
    from maintainer Sergey Bronnikov
    ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20161208
    
    N ports/devel/utfcpp/Makefile
    N ports/devel/utfcpp/distinfo
    N ports/devel/utfcpp/pkg/DESCR
    N ports/devel/utfcpp/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 03:21:18

Modified files:
	devel          : Makefile 

Log message:
+utfcpp


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 03:55:28

Modified files:
	lang/python    : Makefile.inc 
	lang/python/2.7: Makefile 
	lang/python/3.4: Makefile 
	lang/python/3.5: Makefile 

Log message:
annotate python interpreters with wxneeded; while python itself is clean there
are various ports that aren't (e.g. py-cryptography and py-qt5 (QtWebKit)).

obviously not a long-term "fix" but helps to keep moving forward

ok jca@ sthen@ rpointel@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 03:56:00

ports/productivity/ledger/patches

Update of /cvs/ports/productivity/ledger/patches
In directory cvs.openbsd.org:/tmp/cvs-serv94510/patches

Log Message:
Directory /cvs/ports/productivity/ledger/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/12 05:17:17

Modified files:
	mail/sylpheed  : Makefile 
Added files:
	mail/sylpheed/patches: patch-libsylph_ssl_c 

Log message:
mail/sylpheed: Fix SSL certificate verification.

OK dcoppa@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/08/12 05:17:37

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

Log message:
band-aid for a nasty bug. tieto + space constraints don't interact well.
there are better fixes (such as computing tieto first, computing the size
better, and doing two passes deletes), but at least this one doesn't fuck
things up.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/12 05:24:36

Modified files:
	audio          : Makefile 
Removed files:
	audio/hgd      : Makefile distinfo 
	audio/hgd/patches: patch-Makefile_in patch-cfg_c patch-crypto_c 
	                   patch-net_c patch-user_c 
	audio/hgd/pkg  : DESCR PFRAG.python PLIST README hgd_netd.rc 
	                 hgd_playd.rc 

Log message:
Kill audio/hgd.

I wrote hgd with a friend some years ago, but now it is now no longer
maintained. Kill it.

OK jturner@, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/12 05:32:48

Modified files:
	infrastructure/db: user.list 

Log message:
Comment audio/hgd, which I just removed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/12 05:45:17

Modified files:
	security/libsodium: Makefile distinfo 

Log message:
update to libsodium-1.0.11, simplified from a diff from pablomh at gmail


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/12 05:50:31

Modified files:
	net/dnscrypt-proxy: Makefile distinfo 

Log message:
update to dnscrypt-proxy-1.7.0, based on a diff from pablomh at gmail


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/12 07:28:49

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

Log message:
update to openconnect-7.07


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/12 07:37:55

Modified files:
	sysutils/freeipmi: Makefile distinfo 

Log message:
update to freeipmi-1.5.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/12 07:38:49

Modified files:
	graphics/ImageMagick: Makefile distinfo 

Log message:
update to ImageMagick-6.9.5-5; buffer overflow, use-after-free


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/12 07:39:30

Modified files:
	net/ocserv     : Makefile distinfo 
	net/ocserv/patches: patch-doc_sample_config 
Removed files:
	net/ocserv/patches: patch-tests_test1_passwd 

Log message:
update to ocserv-0.11.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/12 08:04:34

Modified files:
	usr.sbin/route6d: route6d.8 

Log message:
6bone -> documentation range


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/12 08:07:21

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add quirk for the (now removed) audio/hgd.

OK dcoppa@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/12 08:20:07

Modified files:
	faq/pf         : nat.html 

Log message:
fix inverted pass/block logic and missing line break in nat example.

reported by petr topiarz


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/12 08:23:02

Modified files:
	devel/cmake    : Makefile 
Added files:
	devel/cmake/patches: patch-Modules_FindPkgConfig_cmake 

Log message:
FindPkgConfig: call find_library() for every library returned by
the .pc file, so that at the end a list of full paths to the libraries
is returned.
This makes the pkg_check_modules() behaviour consistent with the
normal CMake convention, where use of link_directories() is discouraged
in favour of using absolute paths to system libraries.

Patch by Sam Thursfield <sam.thursfield@codethink.co.uk>
https://cmake.org/Bug/view.php?id=15804


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/12 08:26:56

Modified files:
	faq/pf         : nat.html 

Log message:
partially revert previous: the pass logic was correct.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 08:40:00

Modified files:
	devel          : Makefile 

Log message:
+py-sip,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/12 09:10:59

Modified files:
	lib/libtls     : tls.c tls.h tls_config.c tls_conninfo.c 
	                 tls_init.3 tls_internal.h tls_server.c 

Log message:
Add ALPN support to libtls.

ok beck@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/12 09:11:50

Modified files:
	lib/libtls     : shlib_version 

Log message:
Bump libtls minor due to symbol additions.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/12 09:51:46

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/12 10:02:31

Modified files:
	sys/arch/armv7/sunxi: sxipio.c sxipiovar.h 
Added files:
	sys/arch/armv7/sunxi: sxipio_pins.h 

Log message:
Hook up sxipio(4) to the generic pinctrl code.  The device binding is pretty
retarded, requiring tables to map text strings to the apropriate numbers.
These tables were generated automatically from data extracted from the
Linux kernel and are kept in a separate file.  This should make it easy
to add support for more SoCs from the same family.

ok deraadt@, millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/12 10:09:37

Modified files:
	sys/arch/armv7/sunxi: sxiuart.c 

Log message:
Call pinctrl_byname() such that ports left unconfiguraed by u-boot will work
as well.

ok deraadt@, millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/12 10:40:48

Modified files:
	devel/cvs2gitdump: Makefile distinfo 
	devel/cvs2gitdump/pkg: PLIST 
Added files:
	devel/cvs2gitdump: patch-cvs2gitdump_1 patch-cvs2svndump_1 

Log message:
Add man pages to cvs2gitdump. OK sthen@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/08/12 11:40:41

Modified files:
	www/llgal      : Makefile distinfo 

Log message:
maintenance update to 0.13.18


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/12 13:19:05

Modified files:
	usr.bin/ssh    : sshd_config.5 

Log message:
Use 2001:db8::/32, the official IPv6 subnet for configuration examples.

This makes the IPv6 example consistent with IPv4, and removes a dubious
mention of a 6bone subnet.

ok sthen@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/12 13:28:10

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

Log message:
update to elixir-1.3.2


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/12 13:55:54

Modified files:
	sys/arch/armv7/sunxi: sxipio.c 

Log message:
Hook up sxipio(4) to the generic gpio code.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/12 14:18:44

Modified files:
	sys/miscfs/fuse: fuse_lookup.c fuse_vfsops.c fuse_vnops.c 
	                 fusefs_node.h 

Log message:
Dedup vnode type information. Fuse stores the vnode type in two places:
vtype in struct fusefs_node and v_type in struct vnode. Given the fact,
that fusefs_node structs are never allocated without an associated vnode
and those two fields are always in sync, one of those locations is
superfluous.

While there remove the unused nlookup field.

ok mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/12 14:39:01

Modified files:
	libexec/ld.so  : library.c library_mquery.c loader.c malloc.c 
	                 util.c util.h 

Log message:
the slimmed down random functions inside ld.so are strict clones of the
libc arc4random API, so call them _dl_{arc4random,arcrandombuf}
ok tedu guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/12 14:52:26

Modified files:
	archivers/xz/patches: patch-src_xz_main_c 
	                      patch-src_xzdec_xzdec_c 

Log message:
remove __OpenBSD__ guard from pledge() patches


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/12 15:17:41

Modified files:
	usr.bin/jot    : jot.c 

Log message:
The last four argumens of jot (reps, begin, end, step) can all be
specified or omitted, yielding 16 possible combinations, plus
a few special cases.

Instead of hardcoded values, use names to make the bit patterns
that indicate which values were specified human readable. Decide
once and for all what to do in a single switch statement. Don't
enter said switch when random output is requested since that
simply makes no sense at all.

While there, make the error messages a bit more meaningful and
fix a bogus value assigned to begin for jot -r x - y z that has
been there since -r1.1. All regression tests now pass.

Inspired by David Laight (dsl)'s r1.21 of NetBSD's jot.

"move fast and break stuff" tedu
agreement from deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/12 15:31:11

Modified files:
	usr.bin/jot    : jot.c 

Log message:
usage() is __dead


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/08/12 15:38:52

Modified files:
	net/argus      : Makefile distinfo 
	net/argus/patches: patch-argus_ArgusModeler_c 
	net/argus/pkg  : PLIST 

Log message:
update to 3.0.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/08/12 15:39:14

Modified files:
	net/argus-clients: Makefile distinfo 
	net/argus-clients/patches: patch-common_argus_util_c 

Log message:
update to 3.0.8.2


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/12 15:49:31

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

Log message:
Rewrite the paragraphs that describe how the last four arguments are
handled to make them easier to read and understand.

with help from jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/12 16:01:46

Log message:
    import p5-Test-MockRandom 1.01
    OK jca@
    
    replace random number generation with non-random
    
    This perhaps ridiculous-seeming module was created to test routines
    that manipulate random numbers by providing a known output from
    rand.  Given a list of seeds with srand, it will return each in
    turn.  After seeded random numbers are exhausted, it will always
    return 0.  Seed numbers must be of a form that meets the expected
    output from rand as called with no arguments -- i.e.  they must be
    between 0 (inclusive) and 1 (exclusive).  In order to facilitate
    generating and testing a nearly-one number, this module exports the
    function oneish, which returns a number just fractionally less than
    one.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20160813
    
    N ports/devel/p5-Test-MockRandom/distinfo
    N ports/devel/p5-Test-MockRandom/Makefile
    N ports/devel/p5-Test-MockRandom/pkg/PLIST
    N ports/devel/p5-Test-MockRandom/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/12 16:03:40

Modified files:
	sysutils/udfclient: Makefile distinfo 

Log message:
Update to udfclient-0.8.6

from maintainer Josh Grosse


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/12 16:04:32

Modified files:
	devel          : Makefile 

Log message:
+p5-Test-MockRandom


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/12 16:05:14

Modified files:
	sysutils/udfclient: Makefile 

Log message:
This port has no test suite, add NO_TEST=Yes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/12 16:12:13

Modified files:
	sysutils/shunt : Makefile 
	sysutils/shunt/pkg: DESCR PLIST 
Added files:
	sysutils/shunt/patches: patch-src_exactly_main_c 
	                        patch-src_flyisofs_main_c 
	                        patch-src_shunt_main_c 

Log message:
Use pledge(2).

Also kill trailing whitespace in DESCR and add @bin annotations.

From maintainer Josh Gross.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/12 16:12:44

Modified files:
	sysutils/shunt : Makefile 

Log message:
No test suite, NO_TEST=Yes


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/12 16:46:02

Modified files:
	sys/uvm        : uvm_unix.c 

Log message:
Include map entries that have an amap associated with them in the coredump.
This fixes coredumps of processes that use relro to make part of their
writable address space read-only.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/12 16:53:35

Modified files:
	www/p5-Gravatar-URL: Makefile distinfo 

Log message:
update p5-Gravatar-URL to 1.07


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/12 17:15:46

Log message:
    Help and OK jca@
    
    Comment:
    detects when files bit-rot
    
    Description:
    Bitrot detects when files bit-rot to save your precious photo and
    music collection from slow decay.
    
    Maintainer: Michael McConville <mmcco@mykolab.com>
    
    WWW: https://github.com/ambv/bitrot/
    
    Status:
    
    Vendor Tag:	juanfra
    Release Tags:	juanfra_20160813
    
    N ports/sysutils/bitrot/Makefile
    N ports/sysutils/bitrot/distinfo
    N ports/sysutils/bitrot/pkg/PLIST
    N ports/sysutils/bitrot/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/12 17:21:25

Modified files:
	lang           : Makefile 

Log message:
+lang/bacon


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/12 17:24:56

Modified files:
	sysutils       : Makefile 

Log message:
+sysutils/bitrot


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/12 17:29:59

Modified files:
	usr.bin/jot    : jot.c 

Log message:
Simplify getprec() by using strchr(3) and strspn(3).
Part of NetBSD's jot r1.20 by dsl.

ok jca


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/12 17:41:59

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.036


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/12 18:56:06

Modified files:
	faq            : faq10.html 

Log message:
tweak the section on characters and locales a little: use the new faq
formatting style and condense some sentences and vertical space here
and there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/08/12 21:54:35

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_man_nano_1 
	                      patch-doc_man_nanorc_5 
	                      patch-src_Makefile_in 

Log message:
Little update for nano to 2.6.1:

https://www.nano-editor.org/dist/v2.6/NEWS

OK naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/13 01:40:43

Modified files:
	devel/cargo    : Makefile 
	lang/rust      : Makefile 

Log message:
Sebastien drops MAINTAINERship for lack of time... any takers ?
Thanks for your work on it !


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/13 02:42:22

Modified files:
	devel/hub      : Makefile 
	sysutils/beats : Makefile.inc 

Log message:
it's no longer needed to set GO15VENDOREXPERIMENT since we have go 1.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/13 02:49:54

Modified files:
	devel/spice-protocol: Makefile distinfo 

Log message:
update to spice-protocol-0.12.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/13 02:51:21

Modified files:
	devel/ruby-deep_merge: Makefile distinfo 
	devel/ruby-deep_merge/pkg: PLIST 

Log message:
update to deep_merge-1.1.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/13 03:14:56

Modified files:
	usr.bin/mandoc : mdoc_macro.c 

Log message:
Even after switching from a pending head to the body, we have to
continue scanning upwards, because the enclosing block might already
be pending as well, e.g. .Bl .Bl .It Bo .El .It.
Tree corruption leading to a later NULL deref found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/13 03:58:37

Modified files:
	app/cwm        : conf.c 

Log message:
conf_screen: report the fontname that can't be opened in case of failure.
ok dcoppa@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/13 03:59:48

Modified files:
	app/cwm        : conf.c 

Log message:
add a column to previous commit for consitency.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/13 04:03:25

Modified files:
	mail/zarafa    : Makefile.inc 

Log message:
missed from the previous commit, update to 7.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/13 04:43:02

Modified files:
	devel/spidermonkey: Makefile 
Added files:
	devel/spidermonkey/patches: patch-config_config_mk 

Log message:
mark wxneeded

ok landry@ (moral MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 04:52:21

Added files:
	sys/dev/ofw    : ofw_regulator.c ofw_regulator.h 

Log message:
Add a minimal regulator "framework".

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 04:58:45

Modified files:
	sys/arch/armv7/conf: files.armv7 

Log message:
Build ofw_regulator.o.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 05:08:58

Modified files:
	sys/arch/armv7/imx: imxehci.c imxesdhc.c 

Log message:
Use regulalator API instead of private functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/13 05:42:46

Modified files:
	sys/miscfs/fuse: fuse_vfsops.c 
	sys/sys        : fusebuf.h 

Log message:
Kill FUSE_ROOT_ID and use FUSE_ROOTINO instead. Also, remove one (ino_t)
cast from FUSE_ROOTINO, as it is already included in the #define.

ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/13 06:55:21

Modified files:
	usr.bin/ftp    : main.c 

Log message:
Split out the SSL options handling into a separate function, which makes
for more readable code and reduces line wrapping. Also improve error
messages by adding tls_config_error() to errx() where appropriate.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/13 07:05:51

Modified files:
	lib/libtls     : tls.c tls_config.c tls_internal.h 

Log message:
Load CA, certificate and key files into memory when the appropriate
tls_config_set_*_file() function is called. This allows us to immediately
propagate useful error messages, play more nicely with privsep/pledge and
have a single code path. Instead of always loading the default CA when
tls_config_new() is called, defer and only load the default CA when
tls_configure() is invoked, if a CA has not already been specified.

ok beck@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/13 07:09:10

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
Let libtls load the CA, certificate and key files for nc(1), now that it
does this at the time the tls_config_set_*_file() function is called.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/13 07:15:53

Modified files:
	lib/libtls     : tls_config.c 

Log message:
Avoid leaking memory if tls_config_set_alpn() is called multiple times
(this was in the original commit, but got reverted in the recommit).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 07:55:25

Modified files:
	sys/arch/armv7/sunxi: sun4i.c sun7i.c 

Log message:
Remove entries that are no longer needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2016/08/13 08:00:00

Modified files:
	x11/slock      : Makefile 
	x11/slock/patches: patch-config_mk 
Added files:
	x11/slock/patches: patch-slock_c 

Log message:
Make sure the password is cleared from memory when the password entry
is aborted with backspace or escape.  With help from jca and a lot of
feedback from many.

ok jca, gsoares (MAINTAINER)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/13 08:05:23

Modified files:
	xserver        : configure configure.ac 

Log message:
Kill remaining HP300 bits


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/13 09:01:13

Modified files:
	devel/cmake    : Makefile 
Removed files:
	devel/cmake/patches: patch-Modules_FindPkgConfig_cmake 

Log message:
Revert previous, it was causing breakage to some ports.
spotted by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/13 09:05:57

Removed files:
	mail/z-push/patches: patch-backend_zarafa_listfolders_php 
	                     patch-index_php 

Log message:
remove obsolete patches


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/13 09:18:58

Modified files:
	net/mosquitto  : Makefile distinfo 
	net/mosquitto/patches: patch-CMakeLists_txt 
	                       patch-lib_CMakeLists_txt 
	                       patch-lib_cpp_CMakeLists_txt 
	                       patch-mosquitto_conf 
	                       patch-src_CMakeLists_txt 
	net/mosquitto/pkg: DESCR 
Removed files:
	net/mosquitto/patches: patch-lib_memory_mosq_h 
	                       patch-lib_tls_mosq_c 

Log message:
- update to mosquitto-1.4.9

ok edd@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/13 09:25:57

Modified files:
	faq            : faq10.html index.html 

Log message:
rework the first sections of faq10

- remove section on su and group wheel
- shorten duplicating filesystems
- trim a lot of rc(8) bits that just duplicated the manual

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/13 09:37:49

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.socppc md.sparc md.sparc64 md.zaurus 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/13 10:45:28

Modified files:
	faq            : faq10.html 

Log message:
shorten doas section. just keep the minimum and refer to the
documentation instead of repeating it.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/13 11:05:02

Modified files:
	sys/sys        : event.h 
	lib/libc/sys   : kqueue.2 

Log message:
modern interfaces should use modern speelings, so spell quad_t as int64_t.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/13 11:36:04

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

Log message:
As the relevant struct's (e.g. tcpstat) use [u_]int64_t types, the
proper printf() format is %ll[ud], not the antediluvian %q[ud].
Reminded by guenther@'s proposed retirement of quad types.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/08/13 11:47:41

Modified files:
	usr.bin/ssh    : auth-rhosts.c auth.c auth.h monitor.c 
	                 monitor_wrap.c monitor_wrap.h serverloop.c 
	                 serverloop.h session.c session.h sshd.c 
	usr.bin/ssh/sshd: Makefile 
Removed files:
	usr.bin/ssh    : auth-chall.c auth-rh-rsa.c auth-rsa.c auth1.c 

Log message:
remove ssh1 server code; ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/13 11:51:25

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

Log message:
%lld -> %llu for u_int64_t struct fields.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/13 12:23:39

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

Log message:
shorten gendsa;


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/08/13 12:54:58

Modified files:
	lang/ghc       : Makefile 

Log message:
Remove unused CONF_GCC_LD_OPTS_STAGE* from CONFIGURE_ENV.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/13 13:10:21

Modified files:
	devel/xulrunner/24: Makefile 
Added files:
	devel/xulrunner/24/patches: patch-js_xpconnect_shell_Makefile_in 
	                            patch-xulrunner_app_Makefile_in 
	                            patch-xulrunner_stub_Makefile_in 

Log message:
mark xulrunner, xulrunner-stub, and the xpcshell build tool with wxneeded
ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/13 13:22:05

Modified files:
	productivity/ledger: Makefile distinfo 
	productivity/ledger/pkg: DESCR PLIST 
Added files:
	productivity/ledger/patches: patch-doc_CMakeLists_txt 
	                             patch-src_CMakeLists_txt 

Log message:
update to ledger-3.1.1

based on an initial diff by and OK Sergey Bronnikov (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 14:35:57

Modified files:
	sys/conf       : files 
Added files:
	sys/dev/ic     : dwc_gmac.c dwc_gmac_reg.h dwc_gmac_var.h 

Log message:
Add the core of the code for dwge(4), a driver for the Synopsis Designware
GMAC core which is used on the Allwinner A20 SoCs and later SoCs in the
Allwinner family.  Since this core is very likely to show up the base of
other devices, it gets to live here in dev/ic.

Ported from NetBSD (where it is named awge(4)) by patrick@.  Some further
fixes by me.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 14:51:48

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : dwge.4 

Log message:
dwge(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/13 14:53:17

Modified files:
	sys/isofs/cd9660: cd9660_vfsops.c 
	sys/isofs/udf  : udf_vfsops.c 
	sys/msdosfs    : msdosfs_vfsops.c 
	sys/nfs        : nfs_vfsops.c 
	sys/ntfs       : ntfs_vfsops.c 

Log message:
Eliminate pointless casts to qaddr_t of a value being assigned to a void*

ok kettenis@ krw@ natano@ dlg@ espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/13 14:57:04

Modified files:
	libexec/ld.so  : boot.c 

Log message:
Passing in &_DYNAMIC appears to have stuck, so eliminate the extra
variable


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/13 15:08:07

Added files:
	net/ocserv/patches: patch-tests_data_test1_passwd 
Removed files:
	net/ocserv/patches: patch-tests_common_sh 

Log message:
fix patch breakage, spotted by naddy (forgotten rm/add).


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/13 15:28:10

Modified files:
	sys/ufs/ext2fs : ext2fs_vfsops.c 
	sys/ufs/ffs    : ffs_vfsops.c 

Log message:
Missed a couple qaddr_t casts


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 15:48:44

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c sxiccmuvar.h 

Log message:
Add GMAC clock support.  Based on an earlier diff from patrick@.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/13 16:07:01

Modified files:
	sys/arch/armv7/sunxi: files.sunxi 
	sys/arch/armv7/conf: GENERIC RAMDISK 
Added files:
	sys/arch/armv7/sunxi: if_dwge_fdt.c 

Log message:
Add the shim to make dwge(4) attach to simplebus(4).  This brings us
working gigabit on the Allwinner A20.  Probably won't work yet on other
Allwinner SoCs due to differences in how the clocks get set up.

Based on an earlier diff from patrick@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/13 17:35:00

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

Log message:
use -nosplit for AUTHORS: looks much better, to the point where i wonder why we don;t just enforce this...


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/13 19:52:47

Modified files:
	sys/dev/ic     : mfireg.h 

Log message:
replace u_quad_t with uint64_t.

guenther is proposing the removal of u_quad_t. uint64_t is more portable.

tested on a perc5 and perc6, no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/13 22:08:03

Modified files:
	sys/dev        : biovar.h 
	sys/dev/ic     : ami.c ciss.c mfireg.h mpi.c 
	sys/dev/pci    : ips.c 

Log message:
change some types in bio from u_quad_t to uint64_t, and fix casts in
drivers that fill that field in too.

quad types are going away.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/13 22:25:27

Modified files:
	gnu/usr.bin/binutils-2.17/ld/scripttempl: elf.sc 

Log message:
Turning off relro shouldn't insert padding into the middle of the relro
section; remove the PAD_GOT0 use that I should have deleted before.  This
caused ld.so crashes on arm when building binutils.

critical debugging observations by kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/13 22:30:39

Modified files:
	libexec/ld.so  : loader.c 

Log message:
Mark the relro/got section as read-only before setting up the environment
to minimize the amount of code run without it RO.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/13 22:47:52

Modified files:
	bin/pax        : cpio.c extern.h gen_subs.c options.c tar.c 

Log message:
Replace u_quad_t with unsigned long long and replace "uqd" with "ull" in
function names to match.  Pull some tangled assignments out of conditions
and use >>= where possible.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/13 22:51:29

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

Log message:
u_quad_t -> uint64_t

de is amazing(tm). it really should be cut back and simplified a bit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/14 01:09:26

Modified files:
	mail/s-nail    : Makefile distinfo 
	mail/s-nail/pkg: PLIST 

Log message:
update to s-nail-14.8.9

OK william@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/14 02:23:52

Modified files:
	sys/arch/mips64/include: cpu.h mips_cpu.h pte.h 
	sys/arch/mips64/mips64: context.S db_machdep.c mips64r2.S pmap.c 
	                        tlbhandler.S trap.c 
	sys/arch/octeon/octeon: locore.S machdep.c 

Log message:
Utilize the TLB Execute-Inhibit bit with non-executable mappings on CPUs
that support the Execute-Inhibit exception. This makes user space W^X
effective on Octeon Plus and later Octeon versions.

Feedback from miod@, thanks!
No objection from deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/14 02:49:37

Modified files:
	sys/arch/octeon/dev: if_cnmac.c 

Log message:
Remove some annoying debug printfs to get rid of u_quad_t in cnmac.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/14 03:02:53

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

Log message:
shorten genpkey; ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/14 03:52:08

Modified files:
	usr.sbin/user  : useradd.8 

Log message:
Xr encrypt(1) in the explanation of the -p option.

ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/14 04:32:17

Modified files:
	sys/arch/arm/arm: bus_dma.c 

Log message:
Allow a bus_dmamap_sync() of length zero.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/14 04:36:47

Modified files:
	sys/arch/arm/arm: cpufunc.c 
	sys/arch/arm/include: armreg.h 

Log message:
Fix setting the SMP bit in the Auxiliary Control Register.  The old code was
toggling the bit, clearing it when already set.  On Cortex-A7 setting the SMP
bit is essential since without it the CPU doesn't actually use its caches.

The SMP bit supposed to be set before turning on the caches and the MMU, so
move the setting of the Auxiliary Control Register before setting the
System Control Register.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/14 04:52:07

Modified files:
	www/nginx      : Makefile 
	www/nginx/pkg  : DESCR 

Log message:
committing on behalf of william@ (co-MAINTAINER):

- fix pre-patch target to allow multiple FLAVORs (thanks ajacoutot@ and phessler@)

- add 'mailproxy' FLAVOR to enable mail_pop3_module, mail_imap_module,
and mail_smtp_module (requested by Lyndon Nerenberg)

- sort the FLAVORs alphabetically in the README

ok ajacoutot@ robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/14 04:53:04

Modified files:
	www            : Makefile 

Log message:
+nginx,mailproxy


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/14 05:05:20

Modified files:
	sysutils/dmassage: Makefile 

Log message:
mirror distfile as HOMEPAGE/MASTER_SITES don't point to relevant content anymore


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/14 05:30:54

Modified files:
	sys/arch/arm/arm: cpu.c cpufunc.c 
	sys/arch/arm/conf: files.arm 
	sys/arch/arm/include: armreg.h cpuconf.h cpufunc.h 
Removed files:
	sys/arch/arm/xscale: files.i80321 i80321.c i80321_clock.c 
	                     i80321_i2c.c i80321_intr.c i80321_mcu.c 
	                     i80321_mutex.c i80321_pci.c i80321_space.c 
	                     i80321reg.h i80321var.h iopi2c.c 
	                     iopi2creg.h iopi2cvar.h xscalereg.h 

Log message:
Remove code for Intel 80219/80321 xscale processors used by armish.
Generic xscale support and support for pxa2x0 used by zaurus remains.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/14 07:29:22

Modified files:
	sys/arch/zaurus/zaurus: zaurus_machdep.c 

Log message:
remove uneeded sa1111_reg.h include
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/14 07:40:55

Modified files:
	bin/dd         : args.c 

Log message:
replace strtoq with strtoll. ok openbsd


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/14 07:47:52

Modified files:
	usr.sbin/installboot: Makefile 

Log message:
Merge identical amd64 and i386 stanzas.

Requested & ok jsing@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	visa@cvs.openbsd.org	2016/08/14 07:51:59

Modified files:
	distrib/sets/lists/xbase: md.octeon 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 08:47:08

Modified files:
	faq            : faq10.html index.html 

Log message:
"changing a user's password" explained vipw(8), passwd(5) and friends
but not actually how to change a user's password.  rename it to
"editing the password file" and rewrite it to read a bit better.

the "adding and deleting users" was not particularly well written and
had a very low content / length ratio.  delete the bulk of it, call it
"managing users and groups" and refer to the relevant man pages.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/14 08:57:16

Modified files:
	usr.sbin/pwd_mkdb: pwd_mkdb.8 
	usr.sbin/vipw  : vipw.8 
	lib/libc/gen   : getpwent.3 getpwnam.3 
	lib/libutil    : pw_init.3 pw_lock.3 

Log message:
Refer to /etc/passwd consistently as the "legacy password file" and
remove some references to differences between versions 6 and 7.

ok jmc, millert, tedu


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 09:21:18

Modified files:
	faq/pf         : nat.html rdr.html shortcuts.html 

Log message:
use <blockquote><pre> instead of just <blockquote>

patch from Vinicius Zavam, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/14 09:35:14

Modified files:
	net/sic        : Makefile 
Added files:
	net/sic/patches: patch-sic_c 

Log message:
Use pledge(2).

Initial patch from Ali H. Fardan.

ok sthen@ jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/14 10:29:20

Modified files:
	archivers/p7zip: Makefile distinfo 
	archivers/p7zip/patches: 
	                         patch-CPP_7zip_Bundles_SFXCon_SfxCon_cpp 
	archivers/p7zip/pkg: PLIST-main 
Removed files:
	archivers/p7zip/patches: patch-CPP_7zip_Archive_HfsHandler_cpp 
	                         patch-CPP_7zip_Archive_Udf_UdfIn_cpp 
	                         patch-CPP_Windows_System_cpp 

Log message:
Update to p7zip-16.02

Remove patches for security fixes now included in upstream tarball.

From maintainer Josh Grosse.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 11:15:26

Modified files:
	faq            : faq10.html 

Log message:
trim and rewrite the section on disk quotas a little.  place the example
quota on /home instead of / and, in a rare fit of generosity, bump the
soft limit of ericj from one meg to a whopping gig.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 11:58:57

Modified files:
	faq            : index.html faq8.html faq10.html 

Log message:
move "character sets and localization" from faq10 to faq8 and move
the "s/key" section from faq8 to faq10.  in faq10 shuffle the sections
a bit, so the longer sections are towards the end of the page.


CVSROOT:	/cvs
Module name:	www
Changes by:	kettenis@cvs.openbsd.org	2016/08/14 12:00:32

Modified files:
	.              : armv7.html 

Log message:
Allwinner A20 works well enough to deserve a listing here.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 12:30:33

Modified files:
	bin/pax        : ar_io.c buf_subs.c cpio.c file_subs.c tables.c 
	                 tar.c 

Log message:
Remove many unnecessary casts.  Verified by comparing generated code on
both ILP32 and LP64.

ok millert@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 12:32:58

Modified files:
	faq            : faq10.html index.html 

Log message:
tj requested that i remove "converting a linux password file".


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 12:34:48

Modified files:
	games/factor   : factor.c 
	usr.bin/cmp    : cmp.c 
	usr.bin/ftp    : cmds.c util.c 
	usr.sbin/memconfig: memconfig.c 
	usr.sbin/mtree : spec.c 
	usr.sbin/rmt   : rmt.c 

Log message:
Convert remaining calls to strtoq/strtouq in base with strtoll/strtoull.
Fix a type mismatch in ftp's "page" command and could make transfers restart
at the wrong position.

ok and a ull->ll tweak from natano@, ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 12:46:03

Modified files:
	libexec/ld.so/arm: Makefile.inc 

Log message:
Drop -z nocombreloc.  That's a rev 1.1 commit so not clear why it was needed
then; perhaps fixed by the bump in binutils?  Anyway, builds seem good without
it and that enables the full relro layout for ld.so.

ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/14 12:56:40

Modified files:
	.              : lyrics.html 
Removed files:
	.              : back.gif mug.html vax-simh.html 
	hp300          : domain.commands.html hp300faq.html 
	                 serialconsole.html 
	info2www       : info2www.html infodoc.gif menu.gif next.gif 
	                 prev.gif up.gif 

Log message:
remove some old junk.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/14 13:08:44

Modified files:
	sys/arch/armv7/conf: GENERIC 
	sys/arch/armv7/imx: files.imx imxocotp.c imxocotpvar.h 
Added files:
	sys/arch/armv7/imx: imxtemp.c 

Log message:
Add imxtemp(4), a temperature sensor for the i.MX6 SoC.  Based on code written
by patrick@.

ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 13:08:52

Modified files:
	faq            : faq8.html 

Log message:
use the usual faq style for the "forgot my root passwd" section

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/14 13:15:23

Modified files:
	share/man/man4/man4.armv7: Makefile 
Added files:
	share/man/man4/man4.armv7: imxtemp.4 

Log message:
imxtemp(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/14 13:32:43

Modified files:
	share/man/man4/man4.armv7: imxtemp.4 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 13:45:24

Modified files:
	bin/csh        : misc.c 

Log message:
Don't call sysconf() in a loop conditional when the loop won't affect it

ok natano@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 13:46:31

Modified files:
	bin/csh        : func.c 

Log message:
Don't reinvent rlim_t; when printing it use %llu and cast to
unsigned long long

ok natano@ tedu@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 13:48:38

Modified files:
	build          : support.dat 

Log message:
+Infosecurity LLC Moscow, Russian Federation
http://www.gk-is.ru/services.php


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 13:49:34

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/14 13:54:35

www/papers/bsdcon_2002

Update of /cvs/www/papers/bsdcon_2002
In directory cvs.openbsd.org:/tmp/cvs-serv22589/bsdcon_2002

Log Message:
Directory /cvs/www/papers/bsdcon_2002 added to the repository


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/14 13:54:35

www/papers/musess_2002

Update of /cvs/www/papers/musess_2002
In directory cvs.openbsd.org:/tmp/cvs-serv22589/musess_2002

Log Message:
Directory /cvs/www/papers/musess_2002 added to the repository


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 14:04:55

Modified files:
	build          : support.dat 

Log message:
fix a couple of typos in previous


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 14:05:20

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/14 14:06:04

Modified files:
	.              : events.html 
Added files:
	papers/bsdcon_2002: 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 
	papers/musess_2002: first0.gif first1.gif img0.gif img0.htm 
	                    img1.gif img1.htm img10.gif img10.htm 
	                    img11.gif img11.htm img12.gif img12.htm 
	                    img13.gif img13.htm img14.gif img14.htm 
	                    img15.gif img15.htm img16.gif img16.htm 
	                    img17.gif img17.htm img18.gif img18.htm 
	                    img19.gif img19.htm img2.gif img2.htm 
	                    img20.gif img20.htm img21.gif img21.htm 
	                    img22.gif img22.htm img23.gif img23.htm 
	                    img24.gif img24.htm img3.gif img3.htm 
	                    img4.gif img4.htm img5.gif img5.htm img6.gif 
	                    img6.htm img7.gif img7.htm img8.gif img8.htm 
	                    img9.gif img9.htm index.gif index.html 
	                    last0.gif last1.gif next0.gif next1.gif 
	                    prev0.gif prev1.gif sologo.gif style.css 
	                    text.gif text0.htm text1.htm text10.htm 
	                    text11.htm text12.htm text13.htm text14.htm 
	                    text15.htm text16.htm text17.htm text18.htm 
	                    text19.htm text2.htm text20.htm text21.htm 
	                    text22.htm text23.htm text24.htm text3.htm 
	                    text4.htm text5.htm text6.htm text7.htm 
	                    text8.htm text9.htm 
Removed files:
	slides/bsdcon_2002: 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 
	slides/musess_2002: first0.gif first1.gif img0.gif img0.htm 
	                    img1.gif img1.htm img10.gif img10.htm 
	                    img11.gif img11.htm img12.gif img12.htm 
	                    img13.gif img13.htm img14.gif img14.htm 
	                    img15.gif img15.htm img16.gif img16.htm 
	                    img17.gif img17.htm img18.gif img18.htm 
	                    img19.gif img19.htm img2.gif img2.htm 
	                    img20.gif img20.htm img21.gif img21.htm 
	                    img22.gif img22.htm img23.gif img23.htm 
	                    img24.gif img24.htm img3.gif img3.htm 
	                    img4.gif img4.htm img5.gif img5.htm img6.gif 
	                    img6.htm img7.gif img7.htm img8.gif img8.htm 
	                    img9.gif img9.htm index.gif index.html 
	                    last0.gif last1.gif next0.gif next1.gif 
	                    prev0.gif prev1.gif sologo.gif style.css 
	                    text.gif text0.htm text1.htm text10.htm 
	                    text11.htm text12.htm text13.htm text14.htm 
	                    text15.htm text16.htm text17.htm text18.htm 
	                    text19.htm text2.htm text20.htm text21.htm 
	                    text22.htm text23.htm text24.htm text3.htm 
	                    text4.htm text5.htm text6.htm text7.htm 
	                    text8.htm text9.htm 

Log message:
move the two presentations in www/slides to www/papers where they belong.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/14 14:53:19

Modified files:
	usr.sbin/mtree : compare.c create.c 

Log message:
%qd -> %lld + (long long) for off_t's.

ok guenther@ natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/14 14:59:53

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.socppc md.sparc md.sparc64 md.zaurus 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/14 15:07:40

Modified files:
	bin/df         : df.c 

Log message:
Another %qd -> %lld + (long long) for off_t's.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/14 15:13:08

Modified files:
	bin/dd         : misc.c 

Log message:
%qd -> %lld for an off_t already being cast to (long long)!


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/08/14 15:29:44

Modified files:
	net/argus-clients: Makefile distinfo 

Log message:
distfile was rerolled, spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 15:47:16

Modified files:
	usr.bin/vi/common: search.c 

Log message:
Kill '#if defined(DEBUG) && 0' blocks that used %q

ok bentley@ on principle


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/14 16:29:01

Modified files:
	usr.sbin/sa    : extern.h main.c pdb.c usrdb.c 

Log message:
Flip 'u_quad_t' fields & variables to uint64_t, and %qu to %llu.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 16:35:54

Modified files:
	sbin/fsirand   : fsirand.c 

Log message:
Convert %q to %ll.  Cast off_t to long long for printf-style args.
Eliminate pointless casts to void* or off_t

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 16:47:26

Modified files:
	usr.bin/vmstat : vmstat.c 
	usr.sbin/pstat : pstat.c 

Log message:
Convert %q to %ll and cast opaque system values to long long.
Use uint64_t for the KERN_INTRCNT_CNT sysctl()

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 16:54:56

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
Use int64_t and %ll for CTLTYPE_QUAD nodes.
Use memcpy() instead of up-casting from char* to long long*

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 16:56:29

Modified files:
	libexec/ftpd   : ftpcmd.y ftpd.c 

Log message:
Convert %q to %ll with long long casts for printf()
Delete pointless casts to off_t, void*, and uid_t

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 16:57:31

Modified files:
	libexec/ftpd   : logutmp.c 

Log message:
When upcasting to off_t for multiplication, the cast needs to be *before*
the multiplication to avoid truncation/overflow

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 17:01:13

Modified files:
	regress/sys/arch/sparc64/emul-popc/reg: reg.c 

Log message:
Convert %q to %ll


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 17:08:09

Modified files:
	regress/lib/libutil/fmt_scaled: fmt_test.c 

Log message:
Convert quad_t to long long


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 17:18:03

Modified files:
	lib/libc/hidden: stdlib.h 
	lib/libc/stdlib: Makefile.inc div.3 imaxdiv.3 labs.3 ldiv.3 
	                 llabs.c lldiv.3 lldiv.c 
Removed files:
	lib/libc/stdlib: qabs.3 qabs.c qdiv.3 qdiv.c 

Log message:
Reduce qabs() and qdiv() to aliases of llabs() and lldiv().
Merge the manual pages and call them deprecated there.

ok and manpage tweak jmc@, ok natano@


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/08/14 17:23:51

Modified files:
	faq            : current.html 

Log message:
Note removal of the qdiv(3) and qabs(3) manpages


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/14 20:03:56

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

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/14 20:22:16

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 ECL.html 
	                 alpha.html amd64.html amiga.html 
	                 announce28.html anoncvs.html arc.html 
	                 armish.html armv7.html art1.html art2.html 
	                 art3.html art4.html aviion.html 
	                 bank-donation.html beagle.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 
	                 events.html ftp.html goals.html groups.html 
	                 hackathons.html hp300.html hppa.html 
	                 hppa64.html i386.html index.html 
	                 innovations.html landisk.html loongson.html 
	                 luna88k.html lyrics.html mac68k.html 
	                 macppc.html mail.html mvme68k.html mvme88k.html 
	                 octeon.html older.html orders.html 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 
	                 pmax.html policy.html powerpc.html press.html 
	                 report.html romp.html security.html sgi.html 
	                 socppc.html solbourne.html sparc.html 
	                 sparc64.html stable.html sun3.html support.html 
	                 tshirts.html users.html vax.html want.html 
	                 zaurus.html 
	build          : groups.skel support.skel 
	build/mirrors  : anoncvs.html.head cvsync.html.head 
	                 ftp.html.head 
	faq            : current.html faq1.html faq10.html faq11.html 
	                 faq13.html faq14.html faq15.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 
	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 
	                 specialtopics.html testing.html 
	libressl       : index.html mail.html papers.html 
	openbgpd       : index.html manual.html papers.html 
	opencvs        : index.html manual.html 
	openntpd       : index.html manual.html papers.html 
	opensmtpd      : index.html manual.html portable.html 
	                 report.html security.html 
	opensmtpd/faq  : filters.html index.html 
	openssh        : donations.html features.html history.html 
	                 index.html openbsd.html report.html 
	                 security.html users.html 
	papers         : index.html 
	reprints       : article_20000306.html pr27.html 
	spamd          : index.html 

Log message:
tls on openbsd.org is now real:
- link to https://www.openbsd.org from the sub-projects' pages
- make internal links relative
- switch link rel=canonical to https to please some search engines
"go ahead" from beck, "do it!!!!" tj


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 21:09:02

Modified files:
	libexec/ld.so/sh: Makefile.inc 

Log message:
Drop -z nocombreloc.  It was a rev 1.1 commit like on arm, so not clear
why it was needed then; perhaps fixed by the bump in binutils?
Removing it enables the full relro layout for ld.so.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/14 22:28:31

Modified files:
	usr.bin/passwd : local_passwd.c 

Log message:
Trust the login_getcaptime() declaration and don't cast the arguments to
their own expected type


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/08/14 22:32:57

Modified files:
	sys/arch/armv7/sunxi: sxiuart.c 

Log message:
Drain FIFOs on init same as com(4) does it and reduce the RX FIFO interrupt
trigger to 1 character.  This fixes a hang seen on the allwinner,sun5i-r8
board during boot when the driver switches to interrupts and no terminal
is attached.

ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/15 01:03:47

Modified files:
	sys/net        : bpf.c 

Log message:
Merge bpfilter_create() into bpfopen() and make it such that the
descriptor is referenced before it is inserted in the global list.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/15 01:12:11

Modified files:
	sys/net        : bpf.c 

Log message:
Check if ``bd_bif'' is NULL inside bpf_catchpacket() to match bpfread()
and bpfwrite(), all of which will need to grabe a lock to protect the
buffers.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/15 01:17:10

Modified files:
	sys/net        : bpf.c 

Log message:
Introduce bpf_put() and bpf_get() instead of mixing macro and functions
for the reference counting.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/15 01:18:44

Modified files:
	lib/libc/stdlib: labs.3 lldiv.3 

Log message:
add a bit of spacing to previous, to keep the notes about deprecated
functions out the way of the main body;

ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/15 01:20:14

Modified files:
	sys/net        : bpf.c 

Log message:
No need to reset si_selpid after calling selwakeup() the function
already does it.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/15 01:39:46

Modified files:
	sys/miscfs/fuse: fuse_vfsops.c 

Log message:
Neuter fuse_vptofh() and fuse_fhtovp(). I implemented those functions
under the assumption, that fuse_vget() has reasonable semantics, while
this is not the case. fusefs_vget() only functions correctly, if the
file in questions has recently been accessed and is still in the vnode
cache of the userspace daemon associated with the mount point.

As a matter of fact the fuse api doesn't feature a reasonable way to map
inode numbers to a handle at all (see struct fuse_operations).

ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/15 02:52:03

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

Log message:
Checking for RTF_BROADCAST here makes no sense.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/15 03:16:26

Modified files:
	sys/arch/armv7/sunxi: sxiahci.c 

Log message:
Use the regulator API to supply power to the target.

Tested by Daniel Bolgheroni on a Cubietech Cubieboard2.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/15 03:16:40

Modified files:
	lang/pypy      : Makefile distinfo 
Added files:
	lang/pypy/patches: 
	                   patch-rpython_jit_backend_x86_detect_feature_py 
	                   patch-rpython_rlib_rmmap_py 
Removed files:
	lang/pypy/patches: 
	                   patch-rpython_rlib_rvmprof_src_vmprof_config_h 
	                   patch-rpython_rlib_rvmprof_src_vmprof_getpc_h 

Log message:
lang/pypy: Fix build for W^X and update to 5.3.1.

Note that the W^X patch only makes the CPython-based no_bootstrap build work,
and that the PyPy JIT itself is still not W^X compliant. This will require more
work.

OK jca@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/15 03:20:47

Modified files:
	sys/arch/armv7/sunxi: sxie.c 

Log message:
Use pinctrl to configure the pins used by the EMAC.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/15 03:24:45

Modified files:
	graphics/openimageio: Makefile 

Log message:
"Fix" on i386; this now requires 64-bit atomics.  Found by sthen@.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/15 04:24:24

Modified files:
	faq            : faq10.html 

Log message:
fix minor inconsistency: the quota isn't on / anymore, it's on /home


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/15 04:32:34

Modified files:
	sysutils/augeas: Makefile distinfo 
	sysutils/augeas/patches: patch-lenses_shellvars_aug 
	sysutils/augeas/pkg: PLIST 
Added files:
	sysutils/augeas/patches: patch-lenses_csv_aug 

Log message:
update to augeas-1.6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/15 05:35:25

Modified files:
	sys/net        : pfkey.c 
	sys/netinet    : ip_ah.c ip_esp.c ip_ipcomp.c ip_output.c 

Log message:
replace the last uses of m_copym2 with m_dup_pkt.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/08/15 06:27:56

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

Log message:
Remove more SSH1 server code:
* Drop sshd's -k option.
* Retire configuration keywords that only apply to protocol 1, as well as
the "protocol" keyword.
* Remove some related vestiges of protocol 1 support.

ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/08/15 06:32:04

Modified files:
	usr.bin/ssh    : sshd.8 sshd_config sshd_config.5 

Log message:
Catch up with the SSH1 code removal and delete all mention of
protocol 1 particularities, key files and formats, command line
options, and configuration keywords from the server documentation
and examples.  ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/15 06:59:53

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmvar.h 

Log message:
Remove IWM_CMD_SYNC, which expands to zero while all the other
IWM_CMD_* values are bit flags. The same was done 2 years ago
in Linux git commit a10229271946731959b2269370d0492d88cfab23.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/15 07:37:07

src/sys/arch/armv7/dev

Update of /cvs/src/sys/arch/armv7/dev
In directory cvs.openbsd.org:/tmp/cvs-serv76703/dev

Log Message:
Directory /cvs/src/sys/arch/armv7/dev added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/15 07:42:49

Modified files:
	sys/arch/armv7/armv7: platform.c 
	sys/arch/armv7/conf: files.armv7 
	sys/arch/armv7/omap: files.omap 
Added files:
	sys/arch/armv7/dev: com_fdt.c 
Removed files:
	sys/arch/armv7/omap: omap_com.c 

Log message:
Move the com(4) fdt attachment driver to a more generic location and
rename it to fit the typical scheme of such an attachment driver.

ok kettenis@ jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/15 07:48:24

Modified files:
	usr.sbin/httpd : httpd.h parse.y server.c 

Log message:
Make httpd stricter with respect to TLS configuration - in particular, do
not allow TLS and non-TLS to be configured on the same port, do not allow
TLS options to be specified without a TLS listener and ensure that the TLS
options are the same when a server is specified on the same address/port.
Currently, these configurations are permitted but do not work as intended.

Also factor out and reuse the server matching code, which was previously
duplicated.

ok reyk@


CVSROOT:	/cvs
Module name:	www
Changes by:	mpi@cvs.openbsd.org	2016/08/15 07:54:20

Modified files:
	.              : 60.html 

Log message:
Mention ART, fewer route lookups per packets and the death of sofnet.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/15 08:04:23

Modified files:
	lib/libtls     : tls.c tls_client.c tls_internal.h tls_server.c 

Log message:
Explicitly pass in an SSL_CTX * to the functions that operate on one,
instead of assuming that they should use the one associated with the TLS
context. This allows these functions to be used with the additional
SSL contexts that are needed to support server-side SNI.

Also rename tls_configure_keypair() to tls_configure_ssl_keypair(), so that
these functions have a common prefix.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/15 08:14:55

Modified files:
	usr.sbin/httpd : config.c server.c 

Log message:
Use lowercase 'tls' in debug and log messages for consistency.

Requested by reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/15 08:17:34

Modified files:
	sys/arch/armv7/dev: com_fdt.c 

Log message:
Allow com(4) to make use of the simplebus address translation.
This typically works for every simplebus client, but com(4) did not
make use of the supplied bus tag.  Instead it references the global
a4x bus tag.  This is needed as the ARM com(4) controllers use 4-byte
spaced registers, while com(4) operates on 1-byte.  To be able to make
use of the address translation, copy the a4x bus tag and replace the
cookie and map function with the one supplied by simplebus.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/15 08:47:41

Modified files:
	lib/libtls     : tls_conninfo.c 

Log message:
Fix some style(9) issues.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/15 08:55:48

Modified files:
	devel/ectags   : Makefile 
	devel/ectags/patches: patch-read_c 

Log message:
Fix previous patch, spotted by semarie@

From Anton Lindqvist <anton dot lindqvist at gmail dot com>


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/15 09:34:16

Modified files:
	.              : 60.html 

Log message:
Mention a few pledge(2)-bits, mostly semarie's efforts.
Thanks a lot for all your hard work!


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/15 09:41:50

Modified files:
	lib/libtls     : tls_internal.h 

Log message:
Group conninfo fields by connection and peer cert based information,
sort and remove unused fingerprint.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/15 09:44:58

Modified files:
	lib/libtls     : tls_internal.h 

Log message:
The tls_conninfo serial is also unused.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/15 09:52:10

Modified files:
	.              : 60.html 

Log message:
add back the ... that i accidentally zapped


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/15 10:12:34

Modified files:
	usr.sbin/httpd : httpd.h parse.y server.c 

Log message:
Move server_match() from parse.y to server.c; use env instead of conf,
which is actually the same thing (cluebat from reyk@).


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/15 10:57:53

Modified files:
	bin/ls         : print.c 

Log message:
%*qd -> %*lld + (long long) for off_t.

Avoid some casts by changing printsize() to take an int (the only
type actually passed via that parameter) instead of size_t.

Tweaks & ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/08/15 11:49:43

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

Log message:
Fix typo -> s/drirect/direct/.

From Daniel Bolgheroni


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/15 12:31:28

Modified files:
	sys/arch/armv7/sunxi: if_dwge_fdt.c 
	sys/dev/ic     : dwc_gmac.c dwc_gmac_var.h 

Log message:
For some reason the RTL8211E PHY on the Banana Pi responds to both address 0
and 1.  As a result rgephy(4) attaches twice.  Prevent this from happening
by passing the PHY address, which is part of the device tree, down from the
bus-specific glue to the generic driver code.


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2016/08/15 12:38:20

Modified files:
	build          : groups.dat 

Log message:
add chibug


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2016/08/15 12:38:31

Modified files:
	.              : groups.html 

Log message:
regen


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/15 13:13:06

Removed files:
	.              : 4.4-psd.html 4.4-smm.html 4.4-usd.html 
	                 beagle.html icrc.pdf press.html 
	porting        : audio-port.html autoconf.html checklist.html 
	                 config.html diffs.html libraries.html 
	                 packaging.html porttest.html update.html 
	reprints       : article_20000306.html article_20000419.html 
	                 crypto2000.html openbsd-hwcrypto.html pr27.html 
	                 template.html 

Log message:
remove some more old junk.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/15 13:15:28

Modified files:
	.              : 60.html 

Log message:
delete ... lines, seems noone wants to keep expanding these lists


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2016/08/15 13:19:47

Modified files:
	lang/libv8     : Makefile 

Log message:
- drop myself as MAINTAINER, welcome David!
- set wxneeded
- clean up the Makefile a bit


CVSROOT:	/cvs
Module name:	www
Changes by:	kettenis@cvs.openbsd.org	2016/08/15 13:31:00

Modified files:
	.              : 60.html 

Log message:
List a few more hardware-related improvements.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/08/15 13:31:44

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

Log message:
ftp.openbsd.dk -> mirrors.dotsrc.org (it was a cname anyway), req by Anders Trier Olesen


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/08/15 13:31:57

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/15 13:32:12

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-6.11.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/15 13:34:04

Modified files:
	security/letskencrypt: Makefile distinfo 

Log message:
update to letskencrypt-0.1.9, from Johan Huldtgren


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/15 15:03:27

Modified files:
	sys/arch/armv7/sunxi: files.sunxi 
Added files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
First stab at porting the awinmmc(4) driver from NetBSD.  The driver will
be known as sximmc(4) and is somewhat functional.  Still needs proper clock
support and some further cleanup.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/15 15:04:32

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c armv7_machdep.h 
	sys/arch/armv7/dev: com_fdt.c 

Log message:
Now that com(4) uses a different iot for the initial console and the
main attachment, the serial port is now longer recognized as console.
To fix this, store the OFW node of the initial console and check it
in the attachment driver.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/15 15:08:56

Modified files:
	sys/arch/arm/arm: cpufunc_asm_armv7.S 

Log message:
Don't take shortcuts cleaning/invalidating the caches.  The Cortex-A7 and most
other ARMv7 CPUs have a L2 cache that is larger than 32KB.  And some of those
even have L1 caches larger than that.  So bailing out after 32KB will leave
the cache partially dirty.

Fixes the SATA problems on Allwinner A20 based boards.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/15 15:37:25

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

Log message:
update to py-certifi-2016.8.8

Update brings no code changes since 2016.8.2, and we don't include the
project's certificates anyway, so this update is rather meaningless.
PLIST regened, fixed for python3 port.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/08/15 15:56:15

Modified files:
	.              : 60.html 

Log message:
add some more driver improvements and bug fixes, and fix some typos


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/15 16:01:59

Modified files:
	sys/arch/alpha/alpha: mem.c 
	sys/arch/amd64/amd64: mem.c 
	sys/arch/arm/arm: mem.c 
	sys/arch/i386/i386: mem.c 
	sys/arch/macppc/macppc: mem.c 
	sys/arch/sh/sh : mem.c 
	sys/arch/socppc/socppc: mem.c 
	sys/arch/sparc/sparc: mem.c 
	sys/arch/sparc64/sparc64: mem.c 

Log message:
normalize some comments


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/15 16:14:19

Modified files:
	sys/net80211   : ieee80211_ioctl.c ieee80211_ioctl.h 

Log message:
Expose more 802.11n information to userspace:
A flag which indicates whether HT has been negotiated with a node,
and the current Tx MCS value we use for a node.

This grows struct ieee80211_nodereq. Applications using it must be recompiled.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/15 16:16:46

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
When running 'ifconfig scan' in hostap mode display the current Tx rate our
AP is using to send frames to an associated node. This used to always display
the node's highest supported Rx rate, which isn't all that interesting.
ok mpi@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/15 17:16:08

Modified files:
	.              : 60.html 

Log message:
fix a copy-paste error in a man link, clean up another man link, mark up
/usr/local and wxallowed using <tt> in one instance for consistency


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/15 17:29:08

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

Log message:
update to geventhttpclient-1.3.1


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/15 17:50:39

Modified files:
	faq            : upgrade60.html 

Log message:
fix stale internal link and link to the sysmerge(8) manual instead


CVSROOT:	/cvs
Module name:	www
Changes by:	lteo@cvs.openbsd.org	2016/08/15 20:13:39

Modified files:
	.              : 60.html 

Log message:
OpenSMTPD 6.0.0 changes, derived from plus60.html and may not be exhaustive


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/15 22:14:34

Modified files:
	share/man/man5 : core.5 

Log message:
Rewrite: ALL HAIL ELF
Mention the KERN_NOSUIDCOREDUMP sysctl(3)

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/15 22:44:38

Modified files:
	libexec/login_reject: login_reject.c 
	libexec/login_passwd: login.c 
	libexec/login_yubikey: login_yubikey.c 

Log message:
remove unneeded casts


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/15 22:48:04

Modified files:
	libexec/rpc.rusersd: rusers_proc.c 

Log message:
fread hasn't taken a char * in about 900 years


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/15 22:54:55

src/distrib/special/doas

Update of /cvs/src/distrib/special/doas
In directory cvs.openbsd.org:/tmp/cvs-serv95672/doas

Log Message:
Directory /cvs/src/distrib/special/doas added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/15 22:55:33

Modified files:
	distrib/special: Makefile 
Added files:
	distrib/special/doas: Makefile doas.c 

Log message:
add a special edition doas that only lets root drop privs.
maybe the installer can use something like this, wink wink.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/16 00:39:46

Modified files:
	share/man/man5 : core.5 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/16 00:40:24

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

Log message:
shorten genrsa; ok jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:44:39

Modified files:
	x11/py-qt5     : Makefile 
	x11/py-qt5/pkg : PLIST-main 

Log message:
- add python3 flavor
- unbreak pre-configure for python 3

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:44:57

Modified files:
	x11            : Makefile 

Log message:
+py-qt5,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:45:31

Log message:
    import qutebrowser-0.8.2
    
    qutebrowser is a keyboard-focused browser with a minimal GUI. It was
    inspired by other browsers/addons like dwb and Vimperator/Pentadactyl.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20161608
    
    N ports/www/qutebrowser/distinfo
    N ports/www/qutebrowser/Makefile
    N ports/www/qutebrowser/pkg/PLIST
    N ports/www/qutebrowser/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:46:30

Modified files:
	www            : Makefile 

Log message:
+qutebrowser


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:46:41

Modified files:
	x11/gnome/libgweather: Makefile distinfo 
	x11/gnome/libgweather/pkg: PLIST 

Log message:
update to libgweather-3.20.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:48:19

Modified files:
	textproc/jq    : Makefile 
Added files:
	textproc/jq/patches: patch-main_c 

Log message:
pledge jq

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:49:10

Log message:
    import py-paho-mqtt-1.2
    
    The Paho Python Client provides a client class with support for both
    MQTT v3.1 and v3.1.1 on Python 2.7 or 3.x. It also provides some helper
    functions to make publishing one off messages to an MQTT server very
    straightforward.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20161608
    
    N ports/net/py-paho-mqtt/Makefile
    N ports/net/py-paho-mqtt/distinfo
    N ports/net/py-paho-mqtt/pkg/PLIST
    N ports/net/py-paho-mqtt/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:50:10

Modified files:
	net            : Makefile 

Log message:
+py-paho-mqtt
+py-paho-mqtt,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:50:53

Log message:
    import git-lfs-1.3.0
    
    Git Large File Storage (LFS) replaces large files such as audio samples,
    videos, datasets, and graphics with text pointers inside Git, while
    storing the file contents on a remote server.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20161608
    
    N ports/devel/git-lfs/distinfo
    N ports/devel/git-lfs/Makefile
    N ports/devel/git-lfs/pkg/PLIST
    N ports/devel/git-lfs/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:51:53

Modified files:
	devel          : Makefile 

Log message:
+git-lfs


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 00:53:44

Modified files:
	devel/git-lfs  : Makefile distinfo 

Log message:
woops, git-lfs-1.3.1 has been released since. update to it


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/08/16 02:02:08

Modified files:
	.              : 60.html 

Log message:
add more items found while skimming the 6.0 changelog


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/16 02:15:04

Modified files:
	sys/dev/ic     : com.c 

Log message:
Only probe the UART type if sc_uarttype is set to COM_UART_UNKNOWN.
This allows glue drivers to set the type based on other information (such as
Oopen Firmware or device tree properties) without going through to risky
code paths.

ok deraadt@, visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/16 02:22:22

Modified files:
	devel/lua-penlight: Makefile distinfo 

Log message:
Update to Penlight-1.4.0


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/16 02:23:18

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

Log message:
As suggested by the FastCGI spec, zero-pad the response buffers to be
aligned to 8 bytes.  This matches what most other implementations are
doing.  While here, make sure that the allocated response buffers are
zero'ed out.

OK florian@


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/08/16 02:33:42

Modified files:
	.              : 60.html 

Log message:
typo


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/16 02:36:29

Modified files:
	usr.sbin/httpd : server.c 

Log message:
Rename server_handshake_tls() to server_tls_handshake() to align with
the other server_tls_* functions (and I like the prefix notation
better).  No functional change.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/08/16 02:39:08

Modified files:
	.              : 60.html 

Log message:
move SMP network stack improvements into the generic network stack section
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/16 02:39:42

Modified files:
	security/pcsc-lite: Makefile distinfo 
Removed files:
	security/pcsc-lite/patches: patch-configure 
	                            patch-src_readerfactory_c 

Log message:
Update to pcsc-lite-1.8.18


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/08/16 02:46:47

Modified files:
	.              : 60.html 

Log message:
typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/16 02:54:59

Modified files:
	audio/hs-libmpd: Makefile distinfo 

Log message:
Update to hs-libmpd-0.9.0.5


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/16 02:56:28

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

Log message:
In the IPv6 default route example, use a gateway that corresponds to a
RTF_HOST route and is always on the correct interface.

The gateway value doesn't really matter for routes on p2p interfaces
but this allow us to tighten the checks when adding RTF_GATEWAY routes.

ok stsp@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/16 03:01:14

Modified files:
	sys/net        : route.c 

Log message:
Mask the ``prio'' prior to comparing it to RTP_LOCAL.

This allows rt_if_remove() to remove RTF_BROACAST routes from down
interfaces.

Issue reported by Dimitris Papastamos on bugs@

ok dlg@, claudio@, phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/16 03:10:36

Modified files:
	net/olsrd      : Makefile 
	sysutils/conky : Makefile 
	sysutils/wmwlmon: Makefile 
	x11/i3status   : Makefile 
	x11/xfce4/xfce4-wavelan: Makefile 

Log message:
bump REVISION for ieee80211_nodereq change


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/08/16 03:37:23

Modified files:
	.              : 60.html 

Log message:
move some minor bug fix items from hardware section to assorted improvements


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/16 03:51:50

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 
	devel/ruby-rspec/specinfra/pkg: PLIST 

Log message:
update to specinfra-2.60.4


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/08/16 04:01:37

Modified files:
	.              : 60.html 

Log message:
xen(4) now works with Qubes OS. ok mikeb


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/16 04:16:33

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Fix typo/inconsistensy where L1_S_DOMAIN was used instead of L1_C_DOMAIN.
These are functionally equivolent so it didn't matter and the resulting
code doesn't change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/16 04:59:47

Modified files:
	emulators/qemu : Makefile 

Log message:
Add wxneeded flag when linking qemu.
Add build dependency for msgfmt.
OK jca@ jung@ Brad Smith (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/16 05:33:07

Modified files:
	usr.sbin/user  : usermgmt.conf.5 usermod.8 

Log message:
Xr encrypt(1) here as well to be consistent with useradd(8).

ok jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/16 05:48:20

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

Log message:
update to scour-0.34

Also add missing dependency on devel/py-six and make sure that port is
python3-compatible.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/16 07:03:58

Modified files:
	sys/arch/mips64/include: proc.h 
	sys/arch/mips64/mips64: context.S cp0access.S cpu.c exception.S 
	                        genassym.cf interrupt.c mips64_machdep.c 
	                        trap.c 
	sys/arch/sgi/sgi: machdep.c 
Removed files:
	sys/arch/mips64/include: rm7000.h 

Log message:
Remove RM7000/RM9000-specific performance counter code. It originates
from PMON2000 and has not been enabled on OpenBSD.

Suggested by and ok miod@ (after seeing a quad_t cleanup patch of mine)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/16 07:11:06

Modified files:
	bin/chio       : chio.1 

Log message:
Add HISTORY.
From Sevan Janiyan <venture37 at geeklan dot co dot uk>.
Verified using NetBSD CVS.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/16 08:08:40

Modified files:
	multimedia/mpv : Makefile distinfo 

Log message:
update to mpv-0.19.0


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/16 08:43:31

Modified files:
	sys/dev/pv     : hyperv.c hypervreg.h hypervvar.h if_hvn.c 

Log message:
Update Hyper-V structure definitions to the 2016 version

Microsoft has performed a significant clean up and stylistic improvement
of Hyper-V structure definitions and updated FreeBSD port.  We update to
stay in sync with the upstream and improve maintainability of this code
in the future.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/16 09:24:01

Modified files:
	usr.bin/mg     : theo.c 

Log message:
All that complexity stopped us from getting flying cars by today.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/16 09:32:07

Modified files:
	bin/ksh        : edit.c 

Log message:
Avoid a compiler warning about use of uninitialized l.beg emitted
when ksh is compiled with -Os (done in distrib/special): move the
bit using XPptrv(l) (which expands to l.beg) where it is actually
used and clearly initialized.

ok tedu, tweak + ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 10:09:24

Modified files:
	bin/ls         : ls.c print.c 

Log message:
Bring types of variables used with struct stat into the modern world.

Replace a couple of u_long paramaters with int as they were only passed int
values and the function re-cast them to (int) anyway. Weird.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 10:13:32

Modified files:
	bin/ls         : ls.c 

Log message:
Nuke some erroneous leading whitespace.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/16 10:34:07

Modified files:
	security/p5-Net_SSLeay: Makefile distinfo 

Log message:
update p5-Net-SSLeay to 1.78


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 10:41:46

Modified files:
	usr.sbin/mtree : compare.c create.c spec.c verify.c 

Log message:
Nuke a bunch of whitespace nits seen while '%q' hunting.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/16 10:42:02

Modified files:
	games/mars     : Makefile 
Added files:
	games/mars/patches: patch-resources_mars_desktop 

Log message:
Fix broken .desktop file

Reported by and ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 10:44:55

Modified files:
	bin/dd         : args.c conv.c dd.h 

Log message:
Nuke a bunch of whitespace nits seen while '%q' hunting.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/16 10:49:24

Modified files:
	usr.bin/jot    : jot.c 

Log message:
Streamline and refactor the code a bit more:

There are two sentinels for infinite output: infinity == true and reps == 0.
Ensure that infinity is set to true whenever reps is set to zero, then we
can always use 'if (infinity)'.

This allows us to merge the loop for deterministic output into the first
if (!randomize) statement, which is a lot tidier.

Insert an occasional empty line.

"move fast and break stuff" tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/16 11:10:01

Modified files:
	usr.sbin/httpd : server.c 

Log message:
Turn "TLS handshake failed -" log message into a debug message - it
happens way too often and does not provide much information.

OK jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/16 11:51:38

Modified files:
	usr.sbin/pwd_mkdb: pwd_mkdb.8 

Log message:
remove reference to 6th ed.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/16 11:52:28

Modified files:
	usr.sbin/tokenadm: Makefile 

Log message:
doesn't need to link with crypto


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/16 12:17:36

Modified files:
	sys/arch/arm/arm: mem.c 
	sys/arch/sparc/sparc: mem.c 
	sys/arch/sparc64/sparc64: mem.c 

Log message:
replace hand rolled tsleep physlock with rwlock. ok mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/16 12:19:15

Modified files:
	sys/arch/i386/i386: mem.c 

Log message:
move static variable up to first


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/16 12:21:54

Modified files:
	sys/arch/arm/arm: mem.c 
	sys/arch/sh/sh : mem.c 

Log message:
remove #define for /dev/mem minors. let the raw magic of the hardcoded
numbers serve as a warning not to touch them.


CVSROOT:	/cvs
Module name:	www
Changes by:	sebastia@cvs.openbsd.org	2016/08/16 12:25:13

Modified files:
	faq            : current.html 

Log message:
this file is for -base, not packages, so remove the entry I did again.


CVSROOT:	/cvs
Module name:	www
Changes by:	jung@cvs.openbsd.org	2016/08/16 12:39:13

Modified files:
	.              : 60.html 

Log message:
slightly tweak smtpd section and remove some eol whitespaces while here


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/16 12:41:06

Modified files:
	bin/pax        : pax.1 

Log message:
Add HISTORY.
From Sevan Janiyan <venture37 at geeklan dot co dot uk>.
Verified using the CSRG archive CD.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/16 12:41:57

Modified files:
	usr.sbin/httpd : httpd.c httpd.h logger.c server.c 
	usr.sbin/iscsictl: iscsictl.c 
	usr.sbin/iscsid: iscsid.c iscsid.h util.c vscsi.c 
	usr.sbin/snmpd : snmpd.c snmpd.h snmpe.c traphandler.c 
	usr.sbin/syslogd: ttymsg.c 

Log message:
stop including sys/param.h for nitems. define locally as needed.
ok natano reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/16 12:51:25

Modified files:
	bin/echo       : echo.1 
	bin/kill       : kill.1 
	bin/sleep      : sleep.1 
	bin/sync       : sync.8 
	bin/test       : test.1 

Log message:
Add, correct, and improve HISTORY sections.
From Sevan Janiyan <venture37 at geeklan dot co dot uk>.
Verified using http://minnie.tuhs.org/.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/16 12:57:10

Modified files:
	gnu/usr.bin/cvs/src: logmsg.c 

Log message:
When the commit message is empty, don't default to c)ontinue
(committing without log message), but to a)bort.

ok jcs, natano; millert and tj agree


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/16 13:00:59

Modified files:
	usr.bin/cvs    : logmsg.c 

Log message:
When the commit message is empty, don't default to c)ontinue
(committing without log message) but a)bort.  Also, accept
the uppercase versions of the choices.

Matches the corresponding change of behavior of GNU cvs.

suggested by & ok jcs


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/16 13:29:26

Modified files:
	faq            : index.html faq13.html 

Log message:
new section on changing the default audio output device.

ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/16 13:59:58

Modified files:
	devel/pyusb    : Makefile distinfo 
	devel/pyusb/pkg: PLIST 
Removed files:
	devel/pyusb/patches: patch-setup_py 

Log message:
update to pyusb-1.0, tested with https://badge.emfcamp.org/wiki/TiLDA_MK3/Firmware_Update


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/16 14:04:46

Modified files:
	bin/ed         : main.c 

Log message:
Piping to a shell command does not count as a save, so don't reset the
modified flag.
from Jerome Frgacic (jerome.frgacic (at) yahoo.fr)
ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/16 14:38:54

Modified files:
	.              : tshirts.html 
Added files:
	images         : tshirt-45.jpg 

Log message:
add new "grow spikes" shirt.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/16 15:32:58

Modified files:
	sys/miscfs/fuse: fuse_lookup.c fuse_vnops.c 

Log message:
There is no sense in doing caching in fusefs. In case of a non-local
filesystem the tree can change behind our back, resulting in stale cache
entries. "The only winning move is not to play."

ok tedu beck mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 15:57:52

Modified files:
	sbin/dhclient  : clparse.c conflex.c dhclient.c dhcpd.h 
	                 dhctoken.h 

Log message:
Track SSID in leases file and only consider leases from the current SSID when
starting up dhclient on wifi interfaces. In theory will preserve leases from
other SSID's and speed up obtaining a lease by not wasting time attempting
to re-acquire a lease from a different SSID.

Experimental feature from n2k16 needing some real world testing before g2k16.


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/08/16 16:21:17

Modified files:
	sys/netinet    : udp_usrreq.c in.h 
	share/man/man4 : ip.4 

Log message:
Add IP_SENDSRCADDR cmsg for UDP sockets. As suggested by sthen@,
IP_SENDSRCADDR == IP_RECVDSTADDR.

OK sthen@ jca@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/08/16 16:22:07

src/regress/sys/netinet/sendsrcaddr

Update of /cvs/src/regress/sys/netinet/sendsrcaddr
In directory cvs.openbsd.org:/tmp/cvs-serv32963/regress/sys/netinet/sendsrcaddr

Log Message:
Directory /cvs/src/regress/sys/netinet/sendsrcaddr added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/08/16 16:25:08

Added files:
	regress/sys/netinet/sendsrcaddr: Makefile runtest.c 

Log message:
Add regression tests for IP_SENDSRCADDR.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/16 17:49:35

Modified files:
	share/man/man9 : spl.9 

Log message:
splraise() is an MI API now.

ok deraadt@ jmc@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 18:38:26

Modified files:
	usr.sbin/dhcpd : confpars.c 

Log message:
Ansify function definitions.

Diff from Edgar Pettijohn.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 18:55:34

Modified files:
	usr.sbin/dhcpd : confpars.c 

Log message:
KNF and clean up many comments.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 19:02:31

Modified files:
	sys/dev/pci    : mpii.c 
	sys/dev/ic     : mpi.c 

Log message:
Make error handling (esp. DATA_UNDERRUN) clearer and avoid losing resid
value.

Specs from mikeb@, ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2016/08/16 19:05:38

Modified files:
	lang/node      : Makefile 
	lang/node/pkg  : PLIST 

Log message:
100% more wxneeded! Also fix for the man page that snuck in!

Tested on amd64 and i386

OK jca@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/16 19:16:01

Modified files:
	.              : 60.html lyrics.html 

Log message:
Release the 4th 6.0 song: "Comfortably Dumb (the misc song)"
lyrics by Jason George, music by Dewi Wood


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 19:16:11

Modified files:
	sys/dev/ic     : aic79xx.c aic79xx.h aic79xx_openbsd.c 

Log message:
Move to iopool. No voluntary testers after several years of requests so now
everybody gets to test!


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/16 19:17:54

Modified files:
	sys/dev/ic     : aic7xxx.c aic7xxx_inline.h aic7xxx_openbsd.c 
	                 aic7xxx_openbsd.h aic7xxxvar.h 

Log message:
Move to iopool. No voluntary testers after several years of requests so now
everybody gets to test!


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/16 19:25:38

Added files:
	images         : 60d_right.jpg 

Log message:
image for 4th song


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2016/08/16 21:24:12

Modified files:
	sys/net        : pf.c pf_norm.c pfvar.h 

Log message:
Reintroduce 5.3-style checksum modification to preserve end-to-end checksums
when fiddling with packets but without the mess that motivated Henning to
remove it. Affects only this one aspect of Henning's checksum work. Also tweak
the basic algorithm and supply a correctness argument.

OK dlg@ deraadt@ sthen@; no objection henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/16 23:07:14

Modified files:
	usr.sbin/vmd   : control.c loadfile_elf.c pci.c virtio.c vmd.c 
	                 vmm.c 

Log message:
small bits of header cleanup; ok mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/08/16 23:33:54

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
wrterror() is fatal, delete dead code; ok tom@ natano@ tedu@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/17 00:32:14

Modified files:
	faq            : faq15.html 

Log message:
Change a few 'uname -m' to 'uname -p' for PKG_PATH.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/17 00:57:50

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-t_test-lib_sh 

Log message:
Update to git-2.9.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 01:02:31

Modified files:
	net/py-paho-mqtt: Makefile 

Log message:
zap stray line that snuck in; spotted by nigel@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/08/17 02:13:52

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

Log message:
The man page is a bit confusing for how we can control which address
families we support during capabilities negotiation.  Re-organize the
man page to be more clear, and explicitly state what the default is.

OK sthen@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/08/17 02:14:40

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

Log message:
pluralize a word


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 03:39:38

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

Log message:
If the stack demands protection by setting the USEPROT flag then set the
corresponding bit in the iwm(4) Tx command regardless of frame length.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 03:42:03

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
If a wireless device or driver scans all bands at once give 5GHz APs
a slight priority in cases where good matches exist in either band.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 03:43:27

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

Log message:
iwn(4) scans all bands at once, as far as the net80211 stack is concerned.
So set the appropriate scan capability flags in the ic.
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2016/08/17 03:43:46

Modified files:
	databases/postgresql: Makefile distinfo 
	databases/postgresql/pkg: PLIST-contrib PLIST-docs 

Log message:
Security update to 9.5.4

ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 04:01:20

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add PCI ID for Ralink RT5392 and additional IDs for RT5390 devices.
Part of a larger patch by James Hastings.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 04:01:34

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/17 04:49:09

Modified files:
	sys/arch/sparc64/include: intr.h 

Log message:
we have some spare interrupt levels, so move softnet above softclock.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/17 05:06:51

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: patch-BUILD_gn patch-base_BUILD_gn 
	                      patch-base_linux_util_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_trace_event_malloc_dump_provider_cc 
	                      patch-build_config_BUILDCONFIG_gn 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_allocator_gni 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_compiler_compiler_gni 
	                      patch-build_config_features_gni 
	                      patch-build_config_linux_pkg-config_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_browser_BUILD_gn 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_common_BUILD_gn 
	                      patch-chrome_test_BUILD_gn 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_crash_content_browser_BUILD_gn 
	                      patch-components_metrics_BUILD_gn 
	                      patch-components_mus_surfaces_surfaces_context_provider_cc 
	                      patch-components_storage_monitor_BUILD_gn 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_common_BUILD_gn 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-device_hid_BUILD_gn 
	                      patch-device_media_transfer_protocol_media_transfer_protocol_daemon_client_h 
	                      patch-device_media_transfer_protocol_media_transfer_protocol_manager_h 
	                      patch-device_serial_BUILD_gn 
	                      patch-device_usb_BUILD_gn 
	                      patch-media_audio_BUILD_gn 
	                      patch-media_media_options_gni 
	                      patch-mojo_gles2_gles2_context_cc 
	                      patch-net_BUILD_gn patch-sandbox_BUILD_gn 
	                      patch-sandbox_linux_BUILD_gn 
	                      patch-services_shell_runner_host_BUILD_gn 
	                      patch-third_party_WebKit_Source_wtf_BUILD_gn 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_ffmpeg_BUILD_gn 
	                      patch-third_party_libusb_BUILD_gn 
	                      patch-third_party_opus_BUILD_gn 
	                      patch-third_party_sqlite_BUILD_gn 
	                      patch-third_party_usrsctp_BUILD_gn 
	                      patch-third_party_webrtc_BUILD_gn 
	                      patch-third_party_webrtc_base_BUILD_gn 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                      patch-third_party_zlib_BUILD_gn 
	                      patch-tools_gn_args_cc 
	                      patch-tools_gn_bootstrap_bootstrap_py 
	                      patch-tools_gn_bootstrap_build_ninja_template 
	                      patch-tools_perf_chrome_telemetry_build_BUILD_gn 
	                      patch-ui_gl_BUILD_gn patch-v8_BUILD_gn 
Removed files:
	www/chromium/patches: patch-apps_apps_gypi patch-base_base_gypi 
	                      patch-build_all_gyp 
	                      patch-build_common_gypi 
	                      patch-build_filename_rules_gypi 
	                      patch-chrome_chrome_browser_extensions_gypi 
	                      patch-chrome_chrome_browser_gypi 
	                      patch-chrome_chrome_browser_ui_gypi 
	                      patch-chrome_chrome_common_gypi 
	                      patch-chrome_chrome_exe_gypi 
	                      patch-chrome_chrome_resources_gyp 
	                      patch-chrome_chrome_utility_gypi 
	                      patch-chrome_common_extensions_api_schemas_gypi 
	                      patch-chrome_common_variations_fieldtrial_testing_config_gyp 
	                      patch-chrome_policy_templates_gypi 
	                      patch-components_metrics_gypi 
	                      patch-components_storage_monitor_gypi 
	                      patch-content_content_browser_gypi 
	                      patch-content_content_common_gypi 
	                      patch-content_content_renderer_gypi 
	                      patch-device_battery_battery_gyp 
	                      patch-device_hid_hid_gyp 
	                      patch-device_serial_serial_gyp 
	                      patch-gpu_gles2_conform_support_gles2_conform_support_gyp 
	                      patch-gpu_gpu_config_gypi 
	                      patch-gpu_gpu_ipc_service_gypi 
	                      patch-gpu_tools_tools_gyp 
	                      patch-media_media_gyp 
	                      patch-net_net_common_gypi 
	                      patch-net_net_gypi 
	                      patch-printing_printing_gyp 
	                      patch-remoting_remoting_all_gyp 
	                      patch-remoting_remoting_host_gypi 
	                      patch-skia_skia_chrome_gypi 
	                      patch-skia_skia_common_gypi 
	                      patch-third_party_WebKit_Source_core_core_gyp 
	                      patch-third_party_WebKit_Source_platform_blink_platform_gyp 
	                      patch-third_party_WebKit_Source_web_web_gyp 
	                      patch-third_party_ffmpeg_ffmpeg_generated_gypi 
	                      patch-third_party_ffmpeg_ffmpeg_gyp 
	                      patch-third_party_iccjpeg_iccjpeg_gyp 
	                      patch-third_party_libXNVCtrl_libXNVCtrl_gyp 
	                      patch-third_party_libjingle_libjingle_gyp 
	                      patch-third_party_libjpeg_turbo_libjpeg_gyp 
	                      patch-third_party_libusb_libusb_gyp 
	                      patch-third_party_libyuv_libyuv_gyp 
	                      patch-third_party_pdfium_build_gyp_standalone_gypi 
	                      patch-third_party_pdfium_pdfium_gyp 
	                      patch-third_party_skia_gyp_ports_gyp 
	                      patch-third_party_usrsctp_usrsctp_gyp 
	                      patch-third_party_webrtc_base_base_gyp 
	                      patch-third_party_webrtc_build_common_gypi 
	                      patch-ui_accessibility_accessibility_gyp 
	                      patch-ui_base_ui_base_gyp 
	                      patch-ui_gfx_gfx_gyp patch-ui_gl_gl_gyp 
	                      patch-ui_touch_selection_ui_touch_selection_gyp 
	                      patch-ui_views_controls_webview_webview_gyp 
	                      patch-ui_views_views_gyp 

Log message:
Move chromium to the new build system (gn - generate ninja)

This commit moves the chromium port to use gn to generate ninja files
which will hopefully resolve the random build errors. Gyp is dead so
this move has to be done anyway.

Also change the way how we handle openbsd. Let's assume we are running
on linux and only handle !linux cases where needed. This also ensures
that a change on linux will for sure end up in our builds as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 05:08:08

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

Log message:
wpi(4) scans all bands at once, as far as the net80211 stack is concerned.
So set the appropriate scan capability flags in the ic.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/17 05:09:01

Modified files:
	sys/arch/sparc64/include: cpu.h 

Log message:
use a register variable to get at the curcpu pointer in %g7

this lets us define curcpu(), cpu_number(), etc as derefs of this
variable rather than having to write asm to copy it into another
register for the same derefs.

this provides shorter inlined code that wastes less registers.

ok kettenis@ who notes we use this these on other archs already


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 05:47:57

Modified files:
	sys/dev/microcode/ral: microcode.h 

Log message:
Update ral(4) firmware for RT2860 family devices.
Required for upcoming RT5390 and RT5392 chipset support.

Tested by procter@ on RT2860 and by me on RT2790 and RT3090.
Ported from FreeBSD by James Hastings.
kevlo confirmed this version of the firmware is still ISC licensed.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 05:50:52

Modified files:
	sys/dev/ic     : rt2860.c rt2860reg.h rt2860var.h 
	sys/dev/pci    : if_ral_pci.c 

Log message:
Add support for RT5390 and RT5392 chipsets to the ral(4) driver.

Tested by procter@ on RT2860 and by me on RT2790 and RT3090.
Ported from FreeBSD by James Hastings.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/17 05:52:29

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

Log message:
Document RT3900E (RT5390 / RT5392) support in ral(4).
Ported from FreeBSD by James Hastings.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/17 05:56:42

Modified files:
	sys/arch/amd64/include: atomic.h 

Log message:
Fix x86_atomic_{set|clear}bits_u64() by using the "er" constraint instead
of "ir" as the orq and andq instructions take a 32-bit immedate argument that
gets sign-extended.

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/17 06:02:38

Modified files:
	usr.bin/compress: gzopen.c 

Log message:
When returning the file size info, only use z_total_in/z_total_out
for the read (inflate) case where there might be multiple streams.
For the write (deflate) case there can only be a single stream so
just use the per-stream total_in/total_out.  Fixes "gzip -v" byte
counts.  OK henning@.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/17 06:18:29

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

Log message:
By using the new tls_config_load_file() feature, syslogd(8) certificate
and key loading can be simplified.
OK jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/17 06:22:28

Modified files:
	regress/usr.sbin/syslogd: args-client-tls4.pl 
	                          args-client-tls6.pl 
	                          args-tls-cafile-empty.pl 
	                          args-tls-cafile-noexist.pl 
	                          args-tls-cafile-toobig.pl 

Log message:
syslogd(8) uses new libtls certificate and key file loading.  So
the tests behave a little bit different now.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/17 07:05:02

Modified files:
	sys/arch/armv7/armv7: platform.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/dev: com_fdt.c 

Log message:
Replace sxiuart(4) with the mostly compatible com(4).

The Synopsys DesignWare 8250 throws an interrupt if it detects a write
to LCR while it was busy.  Read the USR register to clear the interrupt
so we don't get flooded.

The sunxi machines also use a different frequency on the consoles.  As
we have no clock framework, especially not for early consoles, match on
known Allwinner compatibles to set a known frequency.

ok kettenis@ mglocker@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/17 07:26:40

Modified files:
	sys/arch/armv7/dev: com_fdt.c 

Log message:
Remove bogus suspend/resume code from armv7 com(4) attachment driver.
The code initially arrived when the zaurus driver was copied.  As we
don't suspend on ARMv7, just get rid of it.

Prompted by jsg@ and kettenis@.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/17 07:44:48

Modified files:
	sys/arch/armv7/dev: com_fdt.c 

Log message:
Nothing from the original Wasabi code remains, so replace the copyright
with the standard ISC license.

ok kettenis@ jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 07:48:33

Modified files:
	textproc/jq    : Makefile 
	textproc/jq/patches: patch-main_c 

Log message:
fix pledge to allow loading modules (and a contrived case of unset HOME)

spotted by semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/17 07:53:14

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Fix an mbuf leak and missing error propagation in uipc_usrreq(PRU_SEND)
in case sbappendcontrol() fails.
From Simon Mages; OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/17 07:53:21

Modified files:
	distrib/miniroot: install.sub 
	share/man/man8 : autoinstall.8 

Log message:
Use more dhcp info when trying autoinstall/autoupgrade.

For the file name try 'filename' then 'option bootfile-name'.

For the server name try 'server-name' then 'option tftp-server-name' then
'next-server'.

Original idea from Patrick Lundin. Suggestions from rpe@.

Tweaks & ok halex@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 07:54:08

Modified files:
	devel/rebar    : Makefile distinfo 

Log message:
update to rebar-2.6.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 08:02:48

Modified files:
	misc/dtach     : Makefile distinfo 
	misc/dtach/patches: patch-attach_c patch-master_c 
	misc/dtach/pkg : PLIST 

Log message:
update to dtach-0.9


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/17 08:08:32

Modified files:
	.              : hp300.html 

Log message:
remove two broken links; reminded by miod


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 08:11:51

Modified files:
	textproc/nfoview: Makefile distinfo 

Log message:
update to nfoview-1.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 08:17:11

Modified files:
	x11/yad        : Makefile distinfo 
	x11/yad/pkg    : PLIST 
Removed files:
	x11/yad/patches: patch-configure 

Log message:
update to yad-0.37.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 08:19:49

Modified files:
	devel/libgit2/libgit2-glib: Makefile distinfo 

Log message:
update to libgit2-glib-0.24.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/17 09:10:24

Modified files:
	x11/mlterm     : Makefile distinfo 
	x11/mlterm/patches: patch-configure_in patch-xwindow_x_screen_c 
Added files:
	x11/mlterm/patches: patch-xwindow_xlib_x_h 
Removed files:
	x11/mlterm/patches: patch-xwindow_x_h 

Log message:
Update to mlterm-3.7.2


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/17 10:13:27

Modified files:
	distrib/sets/lists/base: md.loongson md.octeon md.sgi 
	distrib/sets/lists/comp: md.loongson md.octeon md.sgi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/17 10:45:41

Modified files:
	.              : 60.html 

Log message:
mips64 pkg counts


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/17 11:18:38

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Replace hand rolled atomic bit operations and use MI ones from DRM


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 11:21:27

Removed files:
	graphics/imlib : Makefile distinfo 
	graphics/imlib/patches: patch-Imlib_Makefile_in 
	                        patch-Imlib_load_c patch-Imlib_misc_c 
	                        patch-Imlib_save_c patch-Imlib_utils_c 
	                        patch-config_Makefile_in 
	                        patch-config_imrc_in patch-configure 
	                        patch-gdk_imlib_Makefile_in 
	                        patch-gdk_imlib_io-bmp_c 
	                        patch-gdk_imlib_io-gif_c 
	                        patch-gdk_imlib_io-png_c 
	                        patch-gdk_imlib_io-xpm_c 
	                        patch-gdk_imlib_misc_c 
	                        patch-gdk_imlib_utils_c patch-imlib_m4 
	graphics/imlib/pkg: DESCR PLIST 

Log message:
remove imlib-1.x which was only used by kde/graphics3

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/17 11:21:36

Modified files:
	graphics       : Makefile 

Log message:
-imlib


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/17 11:39:41

Modified files:
	sys/dev/pv     : hyperv.c hypervreg.h hypervvar.h 

Log message:
Sync up monitor trigger groups handling to the upstream

Replace hand rolled atomic bit operations and use MI ones from DRM
and convert event matrixes to arrays of longs.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/17 12:05:40

Modified files:
	usr.bin/mandoc : dba.c 

Log message:
Make sure manuals in architecture-independent directories are treated
as architecture-independent even if they abuse the third (architecture)
argument of the .Dt macro for random stuff like "freetds reference manual".
While the .Dt syntax is not the same as the .TH syntax in man(7),
punishing offenders by treating them as architecture-dependent and
hence completely excluding them from searches is too severe.
Problem reported by sthen@.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/17 12:07:07

Modified files:
	lib/libc/stdio : vfprintf.c vfwprintf.c 

Log message:
Generate syslog warnings for %s fmt strings NULL to "(null)" conversions.
Over time we can repair software which performs this non-standard behaviour,
and fix bugs along the way.  Let's first find out how bad the situation is
by deploying this in snapshots.

This type of logging is possible because OpenBSD syslog_r(3) -> sendsyslog(2)
is side-effect free enough to be used in the bowels of libc.

ok tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/17 12:57:57

Modified files:
	net/haproxy    : Makefile distinfo 

Log message:
Maintenance update to haproxy-1.6.8


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/17 12:58:31

Modified files:
	usr.bin/mandoc : dba.c dba_read.c 

Log message:
When reading back a mandoc.db(5) file in order to apply incremental
changes, do not prepend a stray NAME_FILE (0x10) byte to the first
names of pages.
Bug found while investigating another issue reported by sthen@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/17 14:46:06

Modified files:
	usr.bin/mandoc : dba.c dba.h dba_read.c mandocdb.c 

Log message:
When the content of a manual page does not specify a section, the
empty string got added to the list of sections, breaking the database
format slightly and causing the page to not be considered part of
any section, not even if a section could be deduced from the directory
or from the file name.
Bug found due to the bogus pcredemo(3) "manual" in the pcre-8.38p0 package.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/17 14:58:19

Modified files:
	net/freeradius : Makefile 
	net/freeradius3: Makefile 
	net/gdnsd      : Makefile 
	net/gnugk      : Makefile 
	net/net-snmp   : Makefile 
	net/powerdns   : Makefile 
	net/avahi      : Makefile 
	net/bird       : Makefile 
	net/dnsmasq    : Makefile 

Log message:
bump ports that might pick up IP_SENDSRCADDR


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/17 14:58:46

Modified files:
	telephony/kamailio: Makefile 

Log message:
bump ports that might pick up IP_SENDSRCADDR


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/17 15:23:01

Modified files:
	bin/dd         : dd.1 

Log message:
Add HISTORY section.
Information found on: http://www.tuhs.org/cgi-bin/utree.pl
Checked by Sevan Janiyan <venture37 at geeklan dot co dot uk>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/17 15:36:47

Modified files:
	devel/jdk/1.7  : Makefile distinfo 

Log message:
mark jdk/1.7 as wxneeded (and provide new amd64/i386 bootstraps), this is
done via an ld wrapper script in ${WRKDIR}/bin because the build process is
fairly complicated and already involves several layers of patches.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/17 15:58:36

Modified files:
	devel/jdk/1.8  : Makefile 

Log message:
apply the same ld wrapper to jdk/1.8 as was done for jdk/1.7 to mark the
binaries as wxneeded.

this build is less complicated than 1.7 so a nicer fix than the wrapper
should be sanely possible, but committing the simpler one for now to
hopefully unbreak packages.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/17 16:15:08

Modified files:
	lib/libc/stdio : vfprintf.c vfwprintf.c 

Log message:
% is escaped with more %, not backslash.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/08/17 18:06:32

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
add section on VM networking. more to come, this is a starting point for
further documentation.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/17 18:44:37

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
fix an fd leak
ok schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/17 18:45:52

Modified files:
	usr.sbin/relayd: carp.c 

Log message:
fix fd leaks in error paths
ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/17 19:52:29

Modified files:
	sysutils/bitrot: Makefile distinfo 

Log message:
Update to bitrot 0.9.0. From MAINTAINER.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/17 22:53:30

Modified files:
	databases/py-psycopg2: Makefile distinfo 
	databases/py-psycopg2/pkg: PLIST 

Log message:
Update to py-psycopg2 2.6.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/17 22:56:50

Modified files:
	devel/py-parsing: Makefile distinfo 

Log message:
Update to py-parsing 2.1.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/17 23:01:29

Modified files:
	databases/py-pickleshare: Makefile distinfo 

Log message:
Update to py-pickleshare 0.7.4


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/18 00:01:10

Modified files:
	sys/netinet    : ip_ah.c ip_esp.c ip_ipcomp.c 

Log message:
fix panics caused by replacing m_copym2 with m_dup_pkt.

m_copym2 is fine duplicating an arbitrary chain of mbufs, while
m_dup_pkt wants to dup a packet with proper headers in the first
mbuf. ipsec copied the tail of an mbuf if any of the clusters are
shared or readonly, and swapped that tail with the result of m_copym2.

m_dup_pkt panics cos of that.

this makes ipsec duplicate the whole packet if any of the chain is
readonly.

found by naddy@ and mlarkin@
this fix is from visa@ who told me to commit it cos he's afk (sleeping)
tested by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/18 00:36:02

Modified files:
	usr.sbin/bind/lib/dns: tkey.c 

Log message:
init a variable to address https://kb.isc.org/article/AA-01272

Most of bind got removed and this function is not called
by any of the remaining parts.

ok deraadt@ a long time ago.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/18 00:56:59

Modified files:
	x11/gnome/file-roller: Makefile distinfo 

Log message:
update to file-roller-3.20.3


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/18 03:20:01

Modified files:
	sys/dev/pv     : hyperv.c hypervreg.h 

Log message:
Clean up style and replace a magic value with a magic define


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/18 03:28:22

Modified files:
	sys/arch/armv7/armv7: armv7_start.S 
	sys/arch/arm/arm: pmap7.c 
	sys/arch/arm/include: pte.h 

Log message:
Separate out the Access Flag bit from the Access Permission bits in the
armv7 pmap.

ok tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/18 04:55:18

Modified files:
	devel/tig      : Makefile distinfo 
Removed files:
	devel/tig/patches: patch-src_graph-v2_c 

Log message:
Update to tig-2.2

from maintainer Frederic Cambus


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/18 05:33:48

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
various fixes for previous;


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/08/18 05:35:58

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

Log message:
add mirror ftp.yzu.edu.tw, from Peter Dave Hello.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/08/18 05:36:14

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/18 05:45:18

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

Log message:
punctuation fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/18 05:59:58

Modified files:
	sys/dev/usb    : ehci.c 

Log message:
add a missing splx in an error path
ok millert@ stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/18 06:07:21

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

Log message:
shorten the nseq text;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/18 06:28:53

Modified files:
	infrastructure/mk: bsd.port.mk 
	databases/sqlports: Makefile 
	databases/sqlports/files: Info.pm 

Log message:
Add an USE_WXNEEDED flag for ports, to write an ld wrapper script in
${WRKDIR}/bin that adds -z wxneeded to linker command lines. It won't work
everywhere but provides an easy (and easily identifiable) way to add this
flag without fiddling with build systems.

Feedback/ok jca@ jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/18 06:29:32

Modified files:
	devel/jdk/1.7  : Makefile 
	devel/jdk/1.8  : Makefile 

Log message:
use the centralized ld "wxneeded" wrapper for the jdk ports.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/08/18 06:29:53

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
document USE_WXNEEDED, feedback/ok jca jasper


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/18 06:31:53

Modified files:
	lang/mono      : Makefile 

Log message:
use USE_WXNEEDED


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/08/18 06:40:44

Modified files:
	devel/cppcheck : Makefile distinfo 

Log message:
update to cppcheck 1.75
ok gsoares@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/18 06:50:42

Modified files:
	lang/python    : Makefile.inc 

Log message:
switch to USE_WXNEEDED


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/18 07:39:00

Modified files:
	audio/ncmpcpp  : Makefile distinfo 
Removed files:
	audio/ncmpcpp/patches: patch-src_actions_cpp 

Log message:
Update to ncmpcpp-0.7.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/18 07:42:26

Modified files:
	x11/jwm        : Makefile distinfo 

Log message:
- update to jwm-2.3.6
- update license marker (jwm is MIT-licenesd now)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/18 08:12:51

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

Log message:
word fix, from remi locherer; ok reyk


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/18 08:21:39

Modified files:
	www/webkitgtk4 : Makefile 
Added files:
	www/webkitgtk4/patches: 
	                        patch-Source_JavaScriptCore_javascriptcoregtk_pc_in 
	                        patch-Source_WebKit2_webkit2gtk-web-extension_pc_in 
	                        patch-Source_WebKit2_webkit2gtk_pc_in 

Log message:
USE_WXNEEDED, add "-Wl,-z,wxneeded" to pkg-config files

WebKit violates W^X, so binaries linked with it need to be "wxneeded".
Pkg-config files seem to be an appropriate mean of automating this task.

Discussed with ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/18 09:43:12

Modified files:
	lib/libtls     : tls_init.3 

Log message:
Rework parts of the libtls man page for clarity. Split out the connection
information related functions under their own heading and dedup the text
relating to when these functions can be called.

With input from and ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/18 09:52:03

Modified files:
	lib/libtls     : tls_server.c 

Log message:
Split out the TLS server SSL_CTX allocation and configuration code, so
that it can be reused to allocate the additional SSL_CTXs needed for SNI.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/18 09:56:54

Modified files:
	sys/dev/pv     : if_hvn.c if_hvnreg.h 

Log message:
Update NVS protocol structure definitions to the 2016 version

Microsoft has considerably cleaned up the style and it makes sense
to keep in sync with the maintained upstream version in FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/18 10:12:06

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
use a more standard page layout; ok mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/18 10:23:07

Modified files:
	usr.bin/ftp    : extern.h fetch.c ftp.c util.c 

Log message:
Move connect_sync() to util.c and use it when connecting via http
too.  OK sthen@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2016/08/18 11:23:03

Modified files:
	lang/go        : Makefile distinfo 
	lang/go/patches: patch-api_except_txt 
	                 patch-src_cmd_link_internal_ld_data_go 
	                 patch-src_cmd_link_internal_ld_elf_go 
	                 patch-src_cmd_link_internal_ld_lib_go 
	                 patch-src_runtime_cgo_gcc_openbsd_386_c 
	                 patch-src_runtime_cgo_gcc_openbsd_amd64_c 
	                 patch-src_runtime_sys_openbsd_386_s 
	lang/go/pkg    : PLIST 
Removed files:
	lang/go/patches: patch-src_runtime_testdata_testprogcgo_aprof_go 

Log message:
Upgrade lang/go to 1.7.

ok czarkoff@ pea@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/18 12:30:57

Modified files:
	www/surf2      : Makefile 
	www/surf2/patches: patch-Makefile patch-config_def_h 
	                   patch-config_mk 

Log message:
Enable Inspector, clean up WANTLIB, make build more verbose


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/18 13:32:50

Modified files:
	lang/racket-minimal: Makefile 

Log message:
Add USE_WXNEEDED. Passes the tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/18 13:59:16

Modified files:
	sys/uvm        : uvm_mmap.c 

Log message:
uvm_wxcheck() should only abort the process if kern.wxabort is set.
The new semantics are W^X violations are reported to the application
via ENOTSUP.  Forgot to fix this during the last change.
Spotted by kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2016/08/18 15:12:35

Modified files:
	sys/dev/wscons : wsmouse.c wsmouseinput.h 

Log message:
Reset the input state completely when wsmouse is (re-)opened.

ok mpi@


CVSROOT:	/cvs
Module name:	www
Changes by:	tedu@cvs.openbsd.org	2016/08/18 15:32:14

Modified files:
	.              : vax.html 

Log message:
the simh page is gone


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/18 16:29:02

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

Log message:
Add an EXAMPLES section that illustrates how to deal with connect(2)
returning EINTR.  OK jung@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/18 16:41:55

Modified files:
	mail           : Makefile 
	mail/mutt      : Makefile distinfo 
	mail/mutt/pkg  : DESCR PLIST 

Log message:
update to Mutt 1.7.0, remove flavour for sidebar


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/18 19:37:50

Modified files:
	regress/sys/copy: copy.c 

Log message:
string.h not strings.h


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/18 21:18:07

Modified files:
	usr.bin/ssh    : monitor.c servconf.c servconf.h session.c 
	                 sshd.8 sshd.c sshd_config.5 

Log message:
remove UseLogin option and support for having /bin/login manage
login sessions; ok deraadt markus dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/18 22:59:25

src/regress/usr.bin/ssh/unittests/match

Update of /cvs/src/regress/usr.bin/ssh/unittests/match
In directory cvs.openbsd.org:/tmp/cvs-serv18376/match

Log Message:
Directory /cvs/src/regress/usr.bin/ssh/unittests/match added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/18 23:04:38

Modified files:
	audio/ncmpc    : Makefile distinfo 
	audio/ncmpc/patches: patch-configure 

Log message:
Update to ncmpc-0.25


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/18 23:25:08

Modified files:
	sys/arch/armv7/omap: ti_iic.c 

Log message:
avoid using an uninitialised variable with zero length iic_exec calls


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/19 00:44:13

Modified files:
	regress/usr.bin/ssh/unittests: Makefile 
Added files:
	regress/usr.bin/ssh/unittests/match: Makefile tests.c 

Log message:
add tests for matching functions


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/19 01:02:47

Modified files:
	math/R         : Makefile 
	math/R/pkg     : README 

Log message:
Use egfortran by default

OK feinerer@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/19 01:12:54

Modified files:
	sys/net        : route.c 

Log message:
Do not seroize a struct needed for RTM_RESOLVE in the hot path.

ok phessler@, bluhm@, tedu@, natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/19 01:39:05

Modified files:
	www/py-httpbin : Makefile distinfo 
	www/py-httpbin/patches: patch-setup_py 

Log message:
Update to py-httpbin 0.5.0


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/08/19 02:06:25

Modified files:
	sbin/disklabel : editor.c 

Log message:
Start with a default fragsize of 2048, double it for large disks and then cap
based on sector size. This avoid too large fragments on 4k disks. Problem
noted by David Vasek; ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/19 02:46:38

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

Log message:
shorten the ocsp text; ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/19 03:06:24

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
correct a rate test introduced in rev 1.326
ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/19 03:40:39

Modified files:
	regress/usr.sbin/arp: arptest2.ok 

Log message:
Reorder entries to match current multipath ordering.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/19 03:49:24

Modified files:
	www/phantomjs  : Makefile 

Log message:
phantomjs needs wxneeded, from Caspar Schutijser


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/19 04:15:24

Modified files:
	mail/trojita   : Makefile 

Log message:
trojita requires W|X mappings (for QtWebKit), so link it with -z wxneeded (it
needs a cmake flag rather than USE_WXNEEDED's ld wrapper, but let's still
add USE_WXNEEDED to provide uniform annotation).

Original diff from Caspar Schutijser (who takes maintainer), tweaks by me
and dcoppa (who managed to avoid needing a patch). ok dcoppa@


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2016/08/19 04:57:24

Modified files:
	share/man/man5 : login.conf.5 
	usr.bin/passwd : passwd.1 

Log message:
update man pages now that login.conf uses auto rounds

better wording/ok sthen@ ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2016/08/19 05:41:40

Modified files:
	databases/postgresql: Tag: OPENBSD_6_0 Makefile distinfo 
	databases/postgresql/pkg: Tag: OPENBSD_6_0 PLIST-contrib 
	                          PLIST-docs 

Log message:
Security update to 9.5.4

ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2016/08/19 06:51:19

Modified files:
	devel/cudf     : Makefile 
	devel/ocaml-dose: Makefile 
	devel/ocaml-dose/patches: patch-doseparse_stdOptions_ml 
	devel/ocaml-extlib: Makefile distinfo 
	devel/ocaml-extlib/pkg: PFRAG.native PLIST 
	sysutils/opam  : Makefile 

Log message:
Update extlib to 1.7.0, the same version opam installs when asked.

Switch to github hosting. Delete dead MASTER_SITES.

One tweak to a dependent (dose) due to a structure change.

Tweaks & ok sthen@ before 6.0 intervened


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/19 07:54:40

Modified files:
	math/R         : Makefile 

Log message:
Zap bogus "${MODFORTRAN_LIB_DEPENDS}"


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 07:56:08

Modified files:
	sys/arch/arm/arm: fault.c pmap7.c 
	sys/arch/arm/include: pmap.h 

Log message:
Use Access Flag to do page reference emulation.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 08:05:23

Modified files:
	sys/arch/arm/include: pmap.h 

Log message:
Adjust the definitions of L1_S_COHERENT_v7, L2_L_COHERENT_v7 and
L2_S_COHERENT_v7 such that bus_dmamap_sync(9) avoids unnecessary cache
flushes again for DMA'able memory mapped with the BUS_DMA_COHERENT flag.
I broke this in pmap7.c rev 1.35.

ok tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/19 08:08:44

Modified files:
	lang/gforth    : Makefile 

Log message:
switch from modifying LDFLAGS to USE_WXNEEDED; ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/19 08:39:05

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-daily_sh 
	                      patch-html_pages_about_inc_php 
	                      patch-includes_common_php 
	                      patch-includes_definitions_inc_php 
	net/librenms/pkg: PLIST 
Added files:
	net/librenms/patches: patch-lib_influxdb-php_requirements_sh 
Removed files:
	net/librenms/patches: patch-scripts_agent-local_bind 
	                      patch-scripts_agent-local_dmi 
	                      patch-scripts_agent-local_tinydns 

Log message:
update to LibreNMS 201608


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2016/08/19 09:22:34

Modified files:
	databases/postgresql: Tag: OPENBSD_5_9 Makefile distinfo 
	databases/postgresql/pkg: Tag: OPENBSD_5_9 PLIST-docs 

Log message:
Security update to 9.4.8

ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 09:31:10

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c 

Log message:
Map kernel .text read-only.

Spotted by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/08/19 09:35:08

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

Log message:
make smtpd less verbose at startup

ok gilles@ sunil@ jung@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 09:47:27

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Mark device memory as execute-never to prevent a speculative instruction fetch
to access it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/19 10:52:38

Modified files:
	mail/claws-mail: Makefile distinfo 
	mail/claws-mail/patches: patch-configure_ac 
	                         patch-src_common_ssl_c 
	mail/claws-mail/pkg: PLIST-main 

Log message:
update to claws-mail-3.14.0

Diff reads good to sthen@, ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 11:31:04

Modified files:
	sys/arch/arm/arm: pmap7.c 
	sys/arch/arm/include: pmap.h 

Log message:
Start using to XN flag to enforce that mappings without PROT_EXEC are
non-executable.

ok visa@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 11:39:38

Modified files:
	regress/sys/kern/noexec: Makefile testfly.S 

Log message:
Add support for arm and enable on armv7.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 12:25:53

Modified files:
	sys/arch/armv7/imx: if_fec.c 

Log message:
Seems we need to hold the PHY into reset a little bit longer.  Without it
Theo's Cubox-i comes up without working Ethernet after a warm boot.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/19 13:07:37

Modified files:
	sys/arch/arm/arm: fault.c 

Log message:
Make the FSR encoding strings match the ARMv7 ARM.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/08/19 13:09:34

Modified files:
	lang/ruby      : Makefile.inc 
	lang/ruby/1.8  : Makefile 
	lang/ruby/2.0  : Makefile 
	lang/ruby/2.1  : Makefile 
	lang/ruby/2.2  : Makefile 
	lang/ruby/2.3  : Makefile 

Log message:
Add USE_WXNEEDED to ruby, to get devel/ruby-therubyracer working

Original diff from awolk@, OK sthen@

Change to use USE_WXNEEDED by me


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/19 13:36:01

Modified files:
	www/phantomjs  : Makefile 

Log message:
add comment "bundled webkit", prompted by a mail from aja


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/19 13:42:04

Added files:
	mail/trojita/patches: patch-CMakeLists_txt 

Log message:
Remove a '-O2' unconditionally added to ${CMAKE_CXX_FLAGS}: we
already pass '-O2' to the build.

That '-Wall -Wsign-compare -O2 -O2 -pipe' was hurting my sense of
aesthetics.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/19 13:58:47

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-BUILD_gn 

Log message:
remove some unnecessary patches


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/19 14:48:36

Modified files:
	sys/arch/hppa/conf: files.hppa 
Added files:
	sys/arch/hppa/hppa: mem.c 
Removed files:
	sys/arch/hppa/dev: mem.c 

Log message:
move mem.c to hppa directory like every other arch.
(probably landed in dev because it has support for this viper thing,
but i like consistency for the /dev/null parts.)
ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/19 16:47:55

Modified files:
	mail           : Makefile 
	mail/mutt      : Makefile distinfo 
	mail/mutt/pkg  : DESCR PLIST 

Log message:
backout mutt update, as spotted by kili the compressed folders patch doesn't
apply, it's going to need more work than i have time for at the moment to
merge (i hate these external patchsets...)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/19 18:14:01

Modified files:
	emulators/mupen64plus/ui-console: Makefile 
Removed files:
	emulators/mupen64plus/ui-console/patches: 
	                                          patch-projects_unix_Makefile 

Log message:
Set USE_WXNEEDED rather than manually modifying linker flags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/19 18:18:42

Modified files:
	games/0ad/base : Makefile 
Added files:
	games/0ad/base/patches: patch-build_premake_premake4_lua 

Log message:
Mark 0ad wxneeded by passing linker flags.

Set USE_WXNEEDED also; it doesn't seem to help, but it serves as
documentation.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/19 23:16:02

Modified files:
	games/eduke32  : Makefile distinfo 
	games/eduke32/patches: patch-Makefile_common 
	games/eduke32/pkg: PLIST 
Removed files:
	games/eduke32/patches: patch-build_Makefile_shared 
	                       patch-build_include_compat_h 
	                       patch-build_src_dynamicgtk_c 
	                       patch-build_src_glbuild_c 

Log message:
Update to eduke32-2.0.0.5775.

From Ryan Freeman (maintainer).


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/20 01:56:09

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

Log message:
shorten the passwd text; ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2016/08/20 02:31:36

Modified files:
	sys/net        : pf.c 

Log message:
Retire pf_translate_ap()
OK mpi@ mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2016/08/20 02:34:31

Modified files:
	sys/net        : pf.c pfvar.h 

Log message:
Push 'field changed' guards into 'change field' functions;
optimise pf_patch_32(); simplify pf_match_addr()
OK mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/20 02:37:12

Modified files:
	devel/spidermonkey: Makefile 

Log message:
set USE_WXNEEDED for sqlports' sake; patch-config_config_mk is still needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/20 02:56:19

Modified files:
	lang/chicken   : Makefile.inc 
	lang/chicken/core: Makefile 
	lang/chicken/core/patches: patch-csc_scm 
Added files:
	lang/chicken/core/patches: patch-posix-common_scm 
	                           patch-posixunix_scm 
Removed files:
	lang/chicken/core/patches: patch-tests_data-structures-tests_scm 

Log message:
fix buffer overflow and mem leak in execvp/execve wrappers (CVE-2016-6830 and CVE-2016-6831)

from Timo Myyra


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/20 02:57:52

Modified files:
	lang/chicken   : Tag: OPENBSD_6_0 Makefile.inc 
	lang/chicken/core: Tag: OPENBSD_6_0 Makefile 
	lang/chicken/core/patches: Tag: OPENBSD_6_0 patch-csc_scm 
Added files:
	lang/chicken/core/patches: Tag: OPENBSD_6_0 
	                           patch-posix-common_scm 
	                           patch-posixunix_scm 
Removed files:
	lang/chicken/core/patches: Tag: OPENBSD_6_0 
	                           patch-tests_data-structures-tests_scm 

Log message:
fix buffer overflow and mem leak in execvp/execve wrappers (CVE-2016-6830 and CVE-2016-6831)

from Timo Myyra (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/20 03:09:13

Modified files:
	lang/obc       : Makefile 

Log message:
needs USE_WXNEEDED as spotted by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/20 03:09:54

Modified files:
	lang/obc       : Makefile 

Log message:
and bump REVISION


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 04:41:54

Modified files:
	sys/arch/armv7/dev: com_fdt.c 

Log message:
Figuring out the clock frequency used for a com(4) device on armv7 is hard.
Avoid doing so for the early console and instead rely on the firmware to
set up the right baud rate and such.

ok visa@, millert@, jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/20 05:17:38

Modified files:
	mail/trojita   : Makefile 

Log message:
bump for maintainer change


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/20 05:39:56

Modified files:
	x11/gnome/shell: Makefile distinfo 

Log message:
update to gnome-shell-3.20.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 05:57:41

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

Log message:
Update to pangomm-2.40.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 05:59:50

Modified files:
	textproc/libebml: Makefile distinfo 

Log message:
Update to libebml-1.3.4.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:00:35

Modified files:
	multimedia/x265: Makefile distinfo 

Log message:
Update to x265-2.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:01:15

Modified files:
	multimedia/libmatroska: Makefile distinfo 

Log message:
Update to libmatroska-1.4.5.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:02:01

Modified files:
	multimedia/mkvtoolnix: Makefile distinfo 

Log message:
Update to mkvtoolnix-9.3.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:02:32

Modified files:
	graphics/libwebp: Makefile distinfo 

Log message:
Update to libwebp-0.5.1.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:19:14

Modified files:
	x11/lumina     : Makefile.inc 
	x11/lumina/i18n: distinfo 
	x11/lumina/i18n/pkg: PLIST 
	x11/lumina/lumina: Makefile distinfo 
	x11/lumina/lumina/pkg: PLIST 

Log message:
Update to lumina-1.0.0.1.

from Bryan C. Everly


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 06:36:59

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Correctly enter a mapping as writable if no "page modified" emulation
is needed.

ok visa@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:37:23

Modified files:
	x11/gnome/documents: Makefile distinfo 

Log message:
Update to gnome-documents-3.20.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:39:57

Modified files:
	x11/gnome/weather: Makefile distinfo 
	x11/gnome/weather/pkg: PLIST 

Log message:
Update to gnome-weather-3.20.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/20 06:54:49

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

Log message:
shorten pkcs7 text;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:57:18

Modified files:
	x11/lumina     : Makefile.inc 
	x11/lumina/i18n: Makefile 
	x11/lumina/lumina: Makefile 

Log message:
Give maintainership to Bryan C. Everly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 06:58:23

Modified files:
	x11/gnome/gvfs : Makefile distinfo 

Log message:
Update to gvfs-1.28.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 07:01:45

Modified files:
	x11/gtk-vnc    : Makefile distinfo 
	x11/gtk-vnc/pkg: PLIST 

Log message:
Update to gtk-vnc-0.6.0.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/20 07:24:38

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi sunxi_machdep.c 
Removed files:
	sys/arch/armv7/sunxi: sxiuart.c 

Log message:
sxiuart(4) has been replaced with com(4).

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 07:38:52

Modified files:
	audio/rhythmbox: Makefile distinfo 
	audio/rhythmbox/pkg: PLIST 
Removed files:
	audio/rhythmbox/patches: patch-configure 
	                         patch-plugins_grilo_rb-grilo-plugin_c 
	                         patch-plugins_grilo_rb-grilo-source_c 

Log message:
Update to rhythmbox-3.4.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/20 08:35:28

Removed files:
	sys/arch/armv7/sunxi: sxiuartreg.h 

Log message:
Remove obsolete sxiuart(4) header.

Noticed by mglocker@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/20 08:43:40

Modified files:
	usr.bin/mandoc : mdoc.c mdoc_validate.c 
	regress/usr.bin/mandoc/mdoc/Bl: Makefile 
	regress/usr.bin/mandoc/tbl/macro: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Bl: colNoIt.in colNoIt.out_ascii 
	regress/usr.bin/mandoc/tbl/macro: column.in column.out_ascii 

Log message:
If a column list starts with implicit rows (that is, rows without .It)
and roff-level nodes (e.g. tbl or eqn) follow, don't run into an
assertion.  Instead, wrap the roff-level nodes in their own row.
Issue found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/20 09:04:21

Modified files:
	sbin/fsck_ffs  : setup.c 

Log message:
fsdb(8) sucks in and is pledged by fsck(8).  Since it uses editline(3),
add a special case for the missing "rpath" and "tty" promises.
Issue found and initial analysis by Jan Stary, thanks!

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/20 09:05:52

Modified files:
	usr.sbin/rtadvd: rtadvd.h 

Log message:
Move counters from u_quad_t to uint64_t.

Printing is already done with %llu/(unsigned long long) casts.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/20 09:10:18

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

Log message:
Tweak timer debug output.

-RA timer on em0 is set to 16:0
+RA timer on em0 is set to 16.0s


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/20 09:20:01

Modified files:
	textproc/wkhtmltopdf: Makefile 

Log message:
USE_WXNEEDED

from maintainer Frank Groeneveld


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/20 09:21:23

Removed files:
	www/chromium/patches: patch-chrome_test_BUILD_gn 

Log message:
remove unused patch


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 09:44:04

Modified files:
	sys/arch/armv7/armv7: platform.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/dev: com_fdt.c 
Removed files:
	sys/arch/armv7/broadcom: bcm2835_muart.c 

Log message:
Replace bcmmuart(4) with com(4).

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/20 09:58:16

Modified files:
	usr.bin/mandoc : mdoc_macro.c 
	regress/usr.bin/mandoc/mdoc/Bl: break.in break.out_ascii 
	                                break.out_lint 

Log message:
When scanning upwards for a column list to put a .Ta macro in,
ignore body end markers of lists breaking other blocks.
Fixing a logical error that caused a NULL deref found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/20 10:41:47

Modified files:
	sysutils/sysmon: Makefile 
	sysutils/sysmon/pkg: sysmond.rc 

Log message:
Fix rc_reload() so that it works with daemon_rtable.

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/20 11:00:57

Modified files:
	www/otter-browser: Makefile distinfo 
Added files:
	www/otter-browser/patches: patch-src_main_cpp 

Log message:
Update otter-browser to 0.9.11 weekly 135

- add wxneeded
- patch for (null) fprintf

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/20 11:58:09

Modified files:
	usr.bin/mandoc : mdoc_macro.c 
	regress/usr.bin/mandoc/mdoc/break: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/break: notopen.in notopen.out_ascii 
	                                   notopen.out_lint 

Log message:
When a mismatching end macro occurs while at least two nested blocks
are open, all except the innermost open block got a bogus MDOC_ENDED
marker, in some situations triggering segfaults down the road
which tb@ found with afl(1).
Fix the logic error by figuring out up front whether an end macro
has a matching body, and if it hasn't, don't mark any blocks as broken.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/20 12:44:07

Modified files:
	bin/stty       : stty.1 

Log message:
already in v2 according to http://www.tuhs.org/Archive/PDP-11/Distributions/research/1972_stuff/unix_2nd_edition_manual.pdf
patch from Sevan Janiyan <venture37 at geeklan dot co dot uk>


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/20 13:05:25

Modified files:
	net/mosh       : Makefile distinfo 
	net/mosh/patches: patch-src_crypto_ocb_cc 

Log message:
Update to mosh-1.2.6

Amend HOMEPAGE while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/20 13:08:57

Modified files:
	lib/libc/asr   : asr_private.h 

Log message:
Declare all _asr_* debug functions as hidden.

Reported by & similar diff by guenther@ some time ago, ok eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/08/20 13:22:06

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

Log message:
Format string fixes in debug code: need %llx to print 64 bit values

ok kettenis@ deraadt@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 13:31:01

Modified files:
	sys/arch/arm/include: param.h 

Log message:
Don't set MSGBUFSIZE here such that the setting in <machine/param.h> takes
effect.  This will let us have different settings on armv7 and zaurus and
also unconfuses this developer.

ok tom@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 13:34:44

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c sxiccmuvar.h 

Log message:
Add some code to set the SD/MMC clocks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/08/20 13:39:37

Modified files:
	lang/ghc       : Makefile 

Log message:
Switch to USE_WXNEEDED.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 13:41:14

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Various improvements to make this work better.

Restrict the block size to 512 bytes for now.  While Linux and NetBSD seem
to allow larger block sizes (4096 and 8192 bytes) I'm getting errors wth an
older 2G Sandisk SD card that advertises support for 1024 byte blocks.

Implement switching between the 400 KHz "discovery" clock and the 25 MHz
"operational" clock.  Enable the right clock based on the SD/MMC "unit"
number.  Don't advertise highspeed capabilities for now as I'm not sure
how the adjust the clock timing in that case.

Fix the way we calculate the number of blocks and the size of the total data
transfer to matc what we do in sdhc(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 13:42:55

Modified files:
	sys/arch/armv7/include: param.h 

Log message:
Increase MSGBUFSIZE to 8 pages.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 13:44:02

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Enable sximmc(4).


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/20 13:47:10

Modified files:
	lang/racket-minimal: Makefile 

Log message:
Add the LDFLAGS again. The previous version worked for me but failed
in the bulk builds. Spotted by naddy@.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 13:53:31

Modified files:
	share/man/man4/man4.armv7: Makefile 
Added files:
	share/man/man4/man4.armv7: sximmc.4 

Log message:
sximmc(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/20 14:18:42

Modified files:
	usr.bin/ftp    : extern.h fetch.c ftp.c util.c 

Log message:
Use connect(2) + a connect_wait() function instead of connect_sync(),
similar to the example in connect(2).  OK tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/20 14:22:28

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

Log message:
Sync connect_wait() example with its real usage in ftp(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/20 14:23:29

Modified files:
	share/man/man4/man4.armv7: sximmc.4 

Log message:
add "armv7" to the Dt line;


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/08/20 14:47:08

Modified files:
	usr.sbin/smtpd : rfc2822.c 

Log message:
Properly initialize the message parser. fix a regression where the
message headers would not be altered as expected.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/20 14:50:31

Modified files:
	geo/qgis       : Makefile 

Log message:
switch to ports gcc on i386; can't build it with base gcc, uses too much ram


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/20 14:52:53

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

Log message:
maintenance update to 1.6.24; from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 15:04:18

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Fix indentation.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 15:07:07

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Argh, commit from the wrong tree.  Revert previous commit.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/20 15:08:16

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Fix indentation.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/20 15:46:18

Modified files:
	devel/qt-creator: Makefile 

Log message:
wxneeded (QtWebkit)

from Caspar Schutijser


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/20 17:05:50

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/08/20 21:26:04

Modified files:
	usr.bin/login  : login.c 

Log message:
Change sleep from crazy backoff to one second of sleep between retries
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/21 00:36:23

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/exynos: exuart.c exynos.c files.exynos 

Log message:
Dynamically attach exuart using the FDT.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/21 00:47:47

Modified files:
	sys/arch/arm/cortex: ampintc.c 
	sys/arch/armv7/exynos: exynos4.c exynos5.c 

Log message:
Remove the remains of a workaround to get GIC ranges for exynos.

Exynos differed from everything else by not having GIC at fixed offsets
from PERIPHBASE.  Now that ampintc/GIC attaches using FDT we get the ranges
out of the FDT instead of using offsets from PERIPHBASE.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/21 01:08:46

Modified files:
	sys/arch/armv7/vexpress: pl011.c 

Log message:
When detecting the console on attach test fa_node and stdout_node not fa_reg
and pl011consaddr as the pl011consaddr addresss may have been translated.
Set cn_dev at this point as well as in com(4) and imxuart(4) to handle cases
where stdout is not serial0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 02:40:28

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/pkg: PLIST-main 
Removed files:
	textproc/link-grammar/patches: patch-link-parser_link-parser_c 

Log message:
Update to link-grammar-5.3.8.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/21 03:23:33

Modified files:
	sys/miscfs/fuse: fuse_lookup.c fuse_vnops.c fusefs.h 

Log message:
There are three callers of update_vattr(). Two of them don't use the
updated struct vattr afterwards, so the call can be removed. Remove both
calls and the function itself, inlining the last remaining call.

ok millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/21 03:49:41

Modified files:
	devel/libgtop2 : Makefile distinfo 
	devel/libgtop2/patches: patch-configure 
	devel/libgtop2/pkg: PLIST 

Log message:
update to libgtop-2.34.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/21 03:50:17

Log message:
    import dhcpdump-1.8
    
    dhcpdump provides an easy way for analyzing DHCP traffic easier checking
    and debugging.
    
    feedback/ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20162108
    
    N ports/net/dhcpdump/distinfo
    N ports/net/dhcpdump/Makefile
    N ports/net/dhcpdump/patches/patch-dhcpdump_c
    N ports/net/dhcpdump/pkg/PLIST
    N ports/net/dhcpdump/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/21 03:51:08

Modified files:
	net            : Makefile 

Log message:
+dhcpdump


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/21 03:53:59

Modified files:
	net/dhcpdump   : Makefile 
	net/dhcpdump/pkg: DESCR 

Log message:
ugh, use the DESCR stuart actually OK'ed


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:04:23

Modified files:
	emulators/qemu : Makefile distinfo 
	emulators/qemu/patches: patch-configure 

Log message:
Update to qemu-2.6.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:07:38

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

Log message:
Update to libgsf-1.14.40.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:07:57

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

Log message:
Update to goffice-0.10.32.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:08:21

Modified files:
	math/gnumeric  : Makefile distinfo 
	math/gnumeric/pkg: PLIST 

Log message:
Update to gnumeric-1.12.32.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:12:02

Modified files:
	www/owncloud   : Tag: OPENBSD_5_9 Makefile distinfo 
	www/owncloud/patches: Tag: OPENBSD_5_9 
	                      patch-apps_updater_appinfo_info_xml 
	www/owncloud/pkg: Tag: OPENBSD_5_9 PLIST 

Log message:
SECURITY update to owncloud-8.2.7.

https://owncloud.org/security/advisory/?id=oc-sa-2016-007
https://owncloud.org/security/advisory/?id=oc-sa-2016-008
https://owncloud.org/security/advisory/?id=oc-sa-2016-010
https://owncloud.org/security/advisory/?id=oc-sa-2016-014
https://owncloud.org/security/advisory/?id=oc-sa-2016-015
https://owncloud.org/security/advisory/?id=oc-sa-2016-012

from Todd Mortimer, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:27:46

Modified files:
	devel/appstream-glib: Makefile distinfo 
	devel/appstream-glib/pkg: PLIST 

Log message:
Update to appstream-glib-0.6.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:39:47

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

Log message:
Update to glib2-2.48.2.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:40:13

Modified files:
	x11/dbus       : Makefile distinfo 

Log message:
Update to dbus-1.10.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:41:20

Modified files:
	fonts/cantarell-fonts: Makefile distinfo 

Log message:
Update to cantarell-fonts-0.0.25.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:47:44

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

Log message:
Update to py-botocore-1.4.48.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:48:15

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:48:41

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.10.58.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 06:58:59

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/patches: 
	                            patch-filter_foomatic-rip_foomaticrip_c 
	print/cups-filters/pkg: PLIST 

Log message:
Update to cups-filters-1.11.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 07:03:22

Modified files:
	security/libgcrypt: Makefile distinfo 

Log message:
SECURITY update to libgcrypt-1.7.3.
CVE-2016-6313


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/21 07:10:26

Modified files:
	faq            : upgrade60.html 

Log message:
make it a bit clearer that not all occurrences of keepenv need to
be replaced in doas.conf(5).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 07:16:57

Modified files:
	security/libgcrypt: Tag: OPENBSD_5_9 Makefile 
Added files:
	security/libgcrypt/patches: Tag: OPENBSD_5_9 
	                            patch-random_random-csprng_c 

Log message:
Fix for CVE-2016-6313.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 07:21:53

Modified files:
	security/libgcrypt: Tag: OPENBSD_6_0 Makefile 
Added files:
	security/libgcrypt/patches: Tag: OPENBSD_6_0 
	                            patch-random_random-csprng_c 

Log message:
Fix for CVE-2016-6313.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/21 07:31:21

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

Log message:
fix obvious typo in the .Dt section number


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/08/21 07:45:46

Modified files:
	sysutils/ansible: Makefile distinfo 
	sysutils/ansible/pkg: PLIST 

Log message:
Update sysutils/ansible to 2.1.1.0

Mostly a bugfix release with some minor changes, for details see:
https://github.com/ansible/ansible/blob/v2.1.1.0-1/CHANGELOG.md

A now fixed bug pointed out by Frank Groeneveld was that by using
the cron modules user argument might result in the root users crontab
being cleared.

OK aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/21 08:08:25

Modified files:
	lang/go        : Makefile go.port.mk 

Log message:
make go libraries build- and run-depend on particular version of lang/go

Go libraries should be rebuilt on every lang/go update.  This change adds
runtime dependency on lang/go for ports with "lib" in MODGO_TYPE, and tunes
PKGSPEC to force dependency on exact version of go.

OK jsing@, "makes sense" sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/21 08:21:55

Modified files:
	security/go-crypto: Makefile distinfo 
	security/go-crypto/pkg: PLIST 

Log message:
update to latest snapshot

OK and fixes jsing@ (for previous revision)


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/21 08:23:05

Modified files:
	textproc/go-text: Makefile distinfo 
	textproc/go-text/pkg: PLIST 

Log message:
update to latest snapshot

OK and fixes jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/21 08:24:47

Modified files:
	net/go-net     : Makefile distinfo 
	net/go-net/pkg : PLIST 

Log message:
update to latest snapshot in go 1.7 branch

OK and fixes jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/21 08:29:06

Modified files:
	devel/go-tools : Makefile distinfo 
	devel/go-tools/pkg: PLIST 
Added files:
	devel/go-tools/pkg: README 

Log message:
update to latest snapshot of go 1.7 branch

While at it, add README explaining usage of the rc script

OK and fixes jsing@, input from ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/21 08:31:26

Modified files:
	devel/go-check-v1: Makefile distinfo 
	devel/go-check-v1/pkg: PLIST 

Log message:
update to latest snapshot


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/21 08:33:51

Modified files:
	textproc/go-xlsx: Makefile distinfo 

Log message:
update to latest snapshot


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/21 08:41:51

Modified files:
	sys/dev/ofw    : ofw_pinctrl.h ofw_regulator.h 

Log message:
Fix a pasto in a comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/08/21 08:49:42

Modified files:
	www/kcgi       : Makefile distinfo 

Log message:
Update kcgi to 0.8.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 09:09:18

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.20.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 09:15:41

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_config_py 
	                                   patch-lib_googlecloudsdk_core_updater_local_state_py 
	                                   patch-lib_googlecloudsdk_core_util_platforms_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-122.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 09:17:44

Modified files:
	sysutils/remotebox: Makefile distinfo 
	sysutils/remotebox/pkg: PLIST 

Log message:
Update to remotebox-2.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/08/21 09:18:14

Modified files:
	security/py-M2Crypto: Makefile distinfo 
	security/py-M2Crypto/pkg: PLIST 

Log message:
Update security/py-M2Crypto to 0.25.1

OK aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:54:05

Modified files:
	multimedia/gstreamer1: Makefile.inc 

Log message:
Bump to 1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:54:17

Modified files:
	multimedia/gstreamer1/core: Makefile distinfo 

Log message:
Update to gstreamer1-1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:54:31

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

Log message:
Update to gstreamer1-plugins-base-1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:54:43

Modified files:
	multimedia/gstreamer1/plugins-good: distinfo 

Log message:
Update to gstreamer1-plugins-good-1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:54:56

Modified files:
	multimedia/gstreamer1/plugins-ugly: distinfo 

Log message:
Update to gstreamer1-plugins-ugly-1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:55:11

Modified files:
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 

Log message:
update to gstreamer1-plugins-bad-1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:55:29

Modified files:
	multimedia/gstreamer1/plugins-libav: distinfo 

Log message:
Update to gstreamer1-plugins-libav-1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 10:55:41

Modified files:
	multimedia/gstreamer1/py-gstreamer: distinfo 

Log message:
Update to py3-gstreamer1-1.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/21 11:02:48

Modified files:
	cad/gtkwave    : Makefile distinfo 
	cad/gtkwave/pkg: PLIST 

Log message:
Update to gtkwave-3.3.76.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/21 12:05:43

Modified files:
	x11/gnome/eog  : Makefile distinfo 

Log message:
update to eog-3.20.4


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/08/21 12:47:01

Modified files:
	distrib/miniroot: install.sub 

Log message:
tweak previous

OK halex, krw


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/08/21 13:22:15

Modified files:
	distrib/miniroot: install.sub 

Log message:
Make lease_value() unescape quoted strings. To be fully compliant, we
should unvis() it too, but I think this is enough, at least for now.

ok krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/21 14:10:32

Modified files:
	geo/josm       : Makefile distinfo 

Log message:
Update to josm r10786, from maintainer Holger Mikolon


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/21 15:01:03

Modified files:
	lang/gcc/4.6   : Makefile 
	lang/gcc/4.9   : Makefile 

Log message:
Don't hardcode path to "ld" in ports gcc, allowing USE_WXNEEDED to override
"ld" with a wrapper script. Do the same for "as" for consistency as suggested
by naddy. Various versions of this OK'd by dcoppa and pascal.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/21 15:10:52

Modified files:
	lib/libc/stdio : fgetwln.c 

Log message:
bugfix: when fgetwc(3) fails, fgetwln(3) must fail as well;
OK jca@ martijn@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/21 15:23:48

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

Log message:
introduce a union of sockaddr types and eliminate a lot of casts.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/21 15:24:09

Modified files:
	devel/xulrunner/24: Makefile 
Removed files:
	devel/xulrunner/24/patches: patch-js_xpconnect_shell_Makefile_in 
	                            patch-xulrunner_app_Makefile_in 
	                            patch-xulrunner_stub_Makefile_in 

Log message:
switch to USE_WXNEEDED, now that this works with gcc 4.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/21 15:30:22

Removed files:
	editors/vim/patches: patch-runtime_syntax_c_vim patch-src_vim_h 

Log message:
zap empty patches; spotted by frantisek holop


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/21 15:38:05

Modified files:
	sys/arch/armv7/conf: files.armv7 
Added files:
	sys/dev/ofw    : ofw_clock.c ofw_clock.h 

Log message:
Add a minimal clock "framework".  Build it on armv7.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/21 15:39:59

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Implement some fundamental clocks using the new clock framework.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/21 16:20:48

Modified files:
	mail/trojita   : Makefile 
	www/otter-browser: Makefile 

Log message:
Remove superfluous stuff, now that USE_WXNEEDED works with gcc 4.9


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/21 16:51:34

Modified files:
	.              : 60.html 

Log message:
add a missing http:// and fix a doubled word.

spotted by randy hartman, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/21 17:01:57

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for all the ahb, apb0 and apb1 clock gating devices on sun4i,
sun5i and sun7i.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/21 17:02:32

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Use generic clock API to enable the module clock.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/21 19:42:00

Modified files:
	sys/arch/arm/arm: bus_dma.c cpufunc.c 
	sys/arch/arm/cortex: arml2cc.c 
	sys/arch/arm/include: cpufunc.h 

Log message:
Before pmap7.c rev 1.35 and pmap.h rev 1.44 DMA'able memory with the
BUS_DMA_COHERENT flag was mapped as device memory which does not use the
store buffer.  It is now mapped as normal inner and outer non-cacheable
which does.

While we drain the cpu store buffer for this case, on cortex a9 systems we
also need to explicitly drain the PL310 L2's store buffer.  With PL310
revisions r3p2 and later this is done automatically after being present in
the store buffer for 256 cycles.  On i.MX6 PL310 is rev r3p1 which does
not have this behaviour.  This issue is i.MX6 errata ERR055199 and PL310
errata 769419.

This change restores io performance with a usb flash drive attached to
my cubox.  Raw reads go from 3 MB/s to 19 MB/s for example.

Based on code written by patrick@ some time ago.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/21 22:33:07

Modified files:
	usr.bin/openssl: speed.c 

Log message:
Sorry Andrew and Luke, I'm pretty sure we deleted your IRIX and VMS code.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/21 23:21:11

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.socppc md.sparc md.sparc64 md.zaurus 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/21 23:43:33

Modified files:
	lang/sbcl      : Makefile 

Log message:
Mark as BROKEN: mmap W^X violations, but ld -z wxneeded isn't effective


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/21 23:44:54

Modified files:
	lang/sbcl      : Makefile 

Log message:
USE_WXNEEDED=Yes, even if not effective.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/22 00:45:12

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

Log message:
fix typos


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 00:48:38

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add code to enable the pll6 clock.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/22 03:05:46

Modified files:
	sysutils/ansible: Makefile 
Added files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
populate ansible_virtualization_{role,type} facts

tested by awolk@ jung@ and sthen@ on a variety of hypervisors
ok rpe@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	mpi@cvs.openbsd.org	2016/08/22 03:06:40

Modified files:
	audio/deadbeef : Makefile 
	audio/deadbeef/pkg: PLIST 

Log message:
Prefer gtk3 over gtk2, this makes deadbeef usable with HiDPI screens.

While here drop the gettext MODULE.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 03:37:27

Modified files:
	sys/arch/armv7/dev: com_fdt.c 

Log message:
Use the new clock API to get the clock frequency from the device tree and the
actual hardware that controls the clock.  This gets rid of all the hardcoded
clock frequencies for specific hardware.

Tested by jsg@ on the BBB, mglocker@ on the C.H.I.P. and myself on the
Banana Pi and Raspberry Pi 3.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/08/22 04:23:42

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Refactor the uio to mbuf code out of sosend and start to make use of
MCLGETI and large mbuf clusters. This should speed up local connections
a fair bit. OK dlg@ and bluhm@ (after reverting the M_WAIT change on the
cluster allocation)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 04:33:22

Modified files:
	sys/netinet6   : frag6.c in6.c ip6_output.c nd6.c nd6_nbr.c 
	                 nd6_rtr.c raw_ip6.c 

Log message:
Sizes for free(9) from David Hill.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 04:40:36

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

Log message:
Call csignal() and selwakeup() from a KERNEL_LOCK'd task.

This will allow us make bpf_tap() KERNEL_LOCK() free.

Discussed with dlg@ and input from guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 05:23:54

Modified files:
	sys/dev/ofw    : ofw_clock.c ofw_clock.h 

Log message:
Implement interfaces to disable clocks and add interfaces that enable or
disable all clocks for a device.  The latter interfaces are useful for
devices that have multiple clocks that don't have specific names/purposes
such as sxiahci(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 05:24:45

Modified files:
	sys/arch/armv7/sunxi: sxiahci.c 

Log message:
Use the new clock API.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/22 05:44:46

Modified files:
	audio/mpc      : Makefile distinfo 
	audio/mpc/patches: patch-Makefile_in 
Removed files:
	audio/mpc/patches: patch-src_command_c 

Log message:
Update to mpc-0.28


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/22 06:19:27

Modified files:
	textproc/xlsx2csv: Makefile distinfo 

Log message:
update to latest snapshot

reminded by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/22 06:29:24

Modified files:
	x11/gnome/calculator: Makefile 
Added files:
	x11/gnome/calculator/patches: patch-data_history-entry_ui 
	                              patch-data_history-view_ui 

Log message:
add two files which weren't distributed in the upstream tarball (has been fixed since)

breakage (somehow went unnoticed for 2 weeks..) spotted by naddy@ and aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/22 06:33:00

Modified files:
	audio/hs-libmpd: Makefile distinfo 

Log message:
Update to hs-libmpd-0.9.0.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/22 06:44:49

Modified files:
	devel/lua-penlight: Makefile distinfo 

Log message:
Update to penlight-1.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/22 07:39:52

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

Log message:
shorten the pkcs8 text;


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/22 07:45:09

Modified files:
	x11/awesome    : Makefile 
	x11/awesome/patches: patch-awesomeConfig_cmake 
Added files:
	x11/awesome/patches: patch-awesome-version-internal_h_in 
	                     patch-common_version_c 

Log message:
Remove useless informations from 'awesome -v'
(upstream git commit a93dc75cd677d3eb7dc06fb9e055f6422d444f44)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/22 08:51:37

Modified files:
	lib/libtls     : tls.c tls_internal.h tls_server.c 

Log message:
Create contexts for server side SNI - these include the additional SSL_CTX
that is required for certificate switching with libssl and the certificate
itself so that we can match against the subject and SANs. Hook up the
servername callback and switch to the appropriate SSL_CTX if we find a
matching certificate.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/22 08:55:59

Modified files:
	lib/libtls     : tls.h tls_config.c tls_conninfo.c tls_init.3 
	                 tls_internal.h 

Log message:
Provide an API that enables server side SNI support - add the ability to
provide additional keypairs (via tls_config_add_keypair_{file,mem}()) and
allow the server to determine what servername the client requested (via
tls_conn_servername()).

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/22 08:57:49

Modified files:
	lib/libtls     : shlib_version 

Log message:
Bump libtls minor due to the addition of symbols.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/22 08:58:26

Modified files:
	lib/libtls     : tls.h 

Log message:
Bump TLS_API due to the addition of server side SNI functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/22 09:02:18

Modified files:
	usr.sbin/httpd : httpd.h parse.y server.c 

Log message:
Enable SNI support in httpd(8).

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 09:37:24

Modified files:
	sys/netmpls    : mpls_input.c 
	sys/netinet    : ip_icmp.c 

Log message:
Do not dereference ``rt->rt_ifa'' after calling rtfree(9).

This could result in a use after free if the route entry was holding
the last reference of the address descriptor.

ok jca@, bluhm@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 10:01:52

Modified files:
	sys/net        : route.c route.h rtsock.c 
	sys/netinet    : if_ether.c 
	sys/netinet6   : nd6.c 

Log message:
Make the ``rt_gwroute'' pointer of RTF_GATEWAY entries immutable.

This means that no protection is needed to guarantee that the next hop
route wont be modified by CPU1 while CPU0 is dereferencing it in a L2
resolution functions.

While here also fix an ``ifa'' leak resulting in RTF_GATEWAY being always
invalid.

dlg@ likes it, inputs and ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 10:03:03

Modified files:
	regress/sbin/route: rttest12.ok 

Log message:
Sync refcount with recent change.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/22 10:05:56

Modified files:
	usr.bin/mandoc : dbm_map.c 

Log message:
When running into a mandoc.db(5) file still using the obsolete
format based on SQLite 3, say so in words that mortals can
understand rather than babbling about hex magic.
Suggested by espie@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/22 10:12:52

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
When trying to edit an existing database with makewhatis(8) -d or -u
but reading the database fails, report the full path to the database
on standard error, and mention that the database is automatically
recreated from scratch.
Suggested by espie@.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/22 10:27:00

Modified files:
	usr.bin/ftp    : ftp.c 

Log message:
Replace "union sockunion" with "union sockaddr_union" which is also
used in the kernel.  This makes it possible to remove the casts to
"struct sockaddr *" when calling networking syscalls.
OK jsing@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 10:53:59

Modified files:
	sys/net        : route.c 

Log message:
Use rtalloc(9) instead of ifa_ifwithnet() to find an interface
when adding a route to gateway to ensure a most specific match.

This makes "# route add"  coherent to "# route get" even with
p2p interfaces.  Fix a problem reported by Mart Tõnso.

This also fix rttest20 after the introduction of RTF_CACHED.

ok vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 10:55:14

Modified files:
	regress/sbin/route: rttest1.ok rttest10.ok rttest11.ok 
	                    rttest12.ok rttest14.ok rttest15.ok 
	                    rttest16.ok rttest17.ok rttest18.ok 
	                    rttest19.ok rttest2.ok rttest21.ok 
	                    rttest3.ok rttest4.ok rttest5.ok rttest6.ok 
	                    rttest7.ok rttest8.ok rttest9.ok 

Log message:
Sync counters now that ifa_ifwithroute() no longer uses ifa_ifwithnet().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/22 11:08:10

Modified files:
	lib/libtls     : tls_peer.c 

Log message:
Stick with the usual 'if NULL return NULL' idiom.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/22 11:12:35

Modified files:
	lib/libtls     : tls.c tls_conninfo.c tls_internal.h 

Log message:
Various clean up and reorganisation of the connection info handling code.
In particular, rename tls_free_conninfo() to tls_conninfo_free() and make
it a real free function. Rename tls_get_conninfo() to
tls_conninfo_populate() and have it allocate the struct tls_conninfo (after
freeing any existing one).

ok beck@


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2016/08/22 11:15:15

Modified files:
	.              : 60.html 

Log message:
powerpc package count


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/22 11:43:29

Modified files:
	regress/sbin/route: Makefile 

Log message:
Use a reachable next hop for test 13, which make it fail as it should.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 12:16:58

Modified files:
	sys/dev/ofw    : ofw_clock.c ofw_clock.h 

Log message:
Add a reset signal API alongside the clock API.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 12:18:35

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for the usb clock.  Also implements reset signal support.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 12:31:07

Modified files:
	sys/arch/armv7/sunxi: sxiehci.c 

Log message:
Move all the platform-specific code into a new function sxiehci_attach_phy()
making use of pinctrl, clock and reset APIs where appropriate.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/08/22 12:56:54

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.037


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 13:28:27

Modified files:
	sys/dev/ofw    : ofw_clock.c ofw_clock.h 

Log message:
Add an API to set the clock frequency.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 13:29:32

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for the gmac clock.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 13:31:27

Modified files:
	sys/arch/armv7/sunxi: if_dwge_fdt.c 

Log message:
Use new clock API to manipulate clocks.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 13:38:42

Modified files:
	sys/arch/armv7/sunxi: sxie.c 

Log message:
Use new clock API.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/22 13:41:18

Removed files:
	libexec/makewhatis: Makefile makewhatis makewhatis.8 
	libexec/makewhatis/OpenBSD: Makewhatis.pm 
	libexec/makewhatis/OpenBSD/Makewhatis: Check.pm Find.pm 
	                                       Formated.pm Subject.pm 
	                                       Unformated.pm Whatis.pm 

Log message:
This code served us well for many years,
but we are unlikely to reactivate it; espie@ agrees.
The new code is in /usr/src/usr.bin/mandoc/mandocdb.c.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 13:43:49

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c sxiccmuvar.h 

Log message:
Remove unused code and definitions.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/08/22 14:07:58

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

Log message:
Two minor fixes from dilyan palauzov.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/08/22 15:31:54

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/patches: patch-configure_ac 

Log message:
Update to poppler-0.47.0.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/08/22 15:56:31

Modified files:
	.              : errata60.html 

Log message:
release smtpd errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/22 16:06:59

Modified files:
	sys/dev/ofw    : ofw_clock.c 

Log message:
Fix two small bugs in the new reset API code.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/22 16:48:14

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/22 17:56:41

Modified files:
	editors/libreoffice: Makefile 

Log message:
mark libreoffice as USE_WXNEEDED; working now that gcc4 can see the ld wrapper


CVSROOT:	/cvs
Module name:	www
Changes by:	lteo@cvs.openbsd.org	2016/08/22 20:06:48

Modified files:
	.              : 60.html 

Log message:
typo


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/22 21:22:49

Modified files:
	usr.bin/ssh    : match.c 

Log message:
fix matching for pattern lists that contain a single negated match,
e.g. "Host !example"

report and patch from Robin Becker. bz#1918 ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/22 21:24:10

Modified files:
	usr.bin/ssh    : addrmatch.c 

Log message:
fix negated address matching where the address list consists of a
single negated match, e.g. "Match addr !192.20.0.1"

Report and patch from Jakub Jelen. bz#2397 ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/22 21:28:01

Modified files:
	sys/arch/sparc64/dev: pyro.c ebus.c ebus_mainbus.c psycho.c 
	                      schizo.c 
	sys/arch/sparc64/sparc64: db_interface.c 
	sys/dev/ic     : ncr53c9x.c 

Log message:
Convert %q to %ll in format strings

ok natano@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/22 21:31:44

Modified files:
	bin/pax        : file_subs.c 

Log message:
Only try to set the times on a directory once, at the end, to avoid
duplication of warning messages

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/22 22:04:23

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

Log message:
remove duplicated test for em_82574


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/22 22:28:18

Modified files:
	sys/tmpfs      : tmpfs_vfsops.c 

Log message:
pool_setipl for tmpfs.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/23 00:00:28

Modified files:
	bin/pax        : Makefile ar_io.c extern.h file_subs.c options.c 
	                 pax.c 

Log message:
Instead of doing strcmp(argv0), track the invocation mode (pax/tar/cpio)
in a separate variable

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/23 00:36:23

Modified files:
	regress/usr.bin/ssh: test-exec.sh 

Log message:
remove Protocol directive from client/server configs that causes
spammy deprecation warnings

hardcode SSH_PROTOCOLS=2, since that's all we support on the server
now (the client still may support both, so it could get confused)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/23 00:46:17

Modified files:
	sys/sys        : exec_elf.h 
	libexec/ld.so  : loader.c resolve.c resolve.h 

Log message:
Implement support for DT_INIT_ARRAY, DT_FINI_ARRAY and DT_PREINIT_ARRAY.
Don't skip DT_INIT and DT_FINI for the main executable.  This matches what
Linux and Solaris do.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/23 01:43:50

Modified files:
	x11/gnome/maps : Makefile distinfo 
	x11/gnome/maps/pkg: PLIST 

Log message:
Update to gnome-maps-3.20.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/23 02:05:50

Modified files:
	sysutils/salt-testing: Makefile distinfo 

Log message:
Update to salt-testing-2016.8.22.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/23 02:17:04

Modified files:
	regress/usr.bin/ssh/unittests/match: tests.c 

Log message:
add tests for addr_match_list()


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/23 02:17:42

Modified files:
	usr.bin/ssh    : addrmatch.c 

Log message:
downgrade an error() to a debug2() to match similar cases
in addr_match_list()


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/23 03:26:02

Modified files:
	sbin/dhclient  : bpf.c clparse.c dhclient.c dhcpd.h dispatch.c 
	                 kroute.c options.c packet.c privsep.c privsep.h 

Log message:
Make the 'ifi' global local to dhclient.c and pass it as an argument to
functions needing it.

This is the first step to support multiple interfaces in one dhclient(8)
instance.

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/23 05:01:16

Modified files:
	sys/netinet6   : ip6_mroute.c 

Log message:
Do not use a single global struct route_in6 to cache route lookups.

This is a little step towards deprecating 'struct route{,_in6}'.

ok jca@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/23 05:03:10

Modified files:
	sys/netinet6   : nd6_nbr.c 

Log message:
Use rtalloc(9) directly instead of in6_selectsr() in NS/NA output
routines.

This is another little step towards deprecating 'struct route{,_in6}'.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/08/23 05:15:17

Modified files:
	usr.sbin/smtpd : Tag: OPENBSD_6_0 rfc2822.c 

Log message:
backport from -current; original commit by eric@:

Properly initialize the message parser. fix a regression where the
message headers would not be altered as expected.
ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/23 06:37:11

Modified files:
	sys/net        : if_pppx.c 

Log message:
pool_setipl


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/23 06:37:44

Modified files:
	sys/net        : if_pfsync.c 

Log message:
pool_setipl


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/23 06:53:23

Log message:
    Import py-typing-3.5.2.2.
    
    This is a backport of the standard library typing module to Python versions
    older than 3.5.
    
    Typing defines a standard notation for Python function and variable type
    annotations. The notation can be used for documenting code in a concise,
    standard format, and it has been designed to also be used by static and runtime
    type checkers, static analyzers, IDEs and other tools.
    
    from rpe@, committing on his behalf
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20160823
    
    N ports/devel/py-typing/Makefile
    N ports/devel/py-typing/distinfo
    N ports/devel/py-typing/pkg/PLIST
    N ports/devel/py-typing/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/23 06:54:00

Modified files:
	devel          : Makefile 

Log message:
Update to py-typing.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/08/23 06:54:09

Modified files:
	sys/arch/loongson/loongson: machdep.c 

Log message:
The TLB refill and XTLB refill exceptions use distinct exception vectors
on Loongson 3A. Consequently, the kernel has to set up both vectors to
prevent panics with virtual address references.

On Loongson 2F, it is enough to set up the TLB refill vector because
the XTLB refill exception uses the same vector address.

ok miod@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/23 06:58:28

Modified files:
	security/py-M2Crypto: Makefile 

Log message:
This requires devel/py-typing now.

fixes devel/py-wbem breakage reported by naddy@
discussed with rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/23 07:07:26

Modified files:
	sys/net        : rtsock.c 

Log message:
Update the L2 content of a RTF_CACHED entry instead of going though
a create/delete/insert cycle as such entry cannot be deleted when
referenced.

Regression reported by and ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/08/23 07:48:24

Modified files:
	www/varnish    : Makefile distinfo 
	www/varnish/pkg: varnishd.rc 

Log message:
Update for Varnish to 4.1.3:

https://github.com/varnishcache/varnish-cache/blob/4.1/doc/changes.rst

OK benoit@


CVSROOT:	/cvs
Module name:	www
Changes by:	okan@cvs.openbsd.org	2016/08/23 08:03:49

Modified files:
	build          : mirrors.dat 

Log message:
remove nycbug mirror since ftp4.usa is now in the same location.

ok sthen


CVSROOT:	/cvs
Module name:	www
Changes by:	okan@cvs.openbsd.org	2016/08/23 08:04:43

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:	okan@cvs.openbsd.org	2016/08/23 08:05:11

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/08/23 10:21:45

Modified files:
	usr.bin/ssh    : session.c 

Log message:
fix previous, a condition was modified incorrectly; ok markus@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/23 10:49:48

Modified files:
	distrib/miniroot: install.sub 

Log message:
Type. 'if' != 'lf'. Fixes error message and setting hostname from dhcp lease
during install.

Spotted & diff from Patrik Lundin. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/23 12:12:09

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

Log message:
Actually make fdt_find_node() return NULL if the node couldn't be found.

ok tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/23 12:16:07

Modified files:
	sys/arch/armv7/sunxi: sxipio.c 

Log message:
The device trees for sun8i and sun9i no longer include an address in the
name of the /soc node.  Leave it off, as the device path will still match
on nodes that include it.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/23 12:26:21

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

Log message:
don't enter burst mode for single-byte reads and writes.

avoids problems on hardware with broken or unimplemented burst mode
and isn't really necessary for such small transactions anyway.
matches what linux and freebsd have done for a long time.

tested in snaps
ok deraadt kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/23 12:27:08

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
re-enable acpicbkbd by default now that acpiec won't try burst mode
on the chrome ec


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/23 12:39:08

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : acpicbkbd.4 

Log message:
add a man page for acpicbkbd


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/23 12:54:05

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

Log message:
shorten pkcs12;


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/23 12:58:53

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

Log message:
include acpicbkbd


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/23 13:13:37

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for the usb clock on sun5i-a13 as well.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/23 13:25:34

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

Log message:
update to intellij-2016.2.2

from Caspar Schutijser (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/23 15:20:05

Modified files:
	regress/usr.sbin/syslogd: Makefile args-client-tls4.pl 
	                          args-client-tls6.pl 
	                          args-tls-cert-empty.pl 
	                          args-tls-cert-noexist.pl 
	                          args-tls-key-empty.pl 
	                          args-tls-key-noexist.pl 

Log message:
Some syslogd tests failed to report errors.  Make these tests more
strict and adapt the check patterns.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/23 15:30:18

Modified files:
	sys/dev/ofw    : ofw_clock.c ofw_clock.h 

Log message:
Add functions to assert/deassert all reset signals for a device.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/23 15:43:51

Modified files:
	sys/arch/armv7/sunxi: sxiehci.c 

Log message:
Deassert all reset signals for the controller.  Add support for more recent
SoCs that have a separate clock for each PHY.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/23 15:51:51

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

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2016/08/23 16:11:20

Modified files:
	.              : 60.html 

Log message:
mips64el package count


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/23 17:28:02

Modified files:
	sys/kern       : kern_descrip.c kern_sysctl.c 
	sys/sys        : file.h 

Log message:
rename nfiles to numfiles to avoid shadowing and stretch out the name.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/23 21:13:45

Modified files:
	usr.bin/du     : du.c 
	usr.bin/hexdump: display.c parse.c 
	usr.bin/systat : vmstat.c 

Log message:
Convert quad_t to int64_t and %q to %ll
Convert bzero() to memset() and bcopy() to memcpy()

ok natano@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/23 23:02:20

Modified files:
	audio/cmu-sphinxbase: Makefile 

Log message:
Explicitly disable doxygen

Hidden bdep spotted by naddy@
OK naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/24 01:53:15

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

Log message:
Update to py-botocore-1.4.49.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/24 01:53:33

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.59.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/24 02:07:33

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

Log message:
shorten the pkey text;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/24 02:17:24

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

Log message:
shorten the pkeyparam text;


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/08/24 03:08:42

Modified files:
	mail/amavisd-new: Tag: OPENBSD_6_0 Makefile 
	mail/amavisd-new/patches: Tag: OPENBSD_6_0 patch-amavisd 

Log message:
More DKIM fixes
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/24 03:31:56

Modified files:
	sys/dev/cardbus: cardslot.c 
	sys/dev/pci/drm: drm_drv.c 

Log message:
pool_setipl for cardbus and drm pools.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/24 03:38:29

Modified files:
	sys/netinet6   : icmp6.c 

Log message:
Use rtalloc(9) directly instead of in6_selectsr() in icmp6_reflect().

This is another little step towards deprecating 'struct route{,_in6}'.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/24 03:41:12

Modified files:
	sys/net        : pf_norm.c 
	sys/netinet6   : frag6.c ip6_forward.c ip6_input.c ip6_var.h 

Log message:
Kill ip6_forward_rt reducing differences between v4 and v6.

A single forwarding cache is not the answer.  The answer is 42... err PF!

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/24 04:38:34

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

Log message:
pool_setipl for oce(4)

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/08/24 07:09:28

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
update to afl 2.32b


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/24 07:09:52

Modified files:
	sys/arch/arm/arm: fault.c pmap7.c 
	sys/arch/arm/include: armreg.h 

Log message:
Replace pmap_fault_fixup() with an access flag fault handler on armv7.

ok tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/24 07:32:17

Modified files:
	bin/ksh        : history.c 

Log message:
Avoid recursively calling c_fc().  Fixes a core dump from "r r" and
other edge cases found by gsoares@.  OK tb@ gsoares@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/24 10:09:40

Modified files:
	bin/ksh        : history.c 

Log message:
Use writev(2) to write history records using a single syscall.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/08/24 10:14:24

Modified files:
	share/man/man9 : style.9 

Log message:
Since the removal of rwhod and friends a couple of years ago, there
isn't any file in the base system including <protocols/rwhod.h>. So,
stop suggesting the inclusion of this header in this man page.

ok tedu@ deraadt@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/24 12:35:12

Modified files:
	lib/libc/stdio : fgetwln.c 

Log message:
set the error indicator on malloc(3) failure;
from Andrey Chernov <ache at freebsd dot org>;
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/24 13:13:52

Modified files:
	bin/pax        : options.c 

Log message:
Treat cpio's -t option as a modifier to -i, so they're ordering independent

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/24 13:15:42

Modified files:
	bin/pax        : options.c 

Log message:
Make list-like output go to stderr when appending to an archive on stdout.
Simplify the recognition of -f- and TAPE=- as meaning stdin/stdout.

ok millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/08/24 13:47:03

Modified files:
	security/lynis : Makefile distinfo 
	security/lynis/pkg: PLIST 

Log message:
Update for Lynis to 2.3.2.

OK benoit@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/24 14:47:30

Modified files:
	.              : 60.html lyrics.html 
Added files:
	images         : 60e_right.jpg 

Log message:
Release the 5th song of the 6.0 release: "Mother", lyrics & commentary
by Bob Beck.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/24 14:49:04

Modified files:
	.              : lyrics.html 

Log message:
wording fix


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/24 15:14:42

Modified files:
	.              : index.html 

Log message:
easier link towards our release songs on left


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/24 15:35:03

Modified files:
	net/tor        : Makefile distinfo 

Log message:
Update to tor 0.2.8.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/24 16:25:51

src/regress/sys/net/pf_print

Update of /cvs/src/regress/sys/net/pf_print
In directory cvs.openbsd.org:/tmp/cvs-serv35348/pf_print

Log Message:
Directory /cvs/src/regress/sys/net/pf_print added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/24 16:31:41

Modified files:
	regress/sys/net: Makefile 
Added files:
	regress/sys/net/pf_print: Makefile pf_print_test.c 
Removed files:
	regress/sys/net: pf_print_test.c 

Log message:
Move the pf address printing test into its own subdirectory.  This
makes it consistent with the regress tree structure.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/24 18:00:02

Modified files:
	sys/kern       : kern_descrip.c kern_event.c kern_proc.c 
	                 kern_resource.c kern_sig.c 

Log message:
pool_setipl

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/24 18:01:13

Modified files:
	sys/kern       : vfs_cache.c vfs_init.c vfs_lockf.c vfs_subr.c 

Log message:
pool_setipl

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/24 18:06:44

Modified files:
	sys/isofs/udf  : udf_vfsops.c 

Log message:
pool_setipl for udf

ok phessler@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/24 19:44:55

Modified files:
	bin/pax        : ar_subs.c cache.c cache.h extern.h gen_subs.c 
	                 options.c tar.c 

Log message:
Replace name_{uid,gid}() with the libc routines user_from_uid() and
group_from_gid().  Eliminate some superfluous strncpy() calls.

ok millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/08/24 20:39:07

Modified files:
	devel/arm-none-eabi/gcc-linaro: Makefile distinfo 
	devel/arm-none-eabi/gcc-linaro/pkg: PLIST 
Added files:
	devel/arm-none-eabi/gcc-linaro/patches: patch-gcc_config_host 

Log message:
Update to gcc-linaro-4.9-2016.02 and add a patch from FreeBSD ports to
allow this to build on arm.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/24 23:12:06

Modified files:
	regress/sys/uvm/mmap_fixed: mmap_fixed.c 

Log message:
do not request RWX mappings, RW will do


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/24 23:23:19

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

Log message:
remove lint comments


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/24 23:25:21

Modified files:
	bin/dd         : misc.c 

Log message:
remove lint comments


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 00:21:46

Modified files:
	devel/leatherman: Makefile distinfo 

Log message:
update to leatherman-0.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 00:22:26

Modified files:
	net/ruby-stomp : Makefile distinfo 
	net/ruby-stomp/pkg: PLIST 

Log message:
update to stomp-1.4.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 00:23:41

Modified files:
	sysutils/ruby-puppet-lint: Makefile distinfo 
	sysutils/ruby-puppet-lint/pkg: PLIST 

Log message:
update to puppet-lint-2.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/25 00:57:39

Modified files:
	emulators/desmume: Makefile 

Log message:
Switch to USE_WXNEEDED after the gcc4 fix.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/25 01:17:39

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-123.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/25 01:24:21

Modified files:
	audio/mpd      : Makefile distinfo 

Log message:
Update to mpd-0.19.19


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/25 02:17:57

Modified files:
	sys/arch/arm/arm: cpufunc.c 
	sys/arch/arm/include: armreg.h 

Log message:
Enable the UWXN bit in the SCTRL register when available.  This should
prevent the kernel from accidentally executing userland pages that are
writable.

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 02:30:22

Modified files:
	lang/libv8     : Makefile 

Log message:
switch to USE_WXNEEDED instead of altering MAKE_ENV


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 02:42:08

Modified files:
	lang/node      : Makefile 

Log message:
add USE_WXNEEDED (for sqlports purposes) as it doesn't work yet here (see comment)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 02:56:12

Modified files:
	emulators/qemu : Makefile 

Log message:
annotate two more ports that were marked as wxneeded with USE_WXNEEDED,
even though in both cases it doesn't work yet, at least they're marked
so they are indexed by sqlports


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 02:56:43

Modified files:
	lang/smlnj     : Makefile 

Log message:
missed in previous:

annotate two more ports that were marked as wxneeded with USE_WXNEEDED,
even though in both cases it doesn't work yet, at least they're marked
so they are indexed by sqlports


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/08/25 03:33:14

Modified files:
	usr.bin/tmux   : cmd-display-message.c 

Log message:
Do not crash if display-message used without a client, issue reported by
Serge Aleynikov, fix from Thomas Adam.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/08/25 03:41:13

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

Log message:
Fix rtadvd.conf(5) example for pinfoflags, it accepts numbers not strings.
ok phessler


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/08/25 04:51:37

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

Log message:
Fix pfsync(4)'s carp examples: as of ip_carp.c r1.245, carpdev must be
specified.  From Bryan Stenson.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/25 05:00:44

Modified files:
	usr.sbin/switchd: ofp.h 

Log message:
goda@ contributed most of the OpenFlow 1.3.5 parts in ofp.h (for the
"still-unreleased" switch(4) driver), so it is only fair to add his
copyright.  This header file will eventually move to net/ofp.h.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/25 05:38:59

Modified files:
	www/webkitgtk4 : Makefile distinfo 
	www/webkitgtk4/patches: patch-Source_cmake_OptionsCommon_cmake 

Log message:
Update to webkitgtk4-2.12.4.

WebKitGTK+ Security Advisory WSA-2016-0005:
CVE-2016-4583, CVE-2016-4585, CVE-2016-4586, CVE-2016-4587, CVE-2016-4588,
CVE-2016-4589, CVE-2016-4590, CVE-2016-4591, CVE-2016-4592, CVE-2016-4622,
CVE-2016-4623, CVE-2016-4624, CVE-2016-4651


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/25 05:39:14

Modified files:
	www/webkitgtk4 : Tag: OPENBSD_6_0 Makefile distinfo 
	www/webkitgtk4/patches: Tag: OPENBSD_6_0 
	                        patch-Source_cmake_OptionsCommon_cmake 

Log message:
Update to webkitgtk4-2.12.4.

WebKitGTK+ Security Advisory WSA-2016-0005:
CVE-2016-4583, CVE-2016-4585, CVE-2016-4586, CVE-2016-4587, CVE-2016-4588,
CVE-2016-4589, CVE-2016-4590, CVE-2016-4591, CVE-2016-4592, CVE-2016-4622,
CVE-2016-4623, CVE-2016-4624, CVE-2016-4651


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/25 05:40:32

Modified files:
	www/webkitgtk4 : Makefile 

Log message:
Bump REVISION to be on the safe side since -stable is using the same
version minus the wxneeded parts.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/25 06:30:16

Modified files:
	sys/netinet6   : ip6_output.c 

Log message:
Simplify ip6_getpmtu() to use a 'struct rtentry *' instead of two
'struct route_in6 *'.

This is another little step towards deprecating 'struct route{,_in6}'

Inputs from and ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/25 07:21:26

Modified files:
	security/opensc: Makefile 
Added files:
	security/opensc/patches: patch-src_libopensc_card_c 
	                         patch-src_libsm_sm-common_c 

Log message:
Merge two fixes from upstream:

commit 1e82dbe5c79e431e4d1b333a91b329e0164a86c2:
libopensc: fix reopen SM after reader reconnect

commit e98315a1966d73d4b6be733cc0a94a85ebfa7916:
libsm: fixed out of bounds write


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/25 07:59:16

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Completely revert the M_WAIT change on the cluster allocation and
bring back the behaviour of rev 1.72.  Although allocating small
mbufs when allocating an mbuf cluster fails seems suboptimal, this
should not be changed as a side effect when introducing m_getuio().
OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/25 08:13:19

Modified files:
	sys/kern       : uipc_socket.c 
	sys/sys        : socketvar.h 

Log message:
Spliced TCP sockets become faster when the output part is running
as its own task thread.  This is inspired by userland copy where a
process also has to go through the scheduler.  This gives the socket
buffer a chance to be filled up and tcp_output() is called less
often and with bigger chunks.
When two kernel tasks share all the workload, the current scheduler
implementation will hang userland processes on single cpu machines.
As a workaround put a yield() into the splicing thread after each
task execution.  This reduces the number of calls of tcp_output()
even more.
OK tedu@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/25 08:37:28

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

Log message:
shorten the pkeyutl text;
help/ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/25 08:53:46

Modified files:
	infrastructure/mk: fortran.port.mk 

Log message:
Clean up and remove old cruft.

With shadchin@

Tested in a bulk build by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	dcoppa@cvs.openbsd.org	2016/08/25 08:57:35

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Amend after clean-up of fortran.port.mk


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/08/25 08:58:43

Modified files:
	usr.sbin/pkg_add: pkg_check.8 
	usr.sbin/pkg_add/OpenBSD: PkgCheck.pm 

Log message:
make the full filesystem check optional, by popular demand.
doubling -q removes the plist thorough check.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/25 09:11:05

Modified files:
	usr.bin/grep   : util.c 

Log message:
when using -o, we may restart a match in the middle of the line.
set NOTBOL so that anchored patterns don't match.
from a patch by Daniël de Kok in freebsd bug 201650
ok martijn


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 09:13:41

Modified files:
	devel/libgit2/libgit2-glib: Makefile distinfo 

Log message:
- update to libgit2-glib-0.24.3
- drop gettext module


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/25 09:21:15

Modified files:
	.              : 60.html 

Log message:
ntpd was pledged in 5.9, so remove the bullet point mentioning that.
prompted by a patch by Rob Pierce.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/25 09:42:21

Modified files:
	lang           : Makefile 
Removed files:
	lang/gfortran  : Makefile distinfo 
	lang/gfortran/patches: keep patch-Makefile_in patch-configure 
	                       patch-fixincludes_Makefile_in 
	                       patch-gcc_Makefile_in 
	                       patch-gcc_c-aux-info_c 
	                       patch-gcc_c-common_c patch-gcc_c-format_c 
	                       patch-gcc_c-incpath_c 
	                       patch-gcc_collect2_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_openbsd1_h 
	                       patch-gcc_config_alpha_openbsd_h 
	                       patch-gcc_config_arm_arm_md 
	                       patch-gcc_config_arm_openbsd_h 
	                       patch-gcc_config_arm_t-openbsd 
	                       patch-gcc_config_exec-stack_h 
	                       patch-gcc_config_gcc 
	                       patch-gcc_config_host 
	                       patch-gcc_config_host-openbsd_c 
	                       patch-gcc_config_i386_driver-i386_c 
	                       patch-gcc_config_i386_openbsd64_h 
	                       patch-gcc_config_i386_openbsd_h 
	                       patch-gcc_config_i386_openbsdelf_h 
	                       patch-gcc_config_m68k_openbsd_h 
	                       patch-gcc_config_mips_mips_h 
	                       patch-gcc_config_mips_openbsd64_h 
	                       patch-gcc_config_mips_openbsd_h 
	                       patch-gcc_config_openbsd-libpthread_h 
	                       patch-gcc_config_openbsd_h 
	                       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_t-openbsd 
	                       patch-gcc_config_x-openbsd 
	                       patch-gcc_configure patch-gcc_coverage_c 
	                       patch-gcc_cp_call_c patch-gcc_cp_decl2_c 
	                       patch-gcc_cp_g++spec_c 
	                       patch-gcc_cp_parser_c patch-gcc_dbxout_c 
	                       patch-gcc_defaults_h 
	                       patch-gcc_diagnostic_c patch-gcc_gcc_c 
	                       patch-gcc_gensupport_c 
	                       patch-gcc_objc_objc-act_c 
	                       patch-gcc_omp-low_c patch-gcc_opts_c 
	                       patch-gcc_passes_c patch-gcc_prefix_c 
	                       patch-gcc_read-rtl_c 
	                       patch-gcc_testsuite_gcc_dg_format_format_h 
	                       patch-gcc_tree-complex_c 
	                       patch-gcc_tree-dump_c 
	                       patch-gcc_tree-mudflap_c 
	                       patch-gcc_tree-nested_c 
	                       patch-gcc_tree-vect-transform_c 
	                       patch-gcc_tree_c 
	                       patch-gcc_unwind-dw2-fde-openbsd_c 
	                       patch-gcc_unwind-dw2_c patch-gcc_varasm_c 
	                       patch-libcpp_Makefile_in 
	                       patch-libgfortran_Makefile_in 
	                       patch-libiberty_testsuite_test-expandargv_c 
	                       patch-libtool_m4 patch-ltcf-c_sh 
	                       patch-ltcf-cxx_sh patch-ltcf-gcj_sh 
	                       patch-ltconfig 
	lang/gfortran/pkg: DESCR-lib DESCR-main PFRAG.PIC-lib PLIST-lib 
	                   PLIST-main 

Log message:
Send gfortran to the Attic

ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/25 09:42:55

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register removal of lang/gfortran


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/25 09:59:58

Modified files:
	emulators/qemu : Makefile 
	lang/node      : Makefile 

Log message:
once more with an updated gcc; drop the workarounds and XXX comments

spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/25 10:12:16

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
Remove a check to expire received prefix.

This check does not make sense since November 2000 when IPv6 autoconf
address deletion has been made independent from prefix lifetimes.

Fix a case when a route was added to the table but the corresponding
address was not, leaving v6 unusable.

Found the hardway by and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/25 10:27:16

Modified files:
	usr.sbin/pkg_add: pkg_check.8 
	usr.sbin/pkg_add/OpenBSD: PkgCheck.pm 

Log message:
-F before -f (as -I before -i currently is...);


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/25 11:13:59

Modified files:
	regress/sys/kern/sosplice/error: args-idle-EINVAL.pl 
	                                 args-max-EINVAL.pl 

Log message:
Fix sosplice tests on 32 bit systems by putting the correct number
of bytes into the time_t Perl pack template.  Also fix error messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/25 13:21:33

Modified files:
	lib/libc/stdio : fgetln.c 

Log message:
After read errors, fgetln(3) sometimes succeeded (returning non-NULL)
and failed (setting errno and ferror(3)) both at the same time.
That's a bad idea in general, and here in particular since
returning partial lines was neither reliable (sometimes, you
got NULL anyway) nor predictable (almost always, the line would
be truncated long before the actual read error).
Instead, on read failure, fail properly and always return NULL.
Issue found in a discussion with Andrey Chernov <ache at freebsd dot org>
who finally agreed to move FreeBSD into the same direction.
The fix is joint work with and OK by millert@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/25 14:00:08

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

Log message:
use USE_WXNEEDED for chromium/iridium now that it works with gcc4


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/25 16:56:13

Modified files:
	regress/usr.sbin/relayd: Proc.pm Server.pm 
	                         args-http-slow-consumer.pl relayd.pl 
	                         remote.pl 

Log message:
Make relayd test slow-consumer more reliable.  Set SO_SNDTIMEO
sockopt correctly with Perl pack on i386.  Make it possible to grep
in each others client and server logfile.  Client does not simply
sleep but waits for short write at server.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/25 17:37:03

Modified files:
	regress/usr.sbin/relayd: args-http-slow-consumer.pl 

Log message:
Set relayd socket buffer size to reasonable value to make test pass
in different environments.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/25 17:56:51

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
remove superfluous NOTREACHED comment


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/25 17:57:54

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

Log message:
add a sIgnore opcode that silently ignores options and use it to
suppress noisy deprecation warnings for the Protocol directive.

req henning, ok markus


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/25 18:45:50

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

Log message:
correct INTR_MSG_MASK to include INTR_MSG_1
ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:08:18

Modified files:
	bin/pax        : cache.c 
Removed files:
	bin/pax        : cache.h 

Log message:
cache.h is only used by cache.c; merge it into the .c file
<unistd.h> and <sys/time.h> are unneeded here

ok by general acclaim


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:11:16

Modified files:
	bin/pax        : buf_subs.c cpio.c file_subs.c gen_subs.c pax.c 
	                 tar.c 

Log message:
Don't need <sys/time.h> or "options.h" here


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:17:48

Modified files:
	bin/pax        : ftree.c 
Removed files:
	bin/pax        : ftree.h 

Log message:
ftree.h is only used by ftree.c; merge it into the .c file
<sys/time.h> is unnecessary; sort #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:19:28

Modified files:
	bin/pax        : pat_rep.c 
Removed files:
	bin/pax        : pat_rep.h 

Log message:
pat_rep.h is only used by pat_rep.c; merge it into the .c file
<sys/time.h>, <errno.h> and <unistd.h> are unnecessary; sort #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:20:38

Modified files:
	bin/pax        : sel_subs.c 
Removed files:
	bin/pax        : sel_subs.h 

Log message:
sel_subs.h is only used by sel_subs.c; merge it into the .c file
<sys/time.h> and <unistd.h> are unnecessary, but <time.h> is; sort #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:22:13

Modified files:
	bin/pax        : tty_subs.c 

Log message:
<sys/time.h>, <errno.h>, and <stdlib.h> are unnecessary; sort #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:23:44

Modified files:
	bin/pax        : tables.c 
Removed files:
	bin/pax        : tables.h 

Log message:
tables.h is only used by tables.c; merge it into the .c file
<sys/time.h> is unnecessary; sort the #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:31:35

Modified files:
	bin/pax        : ar_io.c ar_subs.c 

Log message:
reduce and sort #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:33:11

Modified files:
	bin/pax        : options.c 
Removed files:
	bin/pax        : options.h 

Log message:
options.h is only used by options.c; merge it into the .c file
reduce and sort #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 22:40:27

Modified files:
	bin/pax        : options.c pax.1 

Log message:
-E NONE has *never* worked; it was always -E none.  It's a dubious option
value that merits a warning in the manpage and using 2 billion will get
you practically the same effect, so delete the -E none support


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 23:06:14

Modified files:
	bin/pax        : gen_subs.c ar_subs.c 

Log message:
Need <time.h> for time() and others.  Pulled in by coincidence previously

noted by tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/25 23:18:58

Modified files:
	games/0ad/base : Makefile 
Removed files:
	games/0ad/base/patches: patch-build_premake_premake4_lua 

Log message:
-Wl,-z,wxneeded patch no longer necessary.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/25 23:50:29

Modified files:
	bin/md5        : md5.c 

Log message:
Pull in <sys/time.h> for gettimeofday()


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 00:04:10

Modified files:
	sbin/route     : route.c 

Log message:
Add <time.h> for time() and ctime(); sort <net*/*.h>

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 00:06:58

Modified files:
	sbin/pfctl     : parse.y pfctl_parser.c 

Log message:
Add <time.h> for time(); sort <*.h> includes

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 00:18:01

Modified files:
	sbin/isakmpd   : transport.h 

Log message:
Pull in <sys/select.h> for fd_set

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/26 00:32:10

Modified files:
	libexec/ftpd   : ftpcmd.y ftpd.c 

Log message:
trim down some NBBY references. 8 bits ought to be enough for anyone.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 01:09:56

Modified files:
	sys/kern       : clock_subr.c 

Log message:
Pull in <sys/time.h> for clock_ymdhms bits

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 01:12:30

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
The *_HEAD_INITIALIZER() macros are documented as taking the struct,
not a pointer to it


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/26 01:51:49

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

Log message:
Update to LDoc-1.4.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/26 02:00:02

Modified files:
	databases/hs-HDBC-mysql: Makefile distinfo 
Removed files:
	databases/hs-HDBC-mysql/patches: patch-Setup_lhs 

Log message:
Update to HDBC-mysql-0.6.6.2


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 02:25:02

Modified files:
	lib/libc/crypt : bcrypt.c 

Log message:
Pull in <time.h> for clock_gettime()

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 02:27:48

Modified files:
	security/gnupg : Makefile distinfo 

Log message:
SECURITY update to gnupg-1.4.21

CVE-2016-6313:  * Fix critical security bug in the RNG [CVE-2016-6313].
An attacker who obtains 580 bytes from the standard RNG can trivially
predict  the next 20 bytes of output.  Problem detected by Felix
Dörre and Vladimir Klebanov, KIT.

Main behavior changes:
- CAST5 -> AES for symmetric encryption
- MD5 sigs rejected by default

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 02:30:10

Modified files:
	security/gnupg : Tag: OPENBSD_5_9 Makefile 
Added files:
	security/gnupg/patches: patch-cipher_random_c 

Log message:
SECURITY fix for CVE-2016-6313

* Fix critical security bug in the RNG [CVE-2016-6313].  An attacker
who obtains 580 bytes from the standard RNG can trivially predict
the next 20 bytes of output.  Problem detected by Felix Dörre and
Vladimir Klebanov, KIT.


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/08/26 02:30:24

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Remove unused prototype for sxiccmu_enablemodule().

ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 02:32:28

Modified files:
	security/gnupg : Tag: OPENBSD_6_0 Makefile 
Added files:
	security/gnupg/patches: Tag: OPENBSD_6_0 patch-cipher_random_c 

Log message:
SECURITY fix for CVE-2016-6313

* Fix critical security bug in the RNG [CVE-2016-6313].  An attacker
who obtains 580 bytes from the standard RNG can trivially predict
the next 20 bytes of output.  Problem detected by Felix Dörre and
Vladimir Klebanov, KIT.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 02:44:04

Modified files:
	libexec/talkd  : table.c 

Log message:
Pull in <sys/time.h> for gettimeofday()

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 02:50:31

Modified files:
	usr.bin/file   : magic-test.c 

Log message:
Pull in <time.h> for ctime_r, gmtime, etc

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 02:52:19

Modified files:
	usr.bin/kdump  : ktrstruct.c 

Log message:
Pull in <sys/select.h> for fd_set

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/26 02:55:57

Log message:
    Urban Terror can be described as a Hollywood tactical shooter; somewhat
    realism based, but the motto is "fun over realism". This results in a
    very unique, enjoyable and addictive game.
    
    From Ryan Freeman.
    
    ok dcoppa@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160826
    
    N ports/games/urbanterror/distinfo
    N ports/games/urbanterror/Makefile
    N ports/games/urbanterror/patches/patch-Makefile
    N ports/games/urbanterror/pkg/DESCR
    N ports/games/urbanterror/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/26 02:57:07

Log message:
    Import urbanterror-data-4.2.023.
    
    This package contains the data files for the Urban Terror client/server.
    
    From Ryan Freeman. ok dcoppa@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160826
    
    N ports/games/urbanterror-data/Makefile
    N ports/games/urbanterror-data/distinfo
    N ports/games/urbanterror-data/pkg/PLIST
    N ports/games/urbanterror-data/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/26 02:57:48

Modified files:
	games          : Makefile 

Log message:
+urbanterror, +urbanterror-data


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 03:02:54

Modified files:
	usr.bin/rcs    : date.y diff3.c ident.c merge.c rcsclean.c 
	                 rcsmerge.c rcsnum.c rcsparse.c rcstime.c rlog.c 

Log message:
Pull in <time.h> for struct tm, used in rcs.h

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 03:10:11

Modified files:
	usr.bin/systat : cache.c 

Log message:
Pull in <time.h> for time()

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/26 03:13:59

Modified files:
	mail/sylpheed  : Makefile distinfo 
	mail/sylpheed/patches: patch-libsylph_procmime_c 
	                       patch-libsylph_ssl_c 
	mail/sylpheed/pkg: PLIST 
Removed files:
	mail/sylpheed/patches: patch-src_gtkutils_c 

Log message:
mail/sylpheed: update to 3.5.1.

From Amit Kulkarni (who is also taking MAINTAINER).

Input from myself and danj@.

OK danj@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/26 04:14:14

Log message:
    Quirc is a library for extracting and decoding QR codes from images. It has
    several features which make it a good choice for this purpose:
    
    * It is fast enough to be used with realtime video: extracting and decoding
    from VGA frame takes about 50 ms on a modern x86 core.
    
    * It has a robust and tolerant recognition algorithm. It can correctly
    recognise and decode QR codes which are rotated and/or oblique to the
    camera. It can also distinguish and decode multiple codes within the same
    image.
    
    * It is easy to use, with a simple API described in a single commented header
    file (see below for an overview).
    
    * It is small and easily embeddable, with no dependencies other than standard
    C functions.
    
    * It has a very small memory footprint: one byte per image pixel, plus a few
    kB per decoder object.
    
    * It uses no global mutable state, and is safe to use in a multithreaded
    application.
    
    * BSD-licensed, with almost no restrictions regarding use and/or modification.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	czarkoff
    Release Tags:	czarkoff_20160826
    
    N ports/graphics/quirc/Makefile
    N ports/graphics/quirc/distinfo
    N ports/graphics/quirc/files/test.out
    N ports/graphics/quirc/pkg/DESCR
    N ports/graphics/quirc/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/26 04:17:04

Modified files:
	graphics       : Makefile 

Log message:
+quirc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 04:19:08

Modified files:
	multimedia/minidlna: Makefile 
	multimedia/minidlna/pkg: PLIST 

Log message:
Ship manpages.

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/26 04:46:39

Modified files:
	usr.sbin/httpd : httpd.h logger.c server.c server_http.c 

Log message:
Replace the static env variables with a single global variable.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/26 04:54:01

Log message:
    hgsubversion is an extension for Mercurial that allows using Mercurial as a
    Subversion client.
    
    At this point, hgsubversion is usable by users reasonably familiar with
    Mercurial as a VCS. It's not recommended to dive into hgsubversion as an
    introduction to Mercurial, since hgsubversion "bends the rules" a little and
    violates some of the typical assumptions of early Mercurial users.
    
    OK stsp@
    
    Status:
    
    Vendor Tag:	czarkoff
    Release Tags:	czarkoff_20160826
    
    N ports/devel/py-hgsubversion/distinfo
    N ports/devel/py-hgsubversion/Makefile
    N ports/devel/py-hgsubversion/pkg/PLIST
    N ports/devel/py-hgsubversion/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/08/26 05:04:14

Modified files:
	devel          : Makefile 

Log message:
+py-hgsubversion


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/26 05:57:38

Modified files:
	x11/motif      : Makefile 
Added files:
	x11/motif/patches: patch-lib_Xm_XmI_h 

Log message:
Revert upstream's fix #1565 to unbreak xpdf
From Ubuntu

PR and test: Alessandro DE LAURENZIS

OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/26 05:59:04

Modified files:
	sys/arch/arm/arm: cpuswitch7.S pmap7.c 
	sys/arch/arm/include: pmap.h 
	sys/arch/armv7/armv7: armv7_machdep.c armv7_start.S 

Log message:
Remove the code that switches around MMU domains on armv7.  MMU domains are
basically a relic from the past.  Using them doesn't make a lot of sense
the way our pmaps work.  Support for MMU domains isn't present in
long-descriptor translation table format, so it is clearly on its way out.

Based on a diff from Artituri Alm.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/26 06:24:21

Modified files:
	usr.sbin/httpd : httpd.c httpd.h proc.c 

Log message:
Kill the ps_ninstances from proc.c.

We got the same information in ps_instances[proc] (more accurate) and
we avoid allocating unnecessary memory for pipe storage.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/26 07:10:30

Modified files:
	regress/sbin/newfs: Makefile 

Log message:
Make regress Makefile consistent with other tests, use bsd.regress.mk.
OK otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/26 07:59:28

Modified files:
	mail/claws-mail/patches: patch-src_common_ssl_c 

Log message:
patch was committed upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 08:31:46

Modified files:
	math/lapack    : Makefile 

Log message:
grep >/dev/null -> grep -q


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/26 09:04:15

Modified files:
	usr.bin/openssl: apps.c 

Log message:
Repeated occurances of the idiom buf[5][BUFSIZ] -- ridiculous.  Give each
buf a special name, recognize that most are PATH_MAX, and remove a few that
are not needed at all.
ok jsing beck


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 09:47:10

Removed files:
	security/gnupg/patches: patch-cipher_random_c 

Log message:
Extra patch that snuck in.

Spotted by Markus Lude.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 09:56:30

Modified files:
	security/gnupg : Tag: OPENBSD_5_9 Makefile 
Added files:
	security/gnupg/patches: Tag: OPENBSD_5_9 patch-cipher_random_c 

Log message:
SECURITY fix for CVE-2016-6313 (actual fix)

I failed to add the patch with the security fix in the previous commit.
Spotted by Markus Lude.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/26 10:02:33

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
Remove cpu_cpwait() calls; they are no-ops on armv7.

ok tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/26 10:59:35

Modified files:
	graphics/pqiv  : Makefile distinfo 

Log message:
update to pqiv-2.6, while there take maintainership

ok jca@


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2016/08/26 11:28:34

Modified files:
	.              : want.html 

Log message:
Remove my request for a laptop.

Many thanks to Mischa Peters & the Foundation.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/08/26 12:19:21

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

Log message:
grrr warning


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/26 12:25:34

Modified files:
	audio/beets    : Makefile 
	audio/beets/pkg: PLIST 

Log message:
add a missing entry in the plist (found while fiddling with py-setuptools
update)

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 14:52:57

Modified files:
	databases/tdb  : Makefile distinfo 

Log message:
Maintenance update to tdb-1.3.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 14:54:47

Modified files:
	devel/libtalloc: Makefile distinfo 

Log message:
Maintenance update to talloc-2.1.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 15:01:23

Modified files:
	lang/mawk      : Makefile distinfo 

Log message:
Maintenance update to mawk-1.3.4-20160615


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/26 15:14:58

Modified files:
	sys/arch/arm/arm: bus_dma.c 

Log message:
Since the caller already checks and handles COHERENT we don't need
to explicitly check for the flag.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 15:19:44

Modified files:
	sysutils/ncdu  : Makefile distinfo 
Removed files:
	sysutils/ncdu/patches: patch-src_shell_c 

Log message:
Update to ncdu-1.12

1.12 - 2016-08-24
- Add NCDU_SHELL environment variable
- Add --confirm-quit flag
- Fix compilation due to missing sys/wait.h include


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/26 15:23:41

Modified files:
	sys/arch/armv7/sunxi: sxipio.c sxipio_pins.h 

Log message:
Add support for the Allwinner H3 (sun8i-h3).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 15:30:59

Modified files:
	sysutils/memtester: Makefile distinfo 
	sysutils/memtester/patches: patch-memtester_c 

Log message:
Update to memtester-4.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 15:34:08

Modified files:
	sysutils/memtester: Makefile 
	sysutils/memtester/patches: patch-memtester_c 

Log message:
Shorter patch.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/08/26 15:50:43

Modified files:
	sys/arch/arm/arm: bus_dma.c 
	sys/arch/arm/include: bus.h 

Log message:
Implement bus dma support for loading raw mappings so that we can use
xhci(4) on ARM.  The only way the load raw operation can get to know
about the coherent flag is via the segments.  Store it there when the
memory is initially mapped.  Also store the virtual address which we
need to know when we have to flush the caches on a non-coherent mapping.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/26 16:00:58

Modified files:
	textproc/xxdiff: Makefile distinfo 
	textproc/xxdiff/patches: patch-xxdiff_pro 
	textproc/xxdiff/pkg: PLIST 
Removed files:
	textproc/xxdiff/patches: patch-resParser_cpp patch-resParser_y 

Log message:
Maintenance update to xxdiff-4.0.1

Bye bye bison 3 compat patches.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/26 19:07:54

Modified files:
	lang/racket-minimal: Makefile 
Added files:
	lang/racket-minimal: patch-src_racket_src_sfs_c 

Log message:
"fix space-safety in compiler"

https://github.com/racket/racket/commit/5f9576cb222c82951c1610c5fc4bf5c9aced2060

Passes the tests on amd64.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 19:26:22

Modified files:
	usr.sbin/bgpd  : rde_rib.c 
	usr.sbin/dhcpd : db.c dhcpd.c dispatch.c parse.c 
	usr.sbin/dhcrelay: dhcrelay.c dispatch.c 
	usr.sbin/ifstated: log.c 

Log message:
Pull in <time.h> for one or more of gmtime, strftime, strptime, time,
timegm, and tzset

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 19:30:39

Modified files:
	usr.sbin/sasyncd: timer.c 

Log message:
Use %zu for size_t arguments


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 19:42:37

Modified files:
	usr.sbin/rarpd : arptab.c 
	usr.sbin/ldapd : uuid.c 

Log message:
Pull in <sys/time.h> for gettimeofday()

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 19:50:07

Modified files:
	usr.sbin/kgmon : kgmon.c 
	usr.sbin/ntpd  : sensors.c 
	usr.sbin/rbootd: utils.c 
	usr.sbin/sensorsd: sensorsd.c 
	usr.sbin/trpt  : trpt.c 
	usr.sbin/snmpd : timer.c 

Log message:
Pull in <sys/time.h> for struct timespec, timeval, or clockrate

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 19:55:30

Modified files:
	sbin/init      : init.c 
	sbin/sysctl    : sysctl.c 

Log message:
Pull in <sys/time.h> for struct timespec

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 19:56:07

Modified files:
	sbin/reboot    : reboot.c 

Log message:
Pull in <sys/time.h> for struct timespec
<sys/fcntl.h> shouldn't be used by userspace; this already uses <fcntl.h>

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 19:57:28

Modified files:
	lib/libfuse    : fuse_private.h 

Log message:
Pull in <sys/time.h> for struct timespec

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 20:00:10

Modified files:
	games/boggle/boggle: bog.c 
	games/phantasia: gamesupport.c main.c 
	games/tetris   : scores.c 

Log message:
Pull in <time.h> for time() and perhaps other functions

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 20:02:44

Modified files:
	games/pom      : pom.c 
	games/robots   : extern.c move.c 
	games/tetris   : input.c 
	games/atc      : graphics.c 

Log message:
Pull in <sys/time.h> for struct timespec, gettimeofday(), clock_gettime(),
and setitimer()

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 20:06:40

Modified files:
	games/hunt/hunt: list.c playit.c 
	games/hunt/huntd: answer.c conf.c draw.c execute.c expl.c 
	                  extern.c makemaze.c shots.c terminal.c 

Log message:
Pull in <sys/select.h> for fd_set

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 20:11:27

Modified files:
	games/boggle/boggle: timer.c 

Log message:
Pull in <sys/select.h> for fd_set
Pull in <time.h> for time()

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/26 21:31:47

Modified files:
	regress/usr.bin/doas: t-fail-quotes.err 
	                      t-fail-quotes.expected.err t-okay.conf 
	                      t-run-keepenv-path.conf 

Log message:
some updates for recent changes.
not all tests passing yet since i don't really understand what's going on.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 21:34:45

Modified files:
	games/battlestar: globals.c words.c 

Log message:
Pull in <stdio.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 21:48:00

Modified files:
	libexec/rpc.rstatd: rstat_proc.c 

Log message:
Pull in <sys/time.h> for struct timespec

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 21:52:26

Modified files:
	libexec/ld.so  : util.h 

Log message:
Pull in <stddef.h> for NULL
(not stdio, because ld.so has a reduced library behind it)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 21:54:20

Modified files:
	lib/libutil    : getmaxpartitions.c getrawpartition.c 

Log message:
Pull in <stdio.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 21:55:43

Modified files:
	lib/libc/gen   : uname.c 

Log message:
Pull in <stdio.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:04:56

Modified files:
	usr.bin/ssh    : chacha.h 

Log message:
Pull in <stdlib.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:05:12

Modified files:
	usr.bin/ssh    : misc.h 

Log message:
Pull in <sys/time.h> for struct timeval

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:07:42

Modified files:
	usr.bin/netstat: unix.c 
	usr.bin/nfsstat: nfsstat.c 
	usr.bin/top    : display.c 
	usr.bin/vi/common: common.h 

Log message:
Pull in <sys/time.h> for struct timespec and timeval

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:13:43

Modified files:
	usr.bin/netstat: inet.c mroute6.c net80211.c route.c 

Log message:
Pull in <sys/select.h> for howmany() and NBBY, used by various net*/*.h

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:15:52

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

Log message:
Pull in <sys/time.h> for gettimeofday()

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:21:08

Modified files:
	usr.sbin/sasyncd: carp.c log.c pfkey.c 

Log message:
Pull in <sys/select.h> for fd_set

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:28:28

Modified files:
	include/rpc    : svc.h 

Log message:
Pull in <sys/select.h> for fd_set

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:29:25

Modified files:
	regress/lib/libc/ifnameindex: ifnitest.c 

Log message:
Pull in <stdio.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:31:22

Modified files:
	regress/libexec/ld.so/link-order/prog: prog.c 

Log message:
ALL HAIL ELF!
Since <sys/param.h> isn't needed for __ELF__, pull in <stdio.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:32:44

Modified files:
	regress/sys/dev/audio: autest.c 

Log message:
Pull in <sys/time.h> for gettimeofday()
Sort #includes

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:34:28

Modified files:
	regress/sys/kern/ptmget: ptmget.c 

Log message:
Pull in <sys/time.h> for struct timeval
<sys/*.h> includes go before <*.h> includes

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:35:19

Modified files:
	regress/sys/uvm/misc: misc.c 
	regress/sys/uvm/mmap0: mmap0.c 
	regress/sys/uvm/mmap_fixed: mmap_fixed.c 

Log message:
Pull in <stdio.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:38:48

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

Log message:
Move up the <stdio.h> include so <dev/pci/*.h> have NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 22:57:30

Modified files:
	sys/lib/libsa  : stand.h 

Log message:
Declare lseek() instead of assuming it'll be provided elsewhere

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/26 23:14:42

Modified files:
	sys/sys        : types.h 

Log message:
qaddr_t is (now) dead

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/27 00:01:24

Modified files:
	graphics/glew  : Makefile 

Log message:
Fix glew pkg-config output: use /usr/local instead of /usr.

Bug pointed out by Michael Pavone.
No response from maintainer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 00:35:43

Modified files:
	net/py-netifaces: Makefile distinfo 
Removed files:
	net/py-netifaces/patches: patch-netifaces_c 

Log message:
Update to netifaces-0.10.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 00:39:14

Modified files:
	net/bro        : Makefile distinfo 
	net/bro/patches: patch-aux_broccoli_src_bro_openssl_c 
	                 patch-src_ChunkedIO_cc 
	net/bro/pkg    : DESCR PLIST 
Added files:
	net/bro/patches: patch-CMakeLists_txt 
	                 patch-aux_broccoli_test_broccoli-vectors_c 
	                 patch-aux_broctl_BroControl_options_py 
	                 patch-aux_broctl_aux_pysubnettree_patricia_c 
	                 patch-configure patch-src_broxygen_Manager_cc 
	                 patch-src_patricia_c 
	net/bro/pkg    : README bro.rc 
Removed files:
	net/bro/patches: patch-configure_in patch-policy_Makefile_in 
	                 patch-src_X509_cc patch-src_ssl-analyzer_pac 

Log message:
Long overdue update to bro-2.4.1.
Take maintainer while here.

Only slightly tested so far; so may get a few tweaks in the next days if
needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/27 01:33:41

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

Log message:
Maintenance update to py-virtualenv-15.0.3

Note as it uses python binaries which have been flagged wxneeded, you
can create a virtualenv only on wxallowed partitions (thanks Rune Pad)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/27 01:35:19

Modified files:
	lib/libarch/arm: arm_drain_writebuf.c 

Log message:
Pull in <stdio.h> for NULL

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/27 01:46:50

Modified files:
	security/polarssl: Makefile 
Added files:
	security/polarssl/patches: patch-include_mbedtls_config_h 

Log message:
Enable pthreads support on polarssl. OK jca@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 01:49:48

Modified files:
	archivers/libzip: Makefile distinfo 

Log message:
Maintenance update to libzip-1.1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/27 01:50:03

Modified files:
	net/py-cares   : Makefile distinfo 

Log message:
Update to py-cares-2.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 01:57:21

Modified files:
	sysutils/salt  : Makefile distinfo 

Log message:
Update to salt-2016.3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/27 02:08:57

Modified files:
	www/hiawatha   : Makefile 
	www/hiawatha/pkg: DESCR 

Log message:
Tabs and spaces.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 02:15:01

Modified files:
	textproc/gdiff : Makefile distinfo 
	textproc/gdiff/pkg: PLIST 

Log message:
Update to diffutils-3.5

Drop the gettext module while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/08/27 02:17:54

Modified files:
	www/hiawatha   : Makefile distinfo 
	www/hiawatha/patches: patch-config_hiawatha_conf_in 
	                      patch-man_hiawatha_1_in 
	                      patch-src_serverconfig_c 
	www/hiawatha/pkg: PLIST 

Log message:
Update to hiawatha 10.3. Change the port to use the ports version of
polarssl. Add myself as MAINTAINER.

OK jca@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 02:18:42

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : README 

Log message:
Tweak README a bit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 02:24:21

Modified files:
	net/py-ipaddr  : Makefile distinfo 

Log message:
Update to ipaddr-2.1.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 02:35:03

Modified files:
	devel/help2man : Makefile distinfo 

Log message:
Maintenance update to help2man-1.47.4


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/08/27 03:04:20

Modified files:
	usr.sbin/radiusd: parse.y 

Log message:
Add missing $OpenBSD$ line and remove an unnecessary comment line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/27 03:06:12

Modified files:
	security/lastpass-cli: Makefile distinfo 
	security/lastpass-cli/patches: patch-Makefile 
	                               patch-upload-queue_c 

Log message:
Update to lastpass-cli-1.0.0

From Björn Ketelaars (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 03:12:06

Modified files:
	net/GeoIP      : Makefile 
	net/GeoIP/pkg  : PLIST-city 

Log message:
Install GeoIPLiteCity{,v6}.dat as GeoIPCity{,v6}.dat since GeoIP looks for it
(GEOIP_CITY_EDITION_REV0 and GEOIP_CITY_EDITION_REV1). If people want to use the
commercial DB they still can since that's a @sample and won't be overwritten on
install/update.

discussed with and ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/27 03:25:56

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update to offlineimap-7.0.6

From Remi Locherer (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/27 03:36:28

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2-1.14.0


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/08/27 03:42:45

Removed files:
	.              : man.css 

Log message:
Zap outdated, unused copy of mandoc.css;
no longer needed since the manuals moved to man.openbsd.org;
noticed by tj@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 03:47:26

Modified files:
	infrastructure/templates: README.template 

Log message:
72 -> 80 and more readable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 04:50:20

Modified files:
	lang/gawk      : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/27 05:13:16

Modified files:
	usr.sbin/httpd : control.c httpd.h logger.c proc.c server.c 

Log message:
Kill p_instance from proc.c and remove static proc_id unused variables.

To keep the debug functionality intact and correct we'll use the pid
field in the imsg header to pass the instance number. Remember to always
pass 'ps_instance + 1' otherwise libutil will fill imsg header pid field
with the imsgbuf pid (which is the current process pid).

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 05:39:59

Modified files:
	sys/arch/armv7/sunxi: sunxi.c sxiccmu.c 
Added files:
	sys/arch/armv7/sunxi: sxiccmu_clocks.h 

Log message:
Add support for sun8i-h3, the Allwinner H3.  For this SoC, the device tree
contains a single clock control unit node that handles most clocks.  The
driver handles this through tables that describe the gating, reset signals
and the clock hierarchy.  This description is (deliberately) incomplete.  We
will add clocks on an as-needed basis.  You will need a recent device tree,
that includes a "allwinner,sun8i-h3-ccu" compatible node for things to work.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/27 06:08:38

Modified files:
	lib/libc/stdio : fgetwln.c 

Log message:
improve revision 1.2: in unusual cases, fgetwc(3) can succeed
even though ferror(3) is already set;
also from Andrey Chernov <ache at freebsd dot org>;
OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/27 06:36:35

Modified files:
	security/kpcli : Makefile distinfo 

Log message:
Update to kpcli-3.1

Looks good to sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 06:41:48

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Handle the quirky that the FIFO register sits at a different location on
the A31 and later SoCs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 06:58:07

Modified files:
	net/bro        : Makefile 
	net/bro/patches: patch-src_broxygen_Manager_cc 
	net/bro/pkg    : PLIST README 
Added files:
	net/bro/patches: 
	                 patch-aux_broctl_bin_postprocessors_summarize-connections 
	                 patch-aux_broctl_bin_run-bro 

Log message:
Depends on several GeoIP DBs.
Few tweaks while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/08/27 07:17:03

Modified files:
	security/burpsuite: Makefile distinfo 

Log message:
update burpsuite to 1.7.05.
release notes: http://releases.portswigger.net/2016/08/1705.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 07:37:40

Modified files:
	net/libproxy   : Makefile distinfo 
Removed files:
	net/libproxy/patches: patch-bindings_perl_src_CMakeLists_txt 
	                      patch-libproxy_cmake_modules_cmk 
	                      patch-libproxy_cmake_modules_config_kde_cmk 
	                      patch-libproxy_cmake_modules_pacrunner_webkit_cmk 
	                      patch-libproxy_modules_ignore_ip_cpp 

Log message:
Update to libproxy-0.4.13.
- drop gettext module
- take maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/27 07:41:45

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

Log message:
Update to py-aiohttp-0.22.5

Tested with gunicorn-3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 08:11:13

Modified files:
	x11/keynav     : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 08:13:14

Modified files:
	sys/arch/armv7/sunxi: sxidog.c 

Log message:
Add support for the watchdog timer found on A31 and later SoCs, which has a
slightly different register layout.  Also fix the watchdog such that it
actually disables itself when you set the period to 0 and actually gives you
a period that is close to what you asked for.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 08:22:36

Modified files:
	sys/arch/arm/arm: pmap7.c 
	sys/arch/arm/include: pte.h 

Log message:
Add support for the PXN bit in level 1 translation table descriptors and
enable it on CPUs that support it.  When enabled, this prevents the kernel
from executing userland code.

ok jsg@, tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 08:23:11

Modified files:
	security/pinentry: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 08:23:35

Modified files:
	security/pinentry: Makefile 

Log message:
Whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/27 08:29:22

Modified files:
	games/fortune/datfiles: fortunes2 

Log message:
the quotes in "unkempt thoughts" were authored by stanislaw lec,
not stanislaw lem (an easy blunder, i'd say); i've also inserted the "J."
into one of these credits (Stanislaw J. Lec) since all the others have them;

credit to antoni grzymala; diff pockled from netbsd


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 08:30:07

Modified files:
	x11/yad        : Makefile 

Log message:
Drop the gettext module.

Depends on gettext-tools through the intltool module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 08:41:40

Modified files:
	x11/xtraceroute: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 08:50:19

Modified files:
	x11/xplanet    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 08:51:36

Modified files:
	lang/guile2    : Makefile distinfo 
	lang/guile2/pkg: PLIST 
Removed files:
	lang/guile2/patches: patch-libguile_foreign_c 
	                     patch-libguile_gsubr_c 

Log message:
Update to guile2-2.0.12.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 08:55:27

Modified files:
	x11/xpad       : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/27 09:06:36

Modified files:
	sysutils/borgbackup: Makefile distinfo 

Log message:
Update to borgbackup-1.0.7

From Björn Ketelaars (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 09:19:24

Modified files:
	x11/xfe        : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 09:20:04

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

Log message:
Update to leptonica-1.73.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 09:29:55

Modified files:
	x11/xarchiver  : Makefile 
	x11/xarchiver/pkg: PLIST 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 09:37:14

Modified files:
	graphics/goocanvas: Makefile 

Log message:
Extend PORTROACH annotation.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 09:37:55

Modified files:
	graphics/gtkam : Makefile distinfo 
	graphics/gtkam/patches: patch-Makefile_in 
	graphics/gtkam/pkg: PLIST 

Log message:
Update to gtkam-1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 09:47:39

Modified files:
	x11/xarchive   : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 09:49:23

Modified files:
	graphics/babl  : Makefile distinfo 

Log message:
Update to babl-0.1.18.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 09:49:24

Modified files:
	x11/wmctrl     : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 09:56:27

Modified files:
	graphics/libraw: Makefile distinfo 

Log message:
Update to libraw-0.17.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 09:58:01

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

Log message:
Update to gegl03-0.3.8.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/27 09:58:06

Modified files:
	lib/libssl/src/ssl: t1_lib.c 

Log message:
Be more strict when parsing TLS extensions.

Based on a diff from Kinichiro Inoguchi.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/08/27 10:00:27

Modified files:
	regress/lib/libssl/unit: Makefile 

Log message:
Enable ALPN regress now that it passes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:01:40

Modified files:
	fonts/mplus-fonts: Makefile distinfo 

Log message:
Update to mplus-fonts-061.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:07:08

Modified files:
	devel/sdl2-ttf : Makefile distinfo 
	devel/sdl2-ttf/pkg: PLIST 

Log message:
Update to sdl2-ttf-2.0.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:09:36

Modified files:
	devel/py-futures: Makefile distinfo 

Log message:
Update to py-futures-3.0.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/27 10:10:41

Modified files:
	lib/libc/stdio : vfprintf.c 

Log message:
When a precision is specified for a string format use strnlen()
to determine the length instead of doing it manually.  OK schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:10:56

Modified files:
	devel/p5-YAML-XS: Makefile distinfo 

Log message:
Update to p5-YAML-XS-0.63.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:13:15

Modified files:
	databases/py-ldap: Makefile distinfo 
	databases/py-ldap/pkg: PLIST-main 

Log message:
Update to py-ldap-2.4.27.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:33:54

Modified files:
	editors/subtitleeditor: Makefile distinfo 
	editors/subtitleeditor/pkg: PLIST 
Removed files:
	editors/subtitleeditor/patches: patch-configure 
	                                patch-plugins_actions_dialoguize_dialoguize_cc 
	                                patch-plugins_actions_documentmanagement_documentmanagement_cc 

Log message:
Update to subtitleeditor-0.53.0.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 10:39:37

Modified files:
	x11/wxWidgets  : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/27 10:39:42

Modified files:
	lib/libc/stdio : fgets.3 

Log message:
Stop recommending the non-standard and slightly dangerous fgetln(3).
Recommend POSIX getline(3) instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 10:40:31

Modified files:
	sys/arch/armv7/sunxi: sxiehci.c 

Log message:
Match on "allwinner,sun8i-h3-ehci".


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 10:41:52

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c sxiccmu_clocks.h sximmc.c 
Removed files:
	sys/arch/armv7/sunxi: sxiccmuvar.h 

Log message:
Add support for the SD/MMC clock to the geberic clock code and use it in
sximmc(4).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:46:43

Modified files:
	net/py-snmp    : Makefile distinfo 

Log message:
Update to py-snmp-4.3.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 10:47:34

Modified files:
	x11/wmfishtime : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:49:48

Modified files:
	multimedia/devede: Makefile distinfo 

Log message:
Update to devede-4.8.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 10:50:40

Modified files:
	sys/dev/ofw    : ofw_clock.c 

Log message:
Return -1 if we try to set the frequency of a clock but couldn't find it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 10:52:12

Modified files:
	x11/wmclockmon : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:57:16

Modified files:
	multimedia/dvdauthor: Makefile distinfo 
	multimedia/dvdauthor/pkg: PLIST 
Removed files:
	multimedia/dvdauthor/patches: patch-src_spuunmux_c 

Log message:
Update to dvdauthor-0.7.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 10:58:40

Modified files:
	x11/winwrangler/pkg: PLIST 

Log message:
Trim PLIST from directories that don't belong there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 10:59:11

Modified files:
	misc/p5-CreditCard: Makefile distinfo 

Log message:
Update to p5-Business-CreditCard-0.36.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 10:59:18

Modified files:
	x11/winwrangler: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:03:36

Modified files:
	devel/p5-boolean: Makefile distinfo 

Log message:
Update to p5-boolean-0.46.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:07:07

Modified files:
	net/p5-SNMP-Info: Makefile distinfo 
	net/p5-SNMP-Info/pkg: PLIST 

Log message:
Update to p5-SNMP-Info-3.33.

req. by danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:15:12

Modified files:
	x11/ruby-dbus  : Makefile distinfo 
	x11/ruby-dbus/pkg: PLIST 

Log message:
Update to ruby-dbus-0.11.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:17:29

Modified files:
	x11/wmweather  : Makefile distinfo 

Log message:
Update to wmweather-2.4.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 11:21:30

Modified files:
	x11/windowmaker: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 11:26:01

Modified files:
	x11/wbar/pkg   : PLIST 

Log message:
Strip bash-completion dires from PLIST.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 11:26:15

Modified files:
	x11/wbar       : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:26:49

Modified files:
	textproc/tcpdf : Makefile distinfo 
	textproc/tcpdf/pkg: PLIST 

Log message:
Update to tcpdf-6.2.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:27:15

Modified files:
	www/bluefish   : Makefile distinfo 
	www/bluefish/pkg: PLIST 

Log message:
Update to bluefish-2.2.9.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 11:28:32

Modified files:
	x11/uwm        : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:31:30

Modified files:
	textproc/py-ICU: Makefile distinfo 

Log message:
Update to py-ICU-1.9.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 11:32:35

Modified files:
	sys/arch/armv7/imx: imxesdhc.c 

Log message:
Initialize vdd to 0 in imxesdhc_bus_power() to avoiud using it uninitialized.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:33:19

Modified files:
	textproc/py-enchant: Makefile distinfo 

Log message:
Update to py-enchant-1.6.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 11:35:19

Modified files:
	x11/trayer     : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:40:03

Modified files:
	security/py-secretstorage: Makefile distinfo 

Log message:
Update to py-secretstorage-2.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 11:40:17

Modified files:
	security/py-keyring: Makefile distinfo 
	security/py-keyring/pkg: PLIST 

Log message:
Update to py-keyring-9.3.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 11:45:04

Modified files:
	x11/tint2      : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 12:04:44

Modified files:
	x11/tilda      : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/27 12:12:16

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Deassert reset signals if there is a "resets" property.  Implement mmc power
sequencing like we have for imxesdhc(4).  Unfortunately that doesn't seem to
be enough to be able to see the onboard sdio wireless on my Banana Pi 2+.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/08/27 12:17:46

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

Log message:
in case we run delete_first (not enough room), delay the unlink of
tied items so we can still skip extracting them.

better than the stopgap measure I committed a few weeks ago.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 12:22:34

Modified files:
	x11            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	x11/wmthemeinstall: Makefile distinfo 
	x11/wmthemeinstall/pkg: DESCR PLIST 

Log message:
Bye bye wmthemeinstall.

The last user of gtk+ 1 with xmms, scary warnings synonymous of breakage
on LP64 -> welcome to the Attic.

ok ajacoutot@ dcoppa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 12:29:35

Modified files:
	x11/thewidgetfactory/pkg: PLIST 

Log message:
Add @bin marker.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 12:30:52

Modified files:
	x11/thewidgetfactory: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/27 12:59:08

Modified files:
	audio/libmikmod: Makefile distinfo 

Log message:
bugfix update to 3.3.9 from maintainer Frederic Cambus


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 13:49:48

Modified files:
	x11/sisctrl    : Makefile 
	x11/sisctrl/pkg: PLIST 

Log message:
Drop the gettext module.

Add a @bin marker while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/27 13:50:36

Modified files:
	sbin/mount     : mount.8 

Log message:
for completeness, document (no)rw and ro options.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 14:13:58

Modified files:
	x11/sawfish    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 14:16:48

Modified files:
	x11/sawfish    : Makefile 

Log message:
Amend MASTER_SITES


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 14:34:23

Modified files:
	audio/glyr     : Makefile distinfo 

Log message:
Update to glyr-1.0.9.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 14:37:18

Modified files:
	audio/p5-Ogg-Vorbis-Header: Makefile distinfo 
	audio/p5-Ogg-Vorbis-Header/patches: patch-Header_pm 

Log message:
Update to p5-Ogg-Vorbis-Header-0.05.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/27 14:43:05

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

Log message:
shorten the req text;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 14:44:08

Modified files:
	audio/speech-dispatcher: Makefile distinfo 
	audio/speech-dispatcher/patches: patch-src_server_speechd_c 
	                                 patch-src_server_speechd_h 
	audio/speech-dispatcher/pkg: PLIST 

Log message:
Update to speech-dispatcher-0.8.5.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 14:45:06

Modified files:
	x11/sakura     : Makefile 
	x11/sakura/pkg : PLIST 

Log message:
Drop the gettext module.

+ a slight PLIST tweak


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/27 14:46:54

Modified files:
	comms/p5-Device-Gsm: Makefile distinfo 

Log message:
Update to p5-Device-Gsm-1.61.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 14:58:48

Modified files:
	textproc/mupdf : Makefile 
Added files:
	textproc/mupdf/patches: patch-source_pdf_pdf-shade_c 
	                        patch-source_pdf_pdf-xref_c 

Log message:
SECURITY fixes for CVE-2016-6525 & CVE-2016-6265

CVE-2016-6525 heap overflow in pdf_load_mesh_params()
CVE-2016-6265 use-after-free

Reported by & looks good to stsp@, ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 15:14:12

Modified files:
	x11/rxvt-unicode: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 15:28:18

Modified files:
	x11/roxterm    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 15:40:00

Modified files:
	x11/rox-filer  : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/27 15:45:57

Modified files:
	x11/rep-gtk    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/27 16:30:23

Modified files:
	sbin/mount     : mount.8 

Log message:
further tweak previous: use the same text for norw as ro; ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/27 16:52:21

Modified files:
	libexec/ld.so/hppa: rtld_machine.c 

Log message:
Delete debugging from when lazy binding was being implemented

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/08/27 17:35:00

Modified files:
	usr.bin/tmux   : cmd-join-pane.c 

Log message:
Kill empty window after moving pane and updating current window, so that
index is still valid before renumber-windows happens. Fixes issue
reported by Eric Pruitt.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/27 18:51:48

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

Log message:
Pull in <time.h> for tzset()


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/27 22:08:59

Modified files:
	lib/libc/stdlib: realpath.c 
	libexec/ld.so  : dl_realpath.c 

Log message:
Don't call lstat() before readlink() just to see if it's a symlink,
as readlink() will tell you that more cheaply.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/27 22:33:17

Modified files:
	libexec/ld.so  : loader.c 

Log message:
fix a comment


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/28 00:15:33

Modified files:
	libexec/ld.so/alpha: ldasm.S syscall.h 
	libexec/ld.so/amd64: ldasm.S syscall.h 
	libexec/ld.so/arm: ldasm.S syscall.h 
	libexec/ld.so/hppa: ldasm.S syscall.h 
	libexec/ld.so/i386: ldasm.S syscall.h 
	libexec/ld.so/m88k: ldasm.S syscall.h 
	libexec/ld.so/mips64: ldasm.S syscall.h 
	libexec/ld.so/powerpc: ldasm.S syscall.h 
	libexec/ld.so/sh: ldasm.S syscall.h 
	libexec/ld.so/sparc: ldasm.S syscall.h 
	libexec/ld.so/sparc64: ldasm.S syscall.h 

Log message:
ld.so doesn't need gettimeofday or lstat stubs any more

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/28 00:41:31

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

Log message:
Update to py-aiodns-1.1.0


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/28 01:22:11

Modified files:
	sys/sys        : sockio.h 
	sys/net        : if_gre.c 
	share/man/man4 : gre.4 

Log message:
Remove obsolete gre(4) ioctls GRESADDRS, GRESADDRD, GREGADDRS,
GREGADDRD, GRESPROTO, and GREGPROTO.  They have been replaced by
generic ioctls some time ago (eg. the "ifconfig gre0 tunnel") and
there is no need to keep the old ones around.  They are neither used
in base nor in ports.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/08/28 01:25:47

Modified files:
	usr.bin/less   : main.c 

Log message:
Check the MORE (or LESS) environment variables after forcing the various
more(1) options, so it is possible to change them using MORE. From Ross
L Richardson. ok deraadt millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/28 01:39:17

Modified files:
	multimedia/mkvtoolnix: Makefile distinfo 

Log message:
Update to mkvtoolnix-9.4.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 02:29:52

Modified files:
	textproc/mupdf : Tag: OPENBSD_6_0 Makefile 
Added files:
	textproc/mupdf/patches: Tag: OPENBSD_5_9 
	                        patch-source_pdf_pdf-shade_c 
	                        patch-source_pdf_pdf-xref_c 

Log message:
SECURITY fixes for CVE-2016-6525 & CVE-2016-6265

CVE-2016-6525 heap overflow in pdf_load_mesh_params()
CVE-2016-6265 use-after-free

Reported by & looks good to stsp@, ok sthen@ (maintainer)
Tests on 6.0 by kili@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 02:44:27

Modified files:
	textproc/mupdf : Tag: OPENBSD_5_9 Makefile 

Log message:
Missing bump in previous commit on OPENBSD_5_9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 02:48:51

Modified files:
	textproc/mupdf : Tag: OPENBSD_6_0 Makefile 
Added files:
	textproc/mupdf/patches: Tag: OPENBSD_6_0 
	                        patch-source_pdf_pdf-shade_c 
	                        patch-source_pdf_pdf-xref_c 

Log message:
SECURITY fixes for CVE-2016-6525 & CVE-2016-6265

CVE-2016-6525 heap overflow in pdf_load_mesh_params()
CVE-2016-6265 use-after-free

Reported by & looks good to stsp@, ok sthen@ (maintainer)
Tests on 6.0 by kili@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/28 03:44:07

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/patches: patch-bindings_python_Makefile_in 
	textproc/link-grammar/pkg: PLIST-main 

Log message:
Update to link-grammar-5.3.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 04:14:09

Modified files:
	x11/xbae       : Makefile 

Log message:
Drop the libiconv module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 04:17:13

Modified files:
	x11/rdesktop   : Makefile 

Log message:
Drop the libiconv module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 04:21:48

Modified files:
	x11/remmina    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 04:37:48

Modified files:
	x11/py-kiwi    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/28 04:38:48

Modified files:
	x11/sakura     : Makefile 

Log message:
missing bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 04:51:46

Modified files:
	x11/py-gtk2    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 04:55:33

Modified files:
	x11/py-gtk2    : Makefile 

Log message:
Zap explicit LIB_DEPENDS on devel/gettext.

Already brought in by libglade.  Reqd by ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/28 04:55:38

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

Log message:
Update to py-argcomplete-1.4.1 and add a py3 flavor

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/28 05:01:06

Modified files:
	devel          : Makefile 

Log message:
+ py-argcomplete,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 05:04:12

Modified files:
	sysutils/noice : Makefile distinfo 

Log message:
Update to noice-0.6

from maintainer Dimitris Papastamos


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 05:07:14

Modified files:
	x11/pekwm      : Makefile 

Log message:
Drop the libiconv module.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/28 06:33:22

src/regress/usr.bin/column

Update of /cvs/src/regress/usr.bin/column
In directory cvs.openbsd.org:/tmp/cvs-serv64512/column

Log Message:
Directory /cvs/src/regress/usr.bin/column added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 06:35:29

Modified files:
	x11/pinot      : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/28 06:39:07

Added files:
	regress/usr.bin/column: Makefile column.sh 

Log message:
I don't dare to provide an OK for a rewrite of this program
without having at least some systematic testing in place.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/28 06:40:41

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

Log message:
Update to libmtp-1.1.12.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/28 06:57:02

Modified files:
	regress/usr.bin/column: column.sh 

Log message:
typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/28 06:57:32

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

Log message:
Update to py-pexpect 4.2.0.

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/28 07:17:52

Modified files:
	net/py-msgpack : Makefile distinfo 

Log message:
Update to py-msgpack 0.4.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 07:53:16

Modified files:
	x11/partiwm    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 08:00:03

Modified files:
	x11/parcellite : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 08:11:05

Modified files:
	x11/p5-Gtk2-ImageView: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/28 08:23:19

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

Log message:
Update to py-mccabe 0.5.2. Add python3 flavor.

ok danj@, Bertrand Janin (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 08:27:24

Modified files:
	x11/p5-Gtk2-GladeXML: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 08:35:54

Modified files:
	x11/ogle       : Makefile 

Log message:
Drop the libiconv module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 08:36:24

Modified files:
	x11/openbox    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 08:40:23

Modified files:
	x11/obconf     : Makefile 
	x11/obconf/pkg : PLIST 

Log message:
Drop the gettext module.

While here, drop share/pixmaps from PLIST.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 09:02:07

Modified files:
	x11/nitrogen   : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/28 09:03:34

Modified files:
	devel          : Makefile 

Log message:
+py-mccabe,python3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/08/28 09:23:24

Modified files:
	app/cwm        : menu.c 

Log message:
Enable the use of numpad Enter key on menus; from Henrique N. Lengler.

ok beck phessler


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/08/28 09:26:10

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Reset the host controller after a failed command request to make sure it
operates again.

ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 09:32:52

Modified files:
	x11/menu-cache : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 09:56:21

Modified files:
	x11/lxrandr    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 10:01:42

Modified files:
	x11/libsexy    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 10:05:24

Modified files:
	x11/libgdiplus : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/28 10:13:51

Modified files:
	usr.bin/mandoc : mdoc_argv.c 

Log message:
If a line inside .Bl -column starts with a tab character
and there was no preceding .It macro, do not read the byte
before the beginning of the line buffer.
Found by tb@ with afl@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 10:29:54

Modified files:
	x11/lablgtk2   : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 11:22:29

Modified files:
	x11/klavaro    : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/28 11:31:44

Modified files:
	sys/arch/armv7/sunxi: sxipio.c 

Log message:
Fix the macros that determine the register offsets based on port and pin.
These were didn't work as I expected, and returned the wrong offsets.  As a
result, pinctrl and gpio code was twiddling the wrong bits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/28 11:44:09

Modified files:
	x11/keybinder  : Makefile 
	x11/keybinder3 : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/28 13:34:15

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

Log message:
shorten the rsa text; of note, i've also reduced the description
for -inform/-outform/-text and removed the oft-repeated header/footer
blurb;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/28 14:17:10

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c sxiccmu_clocks.h 

Log message:
Add a few missing sunxi-h3 clocks and resets.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/28 14:20:37

Modified files:
	sys/arch/armv7/sunxi: sxipio.c 

Log message:
Get rid of sxipio_ioh and sxipio_iot; they're not used (anymore).


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/28 15:17:49

Modified files:
	.              : INDEX 

Log message:
sync, 9595


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/28 16:28:13

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

Log message:
fix uninitialised optlen in getsockopt() call; harmless on Unix/BSD
but potentially crashy on Cygwin. Reported by James Slepicka
ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/08/28 16:52:21

Modified files:
	faq            : current.html 

Log message:
add back py-elasticsearch-curator CLI API changes
requested by sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/29 01:31:31

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/patches: 
	                            patch-filter_foomatic-rip_foomaticrip_c 

Log message:
Update to cups-filters-1.11.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/29 01:36:18

Modified files:
	astro/py-metar : Makefile distinfo 

Log message:
Update to py-metar-0.21.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/29 01:48:21

Modified files:
	print/hplip    : Makefile distinfo 
	print/hplip/patches: patch-Makefile_in patch-configure 
	print/hplip/pkg: PLIST-hpijs 

Log message:
Update to hplip-3.16.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/29 02:40:38

Modified files:
	sysutils/upower/patches: patch-src_openbsd_up-backend_c 

Log message:
add link to upstream bz


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/29 02:47:34

Modified files:
	x11/rox-filer  : Makefile 

Log message:
- fix HOMEPAGE (pointed out by jca@)
- drop MAINTAINER


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/29 03:11:22

Modified files:
	x11/gnustep/base: Makefile 
	x11/gnustep/terminal: Makefile 

Log message:
Drop the libiconv module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/29 03:13:37

Modified files:
	x11/gob2       : Makefile 
	x11/gpointing-device-settings: Makefile 
	x11/gromit     : Makefile 
	x11/gxmessage  : Makefile 
	x11/i3         : Makefile 
	x11/icewm      : Makefile 
	x11/ion        : Makefile 
	x11/isomaster  : Makefile 
	x11/jwm        : Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/29 04:39:59

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

Log message:
Make examples fit in 80 columns, reminded by jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/29 04:45:42

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

Log message:
Update to py-argh-0.26.2 and add a py3 flavor

ok shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/29 04:47:01

Modified files:
	devel          : Makefile 

Log message:
+ py-argh,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/08/29 05:48:06

Modified files:
	devel/py-mccabe: Makefile 

Log message:
Fix build depend.

spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/29 06:20:57

Modified files:
	lib/libc/stdio : vfprintf.c 

Log message:
Store the return value of mbrtowc() in a size_t, not int.
OK schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/29 07:40:24

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

Log message:
Update to pango-1.40.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/08/29 07:51:44

Modified files:
	x11/smplayer   : Makefile distinfo 
	x11/smplayer/patches: patch-Makefile 
Removed files:
	x11/smplayer/patches: 
	                      patch-src_globalshortcuts_globalshortcuts_cpp 

Log message:
Update for SMPlayer to 16.8.0:

http://blog.smplayer.info/playlist-improved-in-smplayer-16-8/

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/08/29 07:52:46

Modified files:
	x11/smtube     : Makefile distinfo 

Log message:
Update for SMTube to 16.7.0.

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/29 08:12:58

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

Log message:
Fixup packet fragment unrolling procedure

When bus_dmamap_load fails to load one of the buffers in the mbuf
chain, we need to revert all changes to transmit descriptors.  The
code to do that was prototyped but not tested.  However due to how
the Tx ring is set up in xnf(4) and generic lack of proper fragment
support in the Netfront design we're always limited to having 256
entries for distinct shared memory pages.  The mbuf chain is
traversed and attempt is made to load every data chunk into a 4k
sized DMA map segment which makes it impossible to reference a
buffer composed of multiple pages.  Current implementation lacks
support for this preventing reliable transmission of frames larger
than 4k.

Bug reported by Kirill Miazine <km at krot ! org>, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/29 10:13:05

Modified files:
	x11/gentoo     : Makefile 
	x11/girara     : Makefile 
	x11/gmrun      : Makefile 
	x11/gmtk       : Makefile 
	x11/gnome-mplayer: Makefile 

Log message:
Drop the gettext module.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/29 10:25:14

Modified files:
	regress/sys/kern/sosplice/perf: Makefile 

Log message:
Make socket splicing performance test pass in multiple environments.
When running the setup over two machines, build required binaries
on remote machine.  Avoid localhost nameserver lookup, just use
127.0.0.1.  Use greater timeout.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/29 11:01:45

Removed files:
	infrastructure/plist: .cvsignore amd64 arm hppa i386 mips64el 
	                      powerpc sh sparc sparc64 

Log message:
remove infrastructure/plist; it's outdated (e.g. arm/sh were so badly
outdated they referenced 47 ports/flavors that no longer exist). the
others have most likely not been used since dpb

agreed by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/29 11:27:04

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

Log message:
Don't count output errors twice


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/29 11:27:27

Modified files:
	font/dejavu-ttf: AUTHORS BUGS LICENSE Makefile NEWS 
	                 langcover.txt status.txt unicover.txt 
	font/dejavu-ttf/ttf: DejaVuSans-Bold.ttf 
	                     DejaVuSans-BoldOblique.ttf 
	                     DejaVuSans-ExtraLight.ttf 
	                     DejaVuSans-Oblique.ttf DejaVuSans.ttf 
	                     DejaVuSansCondensed-Bold.ttf 
	                     DejaVuSansCondensed-BoldOblique.ttf 
	                     DejaVuSansCondensed-Oblique.ttf 
	                     DejaVuSansCondensed.ttf 
	                     DejaVuSansMono-Bold.ttf 
	                     DejaVuSansMono-BoldOblique.ttf 
	                     DejaVuSansMono-Oblique.ttf 
	                     DejaVuSansMono.ttf DejaVuSerif-Bold.ttf 
	                     DejaVuSerif-BoldItalic.ttf 
	                     DejaVuSerif-Italic.ttf DejaVuSerif.ttf 
	                     DejaVuSerifCondensed-Bold.ttf 
	                     DejaVuSerifCondensed-BoldItalic.ttf 
	                     DejaVuSerifCondensed-Italic.ttf 
	                     DejaVuSerifCondensed.ttf 
Added files:
	font/dejavu-ttf: README.md 
	font/dejavu-ttf/ttf: DejaVuMathTeXGyre.ttf 
Removed files:
	font/dejavu-ttf: README 

Log message:
Update to DejaVu fonts 2.37


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/29 11:28:36

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

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/29 11:28:55

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/29 11:32:57

Modified files:
	x11/gnome/libgweather: Makefile distinfo 

Log message:
update to libgweather-3.20.3


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/08/29 11:35:25

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

Log message:
Set MTU size to ~4k until the TX path is ready to deal with larger packets


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/29 14:31:56

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

Log message:
Add more information to syslogd tls config error messages.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/29 14:34:59

Modified files:
	regress/usr.sbin/syslogd: args-tls-cafile-noexist.pl 
	                          args-tls-cert-noexist.pl 
	                          args-tls-key-noexist.pl 

Log message:
Syslogd tls config error messages have changed, adapt tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2016/08/29 17:14:50

Modified files:
	sys/arch/luna88k/dev: if_le.c 

Log message:
Change le(4) buffer address to 0x71010000, which is the same address
with NetBSD/luna68k.

LUNA has 128KB so-called '3 port RAM' starting at 0x71000000.
Originally, first 64KB of this area is designed for I/O processor
HD647180, and next 64KB is designed for LANCE.

This makes possible to support I/O processor in the future:-)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/29 21:45:48

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.292.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/29 21:47:15

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.6.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/08/29 23:41:44

Modified files:
	devel/apktool  : Makefile distinfo 

Log message:
update apktool to 2.2.0
Details: https://connortumbleson.com/2016/08/07/apktool-v2-2-0-released/


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/30 00:21:31

Modified files:
	security/aide  : Makefile 

Log message:
Forgot to add pcre library
from sthen@, thanks !


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/08/30 00:52:57

Modified files:
	math/ntl       : Makefile distinfo 
	math/ntl/patches: patch-src_VERSION_INFO 

Log message:
Update to ntl-9.11.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/30 01:12:49

Modified files:
	sys/nfs        : nfs_subs.c nfs_syscalls.c 

Log message:
pool_setipl for nfs pools

ok natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/30 01:40:35

Modified files:
	sys/kern       : sys_pipe.c sysv_msg.c sysv_shm.c 

Log message:
pool_setipl

ok natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2016/08/30 01:42:57

Modified files:
	sys/net        : art.c art.h rtable.c 

Log message:
use a per-table rwlock to serialize ART updates and walks, rather than
taking the kernel lock.

ok mpi@ dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/08/30 01:50:21

Modified files:
	usr.bin/ssh    : monitor.c 

Log message:
restrict monitor auth calls to be allowed only when their
respective authentication methods are enabled in the configuration.

prompted by Solar Designer; ok markus dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/30 01:53:59

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

Log message:
shorten rsautl;


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/30 02:52:39

Modified files:
	.              : hackathons.html 
Added files:
	images/hackathons: g2k16-s.gif g2k16.gif 

Log message:
g2k16 in cambridge begins


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/08/30 03:23:34

Modified files:
	.              : hackathons.html 

Log message:
oops wrong wording


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 03:53:27

Modified files:
	x11/gnustep/gworkspace: Makefile 
	x11/gnustep/gworkspace/pkg: PLIST 

Log message:
remove xmms app wrapper for xmms will be pining for the fjords soon


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 03:54:14

Modified files:
	x11/kde4/workspace: Makefile 
	x11/kde4/kopete: Makefile 

Log message:
remove xmms plugin/remote control


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 03:57:35

Modified files:
	sysutils/gkrellm/plugins: Makefile 
Removed files:
	sysutils/gkrellm/plugins/mms: Makefile distinfo 
	sysutils/gkrellm/plugins/mms/patches: patch-Makefile 
	                                      patch-gkrellmms_c 
	sysutils/gkrellm/plugins/mms/pkg: DESCR PLIST 

Log message:
remove xmms plugin


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/30 04:02:18

Modified files:
	x11/mlterm     : Makefile 
	x11/mlterm/pkg : PLIST 
Removed files:
	x11/mlterm/patches: patch-mlterm_Makefile_in 

Log message:
Unbreak.

mlterm: undefined symbol 'ml_ot_layout_set_shape_func'

Breakage spotted by jca@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:12:15

Modified files:
	graphics       : Makefile 
Removed files:
	graphics/xmms-kj: Makefile distinfo 
	graphics/xmms-kj/files: mtree 
	graphics/xmms-kj/patches: patch-image_c patch-makefile 
	                          patch-playlist_c 
	graphics/xmms-kj/pkg: DESCR PLIST 

Log message:
remove xmms-kj plugin


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:12:43

Modified files:
	multimedia/lives: Makefile 

Log message:
drop RDEP on xmms


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:19:51

Modified files:
	audio/faad     : Makefile 
Added files:
	audio/faad/pkg : DESCR PLIST 
Removed files:
	audio/faad/pkg : DESCR-main DESCR-xmms PLIST-main PLIST-xmms 

Log message:
drop xmms subpackage (and subsequently ,-main too)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:20:16

Modified files:
	audio/zeya     : Makefile 
	audio/audacious-plugins: Makefile 
	audio/deadbeef : Makefile 
	audio/moc      : Makefile 
	audio/mpd      : Makefile 
	audio/siren    : Makefile 
	audio/squeezelite: Makefile 
	games/scummvm  : Makefile 
	multimedia/avidemux: Makefile 
	multimedia/libquicktime: Makefile 
	multimedia/xine-lib: Makefile 

Log message:
bump after faad subpackage changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/30 04:33:01

Modified files:
	x11/gnome/shell: Makefile 

Log message:
Needs USE_WXNEEDED.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:36:58

Modified files:
	audio          : Makefile 
Removed files:
	audio/py-xmms  : Makefile distinfo 
	audio/py-xmms/patches: patch-_xmmsmodule_c 
	audio/py-xmms/pkg: DESCR PLIST 
	audio/xmms     : Makefile distinfo 
	audio/xmms/files: Makefile.am audio_sndio.c 
	audio/xmms/patches: patch-Input_cdaudio_cdaudio_c 
	                    patch-Input_cdaudio_cdaudio_h 
	                    patch-Input_mikmod_drv_xmms_c 
	                    patch-Output_Makefile_am patch-configure_in 
	                    patch-libxmms_configure_in 
	                    patch-libxmms_xmmsctrl_c 
	                    patch-po_Makefile_in_in patch-xmms_bmp_c 
	                    patch-xmms_getopt_c patch-xmms_input_c 
	                    patch-xmms_main_c patch-xmms_util_c 
	audio/xmms/pkg : DESCR-main DESCR-mikmod DESCR-mp3 DESCR-vorbis 
	                 PLIST-main PLIST-mikmod PLIST-mp3 PLIST-vorbis 
	audio/xmms-flac: Makefile distinfo 
	audio/xmms-flac/files: Makefile 
	audio/xmms-flac/patches: patch-configure 
	                         patch-src_plugin_xmms_Makefile_in 
	audio/xmms-flac/pkg: DESCR PLIST 
	audio/xmms-fmradio: Makefile distinfo 
	audio/xmms-fmradio/pkg: DESCR PLIST 
	audio/xmms-mad : Makefile distinfo 
	audio/xmms-mad/patches: patch-src_Makefile_in 
	audio/xmms-mad/pkg: DESCR PLIST 
	audio/xmms-shn : Makefile distinfo 
	audio/xmms-shn/patches: patch-configure 
	audio/xmms-shn/pkg: DESCR PLIST 
	audio/xmms-sid : Makefile distinfo 
	audio/xmms-sid/patches: patch-configure patch-src_Makefile_in 
	                        patch-src_xmms-sid_cc 
	audio/xmms-sid/pkg: DESCR PLIST 
	audio/xmms-speex: Makefile distinfo 
	audio/xmms-speex/patches: patch-Makefile patch-libspeex_c 
	                          patch-speexutil_c 
	audio/xmms-speex/pkg: DESCR PLIST 
	audio/xmms-tremor: Makefile distinfo 
	audio/xmms-tremor/patches: patch-configure_ac 
	                           patch-src_Makefile_in 
	                           patch-src_fileinfo_c 
	                           patch-src_vcedit_c patch-src_vcedit_h 
	                           patch-src_vorbis_c 
	audio/xmms-tremor/pkg: DESCR PLIST 
	audio/xmms-wavpack: Makefile distinfo 
	audio/xmms-wavpack/patches: patch-configure 
	                            patch-src_libwavpack_cpp 
	                            patch-src_ui_cpp 
	audio/xmms-wavpack/pkg: DESCR PLIST 
	audio/xmms-xf86audio: Makefile distinfo 
	audio/xmms-xf86audio/patches: patch-xf86audio_c 
	audio/xmms-xf86audio/pkg: DESCR PLIST 
	audio/xmmsctrl : Makefile distinfo 
	audio/xmmsctrl/patches: patch-Makefile patch-removefile_c 
	audio/xmmsctrl/pkg: DESCR PLIST 

Log message:
remove xmms, it's been unmaintained for years and it's in the way of
the removal of gtk+1, the toolkit from eons ago.

discussed with many for years, no objections from naddy@
ok aja@ dcoppa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:37:37

Modified files:
	audio/normalize: Makefile 
	audio/flac     : Makefile 

Log message:
remove configure arguments/comments about xmms; it's not going to be picked up anymore


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:38:14

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register removal of xmms


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/30 04:40:36

Modified files:
	x11/gnome/gjs  : Makefile 

Log message:
USE_WXNEEDED here as well.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/30 04:40:50

Modified files:
	x11/gnome/gjs  : Makefile 

Log message:
Tyop.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:42:22

Modified files:
	misc/logjam    : Makefile 

Log message:
don't build xmms helper


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:43:53

Modified files:
	x11            : Makefile 

Log message:
-gtk+


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:44:16

Removed files:
	x11/gtk+       : Makefile distinfo 
	x11/gtk+/patches: patch-configure patch-gdk_Makefile_in 
	                  patch-gdk_gdkinput_c patch-gtk_Makefile_in 
	                  patch-gtk_gtktypeutils_h patch-gtk_m4 
	                  patch-po_Makefile_in_in 
	x11/gtk+/pkg   : DESCR PLIST 

Log message:
we no longer party like it's 1998

ok aja@ dcoppa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:47:20

Removed files:
	audio/faad/patches: patch-plugins_xmms_src_Makefile_am 

Log message:
remove now unused patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:49:01

Modified files:
	math/libqalculate: Makefile 

Log message:
drop bogus comment, this idiom can be copied from many other places


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/30 04:54:42

Modified files:
	usr.sbin/httpd : httpd.h server_fcgi.c 

Log message:
Do not assume that the full http response header is in the first
fastcgi stdout record. Keep processing stdout records until we found
the header / body separator and only then generate the header
response.
Problem reported by many.

OK jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 04:55:26

Modified files:
	devel/iso-codes: Makefile distinfo 

Log message:
update to iso-codes-3.70


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 05:02:41

Modified files:
	lang/obc       : Makefile distinfo 
	lang/obc/patches: patch-Makefile_in patch-configure 
	                  patch-debugger_Makefile_in 
	                  patch-test_bigtest_in 
	lang/obc/pkg   : PLIST 
Removed files:
	lang/obc/patches: patch-runtime_gc_c patch-runtime_vm386_c 

Log message:
- update to obc-2.9.7
- drop gettext module and regen WANTLIB

ok Alexander Shiryaev (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 05:03:33

Modified files:
	sysutils/facter: Makefile distinfo 
	sysutils/facter/patches: patch-lib_CMakeLists_txt 
	sysutils/facter/pkg: PLIST 

Log message:
update to facter-3.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/30 05:04:42

Removed files:
	devel/glib     : Makefile distinfo 
	devel/glib/patches: patch-Makefile_in patch-configure 
	                    patch-docs_Makefile_in patch-glib-config_in 
	                    patch-glib_h patch-glib_m4 
	                    patch-gmodule_Makefile_in patch-gstrfuncs_c 
	                    patch-gthread_Makefile_in 
	devel/glib/pkg : DESCR PLIST 

Log message:
Remove glib1.
As jasper puts it, "we no longer party like it's 1998".

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/30 05:05:31

Modified files:
	devel          : Makefile 

Log message:
-glib


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/30 05:06:43

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register removal of glib and gtk+.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/30 05:15:16

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Add destination IP to MAC, reduces difference to ping(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/08/30 05:20:09

Modified files:
	sys/arch/macppc/dev: i2s.c 

Log message:
Properly set "msb" and "bps" fields for both play and rec directions.
Fixes "audio0: different play and record parameters ... " errors, and
probably other unreported errors.

help and ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 05:29:06

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
sync with what's been committed upstream

from Patrik Lundin


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/30 05:30:14

Modified files:
	usr.bin/openssl: s_time.c apps.h 

Log message:
Fix 32-bit time handling, using time_t and make it work on systems
where that is long long.
ok beck guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/30 05:32:28

Modified files:
	usr.bin/openssl: ca.c 

Log message:
buf[][] with strange use all over the place is ridiculous, especially
if buf[1] is never used.
ok guenther beck


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 05:55:47

Modified files:
	sysutils/mcollective: Makefile distinfo 

Log message:
update to mcollective-2.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 05:55:56

Modified files:
	sysutils/mcollective-plugins/puppet-agent: Makefile distinfo 

Log message:
update to mcollective-puppet-agent-1.11.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 06:01:40

Modified files:
	net/openfire   : Makefile distinfo 

Log message:
Update to openfire 4.0.3, from MAINTAINER Marc Peters


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/30 06:07:12

Modified files:
	graphics/shotwell: Makefile distinfo 
	graphics/shotwell/patches: patch-configure 
	graphics/shotwell/pkg: PLIST 

Log message:
Update to shotwell-0.23.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 06:09:07

Modified files:
	sysutils/ruby-puppet/4: Makefile distinfo 
	sysutils/ruby-puppet/4/patches: patch-lib_puppet_defaults_rb 
	sysutils/ruby-puppet/4/pkg: PLIST 
Removed files:
	sysutils/ruby-puppet/4/patches: 
	                                patch-lib_puppet_network_http_rack_rest_rb 

Log message:
update to puppet-4.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 06:09:09

Modified files:
	x11/xfce4/xfce4-whiskermenu: Makefile distinfo 

Log message:
update to xfce4-whiskermenu 1.6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/30 06:10:10

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
usage() is __dead.
While here remove one useless call to usage() that's covered by the
very next line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 06:10:49

Modified files:
	x11/xfce4/xfdashboard: Makefile distinfo 
	x11/xfce4/xfdashboard/pkg: PLIST 

Log message:
update to xfdashboard 0.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 06:13:39

Modified files:
	databases/puppetdb4: Makefile distinfo 

Log message:
- update to puppetdb-4.2.2
- enforce strict dependency of -termini on -main


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/30 06:15:28

Modified files:
	sys/arch/loongson/loongson: generic2e_machdep.c 

Log message:
Mask sb pci irq bits for a,b,c,d instead of a,b,b,d.
Couldn't find someone with a loongson 2e to test this on hardware.
"looks ok" visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/30 06:24:07

Modified files:
	sys/dev/isa    : sch311x.c 

Log message:
Make the init code match the comment and disable watchdog
reset by mouse and keyboard instead of mouse and mouse.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 06:29:17

Modified files:
	audio/faad     : Makefile 

Log message:
drop gettext module (unused)


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2016/08/30 06:39:53

Modified files:
	.              : mail.html 

Log message:
Purge dead mail archive links. Leaving us with MARC via http and
Gmane via nntp.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/08/30 06:47:19

Modified files:
	libexec/ld.so  : resolve.h 
	sys/sys        : exec_elf.h 

Log message:
Move DT_NUM from <sys/exec_elf.h> to resolv.h in ld.so where it belongs.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/30 07:37:10

Modified files:
	usr.sbin/httpd : httpd.h 

Log message:
Remove duplicated prototypes from header.

"Looks good to me" natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/30 07:39:53

Modified files:
	usr.sbin/switchd: imsg_util.c 

Log message:
does not need sys/param.h


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 07:44:33

Modified files:
	x11/xfce4      : xfce4.port.mk 

Log message:
Only set MODXFCE_WANTLIB if not already set - allows better support
of Gtk3 plugins.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/30 07:46:37

Modified files:
	usr.sbin/httpd : httpd.c proc.c 

Log message:
Terminate daemon using the socket status instead of watching SIGCHLD or
kill()ing child process.

"Looks good to me" millert@
ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/30 07:50:13

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Make sure to not decrease packet size when running with -v.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/30 07:56:14

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

Log message:
use a mixture of .Dl and .Bd -compact to reduce the amount of
vertical whitespace, making it easier to see which hostname.if file
relates to which example;


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/30 07:58:12

Modified files:
	sbin/ping      : ping.c 

Log message:
Avoid calling summary() from a signal handler.  This will allow us
to go back to using stdio there.  OK florian@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/30 07:58:24

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Avoid calling summary() from a signal handler.  This will allow us
to go back to using stdio there.  OK florian@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2016/08/30 08:00:46

Modified files:
	infrastructure/man/man1: dpb.1 

Log message:
typo, noticed by Ross L Richardson


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/08/30 08:08:16

Modified files:
	usr.sbin/cron  : user.c 

Log message:
Fix fd leak on error.  OK jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/30 08:28:31

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
summary() is no longer called from a signal handler, so it can use
stdio and does not need the workarounds.
ok florian millert


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/08/30 08:31:53

Modified files:
	usr.sbin/httpd : httpd.h logger.c proc.c server.c 

Log message:
Kill (remove) the ps_pid from privsep struct since it is not being used
anymore. Also fix the process initialization prototypes.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/30 08:34:59

Modified files:
	usr.bin/openssl: apps.c apps.h s_time.c 

Log message:
Add OPTION_ARG_TIME for parsing a (64 bit if needed) time_t
prodding & ok jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/30 08:44:37

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

Log message:
Update to feh-2.17


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/30 08:44:45

Modified files:
	lib/libutil    : logwtmp.c pty.c readlabel.c uucplock.c 

Log message:
Use O_CLOEXEC when opening fds local to a function

ok jca@ krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 08:51:56

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

Log message:
Update to geary 0.11.2, reminded by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/30 08:52:09

Modified files:
	lib/libutil    : uucplock.c 

Log message:
Use a constant format string and output the variable part with %s

ok krw@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/30 08:56:39

Modified files:
	libexec/ftpd   : ftpd.c 

Log message:
remove ifdef for all the features we have.
retain disabled ip4in6 code until its future is decided.
ok deraadt jca


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/08/30 09:01:28

Modified files:
	databases/hs-HDBC-mysql: Makefile distinfo 

Log message:
Update to HDBC-mysql-0.6.6.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/30 09:05:41

Modified files:
	devel/reposurgeon: Makefile distinfo 

Log message:
update to reposurgeon-3.38


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 09:05:52

Modified files:
	mail/mozilla-thunderbird: Makefile distinfo 
	mail/thunderbird-i18n: Makefile.inc distinfo 

Log message:
Update to thunderbird 45.3.0 / lightning 4.7.3.0

- See https://www.mozilla.org/en-US/thunderbird/45.3.0/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/30 09:11:20

Modified files:
	devel/libdwarf : Makefile distinfo 
	devel/libdwarf/patches: patch-libdwarf_Makefile_in 

Log message:
update to libdwarf-20160613


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/30 09:19:49

Log message:
    Import graphics/fotowall
    
    Fotowall is an opensource creative tool that lets you play with your pixels as
    you've always wanted! Make the perfect arrangement with your photos, add text,
    live video from your webcam and the best internet pictures.
    
    With fotowall you can:
    * create original pictures, wallpapers, postcards and covers
    * print superbig posters with a small printer
    * play with live video, internet content, text and picture
    
    OK landry@
    
    Status:
    
    Vendor Tag:	awolk
    Release Tags:	awolk_20160830
    
    N ports/graphics/fotowall/Makefile
    N ports/graphics/fotowall/distinfo
    N ports/graphics/fotowall/patches/patch-3rdparty_enricomath_h
    N ports/graphics/fotowall/pkg/PLIST
    N ports/graphics/fotowall/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/30 09:22:07

Modified files:
	geo/osm2pgsql  : Makefile distinfo 

Log message:
Update to osm2pgsql-0.90.1

tested by landry@ and Solène Rapenne, thanks!
ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/30 09:24:06

Modified files:
	graphics       : Makefile 

Log message:
Add graphics/fotowall to build


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 09:56:09

Modified files:
	editors/qscintilla: Makefile distinfo 
	editors/qscintilla/patches: patch-Qt4Qt5_qscintilla_pro 
	editors/qscintilla/pkg: PLIST 

Log message:
Update to qscintilla 2.9.3.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 09:57:09

Modified files:
	editors/py-qscintilla: Makefile distinfo 
	editors/py-qscintilla/pkg: PLIST 
Removed files:
	editors/py-qscintilla/patches: patch-Python_configure_py 

Log message:
Update to py-qscintilla 2.9.3

tested with hgview, tortoisehg and qgis.
ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 09:59:24

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

Log message:
Update to py-sip 4.18.1

As usual, things tend to break at runtime with sip, at least qgis and
tortoisehg have been tested. Yell if your favourite app breaks.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 10:01:02

Modified files:
	x11/py-qt4     : Makefile 

Log message:
Bump REVISION-main after py-sip update to be on the safe side


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 10:02:17

Modified files:
	x11/py-qt5     : Makefile distinfo 
	x11/py-qt5/patches: patch-configure_py 
	x11/py-qt5/pkg : PLIST-docs PLIST-main 

Log message:
Update to py-qt5 5.7.

Tested by jasper@ with qutebrowser.
ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 10:14:28

Modified files:
	x11/py-qt5/pkg : PLIST-docs 

Log message:
Thanks to make update-plist, a wrong ${MODPY_PY_PREFIX} snuck in,
preventing py3-qt5-docs to package. Whack it with a large hammer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 10:21:26

Modified files:
	geo/mapproxy   : Makefile distinfo 
	geo/mapproxy/pkg: PLIST 

Log message:
Update to mapproxy 1.9.0.

https://mapproxy.org/blog/new-mapproxy-1.9.0-release/


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/30 10:30:49

Log message:
    Import devel/lua-bit32
    
    bit32 is the native Lua 5.2 bit manipulation library, in the version
    from Lua 5.3; it is compatible with Lua 5.1, 5.2 and 5.3.
    --
    We submitted the same port independently. Importing this after
    we both reviewed the differences at g2k16
    
    OK jsg@
    
    Status:
    
    Vendor Tag:	awolk
    Release Tags:	awolk_20160830
    
    N ports/devel/lua-bit32/Makefile
    N ports/devel/lua-bit32/distinfo
    N ports/devel/lua-bit32/pkg/DESCR
    N ports/devel/lua-bit32/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 10:36:49

Modified files:
	infrastructure/db: user.list 

Log message:
uncomment _facette user


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/30 10:37:21

Modified files:
	devel          : Makefile 

Log message:
Add devel/lua-bit32 to build


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/08/30 10:45:54

Modified files:
	lib/libfuse    : fuse_ops.c fuse_private.h 
	share/man/man9 : fb_setup.9 
	sys/miscfs/fuse: fuse_device.c fuse_file.c fuse_lookup.c 
	                 fuse_vfsops.c fuse_vnops.c fusebuf.c 
	sys/sys        : fusebuf.h 

Log message:
Use struct stat for storing attributes in fusebufs, because using struct
vattr in userspace is suboptimal as some related helpers are not
available, e.g. VATTR_NULL() and IFTOVT(). The conversion is now done in
the kernel where it belongs. As a side effect the <sys/vnode.h> include
can be removed from libfuse.

tweaks and ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/30 10:58:45

Modified files:
	devel/ccache   : Makefile distinfo 
	devel/ccache/patches: patch-cleanup_c patch-execute_c 
	                      patch-util_c 

Log message:
update to ccache-3.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/30 11:08:06

Modified files:
	audio/py-mutagen: Makefile distinfo 
	audio/py-mutagen/pkg: PLIST 

Log message:
update to py-mutagen-1.34.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/30 11:08:09

Modified files:
	audio/quodlibet: Makefile distinfo 
	audio/quodlibet/pkg: PLIST 

Log message:
update to quodlibet-3.7.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 11:34:00

Log message:
    Import facette 0.3.1pre0.
    
    Facette is a web application to display time series data from various
    sources — such as collectd, Graphite or InfluxDB — on graphs, designed
    to be easy to setup and to use.
    
    Uses npm install during build to fetch dependencies, so bundle them in a
    separate tarball and selfhost them.
    
    www: http://facette.io
    
    with feedback & ok ajacoutot@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20160830
    
    N ports/sysutils/facette/Makefile
    N ports/sysutils/facette/distinfo
    N ports/sysutils/facette/patches/patch-Makefile
    N ports/sysutils/facette/patches/patch-docs_examples_providers_collectd_json
    N ports/sysutils/facette/patches/patch-docs_examples_facette_json
    N ports/sysutils/facette/pkg/PLIST
    N ports/sysutils/facette/pkg/facette.rc
    N ports/sysutils/facette/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/30 11:34:53

Modified files:
	sysutils       : Makefile 

Log message:
+facette


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2016/08/30 13:47:23

Modified files:
	sys/msdosfs    : denode.h msdosfs_vnops.c 

Log message:
Revert "Implement VFS read clustering for MSDOSFS"

This caused garbage to be written instead of blocks of 0-bytes if a
file is extended by seeking past the end. This happens for example
when extracting files containing lots of 0-bytes with tar.

ok mpi@

Details of original commit:

msdosfs_vnops.c revision 1.105
denode.h revision 1.28
date: 2016/01/13 10:00:55;  author: mpi;  commitid: ru9jHQwQX09BC5Bw;

Implement VFS read clustering for MSDOSFS.

The logic used in msdosfs_bmap() to loop calling pcbmap() comes from
FreeBSD and is not really efficient but it is good enough since it is
only called when generating I/O.

With this diff I get a 100% improvement when reading big files from a
crappy USB stick.

With this and bread_cluster(9) modified to not re-fetch B_CACHED buffers,
reading large contiguous files with chunk sizes of MAXPHYS is almost as
fast as physio(9) on the same device.

For a 'real world' example, when copying music files from a USB stick I
see a speed jump from 15MB/s on -current to 24Mb/s with this diff.

While here rename some 'lbn' variables into 'cn' to better reflect what
we're dealing with.

Tested by Mathieu, with support from deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/08/30 14:18:17

Modified files:
	sys/arch/amd64/conf: files.amd64 

Log message:
Enable raspos24 for efifb.  This makes qemu with UEFI start working.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/08/30 14:31:09

Modified files:
	sys/arch/amd64/stand/efiboot: efiboot.c 

Log message:
Use MaxMode to terminate the mode iteration.  Actually the old way
couldn't interate the ConsOut modes properly on qemu.

input NONAKA Kimihiro


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/30 15:05:50

Modified files:
	net/syncthing  : Makefile distinfo 
	net/syncthing/patches: patch-build_go 
	net/syncthing/pkg: PLIST 

Log message:
net/syncthing: update to 0.14.5

From Michael McConville.

OK czarkoff@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/08/30 15:33:58

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
when configuring the daemon, assign values to the structure being conf-ed,
not the global structure. this worked by accident.

ok eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/30 15:36:54

Modified files:
	usr.bin/mandoc : dbm_map.c 

Log message:
less confusing warning message about negative offsets


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/30 15:58:59

Modified files:
	usr.bin/mandoc : dbm.c 

Log message:
When the database is corrupt in the sense of containing invalid
pointers in the pages table, do not access NULL pointers, but
gracefully handle the errors.
Similar patches will be needed for the macro tables, too.
<attila at stalphonsos dot com> audited the code and pointed out to me
that dbm_get() can return NULL for corrupted databases, but that isn't
handled properly at various places.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/30 16:20:03

Modified files:
	regress/usr.bin/mandoc/db/dbm_dump: dbm_dump.c 
	regress/usr.bin/mandoc/db/out: all.derr all.mout 
	regress/usr.bin/mandoc/db/run: Makefile 
Added files:
	regress/usr.bin/mandoc/db/out: all.merr badarch.dout 
	                               badarch0.dout baddesc.dout 
	                               baddesc0.dout badfile.dout 
	                               badfile0.dout badname.dout 
	                               badname0.dout badsect.dout 
	                               badsect0.dout threearch.dout 

Log message:
Test handling of invalid pointers in the pages table.
In such cases, do not access NULL pointers in dbm_dump.
Make the setup in the run/Makefile a bit more systematic.
Output starts getting too long, so make everything silent;
you can always use "make -dl" to debug specific tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/30 17:29:04

Modified files:
	sys/net        : pipex.c 

Log message:
pool_setipl

ok yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/30 17:29:39

Modified files:
	sys/net        : radix.c route.c 

Log message:
pool_setipl

ok claudio@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/08/30 17:30:37

Modified files:
	sys/net        : pfkeyv2.c 

Log message:
pool_setipl

ok markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/08/30 22:46:21

Modified files:
	x11/smtube     : Makefile distinfo 

Log message:
Update for Smtube to 16.7.2.

Tested by Josh Grosse, THANKS!


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/08/30 22:48:43

Modified files:
	games/primes   : pattern.c primes.c 

Log message:
Fix a bogus comment: "factors of" -> "coprime to".  Replace the
nonsensical "if and only iff" with "if and only if" and zap some
trailing whitespace.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/08/30 23:12:47

Modified files:
	www/xombrero   : Makefile 

Log message:
Xombrero needs WX.

From Bryan Linton.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/08/31 00:55:39

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Style, and clarify some out of date comments


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/08/31 01:22:43

Modified files:
	share/man/man4 : audio.4 
	sys/dev        : audio.c audio_if.h 
	sys/sys        : audioio.h 
	sys/kern       : kern_pledge.c 

Log message:
Delete unused ioctls and associated macros. Move macros that are still
used internally by low-level drivers from sys/audioio.h to
dev/audio_if.h instead of deleting them.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 01:31:20

Modified files:
	usr.sbin/nsd   : buffer.h configlexer.lex configparser.y 
	                 configure.ac ipc.c namedb.c namedb.h 
	                 nsd-checkconf.c nsd.conf.5.in 
	                 nsd.conf.sample.in nsec3.c options.c options.h 
	                 query.c server.c util.h xfrd-disk.c xfrd-disk.h 
	                 xfrd.c zonec.c 

Log message:
update to 4.1.11
"Working fine here." millert@
OK dlg, sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 01:32:07

Modified files:
	usr.sbin/nsd   : configure 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 01:58:01

Modified files:
	net/bro        : Makefile 

Log message:
Missing bdep on bison.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/31 02:03:20

Modified files:
	sys/net        : if_bridge.c 

Log message:
Drop gif(4) support, etherip(4) is what you want now.

ok sthen@, deraadt@, dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 02:06:47

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

Log message:
Update to py-botocore-1.4.50.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 02:07:10

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

Log message:
Update to py-s3transfer-0.1.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 02:07:34

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.10.60.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 02:08:45

Modified files:
	productivity/tryton/trytond: Makefile distinfo 

Log message:
Update to trytond-3.2.17.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/31 02:13:17

Modified files:
	sys/net        : route.c 

Log message:
Do not flush RTF_CLONED children when adding a new route.

New RTF_CLONING routes don't have children, but the kernel might end up
removing routes from a compatible route.  This bug has been introduced
with the support for multiple RTF_CLONING routes.

Also make sure to release possible RTF_CACHED route *before* flushing
RTF_CLONED children when deleting a route.

KASSERT() reported by akfaew, sthen@ and martijn@

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/31 02:13:49

Modified files:
	sys/net        : route.h 

Log message:
G/C rt_defmask4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 02:16:19

Modified files:
	www/py-meld3   : Makefile distinfo 

Log message:
Update to py-meld3-1.0.2.

from frantisek holop (former maintainer), thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/31 02:33:19

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-configure 
	                   patch-src_librustc_session_filesearch_rs 
	                   patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_ext_net_rs 
	                   patch-src_test_run-pass_backtrace_rs 
	lang/rust/pkg  : PLIST-doc PLIST-main 
Added files:
	lang/rust/patches: patch-mk_rt_mk 
	                   patch-src_tools_compiletest_src_runtest_rs 
	                   patch-src_tools_tidy_src_main_rs 
Removed files:
	lang/rust/patches: patch-mk_main_mk 

Log message:
Update to rust 1.11.0, from semarie@, thanks!
All tests passing here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/31 02:33:37

Modified files:
	devel/cargo    : Makefile distinfo 
	devel/cargo/patches: patch-configure 
	devel/cargo/pkg: PLIST 
Added files:
	devel/cargo/patches: patch-tests_cargotest_support_paths_rs 

Log message:
Update to cargo 0.12.0, from semarie@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 02:47:11

Modified files:
	etc/rc.d       : rc.subr 

Log message:
use tab.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/31 02:47:12

Modified files:
	geo/geoclue2   : Makefile 
Removed files:
	geo/geoclue2/patches: patch-libgeoclue_Makefile_in 

Log message:
remove now-unneeded patch, it appears the underlying issue has been auto-fixed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/31 02:56:07

Modified files:
	sysutils/facette: Makefile 
	sysutils/facette/pkg: DESCR 

Log message:
un-utf8 DESCR


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/31 03:00:26

Modified files:
	devel/ruby-rspec/serverspec: Makefile distinfo 

Log message:
update to serverspec-2.36.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/31 03:38:47

Modified files:
	usr.bin/calendar: io.c 

Log message:
fix fd leaks in error paths
ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/31 03:45:00

Modified files:
	usr.bin/vis    : vis.c 

Log message:
When iterating over the list of input files close them when
processing of each is done.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/31 03:48:26

Modified files:
	usr.bin/audioctl: audioctl.c 

Log message:
close an opened fd before returning from main
ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/08/31 04:06:04

Modified files:
	lib/libssl/src/crypto/ec: ec_lib.c 

Log message:
Fix some very unnecessary convoultion.
ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 04:06:41

Modified files:
	usr.bin/passwd : local_passwd.c 

Log message:
nicer format strings and use dprintf instead of write


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/08/31 04:11:52

Modified files:
	devel/luaposix : Makefile distinfo 
	devel/luaposix/pkg: PLIST 
Removed files:
	devel/luaposix/patches: patch-test_lua 

Log message:
Update devel/luaposix to 33.4.0

Changes:
- add myself as MAINTAINER
- drop the patch
- switch to github for homepage & tarballs (old page long defunct)
- the code is now MIT, update license marker
- they have a Makefile now so drop custom targets
- depend on devel/lua-bit32 for lua5.1
- plist updated with more docs

--
We submitted the same port independently. Importing this after
we both reviewed the differences at g2k16

OK jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/08/31 04:18:08

Modified files:
	usr.sbin/smtpd : aliases.c delivery_maildir.c lka_session.c 
	                 parse.y smtpd-defines.h smtpd.conf.5 smtpd.h 
	                 util.c 

Log message:
allow overriding the subaddressing delimiter with subaddressing-delimiter
keyword, the default is still +

ok eric@, sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/08/31 04:33:15

Modified files:
	regress/sbin/route: Makefile 

Log message:
Document what the various test here do. With mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/08/31 05:00:15

Modified files:
	regress/sbin/route: Makefile 
Added files:
	regress/sbin/route: rttest22.ok rttest24.ok rttest26.ok 
	                    rttest27.ok 

Log message:
Add a bunch of regress test to verify the RTM_CHANGE behaviour of mpath
and non-mpath routes. Some of the tests currently fail.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/31 05:05:05

Modified files:
	sys/netinet    : tcp_input.c tcp_subr.c 

Log message:
Use 'sc_route{4,6}' directly instead of casting them to 'struct route *'.

This is another little step towards deprecating 'struct route{,_in6}'.

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/31 05:05:48

Modified files:
	sys/dev/pckbc  : wskbdmap_mfii.c 
	sys/dev/wscons : wskbdutil.c wsksymdef.h 

Log message:
Estonian keymap

Original diff from Taavi Tani in 2005 (!), adapted to -current by Mart
Tonso.  ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 05:08:05

Modified files:
	x11/gnome/nautilus: Makefile distinfo 

Log message:
Update to nautilus-3.20.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/31 05:08:37

Modified files:
	sys/dev/usb    : ukbdmap.c 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 05:42:09

Modified files:
	usr.bin/openssl: ca.c 

Log message:
We don't need any VMS access tricks.
ok beck tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2016/08/31 06:22:28

Modified files:
	usr.bin/mg     : buffer.c 

Log message:
Fix a bug reported by Han Boetes. Easily reproducible via:

mg
c-x b RET
c-x k RET

mg segvs. Initial diff from Joachim Nilsson. This diff tested
by Han and Joachim and ok florian@ jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/31 06:24:12

Modified files:
	sys/arch/arm/arm: pmap7.c 

Log message:
In pmap_activate instead of doing disable_interrupts/enable_interrupts
nested inside of splhigh/splx just disable and enable interrupts
once with inline cps instructions.

Remove uneeded pcb_pl1vec block as well, suggested by kettenis.

ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/31 06:25:45

Modified files:
	driver/xf86-input-void: ChangeLog Makefile.in aclocal.m4 
	                        config.guess config.h.in config.sub 
	                        configure configure.ac depcomp 
	                        install-sh ltmain.sh missing 
	driver/xf86-input-void/man: Makefile.in 
	driver/xf86-input-void/src: Makefile.am Makefile.in void.c 
Added files:
	driver/xf86-input-void: compile 

Log message:
Update to xf86-input-void 1.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/08/31 06:33:03

Modified files:
	usr.bin/calendar/calendars: calendar.birthday 

Log message:
new: Joe Ossanna 1928-1977
from Jan Stary <hans at stare dot cz>


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/31 06:36:13

Modified files:
	driver/xf86-video-rendition: ChangeLog README configure.ac 

Log message:
Update to xf86-video-rendition 4.2.6.
No actual source code changes since they were already pulled from
upstreams before this driver version was released.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 06:39:34

Modified files:
	net/py-ipaddress: Makefile 
	net/py-ipaddress/pkg: PLIST 

Log message:
Add a python3 FLAVOR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 06:40:22

Modified files:
	net            : Makefile 

Log message:
+py-ipaddress,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 06:41:19

Modified files:
	usr.bin/passwd : local_passwd.c 

Log message:
replace obsolete getpass with readpassphrase.
ok gsoares


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/31 06:41:48

Modified files:
	driver/xf86-video-rendition: Makefile.in aclocal.m4 config.guess 
	                             config.sub configure depcomp 
	driver/xf86-video-rendition/man: Makefile.in 
	driver/xf86-video-rendition/src: Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 06:44:52

Modified files:
	sysutils/py-psutil: Makefile 
	sysutils/py-psutil/pkg: PLIST 

Log message:
Add a python3 FLAVOR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 06:45:22

Modified files:
	sysutils       : Makefile 

Log message:
+py-psutil,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 06:46:45

Modified files:
	sys/arch/i386/conf: GENERIC 
	sys/arch/alpha/conf: GENERIC 
	sys/dev/isa    : files.isa files.isapnp 
Removed files:
	sys/dev/isa    : seagate.c wss.c wss_isa.c wss_isapnp.c wssreg.h 
	                 wssvar.h ym.c ym_isapnp.c ymvar.h 

Log message:
remove some ISA drivers for devices not recently seen in the wild.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 06:48:23

Modified files:
	share/man/man4 : Makefile 
	share/man/man4/man4.i386: Makefile 
Removed files:
	share/man/man4 : ym.4 
	share/man/man4/man4.i386: sea.4 wss.4 

Log message:
remove ym, wss, and sea drivers


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/31 06:53:39

Modified files:
	driver/xf86-video-s3virge: ChangeLog INSTALL Makefile.in 
	                           aclocal.m4 config.guess config.sub 
	                           configure configure.ac depcomp 
	driver/xf86-video-s3virge/man: Makefile.in 
	driver/xf86-video-s3virge/src: Makefile.in s3v_driver.c 
Added files:
	driver/xf86-video-s3virge: compile 

Log message:
Update to xf86-video-s3virge 1.10.7


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/08/31 06:57:31

Modified files:
	sbin/dhclient  : bpf.c clparse.c dhclient.c dhcpd.h dispatch.c 
	                 options.c 

Log message:
Remove the 'client' global and make it per-ifp.

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/08/31 06:59:59

Modified files:
	sys/dev/ic     : aic79xx.c 

Log message:
Remove unnecessary 'error' assignment


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/31 07:09:09

Modified files:
	usr.bin/rcs    : rlog.1 rlog.c 

Log message:
rlog: add -E and -S options to configure revision separators, to
work around commits that might have the default strings in them

ok tom deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 07:10:15

Modified files:
	x11/nagstamon  : Makefile distinfo 
	x11/nagstamon/patches: patch-Nagstamon_Config_py patch-setup_py 
	x11/nagstamon/pkg: PLIST 

Log message:
Update to nagstamon-2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/31 07:13:02

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/pkg   : PLIST 
Removed files:
	geo/qgis/patches: patch-python_core___init___py patch-utf 

Log message:
Update to qgis 2.16.2.

Set USE_WXNEEDED to fix a crash in QtWebKit at startup (this should
probably be fixed in QtWebKit itself), add py-requests to RDEP for
metasearch plugin, and remove sip-related patches added in 2.16.1 update
- updating sip made them useless at last.


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/08/31 07:13:58

Modified files:
	sys/uvm        : uvm_map.c 

Log message:
Simplify arguments to uaddr_*_create functions

min is already clamped before invoking these functions.
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/08/31 07:16:47

Modified files:
	gnu/usr.bin/cvs/src: admin.c 

Log message:
admin: add -C option to set a revision's commitid

this version bails out if the revision has a commitid already

ok guenther deraadt tom


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/08/31 07:18:57

Modified files:
	libexec/ld.so/alpha: ldasm.S syscall.h 
	libexec/ld.so/sh: ldasm.S syscall.h 

Log message:
alpha and sh have TCB_SET() macros so don't need _dl_set_tcb()

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/08/31 07:22:46

Modified files:
	lib/libssl/src/crypto/x509v3: v3_utl.c x509v3.h 

Log message:
Bring in functions used by stunnel and exim from BoringSSL - this brings
in X509_check_host, X509_check_email, X509_check_ip, and X509_check_ip_asc,
with some cleanup on the way in by myself and jsing@
ok bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/08/31 07:26:35

Modified files:
	lib/libssl/src/crypto/bn: bn_gf2m.c 

Log message:
Avoid undefined-behavior right-shifting by a word-size # of bits.

Found with STACK, originally from OpenSSL, ok @beck


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/31 07:32:27

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
Rename ifconfig's setinstance() function to setrdomain(). Less confusing.
ok claudio@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/31 07:33:00

Modified files:
	www/squidclamav: Makefile distinfo 

Log message:
update to squidclamav-6.16


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/08/31 07:33:52

Modified files:
	sys/net80211   : ieee80211_ioctl.c 

Log message:
If a driver reports RSSI in the 20-100 range, convert to a negative value.
Fixes dBm values displayed by 'ifconfig scan' with several drivers.
ok mpi@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/31 07:43:37

Modified files:
	libexec/ftpd   : ftpd.c 

Log message:
Don't attempt to support IPv4-mapped IPv6 addresses.

We don't consider support for those addreses as desirable, so let's not
give a bad example by keeping application code to handle them.  This is
dead code on OpenBSD anyway since we do not support IPv4-mapped stuff.
But let's keep the check to log and warn the admin if the code gets
ported elsewhere.  Porters of this code should ensure that IPv6 sockets
can't see IPv4-mapped addresses by using the IPV6_V6ONLY sockopt.

Discussed with & ok tedu@

For a rationale, see https://tools.ietf.org/html/draft-itojun-v6ops-v4mapped-harmful-02


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/31 07:53:11

Modified files:
	devel/gettext  : Makefile distinfo 
	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: PLIST 

Log message:
maintenance update to 0.19.8.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/31 07:53:16

Modified files:
	driver/xf86-video-vesa: ChangeLog Makefile.in aclocal.m4 
	                        config.h.in configure configure.ac 
	driver/xf86-video-vesa/src: vesa.c vesa.h 
Added files:
	driver/xf86-video-vesa: compile 

Log message:
Update to xf86-video-vesa 2.3.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/31 07:54:58

Modified files:
	share/man/man4 : isa.4 isapnp.4 midi.4 
	share/man/man4/man4.i386: sb.4 

Log message:
remove Xrs to ym, sea, and wss;


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/31 07:55:08

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Use reboot_timeout (default: 1) instead of initial_interval (default: 3) when
the interface reboots. Thus the fallback from REQUEST to DISCOVER will take
place after the intended reboot_timeout seconds.

ok tedu@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/31 07:55:32

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

Log message:
word fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/08/31 08:15:07

Modified files:
	sys/kern       : kern_fork.c 

Log message:
proc_trampoline_mp hasn't needed curproc since 2011

ok guenther@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/31 08:20:57

Log message:
    Import archivers/brotli.  ok sthen@.
    
    Brotli is a generic-purpose lossless compression algorithm that
    compresses data using a combination of a modern variant of the LZ77
    algorithm, Huffman coding and 2nd order context modeling, with a
    compression ratio comparable to the best currently available
    general-purpose compression methods. It is similar in speed with
    deflate but offers more dense compression.
    
    Status:
    
    Vendor Tag:	pascal
    Release Tags:	pascal_20160831
    
    N ports/archivers/brotli/Makefile
    N ports/archivers/brotli/distinfo
    N ports/archivers/brotli/pkg/PLIST
    N ports/archivers/brotli/pkg/DESCR
    N ports/archivers/brotli/patches/patch-tests_compatibility_test_sh
    N ports/archivers/brotli/patches/patch-tests_roundtrip_test_sh
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/31 08:21:26

Modified files:
	archivers      : Makefile 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/31 08:23:37

Modified files:
	sys/arch/armv7/vexpress: vexpress_machdep.c 

Log message:
remove no longer required pl011var.h include


CVSROOT:	/cvs
Module name:	ports
Changes by:	florian@cvs.openbsd.org	2016/08/31 08:25:04

Modified files:
	net/powerdns   : Makefile distinfo 
	net/powerdns/pkg: PLIST-main 
Added files:
	net/powerdns/patches: patch-pdns_dns_random_cc 
	                      patch-pdns_opensslsigners_cc 

Log message:
Update to 4.0.1
c++11 clue bat & OK sthen@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/31 08:26:15

Modified files:
	driver/xf86-video-chips/man: Makefile.in 
	driver/xf86-video-chips/src: Makefile.in ct_accel.c ct_ddc.c 
	                             ct_driver.c 
	driver/xf86-video-chips/util: Makefile.am Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 08:56:52

Removed files:
	sys/dev/ic     : mc68681.c mc68681reg.h mc68681var.h 

Log message:
these drivers should have perished in the same fire as mvme88k
discovered by the ever alert mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/08/31 09:00:02

Modified files:
	sys/net        : if_gre.c 
	share/man/man4 : gre.4 

Log message:
Split gre(4) into two interfaces: gre(4) and mobileip(4).

Like vlan/svlan and tun/tap, it remains a single driver that decides
on the mode based on the interface name.  This removes the need for
removing the default link0 flag to turn gre into Mobile IP mode.
Using linkX / IFF_LINK{0,1,2} for interface modes is a deprecated style.

OK millert@ dlg@ many

Not much consensus on the name but mobileip is also used for the sysctls, so
OK henning@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/31 09:00:03

Modified files:
	geo/geoclue2   : Makefile 
Added files:
	geo/geoclue2/patches: patch-libgeoclue_Makefile_in 

Log message:
readd patch, it didn't autofix on i386*.p. ok aja


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/08/31 09:11:22

Modified files:
	sys/arch/amd64/stand/efiboot: Makefile.common conf.c efidev.c 

Log message:
Enable cd9660 in efiboot.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 09:11:29

Modified files:
	sysutils/login_krb5: Makefile distinfo 

Log message:
Update to login_krb5-6.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/08/31 09:13:57

Modified files:
	sys/ntfs       : ntfs_subr.c 

Log message:
Remove some unnecessary assignments in ntfs_subr.c, and move one
assignment into the for() loop where it looks better

ok otto@ krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 09:15:31

Modified files:
	sysutils/facette: Makefile 

Log message:
Blank line after rcs id.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/31 09:21:34

Modified files:
	sys/arch/sgi/hpc: wskbdmap_sgi.c 

Log message:
regen

Reminded by miod


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/08/31 09:24:04

Modified files:
	usr.sbin/smtpd : parse.y ruleset.c smtpd.conf.5 smtpd.h 

Log message:
introduce "authenticated" parameter so rules may apply to authenticated
sessions specifically

ok eric@, sunil@, jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/31 09:25:03

Log message:
    import elftoolchain-0.7.1
    
    BSD-licensed implementation of compilation tools (nm, ar, as, ld, etc.)
    for the ELF object format.
    
    Currently only builds libdwarf/libelf
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20163108
    
    N ports/devel/elftoolchain/Makefile
    N ports/devel/elftoolchain/distinfo
    N ports/devel/elftoolchain/pkg/PLIST
    N ports/devel/elftoolchain/pkg/DESCR
    N ports/devel/elftoolchain/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/08/31 09:25:27

Modified files:
	sys/dev/pckbc  : wskbdmap_mfii.c 

Log message:
sys/arch/sgi/hpc/wskbdmap_sgi.c should be regen'd too.

Requested by miod


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/31 09:26:22

Log message:
    import ctftools, from illumos via freebsd
    
    Collection of CTF tools: ctfconvert, ctfdump and ctfmerge.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20163108
    
    N ports/devel/ctftools/Makefile
    N ports/devel/ctftools/distinfo
    N ports/devel/ctftools/pkg/PLIST
    N ports/devel/ctftools/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/31 09:27:05

Modified files:
	devel          : Makefile 

Log message:
+ctftools
+elftoolchain


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/08/31 09:27:09

Modified files:
	driver/xf86-video-sis: ChangeLog Makefile.in aclocal.m4 
	                       config.guess config.sub configure 
	                       configure.ac depcomp 
	driver/xf86-video-sis/man: Makefile.in 
	driver/xf86-video-sis/src: Makefile.in sis.h sis300_accel.c 
	                           sis310_accel.c sis_accel.c 
	                           sis_driver.c 

Log message:
Update to xf86-video-sis 0.10.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/08/31 09:32:40

Modified files:
	devel/ctftools : Makefile 
	devel/ctftools/pkg: PLIST 

Log message:
hookup manpages


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/08/31 09:40:42

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

Log message:
Don't put a device in the wake device list if _STA says it's not there.

Fixes at least one machine that woke up from sleep / poweroff immediately.

ok kettenis@, tested by kettenis and martijn@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 09:51:47

Modified files:
	sys/arch/i386/conf: GENERIC 

Log message:
Support A Radio Free Europe!
remove long disabled radio devices
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 09:53:06

Modified files:
	sys/dev/isa    : files.isa 
	sys/dev/pci    : files.pci 
Removed files:
	sys/dev/isa    : aztech.c radiotrack.c radiotrack2.c rt_isa.c 
	                 rt_isapnp.c sf16fmr.c sf16fmr2.c 
	sys/dev/pci    : gtp.c 

Log message:
Support A Radio Free Europe!
remove long disabled radio devices
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 09:55:46

Modified files:
	share/man/man4 : radio.4 
Removed files:
	share/man/man4 : az.4 gtp.4 rt.4 rtii.4 sf2r.4 sfr.4 

Log message:
remove man pages for deleted radio drivers


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 09:58:12

Modified files:
	share/man/man4 : Makefile 

Log message:
remove links for radio drivers


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/08/31 09:58:35

Modified files:
	share/man/man4 : Makefile 

Log message:
missed one


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/31 10:03:19

Modified files:
	databases/py-sqlite2: Makefile distinfo 
	databases/py-sqlite2/pkg: PLIST 

Log message:
Update to py-sqlite2-2.8.3

OK sthen@, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/31 10:14:27

Log message:
    Import py-apipkg.
    
    ---8<---
    With apipkg you can control the exported namespace of a python package
    and greatly reduce the number of imports for your users. It is a small
    pure python module that works on virtually all Python versions,
    including CPython2.3 to Python3.1, Jython and PyPy. It co-operates well
    with Python’s help() system, custom importers (PEP302) and common
    command line completion tools.
    --->8---
    
    Input from, and OK, shadchin@
    
    Thanks
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20160831
    
    N ports/devel/py-apipkg/Makefile
    N ports/devel/py-apipkg/distinfo
    N ports/devel/py-apipkg/pkg/PLIST
    N ports/devel/py-apipkg/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/08/31 10:17:47

Modified files:
	devel          : Makefile 

Log message:
Link py-apipkg.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/08/31 10:18:58

Modified files:
	x11/cegui      : Makefile distinfo 
	x11/cegui/patches: patch-cegui_src_DynamicModule_cpp 
	                   patch-samples_framework_src_SamplesFrameworkBase_cpp 
	x11/cegui/pkg  : PLIST 
Removed files:
	x11/cegui/patches: 
	                   patch-samples_framework_src_CEGuiGLFWSharedBase_cpp 

Log message:
Update to CEGUI 0.8.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/08/31 10:19:40

Modified files:
	sys/arch/armv7/vexpress: files.vexpress 
	sys/arch/armv7/conf: files.armv7 
	sys/arch/armv7/armv7: platform.c 
Added files:
	sys/arch/armv7/dev: plrtc.c pluart.c 
Removed files:
	sys/arch/armv7/vexpress: pl011.c pl011reg.h pl011var.h pl031.c 

Log message:
pl011 and pl031 are licenseable peripherals from arm present in multiple socs.
Move the pluart and plrtc drivers for them out of the vexpress directory
and into dev to reflect this and rename the files to match the driver names.

discussed with patrick and kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/31 10:39:24

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

Log message:
no need for Xo/Xc here, plus minor tweak;


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/08/31 10:48:33

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

Log message:
Add myself to geo/openbsd-developers.

OK awolk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/31 10:54:33

Modified files:
	share/man/man4 : isa.4 isapnp.4 pci.4 
	share/man/man9 : radio.9 

Log message:
remove trailing Xr to radio devices;


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/31 11:50:39

Modified files:
	net/haproxy    : Makefile distinfo 

Log message:
Update to haproxy-1.6.9


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/08/31 12:16:54

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

Log message:
shuffle this page a little, to make it read better;


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/31 14:01:57

Modified files:
	sys/dev/isa    : files.isapnp 

Log message:
Remove rt leftovers in isapnp, unbreak kernel config.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 14:25:23

Modified files:
	devel/py-apipkg: Makefile 
	devel/py-apipkg/pkg: DESCR 

Log message:
Remove UTF-8 from DESCR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 14:30:56

Removed files:
	x11/gnome/user-share: Makefile distinfo 
	x11/gnome/user-share/pkg: DESCR PLIST 

Log message:
Remove gnome-user-share; next version requires systemd and there's no point
in keeping it on life support since there's no future.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 14:31:12

Modified files:
	x11/gnome      : Makefile 

Log message:
-user-share


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 14:31:43

Modified files:
	meta/gnome     : Makefile 

Log message:
x11/gnome/user-share is no more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/31 14:32:53

Modified files:
	lang/php/7.0   : Makefile distinfo 

Log message:
udpate to 7.0.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 14:32:56

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register gnome-user-share removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/08/31 14:33:05

Modified files:
	lang/php/5.6   : Makefile distinfo 

Log message:
update to 5.6.25


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/08/31 14:43:57

Modified files:
	usr.bin/column : column.c 

Log message:
Complete do-over for column to prepare for implementing UTF-8 support.
Fix a few bugs while here, namely:
- Fix the width-calculation of a tab-character
- Correct treatment of files without trailing newlines.
- Repair "-xc 7"
- Overflow protection for the number of rows and columns

Lots of help from and OK schwarze@
Get it in deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 14:43:59

Modified files:
	graphics/shared-color-targets: Makefile distinfo 
	graphics/shared-color-targets/pkg: PLIST 

Log message:
Update to shared-color-targets-0.1.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/08/31 14:47:20

Modified files:
	graphics/goocanvas: Makefile 

Log message:
Make this ignored by PORTROACH.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 14:54:38

Removed files:
	sys/arch/armish/compile: .cvsignore 

Log message:
this little piggy tried to stay around


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 15:00:31

Modified files:
	sbin/dump      : main.c 

Log message:
Delete SIGTRAP, SIGFPE, SIGBUS, and SIGSEGV handlers.  Such patterns
don't help improve code because they block core dumps and there reduce
inspection of bugs thus work on fixes.  Secondly, these handlers are
*stdio signal races* so they can produce different coredumps deep inside
stdio.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/31 15:32:06

Modified files:
	sys/net        : route.h 
	sbin/route     : route.c 
	share/man/man4 : route.4 

Log message:
Remove unused RTF_MASK route flag.
Requested by and OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 15:34:50

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.socppc md.sparc md.sparc64 md.zaurus 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/08/31 15:49:01

Modified files:
	usr.sbin/smtpd : mproc.c queue.c smtpd.h 

Log message:
Remove dead code. queue_flow_control() has never been used and is
probably a bad idea.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/08/31 15:57:57

Modified files:
	x11/xfce4/xfce4-weather: Makefile distinfo 

Log message:
Update to xfce4-weather 0.8.8


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:00:15

src/usr.sbin/acme-client

Update of /cvs/src/usr.sbin/acme-client
In directory cvs.openbsd.org:/tmp/cvs-serv58842/usr.sbin/acme-client

Log Message:
Directory /cvs/src/usr.sbin/acme-client added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:01:42

Added files:
	usr.sbin/acme-client: ChangeLog Makefile acctproc.c base64.c 
	                      certproc.c chngproc.c dbg.c dnsproc.c 
	                      extern.h fileproc.c http.c http.h jsmn.c 
	                      jsmn.h json.c keyproc.c letskencrypt.1 
	                      main.c netproc.c revokeproc.c rsa.c rsa.h 
	                      sandbox-pledge.c util-pledge.c util.c 

Log message:
Import Kristaps' letskencrypt and call it acme-client in tree.
OK to get it in deraadt@ (and probably beck@)

At least deraadt@, beck@ and otto@ are fine with the name and the
disagreements stopped.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:05:57

Added files:
	usr.sbin/acme-client: acme-client.1 
Removed files:
	usr.sbin/acme-client: letskencrypt.1 

Log message:
oops, use correct filename


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:08:20

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
Some man page clean up:
- make it more httpd centric
- remove mkdir instructions, we create the directories by default
- no 2nd person wording
- remove commented out lines
- add author


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:11:15

Modified files:
	usr.sbin/acme-client: Makefile 

Log message:
use bsd.prog.mk


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/08/31 16:12:43

Modified files:
	graphics/netpbm: Makefile distinfo 
	graphics/netpbm/patches: patch-lib_Makefile 
Added files:
	graphics/netpbm/patches: patch-converter_other_tifftopnm_c 
	                         patch-editor_pnmquantall 
	                         patch-test_pnmquantall_test 

Log message:
update to 10.75.01


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:20:53

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
store files in directories called acme


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:23:13

Modified files:
	etc/mtree      : 4.4BSD.dist 

Log message:
create acme-client directories


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:24:44

Modified files:
	usr.sbin       : Makefile 

Log message:
hook up acme-client


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 16:28:23

Modified files:
	usr.sbin/acme-client: Makefile 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 16:42:19

Modified files:
	usr.sbin/acme-client: acctproc.c base64.c certproc.c 

Log message:
whitespace cleanup


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 16:42:29

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
avoid arith on void *, by using char *


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 16:43:02

Modified files:
	usr.sbin/acme-client: revokeproc.c 

Log message:
ASN1_TIME *atim avoids shadowing time


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/08/31 16:44:29

Modified files:
	regress/sys/net/pf_forward: Makefile 
	regress/sys/net/pf_fragment: Makefile 
	regress/sys/netinet6/rh0: Makefile 

Log message:
Split the check-setup target into smaller parts to make it easier
to configure the regression test machines.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 16:49:09

Modified files:
	usr.sbin/acme-client: chngproc.c dbg.c dnsproc.c extern.h 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 16:57:37

Modified files:
	usr.sbin/acme-client: main.c netproc.c revokeproc.c 

Log message:
revoke -> revocate, to avoid alias
ok florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/08/31 16:59:53

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/pkg: PLIST-tests 
Added files:
	databases/mariadb/patches: patch-sql_signal_handler_cc 

Log message:
update to mariadb-10.0.27, from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:00:17

Modified files:
	usr.sbin/acme-client: fileproc.c http.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/08/31 17:05:30

Modified files:
	lib/libtls     : shlib_version 
	lib/libssl/ssl : shlib_version 
	lib/libcrypto/crypto: shlib_version 

Log message:
Crank minor due to API addition


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/08/31 17:05:40

Modified files:
	editors        : Makefile 

Log message:
+emacs-gtk3

Removing this flavor from editors/Makefile was stupid, as the default
flavor is built since other ports depend on it.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:08:49

Modified files:
	usr.sbin/acme-client: http.h http.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/08/31 17:16:16

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
REQUEST packets are not just sent when an interface reboots. So don't short
circuit the waiting for ACK's by giving up after reboot_timeout.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:19:50

Modified files:
	usr.sbin/acme-client: json.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:25:10

Modified files:
	usr.sbin/acme-client: keyproc.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:30:59

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:36:16

Modified files:
	usr.sbin/acme-client: netproc.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:41:23

Modified files:
	usr.sbin/acme-client: revokeproc.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 17:44:58

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
Bring in license for man page Kristaps just added upstream in
commit 33c4b38b1db65097e4301e982c9cffcb8c3e648d.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 17:46:33

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
We are past 5.8. Also gets rid of asserts as a bonus.
OK benno@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:46:34

Modified files:
	usr.sbin/acme-client: rsa.c sandbox-pledge.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:49:16

Modified files:
	usr.sbin/acme-client: util.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:52:30

Modified files:
	usr.sbin/acme-client: acctproc.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 17:53:58

Modified files:
	usr.sbin/acme-client: base64.c certproc.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2016/08/31 18:02:58

Modified files:
	sys/arch/luna88k/dev: if_le.c 

Log message:
space -> tab


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/08/31 18:03:39

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
knf


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 18:21:36

Modified files:
	usr.sbin/acme-client: Makefile acctproc.c certproc.c chngproc.c 
	                      dnsproc.c extern.h fileproc.c keyproc.c 
	                      main.c netproc.c revokeproc.c 
Removed files:
	usr.sbin/acme-client: sandbox-pledge.c util-pledge.c 

Log message:
Collapse krazy abstractions for other sandbox models, using chroot and
pledge directly as needed.
ok florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/31 18:25:40

Log message:
    Import libnsfb-0.1.4.
    
    LibNSFB is a framebuffer abstraction library, written in C. It is currently
    in development for use with NetSurf and is intended to be suitable for use
    in other projects too.
    
    The overall idea of the library is to provide a generic abstraction to a
    linear section of memory which corresponds to a visible array of pixel
    elements on a display device. Different colour depths are supported and the
    library provides routines for tasks such as drawing onto the framebuffer and
    rectangle copy operations.
    
    ok landry@ (thanks for testing!)
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160831
    
    N ports/www/netsurf/libnsfb/Makefile
    N ports/www/netsurf/libnsfb/distinfo
    N ports/www/netsurf/libnsfb/pkg/DESCR
    N ports/www/netsurf/libnsfb/pkg/PLIST
    N ports/www/netsurf/libnsfb/patches/patch-src_plot_24bpp_c
    N ports/www/netsurf/libnsfb/patches/patch-src_plot_32bpp-xbgr8888_c
    N ports/www/netsurf/libnsfb/patches/patch-src_plot_32bpp-xrgb8888_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 18:25:57

Modified files:
	usr.sbin/acme-client: extern.h 

Log message:
PATH_VAR_EMPTY is not used


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/31 18:26:29

Log message:
    Import libsvgtiny-0.1.4.
    
    Libsvgtiny is an implementation of SVG Tiny, written in C. It is currently
    in development for use with NetSurf and is intended to be suitable for use
    in other projects too.
    
    The overall idea of the library is to take some SVG as input, and return a
    list of paths and texts which can be rendered easily. The library does not
    do the actual rendering.
    
    ok landry@ (thanks for testing!)
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160831
    
    N ports/www/netsurf/libsvgtiny/Makefile
    N ports/www/netsurf/libsvgtiny/distinfo
    N ports/www/netsurf/libsvgtiny/pkg/PLIST
    N ports/www/netsurf/libsvgtiny/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 18:28:59

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
do { } while is easier to eyeball


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/31 18:29:34

Log message:
    Import netsurf-fb-3.5.
    
    Netsurf is a lightweight, standards-compliant web browser originally
    designed for mobile devices. netsurf-fb is its framebuffer frontend.
    
    ok landry@ (thanks for testing!)
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20160831
    
    N ports/www/netsurf/netsurf-fb/distinfo
    N ports/www/netsurf/netsurf-fb/Makefile
    N ports/www/netsurf/netsurf-fb/patches/patch-framebuffer_Makefile_target
    N ports/www/netsurf/netsurf-fb/pkg/DESCR
    N ports/www/netsurf/netsurf-fb/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/31 18:31:07

Modified files:
	www/netsurf    : Makefile 

Log message:
+netsurf-fb,libsvgtiny,libnsfb


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/08/31 18:32:00

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
line wrap usage


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/08/31 18:32:38

Modified files:
	www/netsurf/browser: Makefile 
	www/netsurf/browser/pkg: PLIST 
Added files:
	www/netsurf/browser/patches: patch-Docs_netsurf-gtk_1 

Log message:
Install the manpage, and respect ${CC}.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/08/31 18:35:22

Modified files:
	usr.sbin/acme-client: acctproc.c base64.c certproc.c chngproc.c 
	                      dbg.c dnsproc.c fileproc.c http.c json.c 
	                      keyproc.c main.c netproc.c revokeproc.c 
	                      rsa.c util.c 

Log message:
we don't have config.h


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/08/31 23:49:57

Modified files:
	textproc/py-sphinx: Makefile distinfo 
	textproc/py-sphinx/pkg: PLIST 

Log message:
Update to py-sphinx-1.4.6

bulk tested by ajacoutot@, thanks!
ok ajacoutot@ sthen@ Frantisek Holop (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/01 00:11:59

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

Log message:
Update to pyflakes 1.2.3. Add python3 flavor.

ok Frantisek Holop (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/01 00:22:07

Modified files:
	devel          : Makefile 

Log message:
+pyflakes,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/01 00:56:46

Modified files:
	devel/py-pexpect: Makefile distinfo 
	devel/py-pexpect/patches: patch-tests_test_replwrap_py 
	devel/py-pexpect/pkg: PLIST 

Log message:
Update to py-pexpect 4.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/01 01:09:36

Modified files:
	graphics/feh   : Makefile distinfo 

Log message:
Update to feh-2.17.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 02:26:02

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 02:26:44

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

Log message:
shorten s_client;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 02:27:17

Modified files:
	www/webkitgtk4 : Makefile 

Log message:
Add wxneeded comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 02:28:29

Modified files:
	graphics/clutter/cogl: Makefile distinfo 

Log message:
update to cogl-1.22.2


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/09/01 02:31:15

Modified files:
	sys/sys        : ktrace.h 

Log message:
Remove last mention of nonexistent ktr_kuser()

From Michal Mazurek <akfaew at jasminek dot net>

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/09/01 02:33:40

Modified files:
	sys/sys        : sem.h 

Log message:
Fix comment in sys/sem.h

From Michal Mazurek <akfaew at jasminek dot net>

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2016/09/01 02:34:20

Modified files:
	devel/acpica   : Makefile distinfo 
	devel/acpica/patches: patch-generate_unix_acpiexec_Makefile 

Log message:
Update acpica to 20160729.

This fixes some parsing bugs found with the x260 AML code.

Okay sthen@.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/01 02:40:39

Modified files:
	sys/ntfs       : ntfs_subr.c ntfs_subr.h ntfs_vfsops.c 
	                 ntfs_vnops.c 

Log message:
Remove the unused ntfs write code. ok benno beck


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 02:45:58

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/01 02:56:49

Modified files:
	graphics/netpbm: Makefile 
	graphics/netpbm/patches: patch-converter_other_tifftopnm_c 
	                         patch-editor_pnmquantall 
	                         patch-test_pnmquantall_test 

Log message:
sync with upstream commits


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 02:58:54

Modified files:
	.              : 60.html index.html lyrics.html 
Added files:
	images         : 60f_right.jpg puffy60.gif 

Log message:
release 6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/01 03:05:37

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c 

Log message:
Avoid mapping the vector page W|X.  Map it using PROT_READ|PROT_WRITE
initially and change it to PROT_READ|PROT_EXEC as soon as we have called
pmap_bootstrap(), at which piint we're done modifying the page.

ok jsg@, deraadt@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 03:05:52

Modified files:
	sys/dev        : rnd.c 

Log message:
openbsd.randomdata became RO in userland due to the RELRO work.  We should
also do so in the kernel, which gains us RO ssp cookie, which will prevent
spraying attacks.

The random layer was openbsd.randomdata annotating working entropy/chacha
buffers which in turn required them to be RW.  To make that work again,
so we need to copy RO seeds to RW working buffers, and later clear the
RO seed buffers afterwards using a temporary RW mapping.

help & ok kettenis, ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 03:06:41

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_docker_docker_py 
	                                   patch-lib_googlecloudsdk_core_util_platforms_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-124.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/09/01 03:08:35

Modified files:
	net/p5-Net-DNS-SEC: Makefile distinfo 

Log message:
update p5-Net-DNS-SEC to 1.03


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 03:13:49

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
Export machdep.cpufeature in hex, to avoid - values which made
yuo@ grumpy.
ok tom guenther yuo


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:15:27

Removed files:
	sys/dev/ic     : z8536reg.h 

Log message:
remove another straggler hunted down by miod


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:21:08

Modified files:
	sys/kern       : Makefile 

Log message:
one less sparc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 03:22:42

Modified files:
	devel/git-lfs  : Makefile distinfo 

Log message:
- update to git-lfs-1.4.1
- set RDEP on devel/git


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/01 03:22:58

Modified files:
	sys/net        : rtsock.c 

Log message:
RTM_CHANGE should not allow to change the gateway of a mpath route.

Fix rttest13.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:23:43

Removed files:
	sys/arch/sparc : Makefile 
	sys/arch/sparc/compile: .cvsignore 
	sys/arch/sparc/conf: GENERIC Makefile.sparc RAMDISK SUN4 SUN4C 
	                     SUN4M files.sparc ld.script 
	sys/arch/sparc/dev: agten.c audioamd.c audioamdvar.h be.c 
	                    bereg.h bevar.h bpp.c bppreg.h bt445.c 
	                    bt445reg.h bt445var.h bt_subr.c btreg.h 
	                    btvar.h bwtwo.c bwtworeg.h cgeight.c 
	                    cgfour.c cgfourteen.c cgfourteenreg.h 
	                    cgsix.c cgsixreg.h cgthree.c cgthreereg.h 
	                    cgtwelve.c cgtwelvereg.h cgtwo.c cgtworeg.h 
	                    com_obio.c cons.h cs4231.c cs4231reg.h 
	                    cs4231var.h daadio.c daadioreg.h dma.c 
	                    dmareg.h dmavar.h esp.c espvar.h fb.c fd.c 
	                    fdreg.h fdvar.h fga.c fgareg.h fgavar.h 
	                    flash.c hme.c hmereg.h hmevar.h i82586.h 
	                    if_gem_sbus.c if_ie.c if_ie.h if_le.c 
	                    if_lereg.h if_levar.h if_ti_sbus.c 
	                    lebuffer.c lebuffervar.h led.c led.h magma.c 
	                    magmareg.h mgx.c obio.c p9000.c p9100.c 
	                    pfourreg.h power.c power.h presto.c qe.c 
	                    qec.c qecreg.h qecvar.h qereg.h qevar.h 
	                    qlw_sbus.c rfx.c sbus.c sbusreg.h sbusvar.h 
	                    scf.c scfreg.h si.c sireg.h spif.c spifreg.h 
	                    spifvar.h stp_sbus.c tctrl.c tctrlvar.h 
	                    tcx.c tcxreg.h ts102.c ts102reg.h tvtwo.c 
	                    vigra.c vmereg.h xbox.c xboxreg.h xboxvar.h 
	                    xd.c xdreg.h xdvar.h xy.c xyreg.h xyvar.h 
	                    z8530kbd.c zs.c zs_kgdb.c zx.c 
	sys/arch/sparc/fpu: fpu.c fpu_add.c fpu_arith.h fpu_compare.c 
	                    fpu_div.c fpu_emu.h fpu_explode.c 
	                    fpu_extern.h fpu_implode.c fpu_mul.c 
	                    fpu_sqrt.c fpu_subr.c 
	sys/arch/sparc/include: _float.h _types.h apmvar.h asm.h 
	                        atomic.h autoconf.h bppioctl.h 
	                        bsd_openprom.h bus.h cdefs.h conf.h 
	                        cpu.h ctlreg.h daadioio.h db_machdep.h 
	                        disklabel.h eeprom.h endian.h exec.h 
	                        fbvar.h fenv.h fgaio.h frame.h fsr.h 
	                        idprom.h ieee.h ieeefp.h instr.h intr.h 
	                        ioctl_fd.h kcore.h limits.h 
	                        loadfile_machdep.h lock.h mutex.h 
	                        oldmon.h openpromio.h param.h pcb.h 
	                        pmap.h proc.h profile.h psl.h pte.h 
	                        ptrace.h reg.h reloc.h scfio.h setjmp.h 
	                        signal.h spinlock.h stdarg.h tcb.h 
	                        trap.h varargs.h vmparam.h z8530var.h 
	sys/arch/sparc/sparc: amd7930intr.s asm.h autoconf.c auxioreg.h 
	                      auxreg.c bsd_fdintr.s cache.c cache.h 
	                      clock.c clockreg.h conf.c consinit.c cpu.c 
	                      cpuvar.h db_disasm.c db_interface.c 
	                      db_trace.c disksubr.c dvma.c emul.c 
	                      genassym.cf in_cksum.c intr.c intreg.h 
	                      iommu.c iommureg.h kgdb_machdep.c locore.s 
	                      machdep.c mem.c memecc.c memeccreg.h 
	                      memreg.c memreg.h mutex.c openprom.c 
	                      pmap.c process_machdep.c sys_machdep.c 
	                      timerreg.h trap.c vaddrs.h vm_machdep.c 
	sys/arch/sparc/stand: Makefile Makefile.inc 
	sys/arch/sparc/stand/binstall: Makefile binstall.sh 
	sys/arch/sparc/stand/boot: Makefile boot.c loadfile_sparc.c 
	sys/arch/sparc/stand/bootxx: Makefile bootxx.c closeall.c 
	sys/arch/sparc/stand/common: clean-elf.c conf.c dvma.c mmu.c 
	                             net.c netif_sun.c promdev.c 
	                             promdev.h srt0.S version.c 
	sys/arch/sparc/stand/installboot: Makefile installboot.8 
	                                  installboot.c nlist.c 
	sys/arch/sparc/stand/libsa: Makefile 
	sys/arch/sparc/stand/libz: Makefile 

Log message:
Celebrate OpenBSD 6.0 release by retiring the sparc port.
You've served us well, good friend, but now it's time to rest.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:26:04

Removed files:
	lib/libc/arch/sparc: DEFS.h Makefile.inc SYS.h Symbols.list 
	lib/libc/arch/sparc/gdtoa: Makefile.inc arith.h gd_qnan.h 
	lib/libc/arch/sparc/gen: Makefile.inc _setjmp.S divrem.m4 fabs.S 
	                         fixunsdfsi.S flt_rounds.c fpgetmask.c 
	                         fpgetround.c fpgetsticky.c fpsetmask.c 
	                         fpsetround.c fpsetsticky.c infinity.c 
	                         modf.S mul.S nan.c saveregs.S setjmp.S 
	                         sigsetjmp.S umul.S 
	lib/libc/arch/sparc/net: Makefile.inc htonl.S htons.S ntohl.S 
	                         ntohs.S 
	lib/libc/arch/sparc/stdlib: abs.S 
	lib/libc/arch/sparc/string: Makefile.inc bzero.S ffs.S strlen.S 
	lib/libc/arch/sparc/sys: Ovfork.S brk.S sbrk.S sigpending.S 
	                         sigprocmask.S sigsuspend.S syscall.S 
	                         tfork_thread.S 
	lib/libm/arch/sparc: fenv.c 

Log message:
retire the sparc library code


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 03:26:56

Modified files:
	infrastructure/package: gen-package-pages 
	infrastructure/mk: arch-defines.mk 

Log message:
retire sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/01 03:27:06

Modified files:
	sbin/newfs     : mkfs.c 

Log message:
Start writing the size of the cylinder group into the (unused) cpg
field of the disklabel. To be used by fsck_ffs(8) to find alternate
superblocks. ok deraadt@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:28:15

Removed files:
	lib/librthread/arch/sparc: _atomic_lock.c 

Log message:
retire sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:30:59

Removed files:
	libexec/ld.so/sparc: Makefile.inc archdep.h ldasm.S 
	                     rtld_machine.c syscall.h 

Log message:
retire sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 03:32:49

Modified files:
	sys            : Makefile 

Log message:
do not enter sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:33:30

Modified files:
	lib/csu        : Makefile boot.h 
Removed files:
	lib/csu/sparc  : md_init.h 

Log message:
retire sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 03:33:42

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.socppc md.sparc md.sparc64 md.zaurus 
	                         mi 
	distrib/sets/lists/etc: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:34:38

Removed files:
	sys/lib/libkern/arch/sparc: DEFS.h Makefile SYS.h _setjmp.S 
	                            bcopy.S bzero.S divrem.m4 ffs.S 
	                            htonl.S htons.S memcpy.S memmove.S 
	                            memset.c mul.S rem.S saveregs.S 
	                            sdiv.S strlen.S udiv.S umul.S urem.S 

Log message:
retire sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/01 03:35:28

Modified files:
	sys/net        : rtsock.c 

Log message:
Use rtable_match() rather than rtalloc() when looking for an existing
entry in RTM_ADD.

rtable_match() does not modify the 'Use' counter of the route and unbreak
regression tests.

Breakage reported by bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/01 03:36:32

Modified files:
	regress/sbin/route: rttest22.ok rttest24.ok 

Log message:
Use counter should stay at '0' if the lookup hasn't been done for
tansmitting packets.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:37:30

Modified files:
	share/man/man4 : Makefile 
Removed files:
	share/man/man4/man4.sparc: Makefile agten.4 audioamd.4 audiocs.4 
	                           autoconf.4 auxreg.4 be.4 bpp.4 
	                           bwtwo.4 cgeight.4 cgfour.4 
	                           cgfourteen.4 cgsix.4 cgthree.4 
	                           cgtwelve.4 cgtwo.4 clock.4 daadio.4 
	                           eccmemctl.4 esp.4 fga.4 ie.4 intro.4 
	                           le.4 led.4 magma.4 mem.4 memreg.4 
	                           mgx.4 openprom.4 pninek.4 pnozz.4 
	                           presto.4 qe.4 qec.4 rfx.4 scf.4 si.4 
	                           spif.4 sw.4 tctrl.4 tcx.4 timer.4 
	                           tslot.4 tvtwo.4 vigra.4 xbox.4 xd.4 
	                           xy.4 zs.4 zx.4 

Log message:
retire sparc manuals


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/01 03:38:25

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

Log message:
- separate hid and ihidev attachment for upcoming drivers
- move power control into a dedicated function
- sprinkle aml_freevalue


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/01 03:39:54

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

Log message:
- disable controller when we're done using it
- read CLR_INTR register when disabling interrupts


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/01 03:41:20

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

Log message:
for broadwell HIDs, apply a magic write found in linux that is
required in order to talk to certain i2c slave devices behind dwiic


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/01 03:41:34

Modified files:
	sbin/route     : route.c show.c 
	usr.bin/netstat: show.c 

Log message:
Display all route flags in "route get", "route show" and "netstat -r"
output.  Sort them according to the RTF_... defines in route.h.
OK claudio@ mpi@


CVSROOT:	/cvs
Module name:	www
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:41:37

Modified files:
	.              : plat.html sparc.html 

Log message:
officially note that sparc has been moved to the retired platforms


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 03:41:40

Modified files:
	lang/rust      : Makefile 

Log message:
Unbreak, from semarie:

When using --enable-local-rebuild option, the configure script will
check the existence of rustc binary from the local-rust-root directory
(/usr/local by default). It is the binary the build process will copy in
stage0 directory.

With the diff, we explicity use the bootstrap directory for configuring.
Note that we still we manually copying all the bootstrap files in
post-configure, as the standard build system will *not* copy the
libraries in lib/ which could be required to run rustc binary
(libraries like libc.so used by bootstrapper).


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:44:06

Modified files:
	bin/ps         : print.c 

Log message:
simplify comment to remove reference to sparc.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/01 03:46:33

Modified files:
	lib/libc/gen   : getpass.3 

Log message:
Mention explicit_bzero(3); ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:46:42

Modified files:
	sbin/disklabel : Makefile editor.c 
	sbin/reboot    : reboot.8 

Log message:
remove references to sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/01 03:47:03

Modified files:
	usr.sbin/httpd : httpd.c httpd.h proc.c 

Log message:
Teach httpd/proc.c how to fork+exec.

This commit implemented the basic functions to proc.c to make it not rely
on global variables, malloc()ed memory and CLOEXEC pipes.

Fix child proc titles from reyk@
ok reyk@, florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/01 03:47:47

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

Log message:
Always initialize error code returned from iwm_firmware_load_chunk().
Patch by Imre Vadasz.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:48:20

Modified files:
	usr.bin/locate/locate: util.c 

Log message:
keep the code that endian swaps, but remove the explanation that it's
for converting between freebsd and sunos.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:49:44

Modified files:
	usr.bin/gprof  : gprof.c 
Removed files:
	usr.bin/gprof  : sparc.c sparc.h 

Log message:
remove sparc support


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 03:50:38

Modified files:
	sbin/shutdown  : shutdown.c 

Log message:
Aggressively use dprintf, rather than crazy unchecked writes.  Use
localtime() since it tends to work better than ctime() when some
filesystems are absent.
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:53:08

Modified files:
	share/man/man8 : Makefile diskless.8 
Removed files:
	share/man/man8/man8.sparc: MAKEDEV.8 Makefile boot_sparc.8 

Log message:
remove sparc manuals


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 03:54:17

Modified files:
	etc            : Makefile 
	etc/mtree      : 4.4BSD.dist 
Removed files:
	etc/etc.sparc  : MAKEDEV MAKEDEV.md Makefile Makefile.inc 
	                 disktab fbtab login.conf sysctl.conf ttys 

Log message:
remove sparc pieces


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 03:54:58

Modified files:
	usr.sbin/fdformat: Makefile 

Log message:
remove sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/01 03:57:45

Modified files:
	regress/sbin/route: Makefile 

Log message:
Test that RTF_LOCAL routes cannot be deleted from userland.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/01 03:58:38

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 03:59:40

Modified files:
	usr.sbin/apm   : Makefile 

Log message:
chainsaw sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:00:38

Modified files:
	usr.sbin/eeprom: Makefile main.c 
Removed files:
	usr.sbin/eeprom: eehandlers.c 

Log message:
remove sparc support


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2016/09/01 04:01:53

Modified files:
	usr.bin/mg     : tags.c 

Log message:
Fix possible NULL pointer dereference.

Found by Coverity Scan.  The tagsvisit() function calls eread(),
which may return NULL.  This is then immediately passed to stat()
without a proper check.  This patch adds that check.

From Joachim Nilsson <troglobit@gmail.com> via lum@. Ok lum@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:02:13

Modified files:
	usr.sbin/eeprom: main.c 

Log message:
now that openprom is always 1, remove conditionals


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:03:51

Modified files:
	lib/libcrypto/crypto: Makefile 
Removed files:
	lib/libcrypto/crypto/arch/sparc: Makefile.inc opensslconf.h 

Log message:
remove sparc support


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/01 04:04:51

Modified files:
	sys/dev/i2c    : files.i2c 
	share/man/man4 : Makefile iic.4 
	sys/dev/acpi   : dwiic.c 
	sys/arch/amd64/conf: GENERIC 
Added files:
	sys/dev/i2c    : iatp.c 
	share/man/man4 : iatp.4 

Log message:
add iatp(4), a driver for the i2c touchpad and touchscreen found on
the chromebook pixel


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/01 04:06:30

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

Log message:
Update list of ioctls for the audio promise. Suggested by jmc@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	goda@cvs.openbsd.org	2016/09/01 04:06:33

Modified files:
	sys/conf       : GENERIC files 
	sys/net        : if.c if_bridge.c if_bridge.h if_var.h netisr.h 
Added files:
	sys/net        : if_switch.c if_switch.h ofp.h switchctl.c 
	                 switchofp.c 

Log message:
Import switch(4), an in-kernel OpenFlow switch which can work alone.
switch(4) currently supports OpenFlow 1.3.5.
Currently, it's disabled by the kernel config.

With help from yasuoka@ reyk@ jsg@.

ok deraadt@ yasuoka@ reyk@ henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/01 04:07:20

Modified files:
	usr.sbin/smtpd : config.c mproc.c smtpd.c smtpd.h 

Log message:
get rid of the imsg buffer usage profiling code.

ok gilles@ jung@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:08:03

Modified files:
	lib/libc/sys   : kbind.2 ptrace.2 
	lib/libm       : Makefile 
Removed files:
	lib/libkvm     : kvm_sparc.c 

Log message:
remove references to sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/01 04:08:23

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

Log message:
Fix typo: replace AUDIO_GETINFO by AUDIO_GETPAR.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 04:08:29

Modified files:
	distrib        : Makefile 
	distrib/notes  : Makefile 
	distrib/ramdisk: Makefile 
	distrib/sets/lists/base: md.sparc 
	distrib/sets/lists/comp: md.sparc 
	distrib/sets/lists/man: mi 
	distrib/special: Makefile.inc 
	distrib/special/disklabel: Makefile 
	distrib/special/eeprom: Makefile 
	distrib/special/installboot: Makefile 
Removed files:
	distrib/notes/sparc: contents features hardware install prep 
	                     upgrade whatis xfer 
	distrib/sparc  : Makefile Makefile.inc install.md 
	distrib/sparc/cdfs: Makefile 
	distrib/sparc/iso: Makefile 
	distrib/sparc/miniroot: Makefile 
	distrib/sparc/ramdisk: Makefile.inc list.local 

Log message:
remove sparc media building goop


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 04:11:47

Modified files:
	sysutils/upower: Makefile 
Added files:
	sysutils/upower/patches: patch-libupower-glib_up-client_c 
	                         patch-libupower-glib_up-client_h 

Log message:
Add proper error and cancellable handling to UpClient constructor

Backport https://cgit.freedesktop.org/upower/patch/?id=932a6a39e35754be571e1274aec4730fd42dba13
from https://bugs.freedesktop.org/show_bug.cgi?id=95350

First part of a larger fix for xfsettingsd crashes when systemwide dbus
isn't running.

ok/testing edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:12:35

Modified files:
	regress/etc/MAKEDEV: Makefile 
	regress/sys/copy: Makefile 
	regress/sys/kern/noexec: Makefile 

Log message:
remove references to sparc (and even a vax ref that escaped notice)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:13:05

Modified files:
	regress/etc/MAKEDEV: Makefile 

Log message:
rm vax


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/01 04:14:08

Modified files:
	share/man/man9 : audio.9 

Log message:
Remove references to removed ioctls and data structures.
Suggested by jmc@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 04:14:38

Modified files:
	x11/xfce4/xfce4-settings: Makefile 
Added files:
	x11/xfce4/xfce4-settings/patches: 
	                                  patch-xfsettingsd_displays-upower_c 

Log message:
In xfsettingsd, properly handle the case  when upowerd isnt here (which
happens if you didn't add messagebus to pkg_scripts)

https://bugzilla.xfce.org/show_bug.cgi?id=11773
originally reported by danj@, edd@ and probably others..

tested by edd@ and myself, ok danj@ edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/01 04:14:39

Log message:
    Import devel/py-execnet
    
    ---8<---
    execnet provides carefully tested means to ad-hoc interact with Python
    interpreters across version, platform and network barriers.
    --->8---
    
    OK shadchin@, and a slightly earlier diff was OK landry@, thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20160901
    
    N ports/devel/py-execnet/Makefile
    N ports/devel/py-execnet/distinfo
    N ports/devel/py-execnet/pkg/PLIST
    N ports/devel/py-execnet/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:14:42

Modified files:
	usr.sbin/apmd  : Makefile 

Log message:
remove sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 04:15:28

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
make the page more neutral, as suggested by deraadt;
add STANDARDS, as suggested by florian;

help/ok deraadt florian


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:15:47

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

Log message:
remove sparc support


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/01 04:17:00

Modified files:
	devel          : Makefile 

Log message:
Link py-execnet (+py3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 04:19:16

Modified files:
	meta/xfce      : Makefile 
	meta/xfce/pkg  : README-main 

Log message:
Revert blurb now that xfsettingsd bug was fixed - this part from edd@
While here add xfdashboard and xfce4-datetime to RUN_DEPENDS-extra, was
in my tree since forever..


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:20:22

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
black magic for sparc page size can go


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2016/09/01 04:26:09

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl 2016.08.31.

New extractors:
- adobepass
- amcnetworks
- awaan
- cartoonnetwork
- charlierose
- discoverygo
- fxnetworks
- hgtv
- nhk
- pokemon
- porncom
- rozhlas
- sonyliv
- tbs
- turner
- uol
- uplynk
- usanetwork
- viceland
- vodplatform
Removed:
- dcn
- gamekings
- goldenmoustache
- played
- tapely
- trutube
- zippcast


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/01 04:29:16

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Informative comments describing the various timing fields (initial_interval,
reboot_timeout, etc.) when setting them to their defaults.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 04:31:35

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.socppc md.sparc md.sparc64 md.zaurus 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/01 04:34:41

Modified files:
	sbin/fsck_ffs  : setup.c 

Log message:
better computation of location of alternate superblocks, based on info
in the label; ok deraadt@ krw@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/09/01 04:37:40

Modified files:
	lib/libepoxy   : Makefile 

Log message:
remove sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 04:37:50

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

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:40:38

Modified files:
	gnu/usr.bin/cc/libgcc: Makefile 
	sys/dev/microcode/symbol: Makefile 
	sys/dev/microcode/tigon: Makefile 

Log message:
remove three more sparc references noticed by jsg


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/01 04:40:38

Modified files:
	usr.sbin/relayd: ca.c relayd.h 

Log message:
Do not busy loop in the rsa engine callback waiting for the ca. Instead use
poll(2) to wait for up to 1sec for a response. This is not the nicest way to
fix this issue but the smallest. Goal is to reduce the contention on the
kernel big lock on busy relayd systems.
reyk@ agrees (especially about the nastyness of this)


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/01 04:41:02

Modified files:
	lib/libc       : Symbols.list 
	lib/libc/include: thread_private.h 
	lib/libc/stdlib: malloc.c 
	lib/librthread : rthread.c rthread_cb.h rthread_fork.c 
	                 rthread_libc.c 

Log message:
Less lock contention by using more pools for mult-threaded programs.
tested by many (thanks!) ok tedu, guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/01 04:41:09

Modified files:
	sbin/route     : route.c 

Log message:
Fix previous commit that displays all route flags with "route get".
The successor of octal 027 is 030 and not 028.  Found by
regress/sbin/route/rttest20.ok test.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/01 04:41:31

Modified files:
	lib/libc       : shlib_version 
	lib/librthread : shlib_version 

Log message:
bump


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/01 04:48:38

Modified files:
	games/factor   : factor.c 

Log message:
In 32 bits sqrt(val) + 1 can overflow, so some big primes still
aren't recognized as such, for example 18446744073709551577 given
in the commit message of factor.c r1.7 from NetBSD.  Move the
return type of usqrt() from u_int32_t to u_int64_t.

ok guenther, tom, otto


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/01 04:49:48

Modified files:
	usr.sbin/relayd: config.c parse.y relay.c relayd.c relayd.conf.5 
	                 relayd.h 

Log message:
Switch from the not really working session cache (because of the multiprocess
nature of relayd) to tls session tickets to do TLS session resumption.
TLS session tickets do not need to store SSL session data in the server but
instead send an encrypted ticket to the clients that allows to resume the
session. This is mostly stateless (apart from the encryption keys).
relayd now ensures that all relay processes use the same key to encrypt
the tickets. Keys are rotated every 2h and there is a primary and backup key.
The tls session timeout is set to 2h to hint to the clients how long the
session tickets is supposed to be alive.
Input and OK benno@, reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 04:53:27

Modified files:
	audio/openal   : Makefile 
	comms/p5-Device-SerialPort: Makefile 
	databases/kyotocabinet: Makefile 
	databases/mariadb: Makefile 
	databases/postgresql: Makefile 
	devel/ffcall   : Makefile 
	devel/libev    : Makefile 
	devel/nspr     : Makefile 
	devel/p5-EV    : Makefile 
	devel/py-greenlet: Makefile 
	devel/radare2  : Makefile.inc 
	devel/sparsehash: Makefile 
	editors/emacs21: Makefile 
	games/gnuchess : Makefile 
	graphics/libraw: Makefile 
	lang/ecl       : Makefile 
	lang/erlang/16 : Makefile 
	lang/erlang/17 : Makefile 
	lang/erlang/18 : Makefile 
	lang/erlang/19 : Makefile 
	lang/gforth    : Makefile 
	lang/jamvm     : Makefile 
	lang/moarvm    : Makefile 
	lang/ruby/2.3  : Makefile 
	lang/scm       : Makefile 
	math/lapack/files: Makefile 
	math/octave    : Makefile 
	net/libst      : Makefile 
	net/transmission: Makefile 
	news/nn        : Makefile 
	plan9/9libs    : Makefile 
	security/john  : Makefile 
	security/john-jumbo: Makefile 
	shells/bash    : Makefile 
	sysutils/pciutils: Makefile 
	textproc/xmlto : Makefile 
	x11/rxvt-unicode: Makefile 

Log message:
retire sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 04:53:35

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

Log message:
by my reckoning, no more pages for tslot, cgfourteen, pninek,
pnozz, tcx, or presto;


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/01 04:54:25

Modified files:
	usr.sbin/smtpd : ca.c config.c control.c lka.c pony.c queue.c 
	                 scheduler.c smtpd.c smtpd.h 

Log message:
remove noop function

ok sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:54:36

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

Log message:
scan responses for minimum ttl, and cache for min(ttl, 300) instead of
a fixed amount


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:55:22

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

Log message:
print regular messages to stdout, not err


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 04:55:28

Modified files:
	regress/usr.bin/mdoclint: mdoclint 

Log message:
no more sparc;


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 04:56:46

Modified files:
	regress/lib/libpthread/stdfiles: stdfiles.c 
	lib/librthread : rthread_debug.c rthread_libc.c rthread_stack.c 

Log message:
delete wrong cvs $ tags


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 04:56:58

Modified files:
	lang/gcc/4.9   : Makefile distinfo 
	lang/gcc/4.9/pkg: PLIST-main 
Removed files:
	lang/gcc/4.9/pkg: PFRAG.sparc-main 

Log message:
retire sparc support and sync distinfo accordingly


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/01 04:57:03

Modified files:
	usr.sbin/httpd : proc.c 

Log message:
Adjust log message, use process title now that it works again


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 04:57:24

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

Log message:
naming a union 'sockthing' was a bit silly. sockun will do for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 04:59:15

Modified files:
	share/man/man7 : mdoc.7 

Log message:
no more sparc;


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/01 04:59:38

Modified files:
	usr.sbin/httpd : control.c httpd.h logger.c proc.c server_fcgi.c 

Log message:
spacing


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 05:01:33

Modified files:
	lang/gcc/4.6   : Makefile 
	mail/alpine/patches: patch-imap_src_osdep_unix_Makefile 
Removed files:
	devel/mico/patches: patch-ir_Makefile 

Log message:
more sparc leftovers


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/01 05:01:42

Modified files:
	regress/sys/ptrace: ptrace.c 

Log message:
Delete sparc and vax bits


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/01 05:03:09

Modified files:
	gnu/gcc/gcc/config/arm: openbsd.h unwind-arm.h 
	gnu/lib        : Makefile 
	gnu/lib/libstdc++-v3: Makefile 
	gnu/lib/libsupc++-v3: Makefile 
	gnu/usr.bin/binutils-2.17/gas: Makefile.am Makefile.in 
	                               configure.tgt 
	gnu/usr.bin/cc/cc_tools: Makefile 
	gnu/usr.bin/cc/include: Makefile 
	gnu/usr.bin/cc/libgcc: Makefile 
Added files:
	gnu/gcc/gcc/config/arm: openbsd1.h 
	gnu/usr.bin/binutils-2.17/gas/config: te-armobsd.h 

Log message:
Switch OpenBSD/armv7 to ARM EABI (soft-float).  This is a complete ABI
break which cannot be easily crossed.

ok kettenis@ jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/01 05:04:37

Modified files:
	regress/lib/libpthread/siginfo: siginfo.c 

Log message:
Tighten up the siginfo check


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/01 05:10:00

Log message:
    Import py-backports-functools-lru-cache 1.2.1, ok edd@
    
    Backport of functools.lru_cache from Python 3.3 as published at
    ActiveState.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20160901
    
    N ports/devel/py-backports-functools-lru-cache/Makefile
    N ports/devel/py-backports-functools-lru-cache/distinfo
    N ports/devel/py-backports-functools-lru-cache/pkg/DESCR
    N ports/devel/py-backports-functools-lru-cache/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/01 05:11:09

Modified files:
	x11/irrlicht   : Makefile distinfo 
	x11/irrlicht/patches: patch-source_Irrlicht_Makefile 

Log message:
Update to irrlicht 1.8.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 05:13:12

Modified files:
	devel/elftoolchain: Makefile 
Added files:
	devel/elftoolchain/patches: 
	                            patch-libelftc_make-toolchain-version 

Log message:
don't depend on gitversion/svnversion; spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/01 05:13:18

Modified files:
	usr.sbin/httpd : httpd.h server_fcgi.c 

Log message:
struct client starts to become the kitchen sink. Move fastcgi data to
its own struct. Requested by and OK reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	akfaew@cvs.openbsd.org	2016/09/01 05:17:54

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

Log message:
Add myself to geo/openbsd-developers.

OK fcambus@ awolk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/01 05:19:05

Log message:
    Import py-isort, ok and tweak edd@
    
    isort is a Python utility / library to sort imports alphabetically, and
    automatically separated into sections. It provides a command line utility,
    Python library and plugins for various editors to quickly sort all your
    imports.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20160901
    
    N ports/devel/py-isort/Makefile
    N ports/devel/py-isort/distinfo
    N ports/devel/py-isort/pkg/PLIST
    N ports/devel/py-isort/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/01 05:26:44

Modified files:
	sys/net        : route.c rtsock.c 

Log message:
Move the RTF_LOCAL check that only makes sense for userland to
route_output().

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/01 05:36:15

Modified files:
	regress/sbin/route: rttest1.ok rttest10.ok rttest11.ok 
	                    rttest12.ok rttest14.ok rttest15.ok 
	                    rttest16.ok rttest17.ok rttest18.ok 
	                    rttest19.ok rttest2.ok rttest21.ok 
	                    rttest22.ok rttest24.ok rttest26.ok 
	                    rttest27.ok rttest3.ok rttest4.ok rttest5.ok 
	                    rttest6.ok rttest7.ok rttest8.ok rttest9.ok 

Log message:
Now the cached route flag appears in "route show".  Adapt test.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/01 05:40:43

Modified files:
	devel          : Makefile 

Log message:
+py-backports-functools-lru-cache
+py-isort
+py-isort,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/09/01 05:49:58

Modified files:
	gnu/usr.bin/perl/hints: openbsd.sh 

Log message:
Really stop linking perl to pthread

ok guenther@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/01 06:05:14

Modified files:
	faq            : faq1.html faq10.html faq14.html faq15.html 
	                 faq4.html faq5.html index.html 

Log message:
6.0 faq updates: setenv in doas.conf, proot, wxneeded, bump cvs examples
to -rOPENBSD_6_0 and link to the 6.0 upgrade guide.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/01 06:08:03

Modified files:
	.              : alpha.html amd64.html anoncvs.html armv7.html 
	                 cvsync.html ftp.html hppa.html i386.html 
	                 landisk.html loongson.html luna88k.html 
	                 macppc.html octeon.html sgi.html sparc64.html 
	                 zaurus.html 
	build          : Makefile 
	build/mirrors  : anoncvs.html.head ftp.html.end 

Log message:
6.0 bumps for the platform and auto-generated pages.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/01 06:09:24

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/01 06:17:00

Modified files:
	usr.sbin/acme-client: acme-client.1 extern.h main.c netproc.c 

Log message:
Implement table driven selection to which ACME authorities we can
talk.
Suggest by and OK deraadt, OK benno.

(Later on deraadt and benno discussed if this should be handled with a
config file. This seems to be good enough for now. We can do a config
file later.)


CVSROOT:	/cvs
Module name:	www
Changes by:	patrick@cvs.openbsd.org	2016/09/01 06:18:41

Modified files:
	faq            : current.html 

Log message:
Document ABI break of OpenBSD/armv7 switching to ARM EABI.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 06:19:35

Modified files:
	sbin/disklabel : disklabel.8 

Log message:
remove sparc reference;


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/01 06:21:05

Modified files:
	net/py-impacket: Makefile distinfo 
	net/py-impacket/patches: patch-examples_goldenPac_py 
	                         patch-examples_raiseChild_py 
	                         patch-setup_py 
	net/py-impacket/pkg: PLIST 
Added files:
	net/py-impacket/patches: 
	                         patch-impacket_examples_ntlmrelayx_utils_targetsutils_py 
Removed files:
	net/py-impacket/patches: patch-examples_secretsdump_py 
	                         patch-impacket_krb5_kerberosv5_py 
	                         patch-impacket_smb3_py 
	                         patch-impacket_smbconnection_py 

Log message:
Update to impacket-0.9.15


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 06:24:56

Modified files:
	share/man/man4 : com.4 ddb.4 fdc.4 pcmcia.4 sbus.4 wscons.4 
	                 wsdisplay.4 

Log message:
no more sparc;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 06:26:32

Modified files:
	share/man/man5 : core.5 

Log message:
no more sparc;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/01 06:36:03

Modified files:
	devel/pylint   : Makefile distinfo 
	devel/pylint/pkg: PLIST-main 

Log message:
Update to pylint 1.6.4


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/01 06:47:18

Modified files:
	sys/kern       : sys_process.c 

Log message:
Get rid of 'relebad:'.

OK natano@ guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/01 06:47:22

Modified files:
	audio/schismtracker: Makefile distinfo 
	audio/schismtracker/pkg: PLIST 
Added files:
	audio/schismtracker/patches: patch-Makefile_am 
	                             patch-configure_ac 

Log message:
Update schismtracker to 20160521 and take maintainership.

- Project moved to GitHub so fetch distfile from there
- Changed comment to a more accurate description
- Release tarball doesn't bundle a configure script, so the port now
uses autoconf + automake, with patched configure.ac (comment in file)
- Use upstream Makefile install target, as it also installs manpage

OK jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/01 06:50:53

Modified files:
	sys/kern       : makesyscalls.sh 
	sys/sys        : systm.h 

Log message:
MPSAFE is never used, so get rid of it.

OK natano@ mpi@ guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/01 06:56:17

Log message:
    Import devel/py-test-xdist.
    
    ---8<---
    The pytest-xdist plugin extends py.test with some unique test execution modes.
    --->8---
    
    OK and input from, shadchin@, thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20160901
    
    N ports/devel/py-test-xdist/Makefile
    N ports/devel/py-test-xdist/distinfo
    N ports/devel/py-test-xdist/pkg/PLIST
    N ports/devel/py-test-xdist/pkg/DESCR
    N ports/devel/py-test-xdist/patches/patch-testing_acceptance_test_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/01 06:58:55

Modified files:
	devel          : Makefile 

Log message:
Link py-test-xdist (+py3).


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/01 07:08:47

Modified files:
	usr.sbin/vmd   : pci.c 

Log message:
Fix 2 minor issues and a typo in a comment in the pci emulation subsystem.

The first issue caused trash to be returned from an i/o port read where
that port was unclaimed by any emulated device. The second issue caused
improper BAR sizes to be reported for unassigned device BARs.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/01 07:10:26

Removed files:
	distrib/notes  : README.sparc 
	distrib/sets/lists/xbase: md.sparc 
	distrib/sets/lists/xetc: md.sparc 
	distrib/sets/lists/xfont: md.sparc 
	distrib/sets/lists/xserv: md.sparc 
	distrib/sets/lists/xshare: md.sparc 

Log message:
Good bye sparc


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 07:12:34

Modified files:
	infrastructure/bin: make-plist 

Log message:
Sync make-plist with our pkg archs.

ok espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/01 07:12:59

Modified files:
	sys/kern       : subr_hibernate.c 

Log message:
Fix undefined behaviour when comparing pointers by casting them to vaddr_t.

OK mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 07:14:00

Modified files:
	net/bro        : Makefile 

Log message:
Make sure we pick up the correct python version.

reported by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 07:16:38

Modified files:
	usr.bin/doas   : doas.c 

Log message:
move the authentication code to a function


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/01 07:21:08

Modified files:
	security       : Makefile 
Removed files:
	security/letskencrypt: Makefile distinfo 
	security/letskencrypt/pkg: DESCR PLIST 

Log message:
Remove security/letskencrypt, it's been imported to base as acme-client.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/01 07:21:56

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
letskencrypt->base


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/09/01 07:23:43

Modified files:
	faq            : current.html 

Log message:
letskencrypt->base


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/01 07:24:19

Modified files:
	security/opensc: Makefile 
Added files:
	security/opensc/patches: patch-src_libopensc_card-entersafe_c 

Log message:
Merge upstream git commit f64c71da28d1c1401445f6e8fa45bc079d5b6cd9:

Don't free file if pointer is null
Fix a Segmentation fault error


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/01 07:27:04

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Cut back the default values for the various timeout/interval values. We no
longer live in a 10Mb/sec shared media world with 1Mhz Vaxen DHCP servers.

ok benno@ otto@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/01 07:33:05

Modified files:
	multimedia/yle-dl: Makefile distinfo 
	multimedia/yle-dl/pkg: PLIST 
Added files:
	multimedia/yle-dl/patches: patch-yle-dl 

Log message:
update to yle-dl-2.11, from new maintainer Timo Myyrä


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 07:39:50

Modified files:
	usr.sbin/eeprom: eeprom.8 

Log message:
no more sparc; ok tedu kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 07:42:45

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
tidy up the list;


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/01 07:47:24

Modified files:
	sbin/dhclient  : dhclient.conf.5 

Log message:
Document new default timeouts/intervals.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/01 07:47:54

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
update usage(); pointed out by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/01 07:48:15

Modified files:
	sbin/fsck_ffs  : fsck_ffs.8 

Log message:
better words for -b, wiyh help from jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/01 07:49:32

Modified files:
	usr.sbin/acme-client: base64.c 

Log message:
Use b64_ntop instead of adding yet another base implementation of base64
encoding to base.  Tweaked version of a diff by florian.

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 08:12:07

Modified files:
	sbin/savecore  : savecore.c 
	sys/conf       : newvers.sh 

Log message:
make the version symbol a fixed size (512) to reduce the potential for
bad effects when savecore reads beyond it
ok deraadt (and thanks to bluhm for remembering that this happens)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/01 08:19:12

Modified files:
	lang/tcl/8.5/patches: patch-unix_configure 
	lang/tcl/8.6/patches: patch-unix_configure 
Removed files:
	x11/tk/8.5/patches: patch-unix_configure 
	x11/tk/8.6/patches: patch-unix_configure 

Log message:
retire sparc


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/01 08:19:33

Modified files:
	usr.sbin/smtpd : mproc.c 

Log message:
Get rid of the custom msgbuf_write2() function adapted from libutil.
It is not necessary now that the profiling code is gone.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/01 08:20:13

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

Log message:
Document all letters used for route flags in "netstat -r".
OK jmc@ mpi@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/01 08:23:58

Modified files:
	lang/ruby/1.8  : Makefile 
	lang/ruby/2.0  : Makefile 
	lang/ruby/2.1  : Makefile 
	lang/ruby/2.2  : Makefile 

Log message:
Remove references to sparc and vax


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2016/09/01 08:29:50

Modified files:
	telephony/asterisk-openbsd-moh: Makefile distinfo 
	telephony/asterisk-openbsd-moh/pkg: PLIST 

Log message:
Add 6.0 songs, ok naddy


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/01 08:30:11

Log message:
    Import emulators/advancemame
    
    AdvanceMAME is an unofficial MAME version with an advanced video support
    for helping the use with TVs, Arcade Monitors, Fixed Frequencies Monitors
    and also with normal PC Monitors.
    
    AdvanceMAME supports many special video effects to improve image quality
    when it's stretched. The most advanced effects add missing pixels trying
    to match the image patterns.
    
    OK bentley@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20160901
    
    N ports/emulators/advancemame/Makefile
    N ports/emulators/advancemame/distinfo
    N ports/emulators/advancemame/pkg/DESCR
    N ports/emulators/advancemame/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/01 08:36:28

Modified files:
	emulators      : Makefile 

Log message:
Add advancemame


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/01 08:44:39

Modified files:
	regress/usr.sbin/httpd/tests: args-get-slash.pl 

Log message:
Fix regress test, server returns 400 instead of 500 now


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/01 08:45:36

Modified files:
	sys/arch/amd64/include: vmmvar.h 
	sys/arch/amd64/amd64: vmm.c 

Log message:
Remove the clock hack, and properly handle interrupts generated from vmd(8)'s
forthcoming emulated interrupt controller.

ok stefan


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/01 08:48:09

Modified files:
	usr.sbin/vmd   : vmd.h vmm.c 
Added files:
	usr.sbin/vmd   : i8253.c i8253.h i8259.c i8259.h ns8250.c 
	                 ns8250.h mc146818.c mc146818.h vmm.h 

Log message:
Add a set of emulated legacy devices (PIT, PIC, RTC)

discussed with stefan and deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/01 08:50:05

Modified files:
	usr.sbin/httpd : proc.c 

Log message:
Don't print "lost child" if the child process exited okay.  This is
the old behaviour and unbreaks the regress tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 08:53:54

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

Log message:
update to libofx 0.9.11


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/09/01 08:57:13

src/regress/usr.sbin/ldapd

Update of /cvs/src/regress/usr.sbin/ldapd
In directory cvs.openbsd.org:/tmp/cvs-serv46622/ldapd

Log Message:
Directory /cvs/src/regress/usr.sbin/ldapd added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 08:57:16

ports/devel/ctftools/patches

Update of /cvs/ports/devel/ctftools/patches
In directory cvs.openbsd.org:/tmp/cvs-serv47180/patches

Log Message:
Directory /cvs/ports/devel/ctftools/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/09/01 08:57:23

src/regress/usr.sbin/ldapd/out

Update of /cvs/src/regress/usr.sbin/ldapd/out
In directory cvs.openbsd.org:/tmp/cvs-serv37948/ldapd/out

Log Message:
Directory /cvs/src/regress/usr.sbin/ldapd/out added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/09/01 08:59:52

Added files:
	regress/usr.sbin/ldapd: Makefile common.pl dit-example.ldif 
	                        ldapd.conf nldapd.conf run-tests.pl 
	regress/usr.sbin/ldapd/out: adding.log empty.log example.log 

Log message:
Add basic regress tests for ldapd.

- first pass of tests adding a DIT, then searching in it
- second pass of tests runs Net::LDAP regress suite against ldapd (not
all tests are passing, and that requires Net::LDAP installed and
distfiles present on the system)


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/01 09:01:45

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 

Log message:
Add ioctls to get/set VCPU registers

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 09:07:11

Log message:
    Import ansible-lint 3.2.5.
    
    ansible-lint checks playbooks and roles for practices and behaviour that could
    potentially be improved, based on a set of rules.
    
    ok rpe@, thx ajacoutot@ for the PORTHOME hint
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20160901
    
    N ports/sysutils/ansible-lint/Makefile
    N ports/sysutils/ansible-lint/distinfo
    N ports/sysutils/ansible-lint/pkg/DESCR
    N ports/sysutils/ansible-lint/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/01 09:07:19

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
move "sparc" down to discontinued architectures


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/01 09:07:46

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
remove "sparc" from a comment


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 09:08:03

Modified files:
	sysutils       : Makefile 

Log message:
+ansible-lint


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/01 09:12:45

Modified files:
	usr.sbin/smtpd : mda.c mproc.c 

Log message:
zap dead code

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/01 09:13:49

Modified files:
	net/py-impacket: Makefile 

Log message:
HOMEPAGE changed again


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/01 09:15:29

Modified files:
	.              : plat.html sparc.html 
	faq            : faq1.html 

Log message:
sparc did not have a 6.0 release.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/01 09:23:55

Modified files:
	www/phpmyadmin : Makefile distinfo 
	www/phpmyadmin/pkg: PLIST README 

Log message:
Major and security update to 4.6.4
fixes PMASA from PMASA-2016-30 to PMASA-2016-56


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/01 09:27:32

Modified files:
	news/tin       : Makefile distinfo 
	news/tin/pkg   : PLIST 

Log message:
Bugfix update to 2.4.0
better RFC 2231 support


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/01 09:32:47

Modified files:
	net/zabbix     : Makefile distinfo 

Log message:
update to 3.0.4


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/01 09:38:03

Modified files:
	usr.sbin/vmd   : Makefile 

Log message:
forgot during previous commit, thanks stefan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/01 09:40:29

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

Log message:
update to 4.4.2.11


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/01 09:40:38

Modified files:
	sys/net        : route.c 

Log message:
Disable the RTF_UP kassert check in rtisvalid() for now as it can
be triggered from userland.  A gateway route is simply not valid
if its gwroute is not up.
OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/01 09:49:44

Modified files:
	gnu/gcc/libobjc: exception.c 

Log message:
Implement exception handling for ARM EABI.  Cobbled together from bits of
libsupc++.  Passes the (limited) tests in the gcc 4.2.1 testsuite.

ok patrick@, tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2016/09/01 09:50:16

Modified files:
	devel/acpica   : Makefile distinfo 

Log message:
A new acpica version (20160831) was just released after my commit.

It's so fresh that the Windows installer links are still 404.

Again OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 09:50:30

Modified files:
	www/webkit     : Makefile 
Added files:
	www/webkit/patches: 
	                    patch-Source_JavaScriptCore_javascriptcoregtk_pc_in 
	                    patch-Source_WebKit2_webkit2gtk-web-extension_pc_in 
	                    patch-Source_WebKit2_webkit2gtk_pc_in 

Log message:
Similar commit to what was done to webkitgtk4 regarding wxneeded:

"
USE_WXNEEDED, add "-Wl,-z,wxneeded" to pkg-config files
WebKit violates W^X, so binaries linked with it need to be "wxneeded".
Pkg-config files seem to be an appropriate mean of automating this task.
"


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 09:51:08

Modified files:
	www/xombrero   : Makefile 

Log message:
No need for WX_NEEDED; www/webkit takes care of it.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/01 09:53:21

Modified files:
	gnu/lib        : Makefile 

Log message:
Re-enable libobjc on arm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 09:55:27

Modified files:
	geo/qgis       : Makefile 

Log message:
Drop USE_WXNEEDED; the underlying issue is in qt4 webkit and we don't want
to annotate all ports when the common issue comes from outside.

discussed with/ok landry@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/01 10:04:47

Modified files:
	usr.sbin/vmd   : loadfile.h loadfile_elf.c vmm.c 
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 

Log message:
Make vcpu_reset_regs use new writeregs code

Makes reset code a little simpler. ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/01 10:07:55

Modified files:
	usr.sbin/httpd : config.c 

Log message:
The fork+exec diff broke "what?!", the ps_what field determines the
configuration that has to be initialized in each process and was
inherited from the parent instead of setting it everywhere.  I'm
surprised that it worked.

OK florian


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/01 10:09:01

Modified files:
	faq            : faq11.html faq14.html faq4.html faq7.html 
	faq/ports      : differences.html 

Log message:
remove more sparc mentions and use "sparc64" to refer to ultrasparc.


CVSROOT:	/cvs
Module name:	www
Changes by:	edd@cvs.openbsd.org	2016/09/01 10:09:27

Modified files:
	faq/ports      : guide.html 

Log message:
guide.html: Update porting guide with more accurate and concise prose.

To be more specific:

OK tj@, sthen@, tb@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/01 10:14:51

Modified files:
	sbin/fdisk     : mbr.c 

Log message:
EFI firmware has been encountered that is (from our point of view) confused
about the disk size. Making the protective MBR created by fdisk invalid as
fdisk used the 'correct' disk size.

So just do what MS does and put UINT32_MAX into the EE partition size field,
no matter what the disk size is. Lets tom@'s Dell boot.

ok kettenis@ tom@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/01 10:17:27

Modified files:
	build          : Makefile 

Log message:
make the 'ftp' target synonymous to '../ftp.html' to fix the 'all' target

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/01 10:17:46

Modified files:
	sbin/fdisk     : mbr.c 

Log message:
Nuke now unused 'sz' variable.


CVSROOT:	/cvs
Module name:	src
Changes by:	henning@cvs.openbsd.org	2016/09/01 10:18:09

Modified files:
	regress/sbin/pfctl: pf13.in pf13.loaded pf13.ok pf13.optimized 

Log message:
no route-to/reply-to/dup-to on block rules, aka make this pass again
triggered by bluhm's *meep, secret*


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/01 10:21:17

Modified files:
	faq            : faq7.html 
	faq/ports      : guide.html 

Log message:
unify spelling of SPARC64 and sparc64


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/01 10:28:12

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/files: audio_manager_openbsd.cc 
	                    audio_manager_openbsd.h 
	www/chromium/patches: patch-BUILD_gn 
	                      patch-ash_display_mirror_window_controller_cc 
	                      patch-base_BUILD_gn 
	                      patch-base_message_loop_message_loop_cc 
	                      patch-base_sys_info_openbsd_cc 
	                      patch-base_sys_info_posix_cc 
	                      patch-base_trace_event_process_memory_dump_cc 
	                      patch-build_config_BUILDCONFIG_gn 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_allocator_gni 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_compiler_compiler_gni 
	                      patch-build_config_features_gni 
	                      patch-build_toolchain_gcc_toolchain_gni 
	                      patch-cc_BUILD_gn 
	                      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_browser_BUILD_gn 
	                      patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_browser_resources_grd 
	                      patch-chrome_browser_chrome_browser_main_cc 
	                      patch-chrome_browser_chrome_browser_main_posix_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_shelf_context_menu_cc 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_bookmark_app_helper_cc 
	                      patch-chrome_browser_process_singleton_posix_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_browser_resources_safe_browsing_gen_file_type_proto_py 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_task_manager_task_manager_cc 
	                      patch-chrome_browser_tracing_crash_service_uploader_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_startup_startup_browser_creator_cc 
	                      patch-chrome_browser_ui_toolbar_app_menu_model_cc 
	                      patch-chrome_browser_ui_views_chrome_views_delegate_cc 
	                      patch-chrome_browser_ui_views_first_run_dialog_cc 
	                      patch-chrome_browser_ui_views_frame_browser_view_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_options_browser_options_handler_cc 
	                      patch-chrome_browser_ui_webui_options_browser_options_handler_h 
	                      patch-chrome_common_BUILD_gn 
	                      patch-chrome_common_chrome_paths_cc 
	                      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_url_constants_cc 
	                      patch-chrome_common_url_constants_h 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_metrics_BUILD_gn 
	                      patch-components_mus_surfaces_surfaces_context_provider_cc 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-content_app_content_main_runner_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_accessibility_browser_accessibility_manager_h 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_child_process_launcher_cc 
	                      patch-content_browser_geolocation_location_arbitrator_impl_cc 
	                      patch-content_browser_gpu_gpu_data_manager_impl_private_cc 
	                      patch-content_browser_media_media_internals_cc 
	                      patch-content_browser_ppapi_plugin_process_host_cc 
	                      patch-content_browser_renderer_host_media_video_capture_device_client_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_utility_process_host_impl_cc 
	                      patch-content_common_BUILD_gn 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_renderer_renderer_main_cc 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-device_hid_BUILD_gn 
	                      patch-device_serial_serial_service_impl_cc 
	                      patch-device_usb_BUILD_gn 
	                      patch-gpu_config_gpu_info_collector_x11_cc 
	                      patch-ipc_ipc_message_utils_cc 
	                      patch-media_audio_BUILD_gn 
	                      patch-media_audio_audio_manager_h 
	                      patch-media_base_video_frame_cc 
	                      patch-media_base_video_frame_h 
	                      patch-media_capture_video_video_capture_device_h 
	                      patch-media_media_options_gni 
	                      patch-net_BUILD_gn 
	                      patch-net_proxy_proxy_config_service_linux_cc 
	                      patch-net_udp_udp_socket_posix_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-sandbox_linux_BUILD_gn 
	                      patch-services_shell_runner_host_BUILD_gn 
	                      patch-third_party_WebKit_Source_bindings_core_v8_V8ScriptRunner_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_h 
	                      patch-third_party_WebKit_Source_platform_fonts_SimpleFontData_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_h 
	                      patch-third_party_WebKit_Source_wtf_BUILD_gn 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_pdfium_core_fxge_ge_fx_ge_linux_cpp 
	                      patch-third_party_pdfium_fpdfsdk_javascript_JS_Value_cpp 
	                      patch-third_party_protobuf_src_google_protobuf_stubs_platform_macros_h 
	                      patch-third_party_webrtc_BUILD_gn 
	                      patch-third_party_webrtc_base_BUILD_gn 
	                      patch-third_party_webrtc_base_network_cc 
	                      patch-third_party_webrtc_base_physicalsocketserver_cc 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                      patch-tools_gn_bootstrap_bootstrap_py 
	                      patch-tools_perf_chrome_telemetry_build_BUILD_gn 
	                      patch-ui_app_list_app_list_constants_cc 
	                      patch-ui_app_list_app_list_constants_h 
	                      patch-ui_base_resource_resource_bundle_cc 
	                      patch-ui_events_devices_x11_device_data_manager_x11_cc 
	                      patch-ui_gfx_font_render_params_h 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_gl_gl_bindings_autogen_glx_h 
	                      patch-ui_gl_sync_control_vsync_provider_cc 
	                      patch-ui_gl_sync_control_vsync_provider_h 
	                      patch-ui_message_center_message_center_style_h 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_window_dialog_delegate_cc 
	                      patch-v8_BUILD_gn patch-v8_src_globals_h 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: 
	                      patch-chrome_browser_safe_browsing_permission_reporter_cc 
	                      patch-chrome_browser_ui_task_manager_task_manager_columns_cc 
	                      patch-components_content_settings_core_browser_website_settings_registry_cc 
	                      patch-components_mus_public_cpp_lib_gles2_context_cc 
	                      patch-content_browser_device_sensors_data_fetcher_shared_memory_h 
	                      patch-device_gamepad_gamepad_provider_cc 
	                      patch-third_party_webrtc_system_wrappers_source_atomic32_non_darwin_unix_cc 
	                      patch-v8_src_libsampler_v8-sampler_cc 
Removed files:
	www/chromium/patches: 
	                      patch-chrome_browser_ui_views_ash_chrome_browser_main_extra_parts_ash_cc 
	                      patch-chrome_browser_ui_views_task_manager_view_cc 
	                      patch-content_browser_gamepad_gamepad_provider_cc 
	                      patch-content_browser_renderer_host_render_widget_host_impl_cc 
	                      patch-content_renderer_media_webrtc_audio_renderer_cc 
	                      patch-mojo_gles2_gles2_context_cc 
	                      patch-third_party_WebKit_Source_platform_image-decoders_png_PNGImageDecoder_cpp 
	                      patch-third_party_webrtc_system_wrappers_source_atomic32_posix_cc 
	                      patch-v8_src_profiler_sampler_cc 

Log message:
update to 53.0.2785.89


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/01 10:40:06

Modified files:
	usr.sbin/vmd   : i8253.c i8259.c ns8250.c pci.c vmm.c 

Log message:
change some log_warn to log_warnx and convert some integer literals to
enumerand values


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 10:44:12

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

Log message:
Update to libgeotiff 1.4.2.

Tested with geo/gdal


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/01 10:50:14

Modified files:
	multimedia/sfml: Makefile distinfo 
	multimedia/sfml/patches: patch-cmake_Config_cmake 
	                         patch-include_SFML_Config_hpp 
	                         patch-include_SFML_OpenGL_hpp 
	                         patch-include_SFML_Window_WindowHandle_hpp 
	                         patch-src_SFML_Window_CMakeLists_txt 
	                         patch-src_SFML_Window_GlContext_cpp 
	                         patch-src_SFML_Window_InputImpl_hpp 
	                         patch-src_SFML_Window_JoystickImpl_hpp 
	                         patch-src_SFML_Window_WindowImpl_cpp 
	multimedia/sfml/pkg: PLIST 
Added files:
	multimedia/sfml/patches: patch-CMakeLists_txt 
	                         patch-src_SFML_Window_SensorImpl_hpp 
Removed files:
	multimedia/sfml/patches: patch-src_SFML_System_CMakeLists_txt 
	                         patch-src_SFML_Window_Linux_JoystickImpl_hpp 
	                         patch-src_SFML_Window_Linux_WindowImplX11_cpp 

Log message:
Update to SFML 2.4.0.

ok bentley@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 10:50:35

Modified files:
	databases/openldap: Makefile 
	databases/openldap/patches: patch-servers_slapd_slapd_conf 

Log message:
Patch the default config to use bdb backend by default, this way slapd
works ootb instead of blowing out because we can't use mdb.

discussed with sthen@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/01 10:50:56

Modified files:
	games/mars     : Makefile 
	games/mars/patches: patch-src_System_window_cpp 
Added files:
	games/mars/patches: patch-src_Shaders_postFX_cpp 

Log message:
Fix games/mars with new SFML.

ok bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/01 10:53:38

Modified files:
	sys/net        : rtsock.c 

Log message:
Move RTM_GET into its own case block not intermixing it with RTM_CHANGE
and RTM_LOCK. This is start for more changes here. OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/01 10:53:41

Modified files:
	games/extremetuxracer: Makefile distinfo 
	games/extremetuxracer/pkg: PLIST 
Removed files:
	games/extremetuxracer/files: etracer.desktop 

Log message:
Update to extremetuxracer 0.7.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/09/01 10:55:55

Modified files:
	devel/py-pathlib: Makefile 
	devel/py-pathlib/pkg: PLIST 

Log message:
add missing entry in plist

ok shadchin@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/01 11:00:38

Modified files:
	sys/net        : rtsock.c 

Log message:
No longer needed to special case RTM_GET in these if statements since
RTM_GET is no longer sharing this case block.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/01 11:09:33

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
fix a merge collision, and add some retval checking on various pthread_*
functions


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/01 11:12:30

Removed files:
	devel/cargo/patches: patch-tests_support_paths_rs 
	                     patch-tests_test_cargo_new_rs 

Log message:
remove patches that were supposed to be cvs rm'ed. My bad.
reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	yasuoka@cvs.openbsd.org	2016/09/01 11:21:43

Modified files:
	sysutils/iwatch: Makefile distinfo 

Log message:
Update to iwatch-1.0.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/01 11:23:36

Modified files:
	databases/p5-DBD-mysql: Makefile distinfo 
	databases/p5-DBD-mysql/pkg: PLIST 
Removed files:
	databases/p5-DBD-mysql/patches: patch-dbdimp_c 

Log message:
bugfix update to 4.036


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/01 11:28:08

Modified files:
	devel/p5-Log-Any: Makefile distinfo 
	devel/p5-Log-Any/pkg: PLIST 

Log message:
update to 1.042


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/01 11:28:34

Modified files:
	usr.sbin/vmd   : mc146818.c 

Log message:
normalize some function names


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/01 11:30:04

Modified files:
	usr.bin/signify: signify.c 

Log message:
add a -t keytype option for untrusted comment automatic key extraction
(not in VERIFYONLY mode) to be documented and used shortly
okay tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/01 11:30:33

Modified files:
	lang/gcc/4.9   : Makefile distinfo 
	lang/gcc/4.9/patches: patch-fixincludes_fixincl_x 
	                      patch-fixincludes_inclhack_def 
	                      patch-gcc_ada_gcc-interface_Makefile_in 
	                      patch-gcc_config_alpha_alpha_md 
	                      patch-gcc_config_gcc 
	                      patch-gcc_config_i386_i386_c 
	                      patch-gcc_config_pa_pa_c 
	                      patch-gcc_config_rs6000_rs6000_c 
	                      patch-gcc_config_sparc_sparc_c 
	                      patch-gcc_configure 
	                      patch-libatomic_configure_tgt 
	                      patch-libgcc_config_host 
	                      patch-libiberty_cp-demangle_c 
	                      patch-libstdc++-v3_configure 

Log message:
Update to GCC 4.9.4.

No fallout in naddy@'s bulk.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 11:30:52

Modified files:
	usr.bin/doas   : doas.c 

Log message:
unconst these parameters; i won't be changing bsd auth today.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/01 11:32:17

Modified files:
	devel/llvm     : Makefile 

Log message:
adjust for GCC update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/01 11:33:40

Modified files:
	mail           : Makefile 
	mail/mutt      : Makefile distinfo 
	mail/mutt/patches: patch-main_c patch-mutt_sasl_c 
	mail/mutt/pkg  : DESCR PLIST 

Log message:
Switch the mutt port to using the 20160827 NeoMutt sources based on 1.7.0.
Most of the flavours are now integrated in the main package.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/01 11:35:23

Modified files:
	usr.bin/signify: signify.c 

Log message:
don't initialize variables with functions


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/01 11:42:08

Modified files:
	regress/usr.bin/mandoc/db/dbm_dump: Makefile 

Log message:
Make this work both with and without "make obj" in src/usr.bin/mandoc;
suggested by bluhm@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/01 12:34:04

Modified files:
	app/cwm        : client.c 

Log message:
Remove redundant minimum client size adjustment (minw and minh are
always positive since r1.214); from Vadim Vygonets.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/01 12:38:53

Modified files:
	app/cwm        : client.c 

Log message:
Do not draw borders on ignored clients when returning from fullscreen;
from Vadim Vygonets.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/01 14:06:52

Modified files:
	sbin/dhclient  : dhclient.conf.5 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/01 14:51:23

Modified files:
	x11/gnustep/gworkspace: Makefile distinfo 
	x11/gnustep/gworkspace/pkg: PLIST 

Log message:
Update to 0.9.4

A couple of enhancements and bug fixes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/01 15:00:41

Modified files:
	x11/gnustep/gorm: Makefile distinfo 

Log message:
Update to 1.2.23, most notably change:
Fix for issue where NSPanel was being saved as an NSWindow in some
cases.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2016/09/01 15:06:09

Modified files:
	usr.bin/mg     : extend.c 

Log message:
Fix file descriptor leak

Found by Coverity Scan.  The ffropen() function returns FIODIR when the
file is a directory.  Check return value on error, in case of directory,
close the descriptor.

Source Joachim Nilsson, ok sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 15:56:34

Modified files:
	textproc/libxslt: Makefile distinfo 
Removed files:
	textproc/libxslt/patches: patch-libxslt_preproc_c 
	                          patch-xsltproc_xsltproc_c 

Log message:
- update to libxslt-1.1.29

tested in a bulk by aja@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/01 15:56:59

Modified files:
	textproc/libxml: Makefile distinfo 
	textproc/libxml/patches: patch-Makefile_in patch-configure_ac 
	                         patch-python_Makefile_in 
	                         patch-python_tests_Makefile_in 
	                         patch-xstc_Makefile_in 

Log message:
- update to libxml-2.9.4

tested in a bulk by aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 16:38:34

Modified files:
	devel/p5-Config-Grammar: Makefile distinfo 

Log message:
Update to p5-Config-Grammar-1.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/01 16:44:39

Modified files:
	converters/libpst: Makefile distinfo 
	converters/libpst/patches: patch-configure 

Log message:
Update to libpst-0.6.68.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/01 19:07:27

Modified files:
	.              : plat.html 

Log message:
silence w3 validator warnings; from lists at wrant.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/09/01 23:15:17

Modified files:
	www/netsurf/libsvgtiny: Makefile 

Log message:
Missing build dependency on gperf.

Noticed by Brian Callahan.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/02 01:46:18

Modified files:
	regress/usr.bin/patch: Makefile 

Log message:
disable t3, it is known to fail


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 02:16:28

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.51.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 02:16:41

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.61.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 02:52:33

Log message:
    Import py-sqlparse 0.2.1.
    
    sqlparse is a non-validating SQL parser module for Python.
    
    Needed by an upcoming py-sqlachemy-migrate update.
    
    ok edd@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20160902
    
    N ports/databases/py-sqlparse/Makefile
    N ports/databases/py-sqlparse/distinfo
    N ports/databases/py-sqlparse/pkg/DESCR
    N ports/databases/py-sqlparse/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 02:53:45

Modified files:
	databases      : Makefile 

Log message:
+py-sqlparse


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/09/02 03:04:56

Modified files:
	sys/dev/ic     : acx.c 

Log message:
No need to set 'error' to 0 at the beginning of acx_encap(), as
we're only going to set it again 10 lines later.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 03:08:36

Modified files:
	databases/py-sqlalchemy-migrate: Makefile distinfo 
	databases/py-sqlalchemy-migrate/pkg: PLIST 

Log message:
Update to py-sqlachemy-migrate 0.10.0.

Migrate from the dead googlecode original version to the
openstack-maintained fork on pypi. Unbreaks with the upcoming
py-sqlalchemy update baked by edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/02 03:10:25

Modified files:
	mail/courier-imap: Makefile distinfo 

Log message:
bugfix update to 4.17.2


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/09/02 03:12:49

Modified files:
	sys/crypto     : cryptosoft.c 

Log message:
Remove variables 'm' and 'uio' that are only ever assigned to
(in swcr_authenc())

ok mikeb@, who pointed out that I'd missed uio


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/02 03:14:59

Modified files:
	sys/dev/usb    : uhub.c moscom.c uark.c uchcom.c udcf.c umbg.c 
	                 umct.c uonerng.c uplcom.c uscom.c uslcom.c 
	                 uts.c uvisor.c uvscom.c 

Log message:
Avoid calling usbd_set_config_index() in *_attach() and let the stack
do it instead.

If anything bad happen due to a malformed descriptor it makes no sense
to try to attach a driver, and bail before probing.


CVSROOT:	/cvs
Module name:	ports
Changes by:	eric@cvs.openbsd.org	2016/09/02 03:18:20

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

Log message:
update to zope.event 4.2.0
add python3 flavor

ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/02 03:19:36

Modified files:
	mail/maildrop  : Makefile distinfo 

Log message:
bugfix update to 2.8.4


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/02 03:20:00

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Prevent a NULL dereference, triggerable with a crafted configuration
descriptor with a bad type.

Found with umap2 and a facedancer21.


CVSROOT:	/cvs
Module name:	ports
Changes by:	eric@cvs.openbsd.org	2016/09/02 03:21:08

Modified files:
	devel          : Makefile 

Log message:
add py-zopeevent,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/02 03:23:56

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Do not free the configuration descriptor without setting ``dev->cdesc''
to NULL.

Prevent a use after free triggerable with invalid interface descriptor.

Found with umap2 and a facedancer21.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 03:30:37

Added files:
	mail/mutt/patches: patch-contrib_Makefile_in 
	                   patch-doc_Makefile_in 

Log message:
missed 'cvs add' for mutt update; breakage noted by aja


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/02 03:31:25

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
Go through the set function like normal people; no functional change.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/02 03:39:32

Modified files:
	sys/netinet    : ipsec_input.c ip_esp.h 
	usr.bin/netstat: inet.c 

Log message:
Drop non-encapulated ESP packets using a UDP-encapsulating TDB, and add
the relevant counters.

Ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/09/02 03:43:54

Modified files:
	usr.sbin/smtpd : ssl.c 

Log message:
turn server preference for ciphers on by default

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/09/02 03:44:27

Modified files:
	sys/kern       : subr_disk.c 

Log message:
Don't bother with 'ghpartnum' in gpt_chk_hdr(); it's not used

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/02 03:48:03

Modified files:
	usr.bin/patch  : pch.c 

Log message:
If reading fails, do not go into infinite loop asking for a filename
Happens in bulf build where no tty is available.
ok sthen@ naddy@ $(jot -b yes 1000) landry@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/09/02 03:50:20

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

Log message:
add mirrors.pidginhost.com in Bucharest, from Octavian Dinu.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/02 03:57:44

Modified files:
	databases/py-sqlalchemy: Makefile distinfo 
	databases/py-sqlalchemy/patches: patch-setup_cfg 
	databases/py-sqlalchemy/pkg: PLIST 

Log message:
Update databases/py-sqlalchemy to 1.0.14.

OK landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	goda@cvs.openbsd.org	2016/09/02 04:01:36

Modified files:
	sbin/ifconfig  : brconfig.c brconfig.h ifconfig.c 
	sys/net        : if_bridge.c if_bridge.h if_switch.c switchofp.c 
	sys/sys        : sockio.h 

Log message:
Add switch(4) support to ifconfig

ok deraadt@ yasuoka@ reyk@ henning@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/02 04:06:26

Modified files:
	graphics/simgear: Makefile distinfo 
	graphics/simgear/pkg: PLIST 
Added files:
	graphics/simgear/patches: patch-simgear_compiler_h 
	                          patch-simgear_misc_strutils_cxx 
Removed files:
	graphics/simgear/patches: 
	                          patch-simgear_canvas_elements_CanvasText_cxx 
	                          patch-simgear_scene_material_Technique_cxx 
	                          patch-simgear_scene_sky_CloudShaderGeometry_cxx 
	                          patch-simgear_scene_tgdb_ShaderGeometry_cxx 
	                          patch-simgear_scene_util_SGSceneFeatures_cxx 
	                          patch-simgear_sound_sample_group_cxx 

Log message:
Update to simgear 2016.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/02 04:07:53

Modified files:
	games/flightgear: Makefile.inc 
	games/flightgear/base: Makefile distinfo 
	games/flightgear/base/patches: 
	                               patch-3rdparty_hts_engine_API_lib_HTS_misc_c 
	games/flightgear/data: Makefile distinfo 
	games/flightgear/data/pkg: PLIST 

Log message:
Update to FlightGear 2016.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 04:09:44

Log message:
    Import py-waitress 1.0.0 - an actual RDEP for py-webtest.
    
    Waitress is meant to be a production-quality pure-Python WSGI server with very
    acceptable performance. It has no dependencies except ones which live in the
    Python standard library. It supports HTTP/1.0 and HTTP/1.1.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20160902
    
    N ports/www/py-waitress/Makefile
    N ports/www/py-waitress/distinfo
    N ports/www/py-waitress/pkg/PLIST
    N ports/www/py-waitress/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/02 04:09:45

Modified files:
	dist/libxcb    : INSTALL Makefile.am Makefile.in NEWS aclocal.m4 
	                 check-pc-requires configure configure.ac 
	                 xcb-composite.pc.in xcb-damage.pc.in 
	                 xcb-dpms.pc.in xcb-dri2.pc.in xcb-dri3.pc.in 
	                 xcb-glx.pc.in xcb-present.pc.in xcb-randr.pc.in 
	                 xcb-record.pc.in xcb-render.pc.in xcb-res.pc.in 
	                 xcb-screensaver.pc.in xcb-shape.pc.in 
	                 xcb-shm.pc.in xcb-sync.pc.in xcb-xevie.pc.in 
	                 xcb-xf86dri.pc.in xcb-xfixes.pc.in 
	                 xcb-xinerama.pc.in xcb-xinput.pc.in 
	                 xcb-xkb.pc.in xcb-xprint.pc.in 
	                 xcb-xselinux.pc.in xcb-xtest.pc.in xcb-xv.pc.in 
	                 xcb-xvmc.pc.in 
	dist/libxcb/doc: Makefile.in 
	dist/libxcb/m4 : libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 
	                 lt~obsolete.m4 xcb.m4 
	dist/libxcb/src: Makefile.am Makefile.in c_client.py config.h.in 
	                 xcb_conn.c xcb_out.c xcbext.h 
	dist/libxcb/tests: Makefile.in 
	lib/libxcb/libxcb: Makefile shlib_version 
	lib/libxcb/libxcb-glx: shlib_version 
	lib/libxcb/libxcb-present: shlib_version 
	lib/libxcb/libxcb-randr: shlib_version 
	lib/libxcb/libxcb-record: shlib_version 
	lib/libxcb/libxcb-render: shlib_version 
	lib/libxcb/libxcb-screensaver: shlib_version 
	lib/libxcb/libxcb-shape: shlib_version 
	lib/libxcb/libxcb-sync: shlib_version 
	lib/libxcb/libxcb-xfixes: shlib_version 
	lib/libxcb/libxcb-xkb: shlib_version 
	lib/libxcb/libxcb-xprint: shlib_version 
	lib/libxcb/libxcb-xv: shlib_version 
	lib/libxcb/src : Makefile bigreq.c bigreq.h composite.c 
	                 composite.h config.h damage.c damage.h dpms.c 
	                 dpms.h dri2.c dri2.h dri3.c dri3.h glx.c glx.h 
	                 present.c present.h randr.c randr.h record.c 
	                 record.h render.c render.h res.c res.h 
	                 screensaver.c screensaver.h shape.c shape.h 
	                 shm.c shm.h sync.c sync.h xc_misc.c xc_misc.h 
	                 xevie.c xevie.h xf86dri.c xf86dri.h xfixes.c 
	                 xfixes.h xinerama.c xinerama.h xinput.c 
	                 xinput.h xkb.c xkb.h xprint.c xprint.h xproto.c 
	                 xproto.h xselinux.c xselinux.h xtest.c xtest.h 
	                 xv.c xv.h xvmc.c xvmc.h 
	proto/xcb-proto: Makefile NEWS configure.ac py-compile 
	proto/xcb-proto/doc: xml-xcb.txt 
	proto/xcb-proto/src: glx.xml present.xml randr.xml render.xml 
	                     screensaver.xml shm.xml sync.xml xcb.xsd 
	                     xfixes.xml xinput.xml xkb.xml xprint.xml 
	                     xproto.xml xselinux.xml xv.xml 
	proto/xcb-proto/xcbgen: Makefile.am expr.py xtypes.py 
Added files:
	dist/libxcb    : ChangeLog 
	proto/xcb-proto/xcbgen: align.py 

Log message:
Update to xcb-proto/libxcb 1.12. "Just commit it" naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 04:10:16

Modified files:
	www            : Makefile 

Log message:
+py-waitress


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 04:10:52

Modified files:
	www/py-webtest : Makefile 

Log message:
Add py-waitress to RUN_DEPENDS (and py-coverage to TEST_DEPENDS while here)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/02 04:11:16

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/09/02 04:16:03

Modified files:
	sys/isofs/cd9660: cd9660_vfsops.c 

Log message:
Variable 'imp' is set earlier in cd9660_mount() if it's needed (when
MNT_UPDATE is set in mnt_flag), so remove an unnecessary assignment later.

ok bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/02 04:19:49

Modified files:
	sys/net        : pf_if.c pf_ioctl.c pf_norm.c pf_osfp.c 
	                 pf_table.c 

Log message:
pool_setipl for pf bits

ok phessler@ henning@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 04:24:29

Modified files:
	audio/fookebox : Makefile distinfo 
	audio/fookebox/files: config.ini 
	audio/fookebox/pkg: PLIST README 

Log message:
Update to fookebox 0.7.3.

Remove py-sqlalchemy from dependencies, it's been unused since 0.7.x
branch. No need for py-formencode as it's a dependency of py-pylons.

Update default config.ini and README.


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/02 04:32:38

Modified files:
	usr.bin/passwd : local_passwd.c 

Log message:
make sure to explicitly clear memory that is used for password input.
OK tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 04:34:59

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/patches: patch-configure_ac 
	telephony/asterisk/pkg: PLIST-main 

Log message:
update to asterisk-13.11.0


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/02 04:36:51

Modified files:
	libexec/login_passwd: common.h login.c 

Log message:
krb5 bits should rest in peace
OK deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 04:41:58

Modified files:
	regress/sbin/ipsecctl: sa11.in sa11.ok sa18.in sa18.ok sa21.in 
	                       sa21.ok sa23.in sa23.ok sa6.in sa6.ok 
	                       sa9.in sa9.ok 

Log message:
Remove obsolete DES-CBC tests


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/02 04:47:17

Modified files:
	sbin/disklabel : disklabel.c editor.c 

Log message:
Allow editing cpg in expert mode and align the cpg field properly
ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/02 04:57:48

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Cleanup usbd_fill_iface_data() to make it easier to check for bad
descriptors.

No functionnal change.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 04:58:24

Modified files:
	regress/sbin/ipsecctl: ike1.ok ike10.ok ike11.ok ike12.ok 
	                       ike13.ok ike14.ok ike15.ok ike17.ok 
	                       ike18.ok ike19.ok ike2.ok ike20.ok 
	                       ike21.ok ike22.ok ike23.ok ike29.ok 
	                       ike3.ok ike30.ok ike31.ok ike32.ok 
	                       ike33.ok ike34.ok ike35.ok ike36.ok 
	                       ike37.ok ike39.ok ike4.ok ike40.ok 
	                       ike41.ok ike42.ok ike43.ok ike46.ok 
	                       ike47.ok ike48.ok ike49.ok ike50.ok 
	                       ike51.ok ike52.ok ike53.ok ike54.ok 
	                       ike55.ok ike56.ok ike57.ok ike58.ok 
	                       ike59.ok ike6.ok ike60.ok ike61.ok 
	                       ike62.ok ike63.ok ike64.ok ike65.ok 
	                       ike66.ok ike67.ok ike68.ok ike7.ok 
	                       ike8.ok ike9.ok ikefail14.ok ikefail6.ok 

Log message:
Adjust for the new default MODP group


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/02 05:00:05

Modified files:
	lib/libXfont   : ChangeLog configure configure.ac 
	lib/libXfont/doc: fontlib.xml 
	lib/libXfont/src/FreeType: ftfuncs.c xttcap.c 
	lib/libXfont/src/bitmap: bdfread.c bdfutils.c bitscale.c 
	                         pcfread.c 
	lib/libXfont/src/fc: fserve.c 
	lib/libXfont/src/stubs: stubs.h 
	lib/libXfont/src/util: fontxlfd.c 

Log message:
Update to libXfont 1.5.2


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/02 05:01:07

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	yasuoka@cvs.openbsd.org	2016/09/02 05:02:00

Modified files:
	mail/mailest   : Makefile distinfo 

Log message:
Update to mailest-0.9.21


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 05:09:37

Modified files:
	telephony/asterisk: Makefile 

Log message:
sync WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 05:09:56

Modified files:
	devel/ctftools : Makefile 
Added files:
	devel/ctftools/patches: 
	                        patch-contrib_opensolaris_tools_ctf_cvt_dwarf_c 
	                        patch-lib_libctf_Makefile 
	                        patch-usr_bin_ctfconvert_Makefile 
	                        patch-usr_bin_ctfdump_Makefile 
	                        patch-usr_bin_ctfmerge_Makefile 

Log message:
- switch away from elftoolchain and use devel/libelf and devel/libdwarf instead
- add patch from mpi@ to be able to use libdwarf


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/02 05:11:48

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
for reporting changes, hex and decimal were swapped
noticed by pirofti


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/02 05:11:49

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Treat backoff_cutoff as a hard cutoff, not the midpoint in a range
from .5 to 1.5 ofthe value. This is how the man page describes it and
nobody can remember why it was not being used as a hard limit.

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/02 05:14:17

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Pass M_ZERO when allocating memory for "struct usbd_endpoint".

These descriptors are filled with value parsed from untrusted USB
descriptors and we don't want to left memory unitialized if an error
occurs during the parsing.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/02 05:17:14

Modified files:
	sys/sys        : tree.h 
Added files:
	sys/kern       : subr_tree.c 

Log message:
provide an implementation of red black trees using functions

the main goal of this change is to reduce the amount of code that
is generated as a result of using the macro implementation (RB_FOO)
of red black trees. on amd64 we should get a few dozen kilobytes
of code space back, and make red black trees more icache friendly
at the same time.

the new (RBT_FOO) implementation is modelled on the existing one,
but has some minor api variations. generally you can replace RB_
with RBT_ and get most of the way to converting code.

internally the red black tree functions all take an rb_type struct
that describes the layout of the object wired into a tree (ie, the
offset of the RBT_ENTRY inside a node), the comparison function,
and an optional augment function. because the functions are supposed
to be used for all types, they end up taking void * for the node
pointers instead of specific types. the tree is operated on as
pointers between the RBT_ENTRY structs instead of the nodes, which
gave me some type safety when implementing the code (cos casts
to/from void * dont ever fail, and continually calculating the
offset of the rb entry is annoying). RBT_ENTRYs are turned into
node pointers by prepending the offset stored in the rb_type struct
before theyre given to the comparison function or returned to the
caller.

to provide type safety on top of this, RBT_PROTOTYPE generates static
inline function wrappers that only take arguments of the right type,
and implicitly provide the rb_type struct argument to the actual
RBT functions. therefore the actual functions should never be called
directly, all calls should go through the RBT_ wrappers.

RBT_GENERATE is responsible for creating the rb_type struct used
by these wrappers. notably it also generates a wrapper around the
compare function so the user provided one must take the right types
instead of void *.

in terms of speed, this code is comparable to the macro implementation.
eg, insertion is very slightly slower in microbenchmarks, but
deletion appears to be significantly faster. this is possibly because
of the aggressive inlining ive done inside the delete codepaths.

the code is not yet wired into the kernel build.

it also needs to be said that there have been several attempts
before this to provide functions for at least some parts of the
kernels red black trees. that work made this a lot easier.

ok deraadt@ jung@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 05:20:48

Modified files:
	regress/sys/crypto/aesctr: Makefile 

Log message:
Pull in Chacha20 and Poly1305 source code as xform.o dependencies


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 05:22:23

Modified files:
	regress/sys/crypto/aesxts: Makefile 

Log message:
Pull in Chacha20 and Poly1305 source code as xform.o dependencies


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 05:23:11

Modified files:
	regress/sys/crypto/enc: Makefile 

Log message:
Pull in Chacha20 and Poly1305 source code as xform.o dependencies


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 05:25:14

Modified files:
	usr.sbin/httpd : httpd.c httpd.h proc.c 

Log message:
proc.c tweaks: Rename proc_listento() to proc_accept() as it is the
receiving side of proc_connect().  Move some code from main into
proc_init(), the function is now called by parent and children, not
just the parent and it is less copy + paste for other daemons.

OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	yasuoka@cvs.openbsd.org	2016/09/02 05:37:02

Modified files:
	mail/mailest   : Makefile distinfo 

Log message:
Update to mailest-0.9.22.  It was released again.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/02 05:43:53

Modified files:
	sys/net        : pf_osfp.c 

Log message:
provide a pool_setipl so tcpdump can compile this file

spotted by deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/09/02 05:47:42

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

Log message:
ftp passive is now working on mirrors.pidginhost.com; list that too


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/02 05:47:55

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/02 05:50:48

Modified files:
	gnu/usr.bin/texinfo/util: gen-dir-node 

Log message:
Make build deterministic by removing a line that records the date of
generation. From daniel, ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/02 05:51:07

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
Consider when a prefix expires when sending solicitations instead of
blindly always sending one every 60 seconds.

repeated prodding & input naddy
input & OK vgross


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 05:51:50

Modified files:
	usr.sbin/relayd: ca.c hce.c pfe.c proc.c relay.c relayd.c 
	                 relayd.h 

Log message:
Terminate relayd using the socket status instead of watching SIGCHLD
or killing child processes. - Based on rzalamena@'s diff for httpd.

OK deraadt@ rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/02 05:55:24

Modified files:
	games/fortune/datfiles: Makefile 

Log message:
Make build deterministic by not randomizing the datfiles themselves,
random lines are selected on output and that's enough.

From daniel, ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/02 06:06:54

Modified files:
	distrib/special: Makefile.inc 

Log message:
backout accidental commit


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 06:12:51

Modified files:
	usr.sbin/relayd: ca.c control.c pfe.c proc.c relay.c relayd.c 
	                 relayd.h 

Log message:
As done in httpd, remove ps_ninstances and p_instance.

OK benno@ rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/02 06:14:06

Modified files:
	lang/gcc/4.6   : Makefile 
	lang/gcc/4.6/pkg: PLIST-f95 
	lang/gcc/4.9   : Makefile 
	lang/gcc/4.9/pkg: PLIST-f95 

Log message:
Add a "bin/gfortran" symlink pointing to "bin/egfortran"

OK pascal@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 06:14:08

Modified files:
	usr.sbin/relayd: proc.c 

Log message:
style nit as done in httpd


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/02 06:17:33

Modified files:
	distrib/notes  : INSTALL mirrors packages 
	distrib/notes/amd64: hardware 
	distrib/notes/i386: hardware 
	distrib/notes/landisk: prep 
	etc/root       : root.mail 
	sbin/isakmpd   : README 
	share/man/man1 : help.1 
	share/man/man7 : ports.7 
	share/man/man8 : afterboot.8 release.8 
	share/snmp     : OPENBSD-BASE-MIB.txt OPENBSD-MEM-MIB.txt 
	                 OPENBSD-SENSORS-MIB.txt 
	usr.sbin/sysmerge: sysmerge.8 
	sys/ddb        : db_trap.c 
	sys/kern       : init_main.c 

Log message:
move links from http to https://www.openbsd.org/

ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/09/02 06:22:09

Modified files:
	distrib/amd64/common: install.md 

Log message:
Fix misleading 'No valid MBR or GPT' message when no OpenBSD area is found.

The current code is too strict and checks for an OpenBSD area inside an
MBR or GPT and if it fails to find one reports that there's no valid MBR
or GPT (which is misleading because the MBR/GPT is valid).

Instead, do two checks (similar to i386): first see if there's an MBR or GPT
present on the disk and if there is then check for the OpenBSD area.

OK krw@, halex@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/02 06:25:36

Modified files:
	mail/p5-Mail-Milter-Authentication: Makefile distinfo 
	mail/p5-Mail-Milter-Authentication/patches: 
	                                            patch-bin_authentication_milter 
	mail/p5-Mail-Milter-Authentication/pkg: PLIST 
Removed files:
	mail/p5-Mail-Milter-Authentication/patches: 
	                                            patch-lib_Mail_Milter_Authentication_Client_pm 

Log message:
Update to 1.1.0 and take maintainership


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/02 06:35:28

Modified files:
	textproc/py-elasticsearch: Makefile distinfo 
	textproc/py-elasticsearch/pkg: PLIST 

Log message:
Minor update to 2.4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/02 06:36:10

Modified files:
	sysutils/py-elasticsearch-curator: Makefile distinfo 

Log message:
Minor update to 4.0.6

looks good jasper@ same as for textproc/py-elasticsearc


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/02 07:02:24

Modified files:
	infrastructure/mk: fortran.port.mk 
	math/R         : Makefile 

Log message:
Switch back to the fortran module, now that all the right bits are
in place


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 07:09:21

Modified files:
	usr.sbin/relayd: config.c 

Log message:
As done in httpd, (re-)initialize ps_what in all processes.  This is
no functional change at this point.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/02 07:28:21

Modified files:
	sys/kern       : uipc_socket2.c 

Log message:
After allocating a single 64 KB mbuf cluster in sosend(), the sending
socket buffer had no space anymore.  The default mbuf space limit
was only 32 KB.  So no more data from user-land was accepted.  As
tcp_output() keeps the mbuf cluster for retransmits, it will be
freed only after all ACKs have been received.  That has killed our
TCP send performance totally.  To allow cycling through the mbufs
periodically, we need space for at least 3 of them.
Reported by Andreas Bartelt; testing with mikeb@; OK mikeb@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/02 07:28:36

Modified files:
	usr.sbin/snmpd : control.c 

Log message:
use imsg_read_nofd() implementation from bgpd.
let the caller handle EAGAIN.

ok reyk@ gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/02 07:36:50

Removed files:
	lib/libssl/src/doc/apps: asn1parse.pod ca.pod ciphers.pod 
	                         cms.pod config.pod crl.pod 
	                         crl2pkcs7.pod dgst.pod dhparam.pod 
	                         dsa.pod dsaparam.pod ec.pod ecparam.pod 
	                         enc.pod errstr.pod gendsa.pod 
	                         genpkey.pod genrsa.pod nseq.pod 
	                         ocsp.pod openssl.pod passwd.pod 
	                         pkcs12.pod pkcs7.pod pkcs8.pod pkey.pod 
	                         pkeyparam.pod pkeyutl.pod rand.pod 
	                         req.pod rsa.pod rsautl.pod s_client.pod 
	                         s_server.pod s_time.pod sess_id.pod 
	                         smime.pod speed.pod spkac.pod ts.pod 
	                         verify.pod version.pod x509.pod 
	                         x509v3_config.pod 

Log message:
Remove old pod docs that are not used or installed


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/02 07:41:11

Modified files:
	usr.sbin/smtpd : mproc.c 

Log message:
use imsg_read_nofd() implementation from bgpd.
let the caller handle EAGAIN.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/02 07:53:44

Modified files:
	sys/netinet6   : in6_src.c 

Log message:
in6_selectroute should never get a valid struct route * filled with something
else than AF_INET6.

Ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/09/02 07:59:51

Modified files:
	sys/dev/acpi   : acpicpu.c dsdt.c dsdt.h 

Log message:
Remove unused argument in aml_showvalue().

The second argument of aml_showvalue() was probably supposed to set
the verbosity level through dnprintf() but in fact it does nothing.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 08:00:30

Modified files:
	usr.sbin/bgpd  : Makefile bgpd.c bgpd.h log.c log.h rde.c 
	                 session.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@, feedback from henning@, deraadt@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 08:02:48

Modified files:
	usr.sbin/ospfd : Makefile log.c log.h ospfd.c ospfd.h ospfe.c 
	                 rde.c 
	usr.sbin/ospfctl: Makefile 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@, feedback from henning@, deraadt@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/02 08:03:24

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
When "makewhatis -d" tries to add to a database that doesn't (yet) exist,
silently create it from scratch instead of printing a warning.
The annoying warning message was reported by ajacoutot@, and espie@
convincingly argues that a non-existing database can be considered
equivalent to an empty one.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 08:04:25

Added files:
	usr.sbin/ospfd : logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@, feedback from henning@, deraadt@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 08:04:51

Added files:
	usr.sbin/bgpd  : logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@, feedback from henning@, deraadt@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 08:06:35

Modified files:
	usr.sbin/ospf6d: Makefile log.c log.h ospf6d.c ospf6d.h ospfe.c 
	                 rde.c 
	usr.sbin/ospf6ctl: Makefile 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@, feedback from henning@, deraadt@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 08:07:53

Modified files:
	usr.sbin/ripd  : Makefile log.c log.h rde.c ripd.c ripd.h ripe.c 
	usr.sbin/ripctl: Makefile 
Added files:
	usr.sbin/ripd  : logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@, feedback from henning@, deraadt@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 08:08:50

Added files:
	usr.sbin/ospf6d: logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@, feedback from henning@, deraadt@, reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/02 08:12:20

Log message:
    Import py-demjson.
    
    ---8<---
    The demjson module, and the included jsonlint script, provide methods
    for encoding and decoding JSON formatted data, as well as checking JSON
    data for errors and/or portability issues. The jsonlint command/script
    can be used from the command line without needing any programming.
    --->8---
    
    OK giovanni@, awolk@, Thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20160902
    
    N ports/textproc/py-demjson/Makefile
    N ports/textproc/py-demjson/distinfo
    N ports/textproc/py-demjson/pkg/PLIST
    N ports/textproc/py-demjson/pkg/DESCR
    N ports/textproc/py-demjson/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/02 08:14:39

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Reduce ping/ping6 difference in summary().
No functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/02 08:14:54

Modified files:
	textproc       : Makefile 

Log message:
Link py-demjson (+py3).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/02 08:15:58

Modified files:
	sbin/ping      : ping.c 

Log message:
timinginfo is a flag to track if the received icmp packet is big
enough to carry timing information.
Do not treat it as a counter as it could overflow.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/02 08:20:31

Modified files:
	misc/memcached : Makefile distinfo 
	misc/memcached/patches: patch-items_c patch-memcached_c 

Log message:
Update to 1.4.31
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/02 08:22:29

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Bring over 1.117 from ping:
----------------------------------------------------------------
Only read time information from the received packet if it is big
enough.
OK deraadt@
----------------------------------------------------------------

And with this summary() is in sync between ping and ping6.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/02 08:23:09

Modified files:
	usr.bin/jot    : jot.c 

Log message:
style cleanup: sort headers; group and sort variables; no parens for
return; sort getopt string and corresponding switch; and some more
tedious stuff

ok martijn


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 08:30:57

Modified files:
	lang/php/7.0   : Makefile 
Added files:
	lang/php/7.0/patches: patch-ext_pcre_php_pcre_c 

Log message:
Disable pcre jit by default in php 7.0, to avoid the process needing to do
W+X mappings. Fixes build with kern.wxabort=1 and runtime on a !wxallowed
partition. ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 08:31:06

Modified files:
	lang/php/7.0/patches: patch-php_ini-development 
	                      patch-php_ini-production 

Log message:
sync patches, no change


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 08:31:48

Modified files:
	usr.sbin/relayd: ca.c relay.c relay_udp.c 

Log message:
proc_id has been replaced by ps->ps_instance.

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 08:45:51

Modified files:
	usr.sbin/relayd: ca.c check_icmp.c check_script.c config.c hce.c 
	                 parse.y pfe.c pfe_filter.c pfe_route.c relay.c 
	                 relayd.c relayd.h snmp.c 

Log message:
Split "struct relayd" into two structs: "struct relayd" and "struct
relayd_config".  This way we can send all the relevant global
configuration to the children, not just the flags and the opts.

With input from and
OK claudio@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 08:46:42

Modified files:
	regress/sbin/isakmpd: Makefile 
Removed files:
	regress/sbin/isakmpd/rsakeygen: .cvsignore Makefile rsakeygen.c 

Log message:
Remove old RSA key generation and verification test as it's done now
by LibreSSL regress tests;  checked with bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 08:50:39

Modified files:
	usr.bin/signify: signify.c 

Log message:
split the sign() function into two, with a pure memory core made
available as a separate function to make it easier to reuse in other code.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/02 09:00:14

Modified files:
	lib/libc/locale: setrunelocale.c 

Log message:
Since we support only one non-ASCII LC_CTYPE locale, we don't need
a linked list to store it.  No functional change.
OK mpi@ guenther@,
and stsp@ agrees too that the time is ripe to start such cleanup


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/02 09:03:23

Modified files:
	lib/libc/locale: wcwidth.3 

Log message:
Make it clear that printable characters of width 0 exist.
While here, polish some wording.
OK stsp@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/02 09:08:44

Modified files:
	app/cwm        : client.c 

Log message:
Simplify toggling flags; from Vadim Vygonets.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 09:08:48

Modified files:
	usr.bin/signify: signify.c 

Log message:
move more code into createsig. callers just pass seckey filename.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/09/02 09:08:51

Modified files:
	net/ii/patches : sslpatch-ii_c ucspipatch-ii_c 

Log message:
patch merged upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/02 09:11:11

Modified files:
	sbin/ping6     : ping6.8 

Log message:
Wording improvment from jmc@ long time ago.
(When I tried to sync the -H flag to ping)


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/02 09:22:06

Modified files:
	lib/libssl/src/crypto/bn: bn_exp.c 

Log message:
BN_mod_exp_mont_consttime: check for zero modulus.

Don't dereference d when top is zero.

Original patch from OpenSSL commit d46e946d2603c64df6e1e4f9db0c70baaf1c4c03

ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 09:28:24

Added files:
	geo/mapserver/patches: patch-mapscript_php_error_c 

Log message:
Fix build with php 5.6.25, from robert@.

Filed https://github.com/mapserver/mapserver/pull/5318 upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 09:33:27

Modified files:
	usr.sbin/dvmrpd: dvmrpd.c dvmrpe.c rde.c 

Log message:
Don't fatal if the imsg pipe is closed, this is often triggered in the
parent and hides the real cause of the termination.

Pulled from ospfd. Original author: claudio@

ok rzalamena@ benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/02 09:34:01

Modified files:
	lib/libssl/src/crypto/rsa: rsa_eay.c 

Log message:
missing space after comma

ok bcook


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/02 09:34:25

Modified files:
	databases/py-sqlalchemy-migrate: Makefile 

Log message:
py-pbr is a BDEP, spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 09:35:34

Modified files:
	usr.sbin/dvmrpd: dvmrpd.c dvmrpe.c rde.c 

Log message:
Close connections when msgbuf_write() returns 0.

Pulled from ospfd. Original author: claudio@

ok rzalamena@ benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/02 09:36:39

Modified files:
	lib/libssl/src/crypto/evp: evp_enc.c 
	lib/libssl/src/doc/crypto: EVP_EncryptInit.pod 

Log message:
warn on use of deprecated EVP functions

This adds a linker warning for EVP_EncryptFinal(), EVP_DecryptFinal(),
EVP_CipherFinal(), and documents the recent behavior updates.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 09:38:08

Modified files:
	usr.sbin/dvmrpd: dvmrpd.c dvmrpe.c rde.c 

Log message:
Simplify shutdown process.

On shutdown, there's no need to use kill(2) to kill the child
processes. Just closing the IPC sockets will make the children receive
an EOF, break out from the event loop and then exit.

Tha advantages of this "pipe teardown" are:
* simpler code;
* no need to pledge "proc" in the parent process;
* removal of a (hard to trigger) PID reuse race condition.

"reads good" claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/09/02 09:38:42

Modified files:
	usr.bin/vi/ex  : ex_subst.c 

Log message:
Fix the begin of word issue in vi(1).
Similar fix went in sed and ed.

Feedback and OK schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 09:39:15

Modified files:
	meta/xfce      : Makefile 

Log message:
missed bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 09:42:07

Modified files:
	shells/nsh     : Makefile 
Added files:
	shells/nsh/patches: patch-show_c 

Log message:
handle RTF_MASK removal


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/02 09:44:26

Modified files:
	sbin/dhclient  : dhclient.c dhcpd.h dispatch.c options.c 
	                 privsep.c privsep.h 

Log message:
Kill 'ifi' global.

ok henning@, krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 09:45:17

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

Log message:
The struct iwm_rbuf definition, and the wantresp field in struct
iwm_rx_data aren't used anywhere and can be removed.
Patch by Imre Vadasz


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 09:45:41

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

Log message:
The iwm_poll_bit() function in iwm(4) returns 1 on success, and 0 on failure.
So instead of "if (ret < 0) {" we should check for "if (!ret) {".
Patch by Imre Vadasz


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 09:46:16

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

Log message:
Although this doesn't seem to cause any issue at the moment, using an
enum type in a __packed struct should be avoided.
Patch by Imre Vadasz


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 09:47:01

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

Log message:
Fix off-by-one error in the IWM_NUM_UCODE_TLV_CAPA range check.
Patch by Imre Vadasz


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 09:47:32

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

Log message:
The policy field in struct iwm_time_event_cmd_v2 is just a 16bit integer,
so we should use htole16() when setting it, instead of htole32().
Patch by Imre Vadasz
ok natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 09:59:48

Modified files:
	regress/sbin/isakmpd: Makefile 
Removed files:
	regress/sbin/isakmpd/b2n: Makefile b2ntest.c 

Log message:
Remove the GF(2**n) math test since isakmpd has been switched
to using D-H functions from libcrypto more than 6 years ago.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 10:03:29

Modified files:
	regress/sbin/isakmpd: Makefile 
Removed files:
	regress/sbin/isakmpd/ec2n: Makefile ec2ntest.c 

Log message:
Remove the GF(2**n) math test since isakmpd has been switched
to using D-H functions from libcrypto more than 6 years ago.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 10:04:53

Modified files:
	regress/sbin/isakmpd: Makefile 
Removed files:
	regress/sbin/isakmpd/group: Makefile grouptest.c 

Log message:
Remove the GF(2**n) math test since isakmpd has been switched
to using D-H functions from libcrypto more than 6 years ago.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/02 10:07:11

Modified files:
	app/cwm        : group.c 

Log message:
Simplify group_holds_only_hidden(); from Vadim Vygonets.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/02 10:10:56

Modified files:
	usr.bin/signify: Makefile signify.c 
Added files:
	usr.bin/signify: signify.h zsig.c 

Log message:
add a new option (-z) for signing gzip archives.
- simple barebones gzip header parsing
- signature is outside of the archive
- checksums for blocks of 64K
- verify stuff then pass it to the pipeline
lots of inputs by tedu@ and deraadt@
okay tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/02 10:12:09

Modified files:
	usr.bin/signify: zsig.c 

Log message:
duplicate var


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/02 10:13:57

Modified files:
	lib/libcrypto/crypto: getentropy_osx.c 

Log message:
add iOS support for getentropy

from jacob berkman


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/02 10:14:09

Modified files:
	usr.sbin/relayd: parse.y pfe.c relayd.h snmp.c 

Log message:
Move snmp options into struct relayd_config and delay start of the
snmp subsystem until the configuration is done.

OK benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 10:20:34

Modified files:
	usr.sbin/dvmrpd: Makefile dvmrpd.c dvmrpd.h dvmrpe.c log.c log.h 
	                 rde.c 
Added files:
	usr.sbin/dvmrpd: logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 10:20:47

Modified files:
	usr.sbin/dvmrpctl: Makefile 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 10:21:33

Modified files:
	usr.sbin/ifstated: log.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 10:22:31

Modified files:
	usr.sbin/iscsid: Makefile iscsid.h log.c log.h 
Added files:
	usr.sbin/iscsid: logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/02 10:23:40

Modified files:
	usr.sbin/vmd   : vmd.h vmm.c 

Log message:
Move event handling to separate thread

That allows the main thread to handle the termination
of a VM on reboot/shutdown or normal exit. The way it works
is that VCPUs that terminate for some reason communicate this
to a main thread that takes care of shutdown.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:23:50

Modified files:
	usr.sbin/eigrpd: eigrpd.c eigrpe.c rde.c 

Log message:
Fix broken pipe teardown.

* Add missing close() calls to actually close the pipes, calling just
msgbuf_clean() is not enough;
* Bring back some NOTREACHED lint comments. style(9) says they can be
removed but in some cases they are useful to humans too;
* Add __dead to the shutdown functions;
* Some other minor changes to make eigrpd(8) more similar to the other
routing daemons.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:29:55

Modified files:
	usr.sbin/eigrpd: control.c control.h eigrp.h eigrpd.c eigrpd.h 
	                 eigrpe.c eigrpe.h hello.c interface.c kroute.c 
	                 log.c neighbor.c packet.c parse.y printconf.c 
	                 query.c rde.c rde.h rde_dual.c reply.c rtp.c 
	                 tlv.c update.c util.c 

Log message:
Remove superfluous includes and follow style(9).

ok claudio@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:32:19

Modified files:
	usr.sbin/eigrpd: eigrpe.c 

Log message:
Pledge earlier on eigrpe.

This is for consistency with the other routing daemons.

ok claudio@ "earlier is better" benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:34:20

Modified files:
	usr.sbin/eigrpd: eigrp.h eigrpd.h eigrpe.c interface.c packet.c 

Log message:
Simplify handling of multicast addresses.

During the initialization of the eigrpe process, use inet_pton() to
store the EIGRP multicast addresses in two global variables:
* global.mcast_addr_v4 (in_addr);
* global.mcast_addr_v6 (in6_addr).

This way we don't need to create temporary in_addr/in6_addr variables
everytime we need to use these multicast addresses for something.

"I like this" claudio@ ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:36:33

Modified files:
	usr.sbin/eigrpd: eigrpd.h eigrpe.c eigrpe.h packet.c util.c 

Log message:
Merge the recv_packet_v[46] functions into one.

This reduces some code duplication and makes it easier to see the
difference between the IPv4 and IPv6 raw sockets API.

tweak + ok claudio@, ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 10:36:48

src/regress/sbin/isakmpd/common

Update of /cvs/src/regress/sbin/isakmpd/common
In directory cvs.openbsd.org:/tmp/cvs-serv44946/common

Log Message:
Directory /cvs/src/regress/sbin/isakmpd/common added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:39:44

Modified files:
	usr.sbin/eigrpd: eigrpe.c interface.c neighbor.c parse.y rde.c 

Log message:
Use static local variables instead of global variables whenever possible.

Also, there's no need to zero initialize global and static variables,
that's done automatically by the compiler.

ok claudio@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:44:33

Modified files:
	usr.sbin/eigrpd: control.c control.h eigrpd.c eigrpd.h eigrpe.c 
	                 eigrpe.h interface.c kroute.c log.h neighbor.c 
	                 packet.c parse.y printconf.c query.c rde.c 
	                 rde.h rde_dual.c reply.c rtp.c update.c 

Log message:
Make functions and variables static whenever possible.

style(9) says:
"Function prototypes for private functions (i.e., functions not used
elsewhere) go at the top of the first source module. In userland,
functions local to one source module should be declared 'static'".

The benefits of doing so include:
* clean up of the eigrpd global namespace;
* improved readability;
* more hints to the compiler/linker to generate more efficient code.

Additional changes:
* Declare all extern variables in header files;
* Clean up the indentation of all function prototypes and global
variables.

ok claudio@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/02 10:45:12

Modified files:
	sys/uvm        : uvm_addr.c 

Log message:
Mask out lower bits of randomly selected address

Fixes uvm pivots bug that would create non-page aligned addresses.
This fix is in code that's not yet enabled.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 10:46:29

Modified files:
	usr.sbin/eigrpd: eigrpd.h eigrpe.c eigrpe.h log.c query.c rde.c 
	                 rde.h reply.c tlv.c update.c 

Log message:
Minor tweaks


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/02 10:54:29

Modified files:
	regress/sbin/isakmpd/crypto: Makefile cryptotest.c 
	regress/sbin/isakmpd/hmac: Makefile 
	regress/sbin/isakmpd/prf: Makefile 
	regress/sbin/isakmpd/util: Makefile utiltest.c 
Added files:
	regress/sbin/isakmpd/common: log.c monitor.c 

Log message:
Repair remaining isakmpd regress tests


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/02 10:58:26

Removed files:
	lib/libssl/src : LICENSE 
	lib/libssl/src/apps: openssl.cnf 
	lib/libssl/src/crypto: alphacpuid.pl arm_arch.h armcap.c 
	                       armv4cpuid.S constant_time_locl.h 
	                       cpt_err.c cryptlib.c cryptlib.h crypto.h 
	                       cversion.c ex_data.c ia64cpuid.S 
	                       malloc-wrapper.c md32_common.h mem_clr.c 
	                       mem_dbg.c o_init.c o_str.c o_time.c 
	                       o_time.h opensslfeatures.h opensslv.h 
	                       ossl_typ.h pariscid.pl ppccap.c 
	                       ppccpuid.pl s390xcap.c s390xcpuid.S 
	                       sparccpuid.S sparcv9cap.c x86_64cpuid.pl 
	                       x86cpuid.pl 
	lib/libssl/src/crypto/aes: README aes.h aes_cbc.c aes_cfb.c 
	                           aes_core.c aes_ctr.c aes_ecb.c 
	                           aes_ige.c aes_locl.h aes_misc.c 
	                           aes_ofb.c aes_wrap.c aes_x86core.c 
	lib/libssl/src/crypto/aes/asm: aes-586.pl aes-armv4.pl 
	                               aes-ia64.S aes-mips.pl 
	                               aes-parisc.pl aes-ppc.pl 
	                               aes-s390x.pl aes-sparcv9.pl 
	                               aes-x86_64.pl 
	                               aesni-sha1-x86_64.pl aesni-x86.pl 
	                               aesni-x86_64.pl bsaes-x86_64.pl 
	                               vpaes-x86.pl vpaes-x86_64.pl 
	lib/libssl/src/crypto/asn1: a_bitstr.c a_bool.c a_bytes.c 
	                            a_d2i_fp.c a_digest.c a_dup.c 
	                            a_enum.c a_i2d_fp.c a_int.c 
	                            a_mbstr.c a_object.c a_octet.c 
	                            a_print.c a_set.c a_sign.c a_strex.c 
	                            a_strnid.c a_time.c a_time_tm.c 
	                            a_type.c a_utf8.c a_verify.c 
	                            ameth_lib.c asn1.h asn1_err.c 
	                            asn1_gen.c asn1_lib.c asn1_locl.h 
	                            asn1_mac.h asn1_par.c asn1t.h 
	                            asn_mime.c asn_moid.c asn_pack.c 
	                            bio_asn1.c bio_ndef.c charmap.h 
	                            charmap.pl d2i_pr.c d2i_pu.c 
	                            evp_asn1.c f_enum.c f_int.c 
	                            f_string.c i2d_pr.c i2d_pu.c 
	                            n_pkey.c nsseq.c p5_pbe.c p5_pbev2.c 
	                            p8_pkey.c t_bitst.c t_crl.c t_pkey.c 
	                            t_req.c t_spki.c t_x509.c t_x509a.c 
	                            tasn_dec.c tasn_enc.c tasn_fre.c 
	                            tasn_new.c tasn_prn.c tasn_typ.c 
	                            tasn_utl.c x_algor.c x_attrib.c 
	                            x_bignum.c x_crl.c x_exten.c 
	                            x_info.c x_long.c x_name.c x_nx509.c 
	                            x_pkey.c x_pubkey.c x_req.c x_sig.c 
	                            x_spki.c x_val.c x_x509.c x_x509a.c 
	lib/libssl/src/crypto/bf: COPYRIGHT INSTALL README VERSION 
	                          bf_cbc.c bf_cfb64.c bf_ecb.c bf_enc.c 
	                          bf_locl.h bf_ofb64.c bf_pi.h bf_skey.c 
	                          blowfish.h 
	lib/libssl/src/crypto/bf/asm: bf-586.pl 
	lib/libssl/src/crypto/bio: b_dump.c b_posix.c b_print.c b_sock.c 
	                           bf_buff.c bf_lbuf.c bf_nbio.c 
	                           bf_null.c bio.h bio_cb.c bio_err.c 
	                           bio_lib.c bss_acpt.c bss_bio.c 
	                           bss_conn.c bss_dgram.c bss_fd.c 
	                           bss_file.c bss_log.c bss_mem.c 
	                           bss_null.c bss_sock.c 
	lib/libssl/src/crypto/bn: bn.h bn_add.c bn_asm.c bn_blind.c 
	                          bn_const.c bn_ctx.c bn_depr.c bn_div.c 
	                          bn_err.c bn_exp.c bn_exp2.c bn_gcd.c 
	                          bn_gf2m.c bn_kron.c bn_lcl.h bn_lib.c 
	                          bn_mod.c bn_mont.c bn_mpi.c bn_mul.c 
	                          bn_nist.c bn_prime.c bn_prime.h 
	                          bn_prime.pl bn_print.c bn_rand.c 
	                          bn_recp.c bn_shift.c bn_sqr.c 
	                          bn_sqrt.c bn_word.c bn_x931p.c 
	lib/libssl/src/crypto/bn/asm: alpha-mont.pl armv4-gf2m.pl 
	                              armv4-mont.pl bn-586.pl co-586.pl 
	                              ia64-mont.pl ia64.S mips-mont.pl 
	                              mips.pl modexp512-x86_64.pl 
	                              pa-risc2.s pa-risc2W.s 
	                              parisc-mont.pl ppc-mont.pl ppc.pl 
	                              ppc64-mont.pl s390x-gf2m.pl 
	                              s390x-mont.pl s390x.S sparcv8.S 
	                              sparcv8plus.S sparcv9-mont.pl 
	                              sparcv9a-mont.pl via-mont.pl 
	                              x86-gf2m.pl x86-mont.pl x86.pl 
	                              x86_64-gcc.c x86_64-gf2m.pl 
	                              x86_64-mont.pl x86_64-mont5.pl 
	lib/libssl/src/crypto/bn/asm/x86: add.pl comba.pl div.pl mul.pl 
	                                  mul_add.pl sqr.pl sub.pl 
	lib/libssl/src/crypto/buffer: buf_err.c buf_str.c buffer.c 
	                              buffer.h 
	lib/libssl/src/crypto/camellia: camellia.c camellia.h cmll_cbc.c 
	                                cmll_cfb.c cmll_ctr.c cmll_ecb.c 
	                                cmll_locl.h cmll_misc.c 
	                                cmll_ofb.c 
	lib/libssl/src/crypto/camellia/asm: cmll-x86.pl cmll-x86_64.pl 
	lib/libssl/src/crypto/cast: c_cfb64.c c_ecb.c c_enc.c c_ofb64.c 
	                            c_skey.c cast.h cast_lcl.h cast_s.h 
	lib/libssl/src/crypto/cast/asm: cast-586.pl 
	lib/libssl/src/crypto/chacha: chacha-merged.c chacha.c chacha.h 
	lib/libssl/src/crypto/cmac: cm_ameth.c cm_pmeth.c cmac.c cmac.h 
	lib/libssl/src/crypto/cms: cms.h 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_lcl.h cms_lib.c cms_pwri.c 
	                           cms_sd.c cms_smime.c 
	lib/libssl/src/crypto/comp: c_rle.c c_zlib.c comp.h comp_err.c 
	                            comp_lib.c 
	lib/libssl/src/crypto/conf: README conf.h conf_api.c conf_api.h 
	                            conf_def.c conf_def.h conf_err.c 
	                            conf_lib.c conf_mall.c conf_mod.c 
	                            conf_sap.c keysets.pl ssleay.cnf 
	lib/libssl/src/crypto/des: COPYRIGHT cbc_cksm.c cbc_enc.c 
	                           cfb64ede.c cfb64enc.c cfb_enc.c des.h 
	                           des_enc.c des_locl.h ecb3_enc.c 
	                           ecb_enc.c ede_cbcm_enc.c enc_read.c 
	                           enc_writ.c fcrypt.c fcrypt_b.c 
	                           ncbc_enc.c ofb64ede.c ofb64enc.c 
	                           ofb_enc.c pcbc_enc.c qud_cksm.c 
	                           rand_key.c set_key.c spr.h str2key.c 
	                           xcbc_enc.c 
	lib/libssl/src/crypto/des/asm: crypt586.pl des-586.pl des_enc.m4 
	                               desboth.pl 
	lib/libssl/src/crypto/dh: dh.h dh_ameth.c dh_asn1.c dh_check.c 
	                          dh_depr.c dh_err.c dh_gen.c dh_key.c 
	                          dh_lib.c dh_pmeth.c dh_prn.c 
	lib/libssl/src/crypto/dsa: dsa.h dsa_ameth.c dsa_asn1.c 
	                           dsa_depr.c dsa_err.c dsa_gen.c 
	                           dsa_key.c dsa_lib.c dsa_locl.h 
	                           dsa_ossl.c dsa_pmeth.c dsa_prn.c 
	                           dsa_sign.c dsa_vrf.c 
	lib/libssl/src/crypto/dso: dso.h dso_dlfcn.c dso_err.c dso_lib.c 
	                           dso_null.c dso_openssl.c 
	lib/libssl/src/crypto/ec: ec.h ec2_mult.c ec2_oct.c ec2_smpl.c 
	                          ec_ameth.c ec_asn1.c ec_check.c 
	                          ec_curve.c ec_cvt.c ec_err.c ec_key.c 
	                          ec_lcl.h ec_lib.c ec_mult.c ec_oct.c 
	                          ec_pmeth.c ec_print.c eck_prn.c 
	                          ecp_mont.c ecp_nist.c ecp_nistp224.c 
	                          ecp_nistp256.c ecp_nistp521.c 
	                          ecp_nistputil.c ecp_oct.c ecp_smpl.c 
	lib/libssl/src/crypto/ecdh: ecdh.h ech_err.c ech_key.c ech_lib.c 
	                            ech_locl.h 
	lib/libssl/src/crypto/ecdsa: ecdsa.h ecs_asn1.c ecs_err.c 
	                             ecs_lib.c ecs_locl.h ecs_ossl.c 
	                             ecs_sign.c ecs_vrf.c 
	lib/libssl/src/crypto/engine: README eng_aesni.c eng_all.c 
	                              eng_cnf.c eng_ctrl.c eng_dyn.c 
	                              eng_err.c eng_fat.c eng_init.c 
	                              eng_int.h eng_lib.c eng_list.c 
	                              eng_openssl.c eng_padlock.c 
	                              eng_padlock.ec eng_pkey.c 
	                              eng_table.c engine.h tb_asnmth.c 
	                              tb_cipher.c tb_dh.c tb_digest.c 
	                              tb_dsa.c tb_ecdh.c tb_ecdsa.c 
	                              tb_pkmeth.c tb_rand.c tb_rsa.c 
	                              tb_store.c 
	lib/libssl/src/crypto/err: err.c err.h err_all.c err_prn.c 
	                           openssl.ec 
	lib/libssl/src/crypto/evp: bio_b64.c bio_enc.c bio_md.c c_all.c 
	                           digest.c e_aes.c 
	                           e_aes_cbc_hmac_sha1.c e_bf.c 
	                           e_camellia.c e_cast.c e_chacha.c 
	                           e_chacha20poly1305.c e_des.c e_des3.c 
	                           e_gost2814789.c e_idea.c e_null.c 
	                           e_old.c e_rc2.c e_rc4.c 
	                           e_rc4_hmac_md5.c e_xcbc_d.c encode.c 
	                           evp.h evp_aead.c evp_enc.c evp_err.c 
	                           evp_key.c evp_lib.c evp_locl.h 
	                           evp_pbe.c evp_pkey.c m_dss.c m_dss1.c 
	                           m_ecdsa.c m_gost2814789.c 
	                           m_gostr341194.c m_md4.c m_md5.c 
	                           m_null.c m_ripemd.c m_sha1.c 
	                           m_sigver.c m_streebog.c m_wp.c 
	                           names.c p5_crpt.c p5_crpt2.c p_dec.c 
	                           p_enc.c p_lib.c p_open.c p_seal.c 
	                           p_sign.c p_verify.c pmeth_fn.c 
	                           pmeth_gn.c pmeth_lib.c 
	lib/libssl/src/crypto/gost: gost.h gost2814789.c 
	                            gost89_keywrap.c gost89_params.c 
	                            gost89imit_ameth.c 
	                            gost89imit_pmeth.c gost_asn1.c 
	                            gost_asn1.h gost_err.c gost_locl.h 
	                            gostr341001.c gostr341001_ameth.c 
	                            gostr341001_key.c 
	                            gostr341001_params.c 
	                            gostr341001_pmeth.c gostr341194.c 
	                            streebog.c 
	lib/libssl/src/crypto/hmac: hm_ameth.c hm_pmeth.c hmac.c hmac.h 
	lib/libssl/src/crypto/idea: i_cbc.c i_cfb64.c i_ecb.c i_ofb64.c 
	                            i_skey.c idea.h idea_lcl.h 
	lib/libssl/src/crypto/krb5: krb5_asn.c krb5_asn.h 
	lib/libssl/src/crypto/lhash: lh_stats.c lhash.c lhash.h 
	lib/libssl/src/crypto/md4: md4.h md4_dgst.c md4_locl.h md4_one.c 
	lib/libssl/src/crypto/md5: md5.h md5_dgst.c md5_locl.h md5_one.c 
	lib/libssl/src/crypto/md5/asm: md5-586.pl md5-ia64.S 
	                               md5-x86_64.pl 
	lib/libssl/src/crypto/modes: cbc128.c ccm128.c cfb128.c ctr128.c 
	                             cts128.c gcm128.c modes.h 
	                             modes_lcl.h ofb128.c xts128.c 
	lib/libssl/src/crypto/modes/asm: ghash-alpha.pl ghash-armv4.pl 
	                                 ghash-ia64.pl ghash-parisc.pl 
	                                 ghash-s390x.pl ghash-sparcv9.pl 
	                                 ghash-x86.pl ghash-x86_64.pl 
	lib/libssl/src/crypto/objects: o_names.c obj_dat.c obj_dat.pl 
	                               obj_err.c obj_lib.c obj_mac.num 
	                               obj_xref.c obj_xref.h 
	                               obj_xref.txt objects.README 
	                               objects.h objects.pl objects.txt 
	                               objxref.pl 
	lib/libssl/src/crypto/ocsp: ocsp.h ocsp_asn.c ocsp_cl.c 
	                            ocsp_err.c ocsp_ext.c ocsp_ht.c 
	                            ocsp_lib.c ocsp_prn.c ocsp_srv.c 
	                            ocsp_vfy.c 
	lib/libssl/src/crypto/pem: message pem.h pem2.h pem_all.c 
	                           pem_err.c pem_info.c pem_lib.c 
	                           pem_oth.c pem_pk8.c pem_pkey.c 
	                           pem_seal.c pem_sign.c pem_x509.c 
	                           pem_xaux.c pkcs7.lis pvkfmt.c 
	lib/libssl/src/crypto/perlasm: cbc.pl ppc-xlate.pl readme 
	                               x86_64-xlate.pl x86asm.pl 
	                               x86gas.pl 
	lib/libssl/src/crypto/pkcs12: p12_add.c p12_asn.c p12_attr.c 
	                              p12_crpt.c p12_crt.c p12_decr.c 
	                              p12_init.c p12_key.c p12_kiss.c 
	                              p12_mutl.c p12_npas.c p12_p8d.c 
	                              p12_p8e.c p12_utl.c pk12err.c 
	                              pkcs12.h 
	lib/libssl/src/crypto/pkcs7: bio_pk7.c pk7_asn1.c pk7_attr.c 
	                             pk7_doit.c pk7_lib.c pk7_mime.c 
	                             pk7_smime.c pkcs7.h pkcs7err.c 
	lib/libssl/src/crypto/poly1305: poly1305-donna.c poly1305.c 
	                                poly1305.h 
	lib/libssl/src/crypto/rand: rand.h rand_err.c rand_lib.c 
	                            randfile.c 
	lib/libssl/src/crypto/rc2: rc2.h rc2_cbc.c rc2_ecb.c rc2_locl.h 
	                           rc2_skey.c rc2cfb64.c rc2ofb64.c 
	                           rrc2.doc version 
	lib/libssl/src/crypto/rc4: rc4.h rc4_enc.c rc4_locl.h rc4_skey.c 
	lib/libssl/src/crypto/rc4/asm: rc4-586.pl rc4-ia64.pl 
	                               rc4-md5-x86_64.pl rc4-parisc.pl 
	                               rc4-s390x.pl rc4-x86_64.pl 
	lib/libssl/src/crypto/ripemd: README ripemd.h rmd_dgst.c 
	                              rmd_locl.h rmd_one.c rmdconst.h 
	lib/libssl/src/crypto/ripemd/asm: rmd-586.pl 
	lib/libssl/src/crypto/rsa: rsa.h rsa_ameth.c rsa_asn1.c 
	                           rsa_chk.c rsa_crpt.c rsa_depr.c 
	                           rsa_eay.c rsa_err.c rsa_gen.c 
	                           rsa_lib.c rsa_locl.h rsa_none.c 
	                           rsa_oaep.c rsa_pk1.c rsa_pmeth.c 
	                           rsa_prn.c rsa_pss.c rsa_saos.c 
	                           rsa_sign.c rsa_ssl.c rsa_x931.c 
	lib/libssl/src/crypto/sha: sha.h sha1_one.c sha1dgst.c sha256.c 
	                           sha512.c sha_locl.h 
	lib/libssl/src/crypto/sha/asm: sha1-586.pl sha1-alpha.pl 
	                               sha1-armv4-large.pl sha1-ia64.pl 
	                               sha1-mips.pl sha1-parisc.pl 
	                               sha1-ppc.pl sha1-s390x.pl 
	                               sha1-sparcv9.pl sha1-sparcv9a.pl 
	                               sha1-thumb.pl sha1-x86_64.pl 
	                               sha256-586.pl sha256-armv4.pl 
	                               sha512-586.pl sha512-armv4.pl 
	                               sha512-ia64.pl sha512-mips.pl 
	                               sha512-parisc.pl sha512-ppc.pl 
	                               sha512-s390x.pl sha512-sparcv9.pl 
	                               sha512-x86_64.pl 
	lib/libssl/src/crypto/stack: safestack.h stack.c stack.h 
	lib/libssl/src/crypto/ts: ts.h ts_asn1.c ts_conf.c ts_err.c 
	                          ts_lib.c ts_req_print.c ts_req_utils.c 
	                          ts_rsp_print.c ts_rsp_sign.c 
	                          ts_rsp_utils.c ts_rsp_verify.c 
	                          ts_verify_ctx.c 
	lib/libssl/src/crypto/txt_db: txt_db.c txt_db.h 
	lib/libssl/src/crypto/ui: ui.h ui_compat.h ui_err.c ui_lib.c 
	                          ui_locl.h ui_openssl.c ui_util.c 
	lib/libssl/src/crypto/whrlpool: whrlpool.h wp_block.c wp_dgst.c 
	                                wp_locl.h 
	lib/libssl/src/crypto/whrlpool/asm: wp-mmx.pl wp-x86_64.pl 
	lib/libssl/src/crypto/x509: by_dir.c by_file.c by_mem.c x509.h 
	                            x509_att.c x509_cmp.c x509_d2.c 
	                            x509_def.c x509_err.c x509_ext.c 
	                            x509_lcl.h x509_lu.c x509_obj.c 
	                            x509_r2x.c x509_req.c x509_set.c 
	                            x509_trs.c x509_txt.c x509_v3.c 
	                            x509_vfy.c x509_vfy.h x509_vpm.c 
	                            x509cset.c x509name.c x509rset.c 
	                            x509spki.c x509type.c x_all.c 
	lib/libssl/src/crypto/x509v3: ext_dat.h pcy_cache.c pcy_data.c 
	                              pcy_int.h pcy_lib.c pcy_map.c 
	                              pcy_node.c pcy_tree.c v3_akey.c 
	                              v3_akeya.c v3_alt.c v3_bcons.c 
	                              v3_bitst.c v3_conf.c v3_cpols.c 
	                              v3_crld.c v3_enum.c v3_extku.c 
	                              v3_genn.c v3_ia5.c v3_info.c 
	                              v3_int.c v3_lib.c v3_ncons.c 
	                              v3_ocsp.c v3_pci.c v3_pcia.c 
	                              v3_pcons.c v3_pku.c v3_pmaps.c 
	                              v3_prn.c v3_purp.c v3_skey.c 
	                              v3_sxnet.c v3_utl.c v3err.c 
	                              x509v3.h 
	lib/libssl/src/doc: openssl.txt standards.txt 
	lib/libssl/src/doc/crypto: DES_set_key.pod DH_generate_key.pod 
	                           DH_generate_parameters.pod 
	                           DH_get_ex_new_index.pod DH_new.pod 
	                           DH_set_method.pod DH_size.pod 
	                           DSA_SIG_new.pod DSA_do_sign.pod 
	                           DSA_dup_DH.pod DSA_generate_key.pod 
	                           DSA_generate_parameters.pod 
	                           DSA_get_ex_new_index.pod DSA_new.pod 
	                           DSA_set_method.pod DSA_sign.pod 
	                           DSA_size.pod EC_GFp_simple_method.pod 
	                           EC_GROUP_copy.pod EC_GROUP_new.pod 
	                           EC_KEY_new.pod EC_POINT_add.pod 
	                           EC_POINT_new.pod ERR.pod 
	                           ERR_GET_LIB.pod ERR_clear_error.pod 
	                           ERR_error_string.pod 
	                           ERR_get_error.pod 
	                           ERR_load_crypto_strings.pod 
	                           ERR_load_strings.pod 
	                           ERR_print_errors.pod 
	                           ERR_put_error.pod 
	                           ERR_remove_state.pod ERR_set_mark.pod 
	                           EVP_BytesToKey.pod EVP_DigestInit.pod 
	                           EVP_DigestSignInit.pod 
	                           EVP_DigestVerifyInit.pod 
	                           EVP_EncryptInit.pod EVP_OpenInit.pod 
	                           EVP_PKEY_CTX_ctrl.pod 
	                           EVP_PKEY_CTX_new.pod EVP_PKEY_cmp.pod 
	                           EVP_PKEY_decrypt.pod 
	                           EVP_PKEY_derive.pod 
	                           EVP_PKEY_encrypt.pod 
	                           EVP_PKEY_get_default_digest.pod 
	                           EVP_PKEY_keygen.pod EVP_PKEY_new.pod 
	                           EVP_PKEY_print_private.pod 
	                           EVP_PKEY_set1_RSA.pod 
	                           EVP_PKEY_sign.pod EVP_PKEY_verify.pod 
	                           EVP_PKEY_verify_recover.pod 
	                           EVP_SealInit.pod EVP_SignInit.pod 
	                           EVP_VerifyInit.pod HMAC.pod MD5.pod 
	                           OBJ_nid2obj.pod 
	                           OPENSSL_VERSION_NUMBER.pod 
	                           OPENSSL_config.pod 
	                           OPENSSL_load_builtin_modules.pod 
	                           OpenSSL_add_all_algorithms.pod 
	                           PEM_read_bio_PrivateKey.pod 
	                           PEM_write_bio_CMS_stream.pod 
	                           PEM_write_bio_PKCS7_stream.pod 
	                           PKCS12_create.pod PKCS12_parse.pod 
	                           PKCS5_PBKDF2_HMAC.pod 
	                           PKCS7_decrypt.pod PKCS7_encrypt.pod 
	                           PKCS7_sign.pod 
	                           PKCS7_sign_add_signer.pod 
	                           PKCS7_verify.pod RAND.pod 
	                           RAND_add.pod RAND_bytes.pod 
	                           RAND_cleanup.pod RAND_load_file.pod 
	                           RAND_set_rand_method.pod RC4.pod 
	                           RIPEMD160.pod RSA_blinding_on.pod 
	                           RSA_check_key.pod 
	                           RSA_generate_key.pod 
	                           RSA_get_ex_new_index.pod RSA_new.pod 
	                           RSA_padding_add_PKCS1_type_1.pod 
	                           RSA_print.pod RSA_private_encrypt.pod 
	                           RSA_public_encrypt.pod 
	                           RSA_set_method.pod RSA_sign.pod 
	                           RSA_sign_ASN1_OCTET_STRING.pod 
	                           RSA_size.pod SHA1.pod 
	                           SMIME_read_CMS.pod 
	                           SMIME_read_PKCS7.pod 
	                           SMIME_write_CMS.pod 
	                           SMIME_write_PKCS7.pod 
	                           X509_NAME_ENTRY_get_object.pod 
	                           X509_NAME_add_entry_by_txt.pod 
	                           X509_NAME_get_index_by_NID.pod 
	                           X509_NAME_print_ex.pod 
	                           X509_STORE_CTX_get_error.pod 
	                           X509_STORE_CTX_get_ex_new_index.pod 
	                           X509_STORE_CTX_new.pod 
	                           X509_STORE_CTX_set_verify_cb.pod 
	                           X509_STORE_set_verify_cb_func.pod 
	                           X509_VERIFY_PARAM_set_flags.pod 
	                           X509_new.pod X509_verify_cert.pod 
	                           bn.pod d2i_ASN1_OBJECT.pod 
	                           d2i_DHparams.pod d2i_DSAPublicKey.pod 
	                           d2i_ECPKParameters.pod 
	                           d2i_RSAPublicKey.pod d2i_X509.pod 
	                           d2i_X509_ALGOR.pod d2i_X509_CRL.pod 
	                           d2i_X509_NAME.pod d2i_X509_REQ.pod 
	                           d2i_X509_SIG.pod dh.pod dsa.pod 
	                           ec.pod engine.pod evp.pod 
	                           i2d_CMS_bio_stream.pod 
	                           i2d_PKCS7_bio_stream.pod lh_stats.pod 
	                           rsa.pod x509.pod 
	lib/libssl/src/doc/ssl: BIO_f_ssl.3 SSL_CIPHER_get_name.3 
	                        SSL_COMP_add_compression_method.3 
	                        SSL_CTX_add_extra_chain_cert.3 
	                        SSL_CTX_add_session.3 SSL_CTX_ctrl.3 
	                        SSL_CTX_flush_sessions.3 SSL_CTX_free.3 
	                        SSL_CTX_get_ex_new_index.3 
	                        SSL_CTX_get_verify_mode.3 
	                        SSL_CTX_load_verify_locations.3 
	                        SSL_CTX_new.3 SSL_CTX_sess_number.3 
	                        SSL_CTX_sess_set_cache_size.3 
	                        SSL_CTX_sess_set_get_cb.3 
	                        SSL_CTX_sessions.3 
	                        SSL_CTX_set_cert_store.3 
	                        SSL_CTX_set_cert_verify_callback.3 
	                        SSL_CTX_set_cipher_list.3 
	                        SSL_CTX_set_client_CA_list.3 
	                        SSL_CTX_set_client_cert_cb.3 
	                        SSL_CTX_set_default_passwd_cb.3 
	                        SSL_CTX_set_generate_session_id.3 
	                        SSL_CTX_set_info_callback.3 
	                        SSL_CTX_set_max_cert_list.3 
	                        SSL_CTX_set_mode.3 
	                        SSL_CTX_set_msg_callback.3 
	                        SSL_CTX_set_options.3 
	                        SSL_CTX_set_psk_client_callback.3 
	                        SSL_CTX_set_quiet_shutdown.3 
	                        SSL_CTX_set_session_cache_mode.3 
	                        SSL_CTX_set_session_id_context.3 
	                        SSL_CTX_set_ssl_version.3 
	                        SSL_CTX_set_timeout.3 
	                        SSL_CTX_set_tmp_dh_callback.3 
	                        SSL_CTX_set_tmp_rsa_callback.3 
	                        SSL_CTX_set_verify.3 
	                        SSL_CTX_use_certificate.3 
	                        SSL_CTX_use_psk_identity_hint.3 
	                        SSL_SESSION_free.3 
	                        SSL_SESSION_get_ex_new_index.3 
	                        SSL_SESSION_get_time.3 SSL_accept.3 
	                        SSL_alert_type_string.3 SSL_clear.3 
	                        SSL_connect.3 SSL_do_handshake.3 
	                        SSL_free.3 SSL_get_SSL_CTX.3 
	                        SSL_get_ciphers.3 
	                        SSL_get_client_CA_list.3 
	                        SSL_get_current_cipher.3 
	                        SSL_get_default_timeout.3 
	                        SSL_get_error.3 
	                        SSL_get_ex_data_X509_STORE_CTX_idx.3 
	                        SSL_get_ex_new_index.3 SSL_get_fd.3 
	                        SSL_get_peer_cert_chain.3 
	                        SSL_get_peer_certificate.3 
	                        SSL_get_psk_identity.3 SSL_get_rbio.3 
	                        SSL_get_session.3 
	                        SSL_get_verify_result.3 
	                        SSL_get_version.3 SSL_library_init.3 
	                        SSL_load_client_CA_file.3 SSL_new.3 
	                        SSL_pending.3 SSL_read.3 
	                        SSL_rstate_string.3 SSL_session_reused.3 
	                        SSL_set_bio.3 SSL_set_connect_state.3 
	                        SSL_set_fd.3 SSL_set_session.3 
	                        SSL_set_shutdown.3 
	                        SSL_set_verify_result.3 SSL_shutdown.3 
	                        SSL_state_string.3 SSL_want.3 
	                        SSL_write.3 d2i_SSL_SESSION.3 ssl.3 
	lib/libssl/src/ssl: bio_ssl.c bs_ber.c bs_cbb.c bs_cbs.c 
	                    bytestring.h d1_both.c d1_clnt.c d1_enc.c 
	                    d1_lib.c d1_meth.c d1_pkt.c d1_srtp.c 
	                    d1_srvr.c dtls1.h pqueue.c pqueue.h 
	                    s23_clnt.c s23_lib.c s23_pkt.c s23_srvr.c 
	                    s3_both.c s3_cbc.c s3_clnt.c s3_lib.c 
	                    s3_pkt.c s3_srvr.c srtp.h ssl.h ssl2.h 
	                    ssl23.h ssl3.h ssl_algs.c ssl_asn1.c 
	                    ssl_cert.c ssl_ciph.c ssl_err.c ssl_err2.c 
	                    ssl_lib.c ssl_locl.h ssl_rsa.c ssl_sess.c 
	                    ssl_stat.c ssl_txt.c t1_clnt.c t1_enc.c 
	                    t1_lib.c t1_meth.c t1_reneg.c t1_srvr.c 
	                    tls1.h 
	lib/libssl/src/test: CAss.cnf CAssdh.cnf CAssdsa.cnf CAssrsa.cnf 
	                     CAtsa.cnf P1ss.cnf P2ss.cnf Sssdsa.cnf 
	                     Sssrsa.cnf Uss.cnf VMSca-response.1 
	                     VMSca-response.2 asn1test.c bctest 
	                     cms-examples.pl cms-test.pl methtest.c 
	                     pkcs7-1.pem pkcs7.pem pkits-test.pl 
	                     r160test.c smcont.txt tcrl test.cnf 
	                     test_aesni test_padlock testca testcrl.pem 
	                     testenc testgen testp7.pem testreq2.pem 
	                     testrsa.pem testsid.pem testss testssl 
	                     testsslproxy testtsa testx509.pem times 
	                     tpkcs7 tpkcs7d treq trsa tsid tx509 
	                     v3-cert1.pem v3-cert2.pem 
	lib/libssl/src/test/smime-certs: smdsa1.pem smdsa2.pem 
	                                 smdsa3.pem smdsap.pem 
	                                 smroot.pem smrsa1.pem 
	                                 smrsa2.pem smrsa3.pem 
	lib/libssl/src/util: mkerr.pl mkstack.pl 

Log message:
Remove the libssl/src directory


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/02 10:58:27

Removed files:
	lib/libssl/ssl : Makefile shlib_version 

Log message:
Remove the libssl/ssl directory


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/02 10:58:30

Removed files:
	lib/libcrypto/crypto: Makefile arc4random_aix.h 
	                      arc4random_freebsd.h arc4random_hpux.h 
	                      arc4random_linux.h arc4random_netbsd.h 
	                      arc4random_osx.h arc4random_solaris.h 
	                      arc4random_win.h getentropy_aix.c 
	                      getentropy_freebsd.c getentropy_hpux.c 
	                      getentropy_linux.c getentropy_netbsd.c 
	                      getentropy_osx.c getentropy_solaris.c 
	                      getentropy_win.c shlib_version 
	lib/libcrypto/crypto/arch/alpha: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/amd64: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/arm: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/hppa: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/i386: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/m88k: opensslconf.h 
	lib/libcrypto/crypto/arch/mips64: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/powerpc: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/sh: opensslconf.h 
	lib/libcrypto/crypto/arch/sparc64: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/vax: Makefile.inc bn_asm_vax.S 
	                               opensslconf.h 

Log message:
Remove the libcrypto/crypto directory


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/02 11:00:25

Modified files:
	lib/libssl     : Makefile generate_pkgconfig.sh 
	lib/libssl/man : Makefile 
	lib/libcrypto  : Makefile generate_pkgconfig.sh 
	lib/libcrypto/man: Makefile 

Log message:
Fix Makefile for file location moves


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/02 11:02:36

Log message:
    Import devel/py-robotframework.
    
    ---8<---
    Robot Framework is a generic open source test automation framework for
    acceptance testing and acceptance test-driven development (ATDD). It has
    easy-to-use tabular test data syntax and it utilizes the keyword-driven
    testing approach. Its testing capabilities can be extended by test
    libraries implemented either with Python or Java, and users can create
    new higher-level keywords from existing ones using the same syntax that
    is used for creating test cases.
    --->8---
    
    OK giovanni@, with input from sthen@
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20160902
    
    N ports/devel/py-robotframework/Makefile
    N ports/devel/py-robotframework/distinfo
    N ports/devel/py-robotframework/pkg/PLIST
    N ports/devel/py-robotframework/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/02 11:02:56

Modified files:
	regress/lib/libcrypto/pqueue: Makefile 
	regress/lib/libcrypto/utf8: Makefile 

Log message:
Make this regress build again


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 11:03:24

Modified files:
	usr.sbin/ldpd  : lde.c ldpd.c ldpe.c 

Log message:
Simplify shutdown process.

On shutdown, there's no need to use kill(2) to kill the child
processes. Just closing the IPC sockets will make the children receive
an EOF, break out from the event loop and then exit.

Tha advantages of this "pipe teardown" are:
* simpler code;
* no need to pledge "proc" in the parent process;
* removal of a (hard to trigger) PID reuse race condition.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 11:05:23

Modified files:
	usr.sbin/ldpd  : lde.c 

Log message:
Reevaluate received mappings upon receipt of address message.

If a neighbor was a nexthop for a given set of prefixes but it's not
anymore, then we should uninstall the associated label mappings (if any)
from the kernel.  The same applies for the other way round (neighbor
wasn't a nexthop for a given set of prefixes but now is).

This issue is only evident when we have multiple links between a pair
of LSRs. Generally, when a link is shut down, the whole LDP is torn down
and all label mappings uninstalled automatically.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/02 11:05:58

Modified files:
	devel          : Makefile 

Log message:
Link robotframework (+py3)


CVSROOT:	/cvs
Module name:	src
Changes by:	goda@cvs.openbsd.org	2016/09/02 11:06:14

Modified files:
	sys/arch/alpha/alpha: conf.c 
	sys/arch/amd64/amd64: conf.c 
	sys/arch/arm/arm: conf.c 
	sys/arch/hppa/hppa: conf.c 
	sys/arch/i386/i386: conf.c 
	sys/arch/landisk/landisk: conf.c 
	sys/arch/loongson/loongson: conf.c 
	sys/arch/luna88k/luna88k: conf.c 
	sys/arch/macppc/macppc: conf.c 
	sys/arch/octeon/octeon: conf.c 
	sys/arch/sgi/sgi: conf.c 
	sys/arch/socppc/socppc: conf.c 
	sys/arch/sparc64/sparc64: conf.c 
	sys/sys        : conf.h 
	etc            : MAKEDEV.common 
	etc/etc.alpha  : MAKEDEV.md 
	etc/etc.amd64  : MAKEDEV.md 
	etc/etc.armv7  : MAKEDEV.md 
	etc/etc.hppa   : MAKEDEV.md 
	etc/etc.i386   : MAKEDEV.md 
	etc/etc.landisk: MAKEDEV.md 
	etc/etc.loongson: MAKEDEV.md 
	etc/etc.luna88k: MAKEDEV.md 
	etc/etc.macppc : MAKEDEV.md 
	etc/etc.octeon : MAKEDEV.md 
	etc/etc.sgi    : MAKEDEV.md 
	etc/etc.socppc : MAKEDEV.md 
	etc/etc.sparc64: MAKEDEV.md 
	etc/etc.zaurus : MAKEDEV.md 

Log message:
Add switch(4) cdev entry

ok deraadt@ yasuoka@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 11:06:59

Modified files:
	usr.bin/encrypt: encrypt.c 

Log message:
convert getpass to readpassphrase. from Dimitris Papastamos


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 11:08:02

Modified files:
	usr.sbin/ldpd  : labelmapping.c log.c log.h notification.c 

Log message:
Improve logging of sent and received messages.

* Standardize the logging format of sent and received messages:
"msg-[in|out]: message type: lsr-id A.B.C.D [additional info]";

* Log sent label messages as well, not only the received ones;

* Move the logging of sent notification messages from
send_notification_nbr() to send_notification_full(), this way notification
triggered by the lde process are logged as well;

* Minor clean-up.


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/02 11:08:28

Modified files:
	usr.sbin/vmd   : virtio.c virtio.h 

Log message:
Process incoming host->guest packets asynchronously to running VCPU

This registers a handler with libevent that is called on incoming packets
for the guest. If they cannot be handled immediately (because the virtq is
full), make sure they are handled on VCPU exits.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/02 11:10:08

Modified files:
	usr.sbin/vmd   : ns8250.c ns8250.h vmm.c 

Log message:
Process incoming com data asynchronously to running VCPU

This registers a handler with libevent that is triggered on incoming
data on the com port.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 11:10:26

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

Log message:
Enable SGI for iwm(4).
The maximum 11n data rate should go up from 65Mbit/s to 72Mbit/s.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 11:10:34

Modified files:
	usr.sbin/ldpd  : lde.c lde.h ldpe.c ldpe.h 

Log message:
lde() and ldpe() should return void.

Remove these leftovers from the pre-fork+exec era.

Spotted by and ok rzalamena@ ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 11:10:48

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

Log message:
Enable SGI for iwn(4).
The maximum 11n data rate should go up from 65Mbit/s to 72Mbit/s.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/02 11:11:46

Modified files:
	usr.sbin/tcpdump: print-802_11.c 

Log message:
Make tcpdump print details about association requests in verbose mode.
Refactor such that we can share some of the code for beacon printing.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/02 11:16:24

Modified files:
	usr.sbin/ldpd  : labelmapping.c 

Log message:
Fix small memleak on error path.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/02 11:27:31

Modified files:
	usr.bin/signify: signify.1 signify.c 

Log message:
document the new stuff, usage nits.
some input by jmc@, to be polished later
"get it in now" tedu@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	goda@cvs.openbsd.org	2016/09/02 11:29:01

Modified files:
	etc/etc.alpha  : MAKEDEV 
	etc/etc.amd64  : 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.socppc : MAKEDEV 
	etc/etc.sparc64: MAKEDEV 
	etc/etc.zaurus : MAKEDEV 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/02 11:31:04

Modified files:
	regress/lib/libssl/bytestring: Makefile 

Log message:
Fix build of regress after source moves


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/02 11:36:25

Modified files:
	audio/libxmp   : Makefile distinfo 
Added files:
	audio/libxmp/patches: patch-src_mix_paula_c 

Log message:
Update libxmp to 4.4.0

OK edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 11:36:54

Modified files:
	share/man/man9 : Makefile 

Log message:
kettenis discovered a man page for a long deleted file. hash.h is gone.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 11:37:49

Modified files:
	share/man/man9 : hashinit.9 

Log message:
rm xr to hash.9


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/02 11:40:28

Modified files:
	lib/libcrypto  : Makefile 

Log message:
LIB=crypto, kind of neccessary


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/02 11:42:45

Modified files:
	audio/xmp      : Makefile distinfo 

Log message:
Update xmp to 4.1.0

OK edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/02 11:57:43

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

Log message:
more jmc tweaks


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 11:59:58

Modified files:
	usr.sbin/eigrpd: Makefile eigrpd.c eigrpd.h eigrpe.c log.c log.h 
Added files:
	usr.sbin/eigrpd: logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/02 12:00:08

Modified files:
	usr.sbin/eigrpctl: Makefile 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 12:00:16

Removed files:
	share/man/man9 : hash.9 

Log message:
forgot to actually remove file, thanks jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/02 12:00:40

Modified files:
	databases/liquibase: Makefile distinfo 

Log message:
update to liquibase-3.5.1, from maintainer Bryan Everly


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 12:06:43

Modified files:
	usr.bin/passwd : local_passwd.c 
	usr.bin/encrypt: encrypt.c 

Log message:
_PASSWORD_LEN is length that comes out of crypt(), not a meaningful
length for user entered passwords. And the +1 is just superstitious
nonsense inherited from getpass() guts.
Switch to a pleasing fixed size of 1024.
ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 12:11:28

Modified files:
	sys/kern       : kern_proc.c kern_prot.c tty_tty.c 
	sys/sys        : proc.h ttycom.h 

Log message:
add a concept of 'verified auth' to sessions. When set via ioctl,
the user and parent process are recorded. Later, this info may be tested
and used to bypass authorization requirements.
ie, doas won't ask for your password again.
Great idea from henning.
ok deraadt guenther henning


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 12:12:30

Modified files:
	usr.bin/doas   : doas.1 doas.c doas.conf.5 doas.h parse.y 

Log message:
add support for the verified auth ioctls using 'persist' rules.
ok deraadt henning


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/02 12:32:39

Modified files:
	share/man/man9 : hashinit.9 

Log message:
remove one more reference to the recently removed hash(9);


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/02 12:35:43

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

Log message:
finish the sentence;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/02 12:43:52

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

Log message:
shorten s_server;


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 14:38:06

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

Log message:
clarify that -L will exit without running a command.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/02 14:57:20

Modified files:
	usr.bin/tmux   : grid-view.c grid.c screen-write.c screen.c 
	                 tmux.h 

Log message:
Remember the number of lines scrolled into the history (versus cleared
into the history) and when resizing only use scrolled lines and not
cleared lines (which are probably not intended to reappear). From
Chaoren Lin.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:00:28

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

Log message:
document new ioctls for verified auth


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:04:26

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

Log message:
space out the example


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:12:03

Modified files:
	usr.bin/signify: signify.c 

Log message:
-e and -z cannot be combined


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:18:50

Modified files:
	usr.bin/signify: signify.c 

Log message:
combine the pledge switch with the execution switch. no changes yet,
but we can do a little better in some cases.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/02 15:30:34

Modified files:
	regress/gnu/egcs/gcc: Makefile 
	regress/gnu/egcs/libiberty: Makefile 
	regress/lib/libtls/gotls: Makefile 
	regress/sys/net/pf_divert: Makefile 
	regress/sys/net/pf_forward: Makefile 
	regress/sys/net/pf_fragment: Makefile 
	regress/sys/netinet/arp: Makefile 
	regress/sys/netinet/pmtu: Makefile 
	regress/sys/netinet6/frag6: Makefile 
	regress/sys/netinet6/nd6: Makefile 
	regress/sys/netinet6/rh0: Makefile 
	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 

Log message:
Print SKIPPED if a regress test cannot be executed for some reason.
This allows to identify such tests by looking at their output.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:31:22

Modified files:
	usr.bin/signify: signify.c 

Log message:
the old check for when verify needed to create files (affecting pledge)
was slightly wrong, but it didn't matter. new gzip mode however falls
into the gap. the zsig code will default to stdout, therefore it needs
much fewer privileges if msgfile is not specified.


CVSROOT:	/cvs
Module name:	src
Changes by:	tobias@cvs.openbsd.org	2016/09/02 15:39:51

Modified files:
	usr.bin/patch  : ed.c 

Log message:
Fix 'c'hange command handling if last line of a file is removed.

If the last line of a file is removed, the line cache is erroneously
considered empty, which means that changed lines are added at the top.

spotted by and okay otto@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/02 15:41:55

Modified files:
	.              : anoncvs.html 
	build/mirrors  : anoncvs.html.end anoncvs.html.head 

Log message:
change cvs examples to non-root usage and clean up some formatting.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/09/02 15:42:28

Modified files:
	distrib/miniroot: install.sub 

Log message:
for an upgrade disk selection, present a default alternative of 'auto',
which will scan the available disks, selecting the first disk with an
'a' partition of type 4.2BSD

ok deraadt@ krw@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:45:37

Modified files:
	usr.bin/signify: signify.c 

Log message:
use err() instead of errx when an errno is set


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/02 15:46:18

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

Log message:
In preparation for merging of ping(8) and ping6(8) the -n flag needs to
become the default. That means no DNS reverse look ups per default.
In practice this doesn't change anything since ping(8) only did
reverse DNS look ups per for weird corner cases:
1) Something that's not an echo reply and -v was specified
2) LSRR or RR IP options

With this pr_addr() can become the default address printing mechanism
and can be made AF independent. With that we get ping(8)'s -H option
for free.

OK sthen@, benno@
OK deraadt@ for the -H a long time ago when this were two diffs.
man page tweak jmc@ a long time ago
deraadt@ softened up and has no objections to -n per default
beck@ is in favor of no look ups per default.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:48:03

Modified files:
	usr.bin/signify: zsig.c 

Log message:
replace exit() with err() and errx() so user knows what happened


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/02 15:52:12

Modified files:
	usr.bin/signify: zsig.c 

Log message:
style polishing


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:08:00

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
update to wtf-20160814


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:08:29

Modified files:
	devel/lpc21isp : Makefile distinfo 

Log message:
- update to lpc21isp-1.97


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:10:31

Modified files:
	x11/gnome/online-miners: Makefile distinfo 

Log message:
Update to gnome-online-miners-3.20.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:12:40

Modified files:
	graphics/ruby-gruff: Makefile distinfo 

Log message:
update to gruff-0.7.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:13:32

Modified files:
	meta/gnustep   : Makefile 

Log message:
Unbreak after gworkspace update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:13:45

Modified files:
	graphics/xmedcon: Makefile distinfo 
	graphics/xmedcon/patches: patch-source_m-png_c 
	graphics/xmedcon/pkg: PLIST 

Log message:
- update to xmedcon-0.14.1
- drop gettext module


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/02 16:18:13

Modified files:
	graphics/netpbm: Makefile distinfo 
Removed files:
	graphics/netpbm/patches: patch-converter_other_tifftopnm_c 
	                         patch-editor_pnmquantall 

Log message:
update to 10.75.03: fixes have been integrated upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:18:13

Modified files:
	security/pgpdump: Makefile distinfo 
	security/pgpdump/patches: patch-Makefile_in 

Log message:
update to pgpdump-0.31


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:20:51

Modified files:
	textproc/discount: Makefile distinfo 
	textproc/discount/patches: patch-markdown_3 

Log message:
update to discount-2.2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:22:07

Modified files:
	audio/abcde    : Makefile distinfo 
Removed files:
	audio/abcde/patches: patch-abcde patch-cddb-tool 

Log message:
Update to abcde-2.7.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:25:25

Modified files:
	textproc/xmlwf : Makefile distinfo 
	textproc/xmlwf/pkg: PLIST 

Log message:
- update to xmlwf-2.1.0
- remove over-eager tab usage


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:26:49

Modified files:
	devel/p5-AnyEvent-HTTP: Makefile distinfo 

Log message:
Update to p5-AnyEvent-HTTP-2.23.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:29:22

Modified files:
	devel/p5-autobox: Makefile distinfo 

Log message:
update to p5-autobox-2.84


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:31:12

Modified files:
	devel/p5-Array-Compare: Makefile distinfo 

Log message:
Update to p5-Array-Compare-2.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:33:50

Modified files:
	devel/p5-Eval-Closure: Makefile distinfo 

Log message:
Update to p5-Eval-Closure-0.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:37:23

Modified files:
	devel/p5-Expect: Makefile distinfo 

Log message:
Update to p5-Expect-1.33.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:38:56

Modified files:
	devel/p5-File-ShareDir-Install: Makefile distinfo 

Log message:
update to p5-File-ShareDir-Install-0.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:42:17

Modified files:
	devel/p5-Proc-PID-File: Makefile distinfo 

Log message:
update to p5-Proc-PID-File-1.28


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:42:18

Modified files:
	devel/p5-Glib2 : Makefile distinfo 

Log message:
Update to p5-Glib2-1.322.
- drop the gettext module


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:43:58

Modified files:
	devel/p5-File-Slurper: Makefile distinfo 

Log message:
Update to p5-File-Slurper-0.009.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:44:01

Modified files:
	x11/worker     : Makefile distinfo 

Log message:
- update to worker-3.8.3
- tweak COMMENT


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:45:20

Modified files:
	devel/p5-Hash-Util-FieldHash-Compat: Makefile distinfo 

Log message:
Update to p5-Hash-Util-FieldHash-Compat-0.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:48:23

Modified files:
	devel/p5-IO-AIO: Makefile distinfo 
	devel/p5-IO-AIO/pkg: PLIST 

Log message:
Update to p5-IO-AIO-4.34.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:50:34

Modified files:
	devel/p5-libintl: Makefile distinfo 

Log message:
Update to p5-libintl-1.26.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:51:59

Modified files:
	devel/p5-Cache-FastMmap: Makefile distinfo 

Log message:
update to p5-Cache-FastMmap-1.44


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:52:09

Modified files:
	devel/p5-namespace-clean: Makefile distinfo 

Log message:
Update to p5-namespace-clean-0.27.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:52:44

Modified files:
	devel/p5-Class-Base: Makefile distinfo 

Log message:
update to p5-Class-Base-0.08


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

Modified files:
	devel/p5-libintl: Makefile 

Log message:
Drop the gettext module.

prodded by jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:55:23

Modified files:
	devel/p5-File-Remove: Makefile distinfo 

Log message:
update to p5-File-Remove-1.57


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:55:37

Modified files:
	devel/p5-Object-Declare: Makefile distinfo 
Removed files:
	devel/p5-Object-Declare/patches: patch-Makefile_PL 

Log message:
Update to p5-Object-Declare-0.23.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 16:57:24

Modified files:
	devel/p5-Parallel-ForkManager: Makefile distinfo 

Log message:
Update to p5-Parallel-ForkManager-1.19.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/02 16:58:18

Modified files:
	devel/p5-File-Next: Makefile distinfo 

Log message:
update to p5-File-Next-1.16


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 17:00:15

Modified files:
	devel/p5-Parallel-Prefork: Makefile distinfo 

Log message:
Update to p5-Parallel-Prefork-0.18.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/02 17:04:27

Modified files:
	devel/p5-Parse-Method-Signatures: Makefile distinfo 

Log message:
Update to p5-Parse-Method-Signatures-1.003017.


CVSROOT:	/cvs
Module name:	src
Changes by:	chl@cvs.openbsd.org	2016/09/02 17:34:37

Modified files:
	lib/libc/thread: callbacks.c 

Log message:
fix format string

ok guenther@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/02 19:13:29

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

Log message:
missing <blockquote>


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/02 19:13:50

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/02 20:59:20

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

Log message:
compress and streamline the text a bit more, don't mention CDs, remove a
variety of weird quotes, parens and markup; use a bit of css instead of
manually adding colors half a dozen times.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/02 20:59:48

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/02 21:24:47

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

Log message:
zap a pointless patronizing paragraph for the fledgling developer


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/02 21:25:09

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 01:42:14

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

Log message:
Mark the PLT as RWX so that ld.so's generic RWX->RW->RX logic can be
used and the m88k-specific logic can be retired

ok and testing aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 01:43:07

Modified files:
	gnu/usr.bin/binutils-2.17/ld: ldmain.c 

Log message:
RELRO Just Works on m88k so remove the #if: RELRO everywhere!

ok and testing aoyama@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/09/03 02:45:52

Modified files:
	sysutils/duplicity: Makefile distinfo 
	sysutils/duplicity/pkg: PLIST 
Added files:
	sysutils/duplicity/patches: 
	                            patch-testing_functional_test_restart_py 

Log message:
update to duplicity-0.7.10 and enable tests as they don't hang any more
add a patch from giovanni@ to fix an otherwise failing test

ok giovanni@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 02:47:24

Modified files:
	sys/sys        : proc.h 

Log message:
add wxneeded to the proc flags print list


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/03 03:18:52

Modified files:
	sbin/ping6     : ping6.8 

Log message:
Remove mention of nonexistent flags

OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/03 03:20:07

Modified files:
	sbin/iked      : parse.y iked.h pfkey.c 

Log message:
Add the missing bits to have NAT on enc(4) support in iked.

Ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 03:25:55

Modified files:
	security/letskencrypt: Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
update letskencrypt in -stable to 0.1.10, updating the agreement URL and
allowing a way to change it. problem reported by tj@

(the checksum no longer matched for 0.1.7 either, following rename of the
github project).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 03:33:19

Modified files:
	www/links+     : Makefile distinfo 
	www/links+/patches: patch-html_c patch-https_c 

Log message:
update to links+ 2.13, from Tim Meunier who takes maintainer and says "Thanks
to Gerald Hanuer for getting the ball rolling".


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 03:34:33

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

Log message:
Revert rev 1.15: RELRO is working so we no longer need special handling
for __{got,plt}_{start,end} symbols

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/03 03:55:44

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

Log message:
Use per-ifp tasks to process incoming packets.

Reduce the number of if_get/if_put from one per packet to one per ring
since we now know that all the packets are coming from the same interface.

Improve forwarding performances by 10Kpps in Hrvoje Popovski's test setup.

ok bluhm@, henning@, dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/03 04:02:11

Modified files:
	usr.sbin/httpd : proc.c 

Log message:
Use DPRINTF instead of #ifdef DEBUG + log_debug().

Pointed out by benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 04:03:26

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: elf32-i386.c elf64-x86-64.c 
	                               elfxx-sparc.c 

Log message:
Tests about TLS relocations that should only apply when building a
shared library need to test for 'shared && !executable' so that PIE
files can optimize to initial-exec and local-exec models

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/03 04:05:20

Modified files:
	sys/net        : if.c 

Log message:
Remove routes added by the kernel before userland ones.

This is a correctness change that will allow us to check that
nothing happend with kernel added routes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 04:12:00

Modified files:
	textproc/hevea : Makefile 

Log message:
mirror distfiles, they have been replaced with a newer version upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/03 04:20:06

Modified files:
	usr.sbin/vmd   : config.c 

Log message:
Make error handling in config_getvm() more robust

Open all fds first before sending messages to the vmm process.
This prevents some intermediate state from being generated that
will confuse vmm if it gets further messages.

Also make sure that vmctl gets the right error reason later by saving
errno upon a failure.

ok reyk@ mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 04:22:00

Modified files:
	graphics/dcraw : Makefile distinfo 

Log message:
update to dcraw-9.27.0


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/03 04:22:57

Modified files:
	usr.sbin/ospfd : ospfd.c ospfe.c rde.c 

Log message:
Simplify shutdown process.

On shutdown, there's no need to use kill(2) to kill the child
processes. Just closing the IPC sockets will make the children receive
an EOF, break out from the event loop and then exit.

Tha advantages of this "pipe teardown" are:
* simpler code;
* no need to pledge "proc" in the parent process;
* removal of a (hard to trigger) PID reuse race condition.

ok benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/03 04:25:36

Modified files:
	usr.sbin/ospf6d: ospf6d.c ospfe.c rde.c 

Log message:
Simplify shutdown process.

On shutdown, there's no need to use kill(2) to kill the child
processes. Just closing the IPC sockets will make the children receive
an EOF, break out from the event loop and then exit.

Tha advantages of this "pipe teardown" are:
* simpler code;
* no need to pledge "proc" in the parent process;
* removal of a (hard to trigger) PID reuse race condition.

ok benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/03 04:28:08

Modified files:
	usr.sbin/ripd  : rde.c ripd.c ripe.c 

Log message:
Simplify shutdown process.

On shutdown, there's no need to use kill(2) to kill the child
processes. Just closing the IPC sockets will make the children receive
an EOF, break out from the event loop and then exit.

Tha advantages of this "pipe teardown" are:
* simpler code;
* no need to pledge "proc" in the parent process;
* removal of a (hard to trigger) PID reuse race condition.

ok benno@ claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/09/03 04:28:22

Modified files:
	devel/darcs    : Makefile 

Log message:
Drop the iconv module.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 04:33:15

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmreg.h 

Log message:
Use macros for iwm(4) bitmask definitions instead of enums.
ok mpi benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/03 04:35:10

Log message:
    Import net/cgterm
    
    CGTerm is a C/G telnet client that lets you connect to C64 telnet BBSes
    with the correct colours and the correct font. Also included is a client
    for 64CHAT called CGChat.
    
    OK juanfra@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20160903
    
    N ports/net/cgterm/Makefile
    N ports/net/cgterm/distinfo
    N ports/net/cgterm/pkg/PLIST
    N ports/net/cgterm/pkg/DESCR
    N ports/net/cgterm/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/03 04:39:04

Modified files:
	net            : Makefile 

Log message:
Add cgterm


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/09/03 04:43:21

Modified files:
	devel/darcs    : Makefile 

Log message:
Set USE_WXNEEDED=Yes.

When running darcs record, darcs ends up with a W^X violation in
newCAF() (from the ghc runtime) via system_io_mmap_file_close()
(from devel/hs-mmap). This can only be fixed in the ghc runtime,
which isn't trivial (and I don't want to work on it before I've
updated to ghc-8).

Since the problem is triggered via devel/hs-mmap, which is only
used by devel/darcs, I hope that darcs is the only haskell program
in our tree running into this problem (instead of changing lang/ghc
to link all programs with -z wxneeded).

Problem initially noticed by Francisco de Borja Lopez Rio.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/03 04:44:38

Log message:
    Import audio/goattracker
    
    GoatTracker is a crossplatform C64 music editor including powerful
    step-programming (wave/arpeggio, pulse and filter), 63 instruments,
    instrument parameters & pattern commands.
    
    OK juanfra@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20160903
    
    N ports/audio/goattracker/Makefile
    N ports/audio/goattracker/distinfo
    N ports/audio/goattracker/patches/patch-makefile_common
    N ports/audio/goattracker/patches/patch-makefile
    N ports/audio/goattracker/pkg/DESCR
    N ports/audio/goattracker/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/03 04:47:24

Modified files:
	lib/csu        : Makefile 
	share/mk       : bsd.own.mk 

Log message:
Enable PIE on arm now that sjlj exceptions are no longer used after
the switch to eabi.  This does not include static PIE which will be
handled later.

A specific sequence of steps is required to cross over this change,
using a snapshot is the easiest way to do so.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/03 04:48:00

Modified files:
	audio          : Makefile 

Log message:
Add goattracker


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/03 04:48:15

Modified files:
	libexec/login_lchpass: login_lchpass.c 

Log message:
convert to use readpassphrase() instead of DEPRECATED/getpass()
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/03 04:50:16

Modified files:
	libexec/login_passwd: common.h login.c 

Log message:
convert to use readpassphrase() instead of DEPRECATED/getpass()
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/03 04:51:26

Modified files:
	libexec/login_reject: login_reject.c 

Log message:
convert to use readpassphrase() instead of DEPRECATED/getpass()
OK millert@


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2016/09/03 04:52:09

Modified files:
	faq            : current.html 

Log message:
arm is now PIE


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 04:55:26

ports/net/nagios/nrpe/files

Update of /cvs/ports/net/nagios/nrpe/files
In directory cvs.openbsd.org:/tmp/cvs-serv8029/files

Log Message:
Directory /cvs/ports/net/nagios/nrpe/files added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/03 04:56:58

Modified files:
	regress/sbin/isakmpd/crypto: Makefile 
	regress/sbin/isakmpd/hmac: Makefile 
	regress/sbin/isakmpd/prf: Makefile 
	regress/sbin/isakmpd/util: Makefile 

Log message:
Some isakmpd tests need generated header files from isakmpd.  Change
to /usr/src/sbin/isakmpd and make depend before regress.
fixed together with mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/03 04:57:12

Modified files:
	distrib/alpha/common: list 
	distrib/amd64/common: list 
	distrib/hppa   : list 
	distrib/i386/common: list 
	distrib/landisk/ramdisk: list 
	distrib/loongson/ramdisk: list 
	distrib/luna88k/ramdisk: list 
	distrib/macppc/ramdisk: list 
	distrib/miniroot: list 
	distrib/octeon/ramdisk: list 
	distrib/ramdisk: list 
	distrib/socppc/ramdisk: list 
	distrib/sparc64/bsd.rd: list 
	distrib/sparc64/ramdisk: list 
	distrib/sparc64/ramdiskB: list 
	distrib/zaurus/ramdisk: list 

Log message:
Enable a stripped down version of doas(1) on the install media.

OK halex, tb, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 04:58:04

Modified files:
	lib/libc/gen   : getpass.3 

Log message:
note that getpass is obsolete. removed from posix in 2001.


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/03 05:01:45

Modified files:
	libexec/login_yubikey: login_yubikey.c 

Log message:
convert to use readpassphrase() instead of DEPRECATED/getpass()
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 05:03:18

Modified files:
	usr.bin/doas   : doas.c 

Log message:
the sudo timeout was 5 minutes i believe, so we'll match that.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/03 05:03:43

Modified files:
	devel/p5-Search-Elasticsearch: Makefile distinfo 
	devel/p5-Search-Elasticsearch/pkg: PLIST 

Log message:
update to p5-Search-Elasticsearch-2.03


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/03 05:04:23

Modified files:
	libexec/login_radius: raddauth.c 

Log message:
convert to use readpassphrase() instead of DEPRECATED/getpass()
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/03 05:13:36

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Return immediately when m_getuio() fails by invalid uio parameter.

ok mikeb bluhm claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/03 05:14:49

Modified files:
	distrib/miniroot: master.passwd 

Log message:
Add two users accounts to the install media that have no privileges
on a base system. They are used with doas(1) to execute certain
commands as unprivileged users during install and upgrade .

OK halex, tb, deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	nayden@cvs.openbsd.org	2016/09/03 05:22:01

Modified files:
	.              : plus60.html 

Log message:
Fixed spelling mistakes.

OK @tb


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/03 05:22:09

Modified files:
	usr.bin/signify: zsig.c 

Log message:
nitpicks. all header info is relative. make gzheader freeable.
allocate properly for storing shas.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 05:24:40

Modified files:
	libexec/login_passwd: login.c 

Log message:
set password to return of readpassphrase(), not always the buffer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/03 05:27:34

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_man_nano_1 
	                      patch-doc_man_nanorc_5 
	                      patch-src_Makefile_in 
	editors/nano/pkg: PLIST 

Log message:
update to 2.7.0 for various small improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/03 05:29:17

Modified files:
	distrib/miniroot: install.sub 

Log message:
Add a do_as() function that executes commands as unprivileged user
and ensures that no processes of this user remain active afterwards.
Optionally, it creates a file, that is owned by the user only for
this command execution. Afterwards it's chown'd by root.

Add wrapper functions for do_as(). unpriv() uses the _sndio user
and unpriv2() uses the _file user to execute commands.

OK halex, tb, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	nayden@cvs.openbsd.org	2016/09/03 05:31:17

Modified files:
	lib/libevent   : buffer.c kqueue.c poll.c select.c 

Log message:
Remove NULL pointer checks before calls to free().
OK bluhm@ nicm@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 05:33:41

Removed files:
	lib/libssl/src : LICENSE 
	lib/libssl/src/apps: openssl.cnf 
	lib/libssl/src/crypto: alphacpuid.pl arm_arch.h armcap.c 
	                       armv4cpuid.S constant_time_locl.h 
	                       cpt_err.c cryptlib.c cryptlib.h crypto.h 
	                       cversion.c ex_data.c ia64cpuid.S 
	                       malloc-wrapper.c md32_common.h mem_clr.c 
	                       mem_dbg.c o_init.c o_str.c o_time.c 
	                       o_time.h opensslfeatures.h opensslv.h 
	                       ossl_typ.h pariscid.pl ppccap.c 
	                       ppccpuid.pl s390xcap.c s390xcpuid.S 
	                       sparccpuid.S sparcv9cap.c x86_64cpuid.pl 
	                       x86cpuid.pl 
	lib/libssl/src/crypto/aes: README aes.h aes_cbc.c aes_cfb.c 
	                           aes_core.c aes_ctr.c aes_ecb.c 
	                           aes_ige.c aes_locl.h aes_misc.c 
	                           aes_ofb.c aes_wrap.c aes_x86core.c 
	lib/libssl/src/crypto/aes/asm: aes-586.pl aes-armv4.pl 
	                               aes-ia64.S aes-mips.pl 
	                               aes-parisc.pl aes-ppc.pl 
	                               aes-s390x.pl aes-sparcv9.pl 
	                               aes-x86_64.pl 
	                               aesni-sha1-x86_64.pl aesni-x86.pl 
	                               aesni-x86_64.pl bsaes-x86_64.pl 
	                               vpaes-x86.pl vpaes-x86_64.pl 
	lib/libssl/src/crypto/asn1: a_bitstr.c a_bool.c a_bytes.c 
	                            a_d2i_fp.c a_digest.c a_dup.c 
	                            a_enum.c a_i2d_fp.c a_int.c 
	                            a_mbstr.c a_object.c a_octet.c 
	                            a_print.c a_set.c a_sign.c a_strex.c 
	                            a_strnid.c a_time.c a_time_tm.c 
	                            a_type.c a_utf8.c a_verify.c 
	                            ameth_lib.c asn1.h asn1_err.c 
	                            asn1_gen.c asn1_lib.c asn1_locl.h 
	                            asn1_mac.h asn1_par.c asn1t.h 
	                            asn_mime.c asn_moid.c asn_pack.c 
	                            bio_asn1.c bio_ndef.c charmap.h 
	                            charmap.pl d2i_pr.c d2i_pu.c 
	                            evp_asn1.c f_enum.c f_int.c 
	                            f_string.c i2d_pr.c i2d_pu.c 
	                            n_pkey.c nsseq.c p5_pbe.c p5_pbev2.c 
	                            p8_pkey.c t_bitst.c t_crl.c t_pkey.c 
	                            t_req.c t_spki.c t_x509.c t_x509a.c 
	                            tasn_dec.c tasn_enc.c tasn_fre.c 
	                            tasn_new.c tasn_prn.c tasn_typ.c 
	                            tasn_utl.c x_algor.c x_attrib.c 
	                            x_bignum.c x_crl.c x_exten.c 
	                            x_info.c x_long.c x_name.c x_nx509.c 
	                            x_pkey.c x_pubkey.c x_req.c x_sig.c 
	                            x_spki.c x_val.c x_x509.c x_x509a.c 
	lib/libssl/src/crypto/bf: COPYRIGHT INSTALL README VERSION 
	                          bf_cbc.c bf_cfb64.c bf_ecb.c bf_enc.c 
	                          bf_locl.h bf_ofb64.c bf_pi.h bf_skey.c 
	                          blowfish.h 
	lib/libssl/src/crypto/bf/asm: bf-586.pl 
	lib/libssl/src/crypto/bio: b_dump.c b_posix.c b_print.c b_sock.c 
	                           bf_buff.c bf_lbuf.c bf_nbio.c 
	                           bf_null.c bio.h bio_cb.c bio_err.c 
	                           bio_lib.c bss_acpt.c bss_bio.c 
	                           bss_conn.c bss_dgram.c bss_fd.c 
	                           bss_file.c bss_log.c bss_mem.c 
	                           bss_null.c bss_sock.c 
	lib/libssl/src/crypto/bn: bn.h bn_add.c bn_asm.c bn_blind.c 
	                          bn_const.c bn_ctx.c bn_depr.c bn_div.c 
	                          bn_err.c bn_exp.c bn_exp2.c bn_gcd.c 
	                          bn_gf2m.c bn_kron.c bn_lcl.h bn_lib.c 
	                          bn_mod.c bn_mont.c bn_mpi.c bn_mul.c 
	                          bn_nist.c bn_prime.c bn_prime.h 
	                          bn_prime.pl bn_print.c bn_rand.c 
	                          bn_recp.c bn_shift.c bn_sqr.c 
	                          bn_sqrt.c bn_word.c bn_x931p.c 
	lib/libssl/src/crypto/bn/asm: alpha-mont.pl armv4-gf2m.pl 
	                              armv4-mont.pl bn-586.pl co-586.pl 
	                              ia64-mont.pl ia64.S mips-mont.pl 
	                              mips.pl modexp512-x86_64.pl 
	                              pa-risc2.s pa-risc2W.s 
	                              parisc-mont.pl ppc-mont.pl ppc.pl 
	                              ppc64-mont.pl s390x-gf2m.pl 
	                              s390x-mont.pl s390x.S sparcv8.S 
	                              sparcv8plus.S sparcv9-mont.pl 
	                              sparcv9a-mont.pl via-mont.pl 
	                              x86-gf2m.pl x86-mont.pl x86.pl 
	                              x86_64-gcc.c x86_64-gf2m.pl 
	                              x86_64-mont.pl x86_64-mont5.pl 
	lib/libssl/src/crypto/bn/asm/x86: add.pl comba.pl div.pl mul.pl 
	                                  mul_add.pl sqr.pl sub.pl 
	lib/libssl/src/crypto/buffer: buf_err.c buf_str.c buffer.c 
	                              buffer.h 
	lib/libssl/src/crypto/camellia: camellia.c camellia.h cmll_cbc.c 
	                                cmll_cfb.c cmll_ctr.c cmll_ecb.c 
	                                cmll_locl.h cmll_misc.c 
	                                cmll_ofb.c 
	lib/libssl/src/crypto/camellia/asm: cmll-x86.pl cmll-x86_64.pl 
	lib/libssl/src/crypto/cast: c_cfb64.c c_ecb.c c_enc.c c_ofb64.c 
	                            c_skey.c cast.h cast_lcl.h cast_s.h 
	lib/libssl/src/crypto/cast/asm: cast-586.pl 
	lib/libssl/src/crypto/chacha: chacha-merged.c chacha.c chacha.h 
	lib/libssl/src/crypto/cmac: cm_ameth.c cm_pmeth.c cmac.c cmac.h 
	lib/libssl/src/crypto/cms: cms.h 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_lcl.h cms_lib.c cms_pwri.c 
	                           cms_sd.c cms_smime.c 
	lib/libssl/src/crypto/comp: c_rle.c c_zlib.c comp.h comp_err.c 
	                            comp_lib.c 
	lib/libssl/src/crypto/conf: README conf.h conf_api.c conf_api.h 
	                            conf_def.c conf_def.h conf_err.c 
	                            conf_lib.c conf_mall.c conf_mod.c 
	                            conf_sap.c keysets.pl ssleay.cnf 
	lib/libssl/src/crypto/des: COPYRIGHT cbc_cksm.c cbc_enc.c 
	                           cfb64ede.c cfb64enc.c cfb_enc.c des.h 
	                           des_enc.c des_locl.h ecb3_enc.c 
	                           ecb_enc.c ede_cbcm_enc.c enc_read.c 
	                           enc_writ.c fcrypt.c fcrypt_b.c 
	                           ncbc_enc.c ofb64ede.c ofb64enc.c 
	                           ofb_enc.c pcbc_enc.c qud_cksm.c 
	                           rand_key.c set_key.c spr.h str2key.c 
	                           xcbc_enc.c 
	lib/libssl/src/crypto/des/asm: crypt586.pl des-586.pl des_enc.m4 
	                               desboth.pl 
	lib/libssl/src/crypto/dh: dh.h dh_ameth.c dh_asn1.c dh_check.c 
	                          dh_depr.c dh_err.c dh_gen.c dh_key.c 
	                          dh_lib.c dh_pmeth.c dh_prn.c 
	lib/libssl/src/crypto/dsa: dsa.h dsa_ameth.c dsa_asn1.c 
	                           dsa_depr.c dsa_err.c dsa_gen.c 
	                           dsa_key.c dsa_lib.c dsa_locl.h 
	                           dsa_ossl.c dsa_pmeth.c dsa_prn.c 
	                           dsa_sign.c dsa_vrf.c 
	lib/libssl/src/crypto/dso: dso.h dso_dlfcn.c dso_err.c dso_lib.c 
	                           dso_null.c dso_openssl.c 
	lib/libssl/src/crypto/ec: ec.h ec2_mult.c ec2_oct.c ec2_smpl.c 
	                          ec_ameth.c ec_asn1.c ec_check.c 
	                          ec_curve.c ec_cvt.c ec_err.c ec_key.c 
	                          ec_lcl.h ec_lib.c ec_mult.c ec_oct.c 
	                          ec_pmeth.c ec_print.c eck_prn.c 
	                          ecp_mont.c ecp_nist.c ecp_nistp224.c 
	                          ecp_nistp256.c ecp_nistp521.c 
	                          ecp_nistputil.c ecp_oct.c ecp_smpl.c 
	lib/libssl/src/crypto/ecdh: ecdh.h ech_err.c ech_key.c ech_lib.c 
	                            ech_locl.h 
	lib/libssl/src/crypto/ecdsa: ecdsa.h ecs_asn1.c ecs_err.c 
	                             ecs_lib.c ecs_locl.h ecs_ossl.c 
	                             ecs_sign.c ecs_vrf.c 
	lib/libssl/src/crypto/engine: README eng_aesni.c eng_all.c 
	                              eng_cnf.c eng_ctrl.c eng_dyn.c 
	                              eng_err.c eng_fat.c eng_init.c 
	                              eng_int.h eng_lib.c eng_list.c 
	                              eng_openssl.c eng_padlock.c 
	                              eng_padlock.ec eng_pkey.c 
	                              eng_table.c engine.h tb_asnmth.c 
	                              tb_cipher.c tb_dh.c tb_digest.c 
	                              tb_dsa.c tb_ecdh.c tb_ecdsa.c 
	                              tb_pkmeth.c tb_rand.c tb_rsa.c 
	                              tb_store.c 
	lib/libssl/src/crypto/err: err.c err.h err_all.c err_prn.c 
	                           openssl.ec 
	lib/libssl/src/crypto/evp: bio_b64.c bio_enc.c bio_md.c c_all.c 
	                           digest.c e_aes.c 
	                           e_aes_cbc_hmac_sha1.c e_bf.c 
	                           e_camellia.c e_cast.c e_chacha.c 
	                           e_chacha20poly1305.c e_des.c e_des3.c 
	                           e_gost2814789.c e_idea.c e_null.c 
	                           e_old.c e_rc2.c e_rc4.c 
	                           e_rc4_hmac_md5.c e_xcbc_d.c encode.c 
	                           evp.h evp_aead.c evp_enc.c evp_err.c 
	                           evp_key.c evp_lib.c evp_locl.h 
	                           evp_pbe.c evp_pkey.c m_dss.c m_dss1.c 
	                           m_ecdsa.c m_gost2814789.c 
	                           m_gostr341194.c m_md4.c m_md5.c 
	                           m_null.c m_ripemd.c m_sha1.c 
	                           m_sigver.c m_streebog.c m_wp.c 
	                           names.c p5_crpt.c p5_crpt2.c p_dec.c 
	                           p_enc.c p_lib.c p_open.c p_seal.c 
	                           p_sign.c p_verify.c pmeth_fn.c 
	                           pmeth_gn.c pmeth_lib.c 
	lib/libssl/src/crypto/gost: gost.h gost2814789.c 
	                            gost89_keywrap.c gost89_params.c 
	                            gost89imit_ameth.c 
	                            gost89imit_pmeth.c gost_asn1.c 
	                            gost_asn1.h gost_err.c gost_locl.h 
	                            gostr341001.c gostr341001_ameth.c 
	                            gostr341001_key.c 
	                            gostr341001_params.c 
	                            gostr341001_pmeth.c gostr341194.c 
	                            streebog.c 
	lib/libssl/src/crypto/hmac: hm_ameth.c hm_pmeth.c hmac.c hmac.h 
	lib/libssl/src/crypto/idea: i_cbc.c i_cfb64.c i_ecb.c i_ofb64.c 
	                            i_skey.c idea.h idea_lcl.h 
	lib/libssl/src/crypto/krb5: krb5_asn.c krb5_asn.h 
	lib/libssl/src/crypto/lhash: lh_stats.c lhash.c lhash.h 
	lib/libssl/src/crypto/md4: md4.h md4_dgst.c md4_locl.h md4_one.c 
	lib/libssl/src/crypto/md5: md5.h md5_dgst.c md5_locl.h md5_one.c 
	lib/libssl/src/crypto/md5/asm: md5-586.pl md5-ia64.S 
	                               md5-x86_64.pl 
	lib/libssl/src/crypto/modes: cbc128.c ccm128.c cfb128.c ctr128.c 
	                             cts128.c gcm128.c modes.h 
	                             modes_lcl.h ofb128.c xts128.c 
	lib/libssl/src/crypto/modes/asm: ghash-alpha.pl ghash-armv4.pl 
	                                 ghash-ia64.pl ghash-parisc.pl 
	                                 ghash-s390x.pl ghash-sparcv9.pl 
	                                 ghash-x86.pl ghash-x86_64.pl 
	lib/libssl/src/crypto/objects: o_names.c obj_dat.c obj_dat.pl 
	                               obj_err.c obj_lib.c obj_mac.num 
	                               obj_xref.c obj_xref.h 
	                               obj_xref.txt objects.README 
	                               objects.h objects.pl objects.txt 
	                               objxref.pl 
	lib/libssl/src/crypto/ocsp: ocsp.h ocsp_asn.c ocsp_cl.c 
	                            ocsp_err.c ocsp_ext.c ocsp_ht.c 
	                            ocsp_lib.c ocsp_prn.c ocsp_srv.c 
	                            ocsp_vfy.c 
	lib/libssl/src/crypto/pem: message pem.h pem2.h pem_all.c 
	                           pem_err.c pem_info.c pem_lib.c 
	                           pem_oth.c pem_pk8.c pem_pkey.c 
	                           pem_seal.c pem_sign.c pem_x509.c 
	                           pem_xaux.c pkcs7.lis pvkfmt.c 
	lib/libssl/src/crypto/perlasm: cbc.pl ppc-xlate.pl readme 
	                               x86_64-xlate.pl x86asm.pl 
	                               x86gas.pl 
	lib/libssl/src/crypto/pkcs12: p12_add.c p12_asn.c p12_attr.c 
	                              p12_crpt.c p12_crt.c p12_decr.c 
	                              p12_init.c p12_key.c p12_kiss.c 
	                              p12_mutl.c p12_npas.c p12_p8d.c 
	                              p12_p8e.c p12_utl.c pk12err.c 
	                              pkcs12.h 
	lib/libssl/src/crypto/pkcs7: bio_pk7.c pk7_asn1.c pk7_attr.c 
	                             pk7_doit.c pk7_lib.c pk7_mime.c 
	                             pk7_smime.c pkcs7.h pkcs7err.c 
	lib/libssl/src/crypto/poly1305: poly1305-donna.c poly1305.c 
	                                poly1305.h 
	lib/libssl/src/crypto/rand: rand.h rand_err.c rand_lib.c 
	                            randfile.c 
	lib/libssl/src/crypto/rc2: rc2.h rc2_cbc.c rc2_ecb.c rc2_locl.h 
	                           rc2_skey.c rc2cfb64.c rc2ofb64.c 
	                           rrc2.doc version 
	lib/libssl/src/crypto/rc4: rc4.h rc4_enc.c rc4_locl.h rc4_skey.c 
	lib/libssl/src/crypto/rc4/asm: rc4-586.pl rc4-ia64.pl 
	                               rc4-md5-x86_64.pl rc4-parisc.pl 
	                               rc4-s390x.pl rc4-x86_64.pl 
	lib/libssl/src/crypto/ripemd: README ripemd.h rmd_dgst.c 
	                              rmd_locl.h rmd_one.c rmdconst.h 
	lib/libssl/src/crypto/ripemd/asm: rmd-586.pl 
	lib/libssl/src/crypto/rsa: rsa.h rsa_ameth.c rsa_asn1.c 
	                           rsa_chk.c rsa_crpt.c rsa_depr.c 
	                           rsa_eay.c rsa_err.c rsa_gen.c 
	                           rsa_lib.c rsa_locl.h rsa_none.c 
	                           rsa_oaep.c rsa_pk1.c rsa_pmeth.c 
	                           rsa_prn.c rsa_pss.c rsa_saos.c 
	                           rsa_sign.c rsa_ssl.c rsa_x931.c 
	lib/libssl/src/crypto/sha: sha.h sha1_one.c sha1dgst.c sha256.c 
	                           sha512.c sha_locl.h 
	lib/libssl/src/crypto/sha/asm: sha1-586.pl sha1-alpha.pl 
	                               sha1-armv4-large.pl sha1-ia64.pl 
	                               sha1-mips.pl sha1-parisc.pl 
	                               sha1-ppc.pl sha1-s390x.pl 
	                               sha1-sparcv9.pl sha1-sparcv9a.pl 
	                               sha1-thumb.pl sha1-x86_64.pl 
	                               sha256-586.pl sha256-armv4.pl 
	                               sha512-586.pl sha512-armv4.pl 
	                               sha512-ia64.pl sha512-mips.pl 
	                               sha512-parisc.pl sha512-ppc.pl 
	                               sha512-s390x.pl sha512-sparcv9.pl 
	                               sha512-x86_64.pl 
	lib/libssl/src/crypto/stack: safestack.h stack.c stack.h 
	lib/libssl/src/crypto/ts: ts.h ts_asn1.c ts_conf.c ts_err.c 
	                          ts_lib.c ts_req_print.c ts_req_utils.c 
	                          ts_rsp_print.c ts_rsp_sign.c 
	                          ts_rsp_utils.c ts_rsp_verify.c 
	                          ts_verify_ctx.c 
	lib/libssl/src/crypto/txt_db: txt_db.c txt_db.h 
	lib/libssl/src/crypto/ui: ui.h ui_compat.h ui_err.c ui_lib.c 
	                          ui_locl.h ui_openssl.c ui_util.c 
	lib/libssl/src/crypto/whrlpool: whrlpool.h wp_block.c wp_dgst.c 
	                                wp_locl.h 
	lib/libssl/src/crypto/whrlpool/asm: wp-mmx.pl wp-x86_64.pl 
	lib/libssl/src/crypto/x509: by_dir.c by_file.c by_mem.c x509.h 
	                            x509_att.c x509_cmp.c x509_d2.c 
	                            x509_def.c x509_err.c x509_ext.c 
	                            x509_lcl.h x509_lu.c x509_obj.c 
	                            x509_r2x.c x509_req.c x509_set.c 
	                            x509_trs.c x509_txt.c x509_v3.c 
	                            x509_vfy.c x509_vfy.h x509_vpm.c 
	                            x509cset.c x509name.c x509rset.c 
	                            x509spki.c x509type.c x_all.c 
	lib/libssl/src/crypto/x509v3: ext_dat.h pcy_cache.c pcy_data.c 
	                              pcy_int.h pcy_lib.c pcy_map.c 
	                              pcy_node.c pcy_tree.c v3_akey.c 
	                              v3_akeya.c v3_alt.c v3_bcons.c 
	                              v3_bitst.c v3_conf.c v3_cpols.c 
	                              v3_crld.c v3_enum.c v3_extku.c 
	                              v3_genn.c v3_ia5.c v3_info.c 
	                              v3_int.c v3_lib.c v3_ncons.c 
	                              v3_ocsp.c v3_pci.c v3_pcia.c 
	                              v3_pcons.c v3_pku.c v3_pmaps.c 
	                              v3_prn.c v3_purp.c v3_skey.c 
	                              v3_sxnet.c v3_utl.c v3err.c 
	                              x509v3.h 
	lib/libssl/src/doc: openssl.txt standards.txt 
	lib/libssl/src/doc/apps: asn1parse.pod ca.pod ciphers.pod 
	                         cms.pod config.pod crl.pod 
	                         crl2pkcs7.pod dgst.pod dhparam.pod 
	                         dsa.pod dsaparam.pod ec.pod ecparam.pod 
	                         enc.pod errstr.pod gendsa.pod 
	                         genpkey.pod genrsa.pod nseq.pod 
	                         ocsp.pod openssl.pod passwd.pod 
	                         pkcs12.pod pkcs7.pod pkcs8.pod pkey.pod 
	                         pkeyparam.pod pkeyutl.pod rand.pod 
	                         req.pod rsa.pod rsautl.pod s_client.pod 
	                         s_server.pod s_time.pod sess_id.pod 
	                         smime.pod speed.pod spkac.pod ts.pod 
	                         verify.pod version.pod x509.pod 
	                         x509v3_config.pod 
	lib/libssl/src/doc/crypto: DES_set_key.pod DH_generate_key.pod 
	                           DH_generate_parameters.pod 
	                           DH_get_ex_new_index.pod DH_new.pod 
	                           DH_set_method.pod DH_size.pod 
	                           DSA_SIG_new.pod DSA_do_sign.pod 
	                           DSA_dup_DH.pod DSA_generate_key.pod 
	                           DSA_generate_parameters.pod 
	                           DSA_get_ex_new_index.pod DSA_new.pod 
	                           DSA_set_method.pod DSA_sign.pod 
	                           DSA_size.pod EC_GFp_simple_method.pod 
	                           EC_GROUP_copy.pod EC_GROUP_new.pod 
	                           EC_KEY_new.pod EC_POINT_add.pod 
	                           EC_POINT_new.pod ERR.pod 
	                           ERR_GET_LIB.pod ERR_clear_error.pod 
	                           ERR_error_string.pod 
	                           ERR_get_error.pod 
	                           ERR_load_crypto_strings.pod 
	                           ERR_load_strings.pod 
	                           ERR_print_errors.pod 
	                           ERR_put_error.pod 
	                           ERR_remove_state.pod ERR_set_mark.pod 
	                           EVP_BytesToKey.pod EVP_DigestInit.pod 
	                           EVP_DigestSignInit.pod 
	                           EVP_DigestVerifyInit.pod 
	                           EVP_EncryptInit.pod EVP_OpenInit.pod 
	                           EVP_PKEY_CTX_ctrl.pod 
	                           EVP_PKEY_CTX_new.pod EVP_PKEY_cmp.pod 
	                           EVP_PKEY_decrypt.pod 
	                           EVP_PKEY_derive.pod 
	                           EVP_PKEY_encrypt.pod 
	                           EVP_PKEY_get_default_digest.pod 
	                           EVP_PKEY_keygen.pod EVP_PKEY_new.pod 
	                           EVP_PKEY_print_private.pod 
	                           EVP_PKEY_set1_RSA.pod 
	                           EVP_PKEY_sign.pod EVP_PKEY_verify.pod 
	                           EVP_PKEY_verify_recover.pod 
	                           EVP_SealInit.pod EVP_SignInit.pod 
	                           EVP_VerifyInit.pod HMAC.pod MD5.pod 
	                           OBJ_nid2obj.pod 
	                           OPENSSL_VERSION_NUMBER.pod 
	                           OPENSSL_config.pod 
	                           OPENSSL_load_builtin_modules.pod 
	                           OpenSSL_add_all_algorithms.pod 
	                           PEM_read_bio_PrivateKey.pod 
	                           PEM_write_bio_CMS_stream.pod 
	                           PEM_write_bio_PKCS7_stream.pod 
	                           PKCS12_create.pod PKCS12_parse.pod 
	                           PKCS5_PBKDF2_HMAC.pod 
	                           PKCS7_decrypt.pod PKCS7_encrypt.pod 
	                           PKCS7_sign.pod 
	                           PKCS7_sign_add_signer.pod 
	                           PKCS7_verify.pod RAND.pod 
	                           RAND_add.pod RAND_bytes.pod 
	                           RAND_cleanup.pod RAND_load_file.pod 
	                           RAND_set_rand_method.pod RC4.pod 
	                           RIPEMD160.pod RSA_blinding_on.pod 
	                           RSA_check_key.pod 
	                           RSA_generate_key.pod 
	                           RSA_get_ex_new_index.pod RSA_new.pod 
	                           RSA_padding_add_PKCS1_type_1.pod 
	                           RSA_print.pod RSA_private_encrypt.pod 
	                           RSA_public_encrypt.pod 
	                           RSA_set_method.pod RSA_sign.pod 
	                           RSA_sign_ASN1_OCTET_STRING.pod 
	                           RSA_size.pod SHA1.pod 
	                           SMIME_read_CMS.pod 
	                           SMIME_read_PKCS7.pod 
	                           SMIME_write_CMS.pod 
	                           SMIME_write_PKCS7.pod 
	                           X509_NAME_ENTRY_get_object.pod 
	                           X509_NAME_add_entry_by_txt.pod 
	                           X509_NAME_get_index_by_NID.pod 
	                           X509_NAME_print_ex.pod 
	                           X509_STORE_CTX_get_error.pod 
	                           X509_STORE_CTX_get_ex_new_index.pod 
	                           X509_STORE_CTX_new.pod 
	                           X509_STORE_CTX_set_verify_cb.pod 
	                           X509_STORE_set_verify_cb_func.pod 
	                           X509_VERIFY_PARAM_set_flags.pod 
	                           X509_new.pod X509_verify_cert.pod 
	                           bn.pod d2i_ASN1_OBJECT.pod 
	                           d2i_DHparams.pod d2i_DSAPublicKey.pod 
	                           d2i_ECPKParameters.pod 
	                           d2i_RSAPublicKey.pod d2i_X509.pod 
	                           d2i_X509_ALGOR.pod d2i_X509_CRL.pod 
	                           d2i_X509_NAME.pod d2i_X509_REQ.pod 
	                           d2i_X509_SIG.pod dh.pod dsa.pod 
	                           ec.pod engine.pod evp.pod 
	                           i2d_CMS_bio_stream.pod 
	                           i2d_PKCS7_bio_stream.pod lh_stats.pod 
	                           rsa.pod x509.pod 
	lib/libssl/src/doc/ssl: BIO_f_ssl.3 SSL_CIPHER_get_name.3 
	                        SSL_COMP_add_compression_method.3 
	                        SSL_CTX_add_extra_chain_cert.3 
	                        SSL_CTX_add_session.3 SSL_CTX_ctrl.3 
	                        SSL_CTX_flush_sessions.3 SSL_CTX_free.3 
	                        SSL_CTX_get_ex_new_index.3 
	                        SSL_CTX_get_verify_mode.3 
	                        SSL_CTX_load_verify_locations.3 
	                        SSL_CTX_new.3 SSL_CTX_sess_number.3 
	                        SSL_CTX_sess_set_cache_size.3 
	                        SSL_CTX_sess_set_get_cb.3 
	                        SSL_CTX_sessions.3 
	                        SSL_CTX_set_cert_store.3 
	                        SSL_CTX_set_cert_verify_callback.3 
	                        SSL_CTX_set_cipher_list.3 
	                        SSL_CTX_set_client_CA_list.3 
	                        SSL_CTX_set_client_cert_cb.3 
	                        SSL_CTX_set_default_passwd_cb.3 
	                        SSL_CTX_set_generate_session_id.3 
	                        SSL_CTX_set_info_callback.3 
	                        SSL_CTX_set_max_cert_list.3 
	                        SSL_CTX_set_mode.3 
	                        SSL_CTX_set_msg_callback.3 
	                        SSL_CTX_set_options.3 
	                        SSL_CTX_set_psk_client_callback.3 
	                        SSL_CTX_set_quiet_shutdown.3 
	                        SSL_CTX_set_session_cache_mode.3 
	                        SSL_CTX_set_session_id_context.3 
	                        SSL_CTX_set_ssl_version.3 
	                        SSL_CTX_set_timeout.3 
	                        SSL_CTX_set_tmp_dh_callback.3 
	                        SSL_CTX_set_tmp_rsa_callback.3 
	                        SSL_CTX_set_verify.3 
	                        SSL_CTX_use_certificate.3 
	                        SSL_CTX_use_psk_identity_hint.3 
	                        SSL_SESSION_free.3 
	                        SSL_SESSION_get_ex_new_index.3 
	                        SSL_SESSION_get_time.3 SSL_accept.3 
	                        SSL_alert_type_string.3 SSL_clear.3 
	                        SSL_connect.3 SSL_do_handshake.3 
	                        SSL_free.3 SSL_get_SSL_CTX.3 
	                        SSL_get_ciphers.3 
	                        SSL_get_client_CA_list.3 
	                        SSL_get_current_cipher.3 
	                        SSL_get_default_timeout.3 
	                        SSL_get_error.3 
	                        SSL_get_ex_data_X509_STORE_CTX_idx.3 
	                        SSL_get_ex_new_index.3 SSL_get_fd.3 
	                        SSL_get_peer_cert_chain.3 
	                        SSL_get_peer_certificate.3 
	                        SSL_get_psk_identity.3 SSL_get_rbio.3 
	                        SSL_get_session.3 
	                        SSL_get_verify_result.3 
	                        SSL_get_version.3 SSL_library_init.3 
	                        SSL_load_client_CA_file.3 SSL_new.3 
	                        SSL_pending.3 SSL_read.3 
	                        SSL_rstate_string.3 SSL_session_reused.3 
	                        SSL_set_bio.3 SSL_set_connect_state.3 
	                        SSL_set_fd.3 SSL_set_session.3 
	                        SSL_set_shutdown.3 
	                        SSL_set_verify_result.3 SSL_shutdown.3 
	                        SSL_state_string.3 SSL_want.3 
	                        SSL_write.3 d2i_SSL_SESSION.3 ssl.3 
	lib/libssl/src/ssl: bio_ssl.c bs_ber.c bs_cbb.c bs_cbs.c 
	                    bytestring.h d1_both.c d1_clnt.c d1_enc.c 
	                    d1_lib.c d1_meth.c d1_pkt.c d1_srtp.c 
	                    d1_srvr.c dtls1.h pqueue.c pqueue.h 
	                    s23_clnt.c s23_lib.c s23_pkt.c s23_srvr.c 
	                    s3_both.c s3_cbc.c s3_clnt.c s3_lib.c 
	                    s3_pkt.c s3_srvr.c srtp.h ssl.h ssl2.h 
	                    ssl23.h ssl3.h ssl_algs.c ssl_asn1.c 
	                    ssl_cert.c ssl_ciph.c ssl_err.c ssl_err2.c 
	                    ssl_lib.c ssl_locl.h ssl_rsa.c ssl_sess.c 
	                    ssl_stat.c ssl_txt.c t1_clnt.c t1_enc.c 
	                    t1_lib.c t1_meth.c t1_reneg.c t1_srvr.c 
	                    tls1.h 
	lib/libssl/src/test: CAss.cnf CAssdh.cnf CAssdsa.cnf CAssrsa.cnf 
	                     CAtsa.cnf P1ss.cnf P2ss.cnf Sssdsa.cnf 
	                     Sssrsa.cnf Uss.cnf VMSca-response.1 
	                     VMSca-response.2 asn1test.c bctest 
	                     cms-examples.pl cms-test.pl methtest.c 
	                     pkcs7-1.pem pkcs7.pem pkits-test.pl 
	                     r160test.c smcont.txt tcrl test.cnf 
	                     test_aesni test_padlock testca testcrl.pem 
	                     testenc testgen testp7.pem testreq2.pem 
	                     testrsa.pem testsid.pem testss testssl 
	                     testsslproxy testtsa testx509.pem times 
	                     tpkcs7 tpkcs7d treq trsa tsid tx509 
	                     v3-cert1.pem v3-cert2.pem 
	lib/libssl/src/test/smime-certs: smdsa1.pem smdsa2.pem 
	                                 smdsa3.pem smdsap.pem 
	                                 smroot.pem smrsa1.pem 
	                                 smrsa2.pem smrsa3.pem 
	lib/libssl/src/util: mkerr.pl mkstack.pl 

Log message:
Remove the libssl/src directory


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 05:33:42

Removed files:
	lib/libssl/ssl : Makefile shlib_version 

Log message:
Remove the libssl/ssl directory


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 05:33:43

Removed files:
	lib/libcrypto/crypto: Makefile arc4random_aix.h 
	                      arc4random_freebsd.h arc4random_hpux.h 
	                      arc4random_linux.h arc4random_netbsd.h 
	                      arc4random_osx.h arc4random_solaris.h 
	                      arc4random_win.h getentropy_aix.c 
	                      getentropy_freebsd.c getentropy_hpux.c 
	                      getentropy_linux.c getentropy_netbsd.c 
	                      getentropy_osx.c getentropy_solaris.c 
	                      getentropy_win.c shlib_version 
	lib/libcrypto/crypto/arch/alpha: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/amd64: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/arm: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/hppa: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/i386: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/m88k: opensslconf.h 
	lib/libcrypto/crypto/arch/mips64: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/powerpc: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/sh: opensslconf.h 
	lib/libcrypto/crypto/arch/sparc: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/sparc64: Makefile.inc opensslconf.h 
	lib/libcrypto/crypto/arch/vax: Makefile.inc bn_asm_vax.S 
	                               opensslconf.h 

Log message:
Remove the libcrypto/crypto directory


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/03 05:35:19

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

Log message:
provide better interrupt responsiveness by exiting to vmd whenever
vcpu->vc_intr is asserted and the guest is ready for interrupts, instead
of waiting until the next time we would have exited to vmd for some other
reason.

ok stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	nayden@cvs.openbsd.org	2016/09/03 05:35:24

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
Adding a clean up block to vioblk_notifyq() and vionet_enq_rx()
OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/03 05:36:08

Modified files:
	usr.sbin/vmd   : ns8250.c 

Log message:
fix some wrong interrupt code that doesn't fit with the new model

ok stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/03 05:38:08

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
As vmm(4) can now exit to vmd at any time to process pending interrupts,
don't kill the VM if we are presented with an exit type that is not
something we directly need to handle. Instead, simply re-enter the guest,
possibly injecting an interrupt along the way. Still exit the process
if presented with a triple fault, until we implement reboot support.

ok stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/03 05:40:32

Modified files:
	distrib/miniroot: install.sub 

Log message:
Make the installer safer by fetching and verifying external data
as unprivileged users.

OK halex, tb, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/03 05:40:54

Modified files:
	sys/dev        : rnd.c 

Log message:
Since the initial entropy pool is 8192 bytes, we need three pages to create
the alias mapping when clearing it, since there is no guarantee the pool is
page aligned.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 05:41:10

Modified files:
	usr.bin/compress: compress.h gzopen.c main.c nullopen.c zopen.c 

Log message:
start pulling apart some function pointers that take too many parameters
because of excessive code sharing. compression and decompression are not
entirely similar, they should share less.
ok joerg millert


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 05:42:12

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

Log message:
Get rid of iwm_mvm_send_add_sta_cmd_status() which is a pointless wrapper
around iwm_mvm_send_cmd_pdu_status(). Just call the function directly.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 05:49:33

Modified files:
	lib/libcrypto  : Makefile generate_pkgconfig.sh 
	lib/libcrypto/man: Makefile 
	lib/libssl     : Makefile generate_pkgconfig.sh 
	lib/libssl/man : Makefile 

Log message:
Adjust to allow tree to build again after file moves


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/03 05:52:06

Modified files:
	usr.sbin/ntpd  : client.c ntp.c ntp_dns.c ntp_msg.c ntpd.c 
	                 ntpd.h sensors.c server.c 

Log message:
Remove the oh so funny "LOSS OF MIND" from the diclaimer that was not
part of the original ISC license that we use in OpenBSD.  Done for
files were Henning is the original author.

OK henning@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 05:56:33

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

Log message:
Bring in functions used by stunnel and exim from BoringSSL - this brings
in X509_check_host, X509_check_email, X509_check_ip, and X509_check_ip_asc,
with some cleanup on the way in by myself and jsing@
ok bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 05:57:43

Modified files:
	lib/libssl     : shlib_version 
	lib/libcrypto  : shlib_version 

Log message:
crank minor for API addiiton of x509_email, etc. functions


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/09/03 05:58:32

Modified files:
	etc            : Makefile 
Added files:
	etc/examples   : doas.conf 

Log message:
Add doas.conf example configuration file.

Discussed with and loved by many.

OK tedu@, tom@, deraadt@.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 06:00:24

Modified files:
	lib/libcrypto/ec: ec_lib.c 

Log message:
Fix some very unnecessary convoultion.
ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/03 06:02:07

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/03 06:09:30

Modified files:
	databases/tdb  : Makefile distinfo 

Log message:
Update to tdb-1.3.11


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 06:10:40

Modified files:
	lib/libcrypto/ec: ec_lib.c 

Log message:
remove unused variable


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/03 06:12:21

Modified files:
	usr.bin/signify: zsig.c 

Log message:
MAJOR tweak: switch to SHA512/256

adjust the header information to be self-descripting and contain a
signature date, and pass that thru when checking.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/03 06:12:43

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 SDBG to cpuid bits and identcpu


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/03 06:13:46

Log message:
    Import p5-Log-Any-Adapter-Callback a perl module to send Log::Any logs
    to a subroutine.
    ok jasper@
    
    This adapter is used for customized logging, and is mostly a
    convenient construct to save a few lines of code. You could achieve
    the same effect by creating a full Log::Any adapter class.
    
    Status:
    
    Vendor Tag:	giovanni
    Release Tags:	giovanni_20160903
    
    N ports/devel/p5-Log-Any-Adapter-Callback/Makefile
    N ports/devel/p5-Log-Any-Adapter-Callback/distinfo
    N ports/devel/p5-Log-Any-Adapter-Callback/pkg/PLIST
    N ports/devel/p5-Log-Any-Adapter-Callback/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/03 06:16:04

Modified files:
	devel          : Makefile 

Log message:
+p5-Log-Any-Adapter-Callback


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/03 06:21:36

Modified files:
	devel/p5-Search-Elasticsearch: Makefile 

Log message:
Add a missing TEST_DEPENDS and take maintainership.
ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/03 06:21:38

Modified files:
	usr.bin/signify: signify.c 

Log message:
fix parameters checking


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/03 06:23:02

Modified files:
	regress/usr.bin/signify: signify.sh 

Log message:
check -z mode, just by creating an archive and checking it's still proper
gzip.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/03 06:24:10

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
cherry-pick a few diffs from libc malloc; ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 06:24:21

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

Log message:
Get rid of the various iwm_free_* wrappers around iwm_dma_contig_free().
Call iwm_dma_contig_free() directly instead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/03 06:27:17

Modified files:
	lang/sbcl      : Makefile 
Added files:
	lang/sbcl/patches: patch-contrib_sb-posix_posix-tests_lisp 

Log message:
Disable test that fails for unknown reasons (W^X-related), fixes build.

Test already disabled on Windows and NetBSD.  Initial diff from Solene
Rapenne.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 06:29:30

Modified files:
	usr.bin/compress: gzopen.c main.c 

Log message:
the SMALL code made a half hearted effort to exclude compression code
but some of the write code remained. shuffle things around a bit to make
the exclusion more complete.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/03 06:42:47

Modified files:
	lib/libssl     : Makefile generate_pkgconfig.sh 
	lib/libssl/man : Makefile 
	lib/libcrypto  : Makefile generate_pkgconfig.sh 
	lib/libcrypto/man: Makefile 

Log message:
Make tree build again


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/03 06:47:28

Modified files:
	lib/libc/gen   : getpass.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/03 06:59:33

Modified files:
	usr.bin/signify: zsig.c 

Log message:
naddy@ pointed out that SHA512/256 is slightly different
so use SHA384 which is on the shelf and good enough


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 07:05:08

Modified files:
	sbin/savecore  : Makefile 
Added files:
	sbin/savecore  : compress.h zopen.c 

Log message:
proving once again my commit and somebody will test strategy works,
deraadt found that savecore also uses a source file from compress.
add (6.0 versions) of the needed files to permit progress elsewhere.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/03 07:09:25

Modified files:
	usr.sbin/nsd   : configure.ac edns.c 

Log message:
Update to 4.1.12
-----------------------------------------------------------------
BUG FIXES:
- Fix malformed edns query assertion failure, reported by
Michal Kepien (NASK).
-----------------------------------------------------------------

Does not effect OpenBSD since we are not running configure with
--enable-checking

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 07:13:07

Modified files:
	sys/arch/i386/conf: ld.script 
	sys/arch/amd64/conf: ld.script 

Log message:
Make .openbsd.randomdata section RO.  Highlight is that the stack protector
cookie becomes readonly, spraying over it in KVA becomes more difficult.
amd64 version from guenther, i386 version by myself
ok guenther kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 07:16:50

Modified files:
	sys/kern       : init_main.c 

Log message:
Do not reinitialize __guard_local if it is 0.  This cannot be done
anymore, since it is now RO.

It is the bootloader's job to initialize it correctly.  If the
bootloader fails to perform that, you silently lose.  The road to
building an always-available rng is served by us depending on it :)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 07:26:50

Modified files:
	usr.bin/compress: main.c 

Log message:
remove parens from method calls


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/03 07:26:55

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

Log message:
shorten s_time; help/ok bcook


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 07:29:59

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
set PATCH_DEBUG=Yes by default, to make it easier to notice patches which
get misapplied after an update (fuzz etc). ok giovanni@ landry@ danj@ edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/03 07:35:03

Modified files:
	sys/arch/amd64/include: specialreg.h 
	sys/arch/i386/include: specialreg.h 

Log message:
fix typo "mode" -> "model" when referring to "Model specific registers"


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 07:35:08

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

Log message:
Remove iwm_alloc_* wrapper functions around iwm_dma_contig_alloc().
Call iwm_dma_contig_alloc() directly instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 07:37:46

Modified files:
	.              : Makefile.cross 
	distrib        : Makefile 
	distrib/notes  : Makefile 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 
	distrib/special: Makefile 
	distrib/special/disklabel: Makefile 
	distrib/special/installboot: Makefile 
	etc            : Makefile 
	etc/mtree      : 4.4BSD.dist 
	lib/libarch/arm: Makefile 
	regress/etc/MAKEDEV: Makefile 
	regress/usr.bin/mdoclint: mdoclint 
	share/man/man4 : Makefile cdce.4 com.4 ohci.4 pcmcia.4 sdmmc.4 
	                 usb.4 
	share/man/man7 : mdoc.7 
	share/man/man8 : Makefile 
	sys            : Makefile 
	sys/dev/microcode/atmel: Makefile 
	sys/dev/microcode/kue: Makefile 
	sys/dev/microcode/rum: Makefile 
	sys/dev/microcode/symbol: Makefile 
	sys/dev/microcode/tusb3410: Makefile 
	sys/dev/microcode/udl: Makefile 
	sys/dev/microcode/zydas: Makefile 
	sys/dev/usb    : files.usb 
	sys/kern       : Makefile 
	usr.bin/calendar/calendars: calendar.openbsd 
	usr.sbin       : Makefile 
	usr.sbin/apm   : Makefile 
	usr.sbin/apmd  : Makefile 
	usr.sbin/hotplugd: Makefile 
	usr.sbin/wsfontload: Makefile 
Removed files:
	distrib/notes/zaurus: contents features hardware install prep 
	                      upgrade whatis xfer 
	distrib/sets/lists/base: md.zaurus 
	distrib/sets/lists/comp: md.zaurus 
	distrib/sets/lists/etc: md.zaurus 
	distrib/sets/lists/game: md.zaurus 
	distrib/sets/lists/man: md.zaurus 
	distrib/special/ztsscale: Makefile 
	distrib/zaurus : Makefile 
	distrib/zaurus/ipk: Makefile bootbsd bootbsd.desktop 
	                    bootbsd.png.uu postinst postrm rc.zboot 
	distrib/zaurus/ramdisk: Makefile Makefile.inc install.md list 
	etc/etc.zaurus : MAKEDEV MAKEDEV.md Makefile Makefile.inc 
	                 disktab fbtab login.conf sysctl.conf ttys 
	share/man/man4 : usbf.4 
	share/man/man4/man4.zaurus: Makefile apm.4 autoconf.4 intro.4 
	                            lcd.4 mem.4 pxadmac.4 pxagpio.4 
	                            pxaintc.4 pxaip.4 pxammc.4 pxaost.4 
	                            pxapcic.4 pxaudc.4 scoop.4 zaudio.4 
	                            zkbd.4 zrc.4 zssp.4 zts.4 
	share/man/man8/man8.zaurus: MAKEDEV.8 Makefile boot_zaurus.8 
	sys/arch/arm/xscale: files.pxa2x0 pxa27x_kpc.c pxa27x_kpc.h 
	                     pxa27x_udc.c pxa27x_udc.h pxa27x_udcreg.h 
	                     pxa2x0.c pxa2x0_a4x_io.S pxa2x0_a4x_space.c 
	                     pxa2x0_apm.c pxa2x0_apm.h pxa2x0_apm_asm.S 
	                     pxa2x0_clock.c pxa2x0_com.c pxa2x0_dma.c 
	                     pxa2x0_dmac.c pxa2x0_dmac.h pxa2x0_gpio.c 
	                     pxa2x0_gpio.h pxa2x0_i2c.c pxa2x0_i2c.h 
	                     pxa2x0_i2s.c pxa2x0_i2s.h pxa2x0_intr.c 
	                     pxa2x0_intr.h pxa2x0_lcd.c pxa2x0_lcd.h 
	                     pxa2x0_mmc.c pxa2x0_mutex.c pxa2x0_ohci.c 
	                     pxa2x0_pcic.c pxa2x0_space.c pxa2x0reg.h 
	                     pxa2x0var.h pxammcvar.h pxapcicvar.h 
	sys/arch/zaurus: Makefile 
	sys/arch/zaurus/compile: .cvsignore 
	sys/arch/zaurus/conf: GENERIC Makefile.zaurus RAMDISK 
	                      files.zaurus 
	sys/arch/zaurus/dev: scoop_mmc.c scoop_pcic.c zaurus_apm.c 
	                     zaurus_apm.h zaurus_audio.c zaurus_flash.c 
	                     zaurus_kbd.c zaurus_kbdmap.h 
	                     zaurus_remote.c zaurus_scoop.c 
	                     zaurus_scoopreg.h zaurus_scoopvar.h 
	                     zaurus_ssp.c zaurus_sspvar.h zaurus_udc.c 
	                     zts.c 
	sys/arch/zaurus/include: _float.h _types.h apmvar.h asm.h 
	                         atomic.h bootconfig.h bus.h cdefs.h 
	                         conf.h cpu.h db_machdep.h disklabel.h 
	                         endian.h exec.h fenv.h fp.h frame.h 
	                         ieee.h ieeefp.h intr.h limits.h 
	                         loadfile_machdep.h lock.h machine_reg.h 
	                         mutex.h param.h pcb.h pio.h pmap.h 
	                         proc.h profile.h ptrace.h reg.h reloc.h 
	                         setjmp.h signal.h spinlock.h stdarg.h 
	                         sysarch.h tcb.h trap.h vmparam.h 
	                         zaurus_var.h 
	sys/arch/zaurus/stand: Makefile Makefile.inc 
	sys/arch/zaurus/stand/zboot: Makefile alloc.c boot.8 
	                             compat_linux.h conf.c crt0.c 
	                             devopen.c disk.h diskprobe.c exec.c 
	                             exit.c libsa.h loadfile.c machdep.c 
	                             pathnames.h termios.c unixcons.c 
	                             unixdev.c unixdev.h unixsys.S 
	sys/arch/zaurus/stand/zbsdmod: Makefile compat_linux.h zbsdmod.c 
	sys/arch/zaurus/zaurus: autoconf.c genassym.cf zaurus_lcd.c 
	                        zaurus_machdep.c zaurus_start.S 
	sys/dev/usb    : if_cdcef.c usbf.c usbf.h usbf_subr.c usbfvar.h 
	usr.sbin/ztsscale: Makefile message.xbm ztsscale.8 ztsscale.c 

Log message:
Retire zaurus, as it hasn't made the EABI jump and will be permanently broken
shortly when we use the hardware thread register in userland


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/03 07:42:28

Modified files:
	sys/sys        : mbuf.h 

Log message:
bump PACKET_TAG_MAXSIZE from 52 to 60 bytes to make room for the
upcoming bridge tunneltag change (the tag is used in the mtagpl pool).

OK henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/03 07:46:58

Modified files:
	share/man/man4 : vxlan.4 
	sys/netinet    : udp_usrreq.c 
	sys/net        : bridgectl.c if.h if_bridge.c if_bridge.h 
	                 if_switch.c if_vlan.c if_vxlan.c if_vxlan.h 
	sbin/ifconfig  : ifconfig.8 ifconfig.c 

Log message:
Add support for a multipoint-to-multipoint mode in vxlan(4).  In this
mode, vxlan(4) must be configured to accept any virtual network
identifier with "vnetid any" and added to a bridge(4) or switch(4).
This way the driver will dynamically learn the tunnel endpoints and
their vnetids for the responses and can be used to dynamically bridge
between VXLANs.  It is also being used in combination with switch(4)
and the OpenFlow tunnel classifiers.

With input from yasuoka@ goda@
OK deraadt@ dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/03 07:48:39

Modified files:
	devel/gdb      : Makefile 
Added files:
	devel/gdb/patches: patch-gdb_alphabsd-nat_c 
	                   patch-gdb_armnbsd-nat_c 
	                   patch-gdb_hppaobsd-nat_c 
	                   patch-gdb_m88kbsd-nat_c 
	                   patch-gdb_mips64obsd-nat_c 
	                   patch-gdb_ppcobsd-nat_c 
	                   patch-gdb_shnbsd-nat_c 

Log message:
Fix register handling of multithreaded programs on !(x86) platforms.

Initially implemented by jhb@freebsd for i386 and amd64: replace ptid_get_pid
by get_ptrace_pid when fetching / setting registers.  The latter does the
right thing with multiple threads.

Issue reported by guenther@ plus a few users.  ok pascal@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/03 07:51:09

Modified files:
	devel/gdb      : Makefile 

Log message:
Tests now need dejagnu.

ok pascal@ (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/03 07:53:40

Modified files:
	faq            : faq1.html faq11.html faq14.html faq4.html 
	                 faq7.html 

Log message:
remove zaurus mentions.


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/03 07:56:17

Modified files:
	sbin/ping      : ping.8 

Log message:
Mention the maximum value for the -s option.

OK tedu@ jmc@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/03 07:57:18

Modified files:
	.              : Makefile 
	driver         : Makefile 
Removed files:
	distrib/notes  : README.zaurus 
	distrib/sets/lists/xbase: md.zaurus 
	distrib/sets/lists/xetc: md.zaurus 
	distrib/sets/lists/xfont: md.zaurus 
	distrib/sets/lists/xserv: md.zaurus 
	distrib/sets/lists/xshare: md.zaurus 
	etc/X11.zaurus : xorg.conf 

Log message:
Remove zaurus support


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/09/03 07:57:27

Modified files:
	.              : plat.html zaurus.html 

Log message:
retire zaurus


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	guenther@cvs.openbsd.org	2016/09/03 08:01:16

Modified files:
	driver/xf86-input-ws/man: ws.man 

Log message:
Remove zaurus, zts, and ztsscale references


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/03 08:01:17

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

Log message:
suppress some cpuid bits for hardware we either don't support yet or
doesn't make sense in a vm


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/03 08:09:04

Modified files:
	usr.sbin/relayd: ca.c hce.c proc.c relayd.c relayd.h 

Log message:
Use the fork+exec privsep model in relayd; based on rzalamena@'s work
for httpd with some (current and previous) changes for relayd.  Once
again, both daemons now share the same proc.c where most of the
privsep "magic" happens.

OK benno@ rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/03 08:09:58

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
If sosend() cannot allocate a large cluster, try a small one as
fallback.
OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 08:14:20

Added files:
	sys/net        : bfd.c bfd.h 

Log message:
add support for Bidirectional Forwarding Detection (RFC 5880/5881).
This is only the engine, the glue will come soon.

We can negotiate a BFD session against a Juniper MX, and against
ourselves.

Requires a lot of cleanup, but we can do that in the tree.

discussed with the network hackers
OK claudio@, henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/03 08:17:37

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
Limit all mbuf cluster pools to the same memory size.  Having limits
by number would allow the large clusters using too much memory.
Set size of mclsizes array explicitly to keep it in sync with
mclpools.
OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 08:18:42

Modified files:
	sys/netinet    : in_pcb.h 

Log message:
Reserve the BFD destination ports in baddynamic

OK claudio@, henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 08:19:01

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.socppc md.sparc md.sparc64 mi 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 08:20:26

Modified files:
	sys/conf       : GENERIC files 
	sys/net        : route.c route.h 

Log message:
Add in the (disabled) kernel glue for BFD

OK claudio@, henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 08:23:14

Modified files:
	sbin/route     : keywords.h keywords.sh route.c show.c 
	usr.bin/netstat: show.c 

Log message:
Add userland parts for BFD.  Can't work if you don't have it enabled in
the kernel.

OK claudio@, henning@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 08:23:37

Modified files:
	security/xmlsec: Makefile distinfo 
	security/xmlsec/patches: patch-src_openssl_app_c 
	                         patch-tests_testrun_sh 
	security/xmlsec/pkg: PLIST-docs PLIST-main 

Log message:
update to xmlsec-1.2.22


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 08:23:38

Modified files:
	security/oath-toolkit: Makefile distinfo 
	security/oath-toolkit/pkg: PLIST-pskc 

Log message:
update to oath-toolkit-2.6.2


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/03 08:25:05

Modified files:
	sbin/fdisk     : fdisk.8 
	sbin/reboot    : reboot.8 

Log message:
no more boot_zaurus.8;


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/03 08:25:27

Modified files:
	sys/arch/alpha/include: param.h 
	sys/arch/amd64/include: param.h 
	sys/arch/arm/include: param.h 
	sys/arch/hppa/include: param.h 
	sys/arch/i386/include: param.h 
	sys/arch/m88k/include: param.h 
	sys/arch/mips64/include: param.h 
	sys/arch/powerpc/include: param.h 
	sys/arch/sh/include: param.h 
	sys/arch/sparc64/include: param.h 

Log message:
Increase the number of mbufs on most architectures.  This is based
on a guess how much memory a typical machine has.  If the value is
too high, users may run out of kernel memory.  Then we will have
to adjust this again.
OK claudio@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/03 08:28:24

Modified files:
	sys/kern       : kern_exec.c 

Log message:
Reset PS_WXNEEDED in execve(2).

The new process should inherit wxneeded perms from the ELF executable only,
not from the former process.

Solution improved by guenther@, ok guenther@ deraadt@, ok tedu@ on a similar
diff.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/03 08:29:05

Modified files:
	sys/kern       : kern_fork.c 

Log message:
Inherit PS_WXNEEDED in forked processes.

Issue noticed when debugging lang/sbcl.

ok deraadt@ guenther@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/03 08:34:13

Modified files:
	sys/net        : pfvar.h 
	sys/netinet    : tcp_subr.c 

Log message:
Reduce the factor of the limits derived form NMBCLUSTERS.  We want
the additional clusters in the socket buffer and not elsewhere.
OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/03 08:36:14

Modified files:
	share/man/man4 : com.4 wskbd.4 wsmouse.4 

Log message:
no more pages for pxaip, zkbd, zrc, or zts;


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/03 08:36:20

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

Log message:
zaurus is no more


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 08:37:00

Modified files:
	lib/libcrypto/bn: bn_gf2m.c 

Log message:
Avoid undefined-behavior right-shifting by a word-size # of bits.

Found with STACK, originally from OpenSSL, ok @beck


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 08:37:52

Modified files:
	lib/libcrypto/bn: bn_exp.c 

Log message:
BN_mod_exp_mont_consttime: check for zero modulus.

Don't dereference |d| when |top| is zero. Also test that various
BIGNUM methods behave correctly on zero/even inputs.

Original patch from OpenSSL commit d46e946d2603c64df6e1e4f9db0c70baaf1c4c03


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/09/03 08:42:08

Modified files:
	usr.sbin/smtpd : crypto.c 

Log message:
switch from EVP_{En,De}cryptInit & EVP_{En,De}cryptFinal to their _ex
counterparts, as suggested by bcook

ok bcook@, sunil@, eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/03 08:43:37

Modified files:
	sys/dev/ic     : comvar.h comreg.h com.c 

Log message:
de-zaurus com.c
"looks correct" deraadt@ guenther@ on an earlier rev


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/03 08:44:21

Modified files:
	usr.sbin/relayd: parse.y proc.c relayd.h 
	usr.sbin/httpd : httpd.h parse.y proc.c 
	usr.sbin/relayctl: relayctl.c 

Log message:
Replace [RELAY|SERVER]_MAXPROC with the new PROC_MAX_INSTANCES
variable and limit it from 128 to 32 instances (the old value).
While here, move a few PROC_ defines around.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/03 08:46:56

Modified files:
	sys/arch/i386/i386: apm.c 
	sys/arch/loongson/dev: apm.c 
	sys/dev/acpi   : acpi.c 
	sys/kern       : init_main.c kern_time.c kern_xxx.c 
	sys/sys        : systm.h 

Log message:
Write the system time back to the RTC every 30 minutes.
This fixes the problem that long-running machines which were not
shut down properly would reboot with a badly offset system time.

hints and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/03 08:53:17

Modified files:
	sys/sys        : socketvar.h 

Log message:
Increase the socket buffer size limit from 256 KB to 2 MB.  This
will speed up TCP connections.  If the value is too high, users may
run out of mbufs.  This should be less likely as we have increased
the mbuf cluster limit.
OK claudio@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/03 08:53:20

Modified files:
	libexec/ftpd   : ftpd.c 

Log message:
Set "lowdelay" and "throughput" Traffic Class on command & data IPv6 sockets.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 08:54:24

Modified files:
	share/man/man4 : cdce.4 Makefile 

Log message:
cdcef(4) was retired with Zaurus.  Noted by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 08:54:25

Modified files:
	lib/libcrypto/doc: EVP_EncryptInit.pod 
	lib/libcrypto/evp: evp_enc.c 

Log message:
deprecate EVP_EncryptFinal(), EVP_DecryptFinal() and EVP_CipherFinal()

This switches EVP_CipherFinal() to work as EVP_EncryptFinal() and
EVP_DecryptFinal() do, always clearing the cipher context on completion.
Indicate that, since it is not possible to tell whether this function will
clear the context (the API has changed over time in OpenSSL), it is better to
use the _ex() variants and explicitly clear instead.

ok beck@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	guenther@cvs.openbsd.org	2016/09/03 08:58:02

Modified files:
	xserver/config : wscons.c 

Log message:
Remove zaurus keyboard model

ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/03 09:00:49

Modified files:
	libexec/ftpd   : ftpd.c 

Log message:
Use a single "opt" variable for all setsockopt calls in getdatasock().

on = 65536;
if (setsockopt(... &on ...)

is slightly misleading.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 09:04:10

Modified files:
	sys/arch/sparc64/conf: ld.script 

Log message:
sparc64 kernel still lacks a true RODATA segment.  However we can make
the SSP read-only by moving the randomdata section into RX text, rather
than leaving it in RW data.
ok kettenis, tested by claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 09:05:03

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

Log message:
fix some whitespace and overlong lines


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 09:05:25

Modified files:
	sys/net        : bfd.c 

Log message:
Remove comments about taskq flags we want to eventually run with.
that'll take quite some time to get to.

pointed out by and OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/03 09:06:06

Modified files:
	sys/kern       : kern_synch.c 
	sys/sys        : _time.h 

Log message:
Remove ticket lock support from thrsleep. It's unused.

OK guenther@ mpi@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 09:06:11

Modified files:
	sys/net        : bfd.c 

Log message:
use the correct size for the pool we are init'ing

pointed out by and OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 09:07:06

Modified files:
	sys/arch/arm/arm: arm32_machdep.c 

Log message:
Remove zaurus sysctl bits


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 09:07:22

Modified files:
	sys/net        : bfd.c 

Log message:
remove spl-dance.  the functions we are protecting already do that.

reminded by and OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 09:08:16

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

Log message:
Get rid of iwm_set_pwr(). Call iwm_set_bits_mask_prph() directly instead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/03 09:10:12

Modified files:
	lang/sbcl      : Makefile 
Removed files:
	lang/sbcl/patches: patch-contrib_sb-posix_posix-tests_lisp 

Log message:
Re-enable test, now that wxneeded is inherited after fork.

Prodded by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 09:15:13

Removed files:
	sys/dev/i2c    : wm8750reg.h 

Log message:
zaurus has been retired


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/03 09:17:08

Modified files:
	etc/mtree      : 4.4BSD.dist 

Log message:
Add /var/syspatch to mtree(8).

OK many


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/03 09:19:51

Modified files:
	net/p5-Net-Whois-Raw: Makefile distinfo 

Log message:
bugfix update to 2.99001


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/03 09:24:09

Modified files:
	mail/p5-MIME-tools: Makefile distinfo 

Log message:
bugfix update to 5.508


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 09:24:09

Modified files:
	lib/libcrypto/arc4random: getentropy_osx.c 

Log message:
add iOS support for getentropy

from Jacob Berkman, ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/03 09:27:54

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

Log message:
counting things always catches us out...


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/03 09:31:07

Modified files:
	emulators/qemu : Makefile distinfo 
	emulators/qemu/patches: patch-block_curl_c patch-configure 
	                        patch-tcg_ppc_tcg-target_inc_c 
	emulators/qemu/pkg: PLIST 

Log message:
Update to qemu-2.7.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 09:33:48

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

Log message:
DPRINTFs infesting iwm die in a fire... too much noise


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/03 09:36:33

Modified files:
	regress/sys/netinet6/pktinfo_addr: Makefile 
Added files:
	regress/sys/netinet6/pktinfo_addr: test_wrapper.sh 

Log message:
Graceful failure handling at startup and run


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/03 09:37:45

Removed files:
	share/man/man4 : cdcef.4 

Log message:
cdcef(4) kept dodging my knife; one more try


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 09:39:23

Modified files:
	mail/postfix/snapshot: Makefile distinfo 
	mail/postfix/snapshot/patches: patch-conf_main_cf 
Added files:
	mail/postfix/snapshot/patches: 
	                               patch-src_posttls-finger_posttls-finger_c 
	                               patch-src_tls_tls_client_c 
	                               patch-src_tls_tls_dane_c 
	                               patch-src_tls_tls_rsa_c 
	                               patch-src_tls_tls_server_c 

Log message:
update to postfix 3.2-20160828, from Brad, the libressl patches
(OPENSSL_VERSION_NUMBER 0x10100000L) came from Bernard Spil


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 09:39:58

Modified files:
	mail/postfix/stable: Makefile distinfo 
Added files:
	mail/postfix/stable/patches: 
	                             patch-src_posttls-finger_posttls-finger_c 
	                             patch-src_tls_tls_client_c 
	                             patch-src_tls_tls_dane_c 
	                             patch-src_tls_tls_rsa_c 
	                             patch-src_tls_tls_server_c 

Log message:
update to postfix 3.1.2, from Brad, the libressl patches
(OPENSSL_VERSION_NUMBER 0x10100000L) came from Bernard Spil


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/03 09:45:02

Modified files:
	usr.sbin/snmpd : kroute.c 

Log message:
Fix pasto; zero ka->dstbrd instead of clobbering ka->mask.

Diff from Jan Klemkow, ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 09:49:00

Modified files:
	sys/net        : bfd.c 

Log message:
remove a bunch of printf-debugging output and commented lines


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/09/03 09:54:14

Modified files:
	usr.sbin/smtpd : lka.c 

Log message:
in lka specifically, use initgroups() so that users may share files between
smtpd and another daemon by adding supplementary groups

ok eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/03 09:59:28

Modified files:
	regress/sys/netinet/in_pcbbind: Makefile 

Log message:
split ipv4 and ipv6


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/03 10:05:22

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
New Intel 10GbE devices


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/03 10:05:39

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/03 10:05:54

Modified files:
	sbin/ping6     : ping6.8 

Log message:
Mention the maximum value for the -s option.

Discussed with florian@, ok deraadt@.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/03 10:06:26

Modified files:
	usr.sbin/smtpd : mproc.c smtpctl.c smtpd-api.h smtpd.h 

Log message:
get rid of the type-checking system on internal messages.
bump all imsg protocol versions since message format changed.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/03 10:07:08

Modified files:
	usr.sbin/ldpd  : address.c interface.c ldp.h ldpe.h neighbor.c 

Log message:
Rework the sending of address messages.

* Respect the session's negotiated maximum pdu length and split the
sending of our local addresses into multiple messages if necessary;

* Log sent/received addresses;

* Add new wrappers to send only one address (send_address_single)
and to send all addresses of the given address-family
(send_address_all). These wrappers create a temporary list of addresses
to be sent, and send_address() then acts on this last.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/03 10:07:49

Modified files:
	net/scamper    : Makefile distinfo 
	net/scamper/pkg: DESCR PLIST 
Removed files:
	net/scamper/patches: patch-configure_ac 

Log message:
update to scamper-20141211f (Aug 2016), this new release adds PF support
for tbit and sting checks (these use an anchor so that scamper can control
rulesets).


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 10:18:22

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/arch/i386/conf: GENERIC 
	sys/arch/luna88k/conf: GENERIC 
	share/man/man4 : Makefile 
	sys/dev/pcmcia : files.pcmcia 
Removed files:
	share/man/man4 : cnw.4 
	sys/dev/pcmcia : if_cnw.c if_cnwreg.h 

Log message:
remove cnw driver. it was never enabled anywhere except on amd64 (and only
there by accident) where it hasn't seen much use...


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 10:20:08

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

Log message:
The iwm code was torn between 'error' and 'err'; error -> err everywhere


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2016/09/03 10:22:17

Modified files:
	usr.sbin/bgpd  : bgpd.c rde.c session.c 

Log message:
Simplify shutdown process.

On shutdown, there's no need to use kill(2) to kill the child
processes. Just closing the IPC sockets will make the children receive
an EOF, break out from the event loop and then exit.

Tha advantages of this "pipe teardown" are:
* simpler code;
* no need to pledge "proc" in the parent process;
* removal of a (hard to trigger) PID reuse race condition.

ok benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/03 10:22:26

Modified files:
	sbin/ping6     : ping6.8 

Log message:
Correct default values.

Noticed by and discussed with florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 10:25:03

Modified files:
	lib/libc       : Symbols.list 
	lib/libc/hash  : Makefile.inc sha2.c 
	lib/libc/hidden: sha2.h 

Log message:
Add functions for SHA512/256. The standard says you're supposed to start
with different magic numbers, so we need to add some functions instead
of just asking the user to truncate as desired. Sigh.
SHA512 is quite a bit faster than SHA256 on 64 bit CPUs,
but 256 bit hashes are usually quite sufficient. Best of both.
ok deraadt tom


CVSROOT:	/cvs
Module name:	ports
Changes by:	eric@cvs.openbsd.org	2016/09/03 10:27:51

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

Log message:
- update to zope.interfaqce 4.3.1
- add python3 flavor
- drop maintainership

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/03 10:44:20

Modified files:
	lib/librthread : rthread.c rthread.h rthread_file.c 
	                 rthread_rwlock.c rthread_sem.c rthread_sync.c 

Log message:
Remove _USING_TICKETS, it's defined as 0. No functional change.

ok tedu@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 10:45:27

Modified files:
	sys/net        : bfd.c 

Log message:
check the TTL field for incoming packets, we only support directly
connected neighbors


CVSROOT:	/cvs
Module name:	ports
Changes by:	eric@cvs.openbsd.org	2016/09/03 10:47:25

Modified files:
	devel          : Makefile 

Log message:
+py-zopeinterface,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 10:47:26

Modified files:
	sys/net        : bfd.c 

Log message:
instead of doing everything manually, use goto cleanup idiom


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 10:50:36

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.socppc md.sparc md.sparc64 mi 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
snc


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 10:52:18

Modified files:
	regress/lib/libssl/unit: Makefile 

Log message:
remove unneeded reach-around include


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/03 10:54:15

Modified files:
	databases/mysql-utilities: Makefile distinfo 
	databases/mysql-utilities/patches: patch-setup_py 
	databases/mysql-utilities/pkg: PLIST 

Log message:
Update to 1.6.4


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 10:56:13

Modified files:
	sys/net        : bfd.c 

Log message:
remove testing printf that snuck in accidentally.

while here, bump an error counter if we cannot receive a packet


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/03 10:57:29

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

Log message:
typos


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 11:00:29

Modified files:
	include        : sha2.h 

Log message:
i forgot to commit sha2.h changes for SHA512/256


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 11:01:01

Modified files:
	bin/md5        : cksum.1 md5.c 

Log message:
add sha512/256 support to check that the libc code is right :)


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/03 11:02:22

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

Log message:
Don't list individual valid CLOCK_* values, instead refer to
clock_gettime(2).

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 11:04:13

Modified files:
	usr.bin/signify: zsig.c 

Log message:
switch back to SHA512/256 now that we have the official nist flavor


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/03 11:08:57

Modified files:
	etc            : pf.os 

Log message:
update pf.os for larger wscale by default


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 11:09:23

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

Log message:
In iwm, move assignments to 'err' outside of if-statements.


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2016/09/03 11:11:40

Modified files:
	sbin/pfctl     : pfctl.c pfctl_parser.c 
	sys/net        : pf.c pf_ioctl.c pfvar.h 

Log message:
Let purge thread to remove once rules, not packets.
Thanks mikeb@ for idea to add expire time.

OK mpi@, OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	chl@cvs.openbsd.org	2016/09/03 11:13:48

Modified files:
	sbin/ifconfig  : brconfig.c 

Log message:
fix format string and remove unused variables

ok yasuoka@ goda@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 11:21:38

Modified files:
	lib/libcrypto/bn: bn_exp.c 

Log message:
BN_mod_exp_mont_consttime: check for zero modulus.

Don't dereference d when top is zero.

Original patch from OpenSSL commit d46e946d2603c64df6e1e4f9db0c70baaf1c4c03
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 11:26:29

Modified files:
	lib/libcrypto/bn: bn_exp.c 

Log message:
add constant-time MOD_EXP_CTIME_COPY_FROM_PREBUF.

Patch based on OpenSSL commit d7a854c055ff22fb7da80c3b0e7cb08d248591d0

"Performance penalty varies from platform to platform, and even
key length. For rsa2048 sign it was observed to reach almost 10%."

CVE-2016-0702
ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 11:29:47

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

Log message:
iwm was undecided between 'if (err != 0)' and 'if (err)'; switch to 'if (err)'


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 11:32:06

Modified files:
	regress/lib/libcrypto/bn/general: bntest.c 
	regress/lib/libcrypto/exp: exptest.c 

Log message:
import new BN tests from OpenSSL

New tests that various BIGNUM methods behave correctly on zero/even inputs.
from OpenSSL

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 11:33:16

Modified files:
	lib/libcrypto/bn/asm: x86_64-mont5.pl 

Log message:
switch to a constant-time gather procedure for amd64 mont5 asm

from OpenSSL commit 7f98aa7403a1244cf17d1aa489f5bb0f39bae431

CVE-2016-0702
ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/03 11:35:34

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
squash some possibly-used-uninitialized warnings


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/03 11:39:51

Modified files:
	sys/sys        : socketvar.h 

Log message:
Switch back to 256 KB socket buffer size for TCP.  With 2 MB the
OS finger printing of pf will no longer recognize OpenBSD as the
window scaling factor has changed.  We have to wait until firewalls
have been updated.
Requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/03 11:46:19

Modified files:
	sbin/fdisk     : cmd.c 

Log message:
'reinit' should check the MBR on disk, as the man page says.

Makes 'reinit' respect current state of disk when deciding between
MBR and GPT initialization.

Problem noted by halex@


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2016/09/03 11:56:07

Modified files:
	sbin/pfctl     : pfctl.c 

Log message:
pfctl mixes up anchorname with anchorpath

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/03 12:04:03

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

Log message:
Remove iwm_release() by inlining its implementation into its only caller.
All the speculative comments about how the HW should be reset go away.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/03 12:06:41

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

Log message:
no more cnw;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/03 12:08:25

src/regress/lib/libc/locale/mbrtowc

Update of /cvs/src/regress/lib/libc/locale/mbrtowc
In directory cvs.openbsd.org:/tmp/cvs-serv47525/mbrtowc

Log Message:
Directory /cvs/src/regress/lib/libc/locale/mbrtowc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/03 12:14:18

Added files:
	regress/lib/libc/locale/mbrtowc: Makefile test_mbrtowc.c 

Log message:
test mbrtowc(3) in conjunction with mbsinit(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/03 12:28:45

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

Log message:
partial rewrite of the tcp/tls option parts: the trouble was
with options which accepted a "no" prefix, it was difficult to
see what was enabled and what was disabled;

ok reyk (claudio ok'd an earlier version of the diff too)


CVSROOT:	/cvs
Module name:	src
Changes by:	goda@cvs.openbsd.org	2016/09/03 12:33:55

Modified files:
	sys/net        : switchctl.c 

Log message:
Fixed missing null check in switchctl.c

ok yasuoka@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/03 12:37:21

Modified files:
	faq            : faq15.html 

Log message:
fix some wording; from rob pierce


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/03 12:39:33

Log message:
    Import libc++ 3.9.0
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LIBCXX_3_9_0
    
    N src/lib/libcxx/TODO.TXT
    N src/lib/libcxx/LICENSE.TXT
    N src/lib/libcxx/CREDITS.TXT
    N src/lib/libcxx/CMakeLists.txt
    N src/lib/libcxx/docs/Makefile.sphinx
    N src/lib/libcxx/docs/UsingLibcxx.rst
    N src/lib/libcxx/docs/conf.py
    N src/lib/libcxx/docs/index.rst
    N src/lib/libcxx/docs/BuildingLibcxx.rst
    N src/lib/libcxx/docs/CMakeLists.txt
    N src/lib/libcxx/docs/README.txt
    N src/lib/libcxx/docs/TestingLibcxx.rst
    N src/lib/libcxx/docs/DesignDocs/CapturingConfigInfo.rst
    N src/lib/libcxx/docs/DesignDocs/ABIVersioning.rst
    N src/lib/libcxx/benchmarks/unordered_set_operations.bench.cpp
    N src/lib/libcxx/include/__locale
    N src/lib/libcxx/include/cstdbool
    N src/lib/libcxx/include/set
    N src/lib/libcxx/include/atomic
    N src/lib/libcxx/include/ctime
    N src/lib/libcxx/include/iosfwd
    N src/lib/libcxx/include/errno.h
    N src/lib/libcxx/include/__functional_base
    N src/lib/libcxx/include/streambuf
    N src/lib/libcxx/include/__undef___deallocate
    N src/lib/libcxx/include/ostream
    N src/lib/libcxx/include/inttypes.h
    N src/lib/libcxx/include/ciso646
    N src/lib/libcxx/include/strstream
    N src/lib/libcxx/include/typeindex
    N src/lib/libcxx/include/__config_site.in
    N src/lib/libcxx/include/regex
    N src/lib/libcxx/include/__bit_reference
    N src/lib/libcxx/include/ctgmath
    N src/lib/libcxx/include/vector
    N src/lib/libcxx/include/type_traits
    N src/lib/libcxx/include/cstdarg
    N src/lib/libcxx/include/cfloat
    N src/lib/libcxx/include/complex.h
    N src/lib/libcxx/include/__split_buffer
    N src/lib/libcxx/include/cerrno
    N src/lib/libcxx/include/typeinfo
    N src/lib/libcxx/include/limits
    N src/lib/libcxx/include/locale
    N src/lib/libcxx/include/istream
    N src/lib/libcxx/include/setjmp.h
    N src/lib/libcxx/include/functional
    N src/lib/libcxx/include/__tree
    N src/lib/libcxx/include/sstream
    N src/lib/libcxx/include/exception
    N src/lib/libcxx/include/climits
    N src/lib/libcxx/include/codecvt
    N src/lib/libcxx/include/tuple
    N src/lib/libcxx/include/__sso_allocator
    N src/lib/libcxx/include/csignal
    N src/lib/libcxx/include/condition_variable
    N src/lib/libcxx/include/__hash_table
    N src/lib/libcxx/include/wctype.h
    N src/lib/libcxx/include/ccomplex
    N src/lib/libcxx/include/cmath
    N src/lib/libcxx/include/random
    N src/lib/libcxx/include/queue
    N src/lib/libcxx/include/algorithm
    N src/lib/libcxx/include/__bsd_locale_fallbacks.h
    N src/lib/libcxx/include/cfenv
    N src/lib/libcxx/include/iomanip
    N src/lib/libcxx/include/wchar.h
    N src/lib/libcxx/include/cstddef
    N src/lib/libcxx/include/__threading_support
    N src/lib/libcxx/include/complex
    N src/lib/libcxx/include/mutex
    N src/lib/libcxx/include/stdio.h
    N src/lib/libcxx/include/cstdint
    N src/lib/libcxx/include/bitset
    N src/lib/libcxx/include/unordered_set
    N src/lib/libcxx/include/__config
    N src/lib/libcxx/include/string.h
    N src/lib/libcxx/include/__std_stream
    N src/lib/libcxx/include/stack
    N src/lib/libcxx/include/csetjmp
    N src/lib/libcxx/include/stddef.h
    N src/lib/libcxx/include/float.h
    N src/lib/libcxx/include/forward_list
    N src/lib/libcxx/include/__refstring
    N src/lib/libcxx/include/stdlib.h
    N src/lib/libcxx/include/cassert
    N src/lib/libcxx/include/future
    N src/lib/libcxx/include/ios
    N src/lib/libcxx/include/cstdio
    N src/lib/libcxx/include/array
    N src/lib/libcxx/include/cwchar
    N src/lib/libcxx/include/tgmath.h
    N src/lib/libcxx/include/list
    N src/lib/libcxx/include/chrono
    N src/lib/libcxx/include/__undef_min_max
    N src/lib/libcxx/include/math.h
    N src/lib/libcxx/include/numeric
    N src/lib/libcxx/include/CMakeLists.txt
    N src/lib/libcxx/include/cstdlib
    N src/lib/libcxx/include/thread
    N src/lib/libcxx/include/unordered_map
    N src/lib/libcxx/include/__bsd_locale_defaults.h
    N src/lib/libcxx/include/stdexcept
    N src/lib/libcxx/include/module.modulemap
    N src/lib/libcxx/include/__functional_base_03
    N src/lib/libcxx/include/clocale
    N src/lib/libcxx/include/deque
    N src/lib/libcxx/include/initializer_list
    N src/lib/libcxx/include/new
    N src/lib/libcxx/include/cwctype
    N src/lib/libcxx/include/utility
    N src/lib/libcxx/include/__functional_03
    N src/lib/libcxx/include/system_error
    N src/lib/libcxx/include/__tuple
    N src/lib/libcxx/include/ctype.h
    N src/lib/libcxx/include/valarray
    N src/lib/libcxx/include/ratio
    N src/lib/libcxx/include/map
    N src/lib/libcxx/include/scoped_allocator
    N src/lib/libcxx/include/string
    N src/lib/libcxx/include/__mutex_base
    N src/lib/libcxx/include/cinttypes
    N src/lib/libcxx/include/__nullptr
    N src/lib/libcxx/include/iostream
    N src/lib/libcxx/include/cstring
    N src/lib/libcxx/include/iterator
    N src/lib/libcxx/include/__debug
    N src/lib/libcxx/include/fstream
    N src/lib/libcxx/include/stdbool.h
    N src/lib/libcxx/include/cctype
    N src/lib/libcxx/include/memory
    N src/lib/libcxx/include/shared_mutex
    N src/lib/libcxx/include/experimental/set
    N src/lib/libcxx/include/experimental/regex
    N src/lib/libcxx/include/experimental/vector
    N src/lib/libcxx/include/experimental/type_traits
    N src/lib/libcxx/include/experimental/optional
    N src/lib/libcxx/include/experimental/memory_resource
    N src/lib/libcxx/include/experimental/functional
    N src/lib/libcxx/include/experimental/tuple
    N src/lib/libcxx/include/experimental/algorithm
    N src/lib/libcxx/include/experimental/filesystem
    N src/lib/libcxx/include/experimental/unordered_set
    N src/lib/libcxx/include/experimental/__config
    N src/lib/libcxx/include/experimental/forward_list
    N src/lib/libcxx/include/experimental/any
    N src/lib/libcxx/include/experimental/list
    N src/lib/libcxx/include/experimental/chrono
    N src/lib/libcxx/include/experimental/string_view
    N src/lib/libcxx/include/experimental/__memory
    N src/lib/libcxx/include/experimental/propagate_const
    N src/lib/libcxx/include/experimental/dynarray
    N src/lib/libcxx/include/experimental/unordered_map
    N src/lib/libcxx/include/experimental/deque
    N src/lib/libcxx/include/experimental/utility
    N src/lib/libcxx/include/experimental/system_error
    N src/lib/libcxx/include/experimental/ratio
    N src/lib/libcxx/include/experimental/map
    N src/lib/libcxx/include/experimental/string
    N src/lib/libcxx/include/experimental/iterator
    N src/lib/libcxx/include/support/solaris/xlocale.h
    N src/lib/libcxx/include/support/solaris/wchar.h
    N src/lib/libcxx/include/support/solaris/floatingpoint.h
    N src/lib/libcxx/include/support/ibm/limits.h
    N src/lib/libcxx/include/support/ibm/locale_mgmt_aix.h
    N src/lib/libcxx/include/support/ibm/xlocale.h
    N src/lib/libcxx/include/support/ibm/support.h
    N src/lib/libcxx/include/support/xlocale/__posix_l_fallback.h
    N src/lib/libcxx/include/support/xlocale/__nop_locale_mgmt.h
    N src/lib/libcxx/include/support/xlocale/xlocale.h
    N src/lib/libcxx/include/support/xlocale/__strtonum_fallback.h
    N src/lib/libcxx/include/support/win32/locale_win32.h
    N src/lib/libcxx/include/support/win32/support.h
    N src/lib/libcxx/include/support/win32/locale_mgmt_win32.h
    N src/lib/libcxx/include/support/win32/limits_win32.h
    N src/lib/libcxx/include/support/win32/math_win32.h
    N src/lib/libcxx/include/support/musl/xlocale.h
    N src/lib/libcxx/include/support/android/locale_bionic.h
    N src/lib/libcxx/include/support/newlib/xlocale.h
    N src/lib/libcxx/include/ext/__hash
    N src/lib/libcxx/include/ext/hash_map
    N src/lib/libcxx/include/ext/hash_set
    N src/lib/libcxx/cmake/config-ix.cmake
    N src/lib/libcxx/cmake/Modules/CheckLibcxxAtomic.cmake
    N src/lib/libcxx/cmake/Modules/HandleLibcxxFlags.cmake
    N src/lib/libcxx/cmake/Modules/HandleOutOfTreeLLVM.cmake
    N src/lib/libcxx/cmake/Modules/CodeCoverage.cmake
    N src/lib/libcxx/cmake/Modules/HandleLibCXXABI.cmake
    N src/lib/libcxx/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake
    N src/lib/libcxx/utils/sym_check/sym_extract.py
    N src/lib/libcxx/utils/sym_check/sym_diff.py
    N src/lib/libcxx/utils/sym_check/linux_blacklist.txt
    N src/lib/libcxx/utils/sym_check/sym_match.py
    N src/lib/libcxx/utils/sym_check/osx_blacklist.txt
    N src/lib/libcxx/utils/sym_check/sym_check/util.py
    N src/lib/libcxx/utils/sym_check/sym_check/diff.py
    N src/lib/libcxx/utils/sym_check/sym_check/match.py
    N src/lib/libcxx/utils/sym_check/sym_check/__init__.py
    N src/lib/libcxx/utils/sym_check/sym_check/extract.py
    N src/lib/libcxx/utils/gen_link_script/gen_link_script.py
    N src/lib/libcxx/utils/not/not.py
    N src/lib/libcxx/lib/notweak.exp
    N src/lib/libcxx/lib/weak.exp
    N src/lib/libcxx/lib/libc++abi.exp
    N src/lib/libcxx/lib/libc++abi2.exp
    N src/lib/libcxx/lib/libc++unexp.exp
    N src/lib/libcxx/lib/CMakeLists.txt
    N src/lib/libcxx/lib/libc++sjlj-abi.exp
    N src/lib/libcxx/lib/buildit
    N src/lib/libcxx/src/bind.cpp
    N src/lib/libcxx/src/algorithm.cpp
    N src/lib/libcxx/src/hash.cpp
    N src/lib/libcxx/src/optional.cpp
    N src/lib/libcxx/src/system_error.cpp
    N src/lib/libcxx/src/utility.cpp
    N src/lib/libcxx/src/stdexcept.cpp
    N src/lib/libcxx/src/shared_mutex.cpp
    N src/lib/libcxx/src/debug.cpp
    N src/lib/libcxx/src/valarray.cpp
    N src/lib/libcxx/src/regex.cpp
    N src/lib/libcxx/src/new.cpp
    N src/lib/libcxx/src/string.cpp
    N src/lib/libcxx/src/iostream.cpp
    N src/lib/libcxx/src/random.cpp
    N src/lib/libcxx/src/mutex.cpp
    N src/lib/libcxx/src/exception.cpp
    N src/lib/libcxx/src/locale.cpp
    N src/lib/libcxx/src/strstream.cpp
    N src/lib/libcxx/src/condition_variable.cpp
    N src/lib/libcxx/src/typeinfo.cpp
    N src/lib/libcxx/src/ios.cpp
    N src/lib/libcxx/src/memory.cpp
    N src/lib/libcxx/src/thread.cpp
    N src/lib/libcxx/src/chrono.cpp
    N src/lib/libcxx/src/future.cpp
    N src/lib/libcxx/src/any.cpp
    N src/lib/libcxx/src/experimental/memory_resource.cpp
    N src/lib/libcxx/src/experimental/filesystem/directory_iterator.cpp
    N src/lib/libcxx/src/experimental/filesystem/operations.cpp
    N src/lib/libcxx/src/experimental/filesystem/path.cpp
    N src/lib/libcxx/src/include/config_elast.h
    N src/lib/libcxx/src/include/atomic_support.h
    N src/lib/libcxx/src/support/solaris/README
    N src/lib/libcxx/src/support/solaris/mbsnrtowcs.inc
    N src/lib/libcxx/src/support/solaris/wcsnrtombs.inc
    N src/lib/libcxx/src/support/solaris/xlocale.c
    N src/lib/libcxx/src/support/win32/locale_win32.cpp
    N src/lib/libcxx/src/support/win32/support.cpp
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/03 12:40:21

Log message:
    Import libc++abi 3.9.0
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LIBCXXABI_3_9_0
    
    N src/lib/libcxxabi/LICENSE.TXT
    N src/lib/libcxxabi/CREDITS.TXT
    N src/lib/libcxxabi/CMakeLists.txt
    N src/lib/libcxxabi/include/cxxabi.h
    N src/lib/libcxxabi/include/__cxxabi_config.h
    N src/lib/libcxxabi/cmake/config-ix.cmake
    N src/lib/libcxxabi/lib/buildit
    N src/lib/libcxxabi/src/cxa_exception.hpp
    N src/lib/libcxxabi/src/cxa_aux_runtime.cpp
    N src/lib/libcxxabi/src/cxa_demangle.cpp
    N src/lib/libcxxabi/src/cxa_exception.cpp
    N src/lib/libcxxabi/src/cxa_new_delete.cpp
    N src/lib/libcxxabi/src/stdexcept.cpp
    N src/lib/libcxxabi/src/cxa_thread_atexit.cpp
    N src/lib/libcxxabi/src/cxa_guard.cpp
    N src/lib/libcxxabi/src/private_typeinfo.h
    N src/lib/libcxxabi/src/cxa_noexception.cpp
    N src/lib/libcxxabi/src/fallback_malloc.ipp
    N src/lib/libcxxabi/src/cxa_default_handlers.cpp
    N src/lib/libcxxabi/src/exception.cpp
    N src/lib/libcxxabi/src/cxa_handlers.cpp
    N src/lib/libcxxabi/src/abort_message.cpp
    N src/lib/libcxxabi/src/private_typeinfo.cpp
    N src/lib/libcxxabi/src/config.h
    N src/lib/libcxxabi/src/cxa_unexpected.cpp
    N src/lib/libcxxabi/src/cxa_exception_storage.cpp
    N src/lib/libcxxabi/src/CMakeLists.txt
    N src/lib/libcxxabi/src/typeinfo.cpp
    N src/lib/libcxxabi/src/cxa_virtual.cpp
    N src/lib/libcxxabi/src/abort_message.h
    N src/lib/libcxxabi/src/cxa_vector.cpp
    N src/lib/libcxxabi/src/cxa_personality.cpp
    N src/lib/libcxxabi/src/cxa_handlers.hpp
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/03 12:42:12

Log message:
    Import libunwind 3.9.0
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LIBUNWIND_3_9_0
    
    N src/lib/libunwind/CMakeLists.txt
    N src/lib/libunwind/include/libunwind.h
    N src/lib/libunwind/include/unwind.h
    N src/lib/libunwind/include/__libunwind_config.h
    N src/lib/libunwind/include/mach-o/compact_unwind_encoding.h
    N src/lib/libunwind/cmake/config-ix.cmake
    N src/lib/libunwind/src/Registers.hpp
    N src/lib/libunwind/src/Unwind_AppleExtras.cpp
    N src/lib/libunwind/src/DwarfParser.hpp
    N src/lib/libunwind/src/AddressSpace.hpp
    N src/lib/libunwind/src/dwarf2.h
    N src/lib/libunwind/src/UnwindRegistersRestore.S
    N src/lib/libunwind/src/libunwind.cpp
    N src/lib/libunwind/src/UnwindCursor.hpp
    N src/lib/libunwind/src/assembly.h
    N src/lib/libunwind/src/EHHeaderParser.hpp
    N src/lib/libunwind/src/Unwind-sjlj.c
    N src/lib/libunwind/src/UnwindLevel1-gcc-ext.c
    N src/lib/libunwind/src/Unwind-EHABI.cpp
    N src/lib/libunwind/src/CompactUnwinder.hpp
    N src/lib/libunwind/src/DwarfInstructions.hpp
    N src/lib/libunwind/src/libunwind_ext.h
    N src/lib/libunwind/src/config.h
    N src/lib/libunwind/src/CMakeLists.txt
    N src/lib/libunwind/src/UnwindLevel1.c
    N src/lib/libunwind/src/unwind_ext.h
    N src/lib/libunwind/src/Unwind-EHABI.h
    N src/lib/libunwind/src/UnwindRegistersSave.S
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/03 12:43:34

Modified files:
	sys/uvm        : uvm_map.c 

Log message:
Only use uaddr_exe for address selection when PROT_EXEC is requested

Checking whether a memory range could be mprotect()'ed to PROT_EXEC
attempts to put every mapping into the uaddr_exe range, if it exists.
This would fill up the exe range on i386 quickly, once uaddr_exe gets
used. So only use uaddr_exe if we know PROT_EXEC is needed for sure
No change in current behavior, since uaddr_exe will only be used
with uvm pivots.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 13:17:49

Modified files:
	sys/net        : bfd.c 

Log message:
if_get requires the corresponding if_put call.
while here, check that if_get was successful

noticed by jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/03 13:35:28

src/regress/lib/libc/locale/wcrtomb

Update of /cvs/src/regress/lib/libc/locale/wcrtomb
In directory cvs.openbsd.org:/tmp/cvs-serv26924/wcrtomb

Log Message:
Directory /cvs/src/regress/lib/libc/locale/wcrtomb added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/03 13:51:47

Modified files:
	lang/rust      : Makefile 
	lang/rust/patches: patch-configure 

Log message:
When testing the bootstrap version, the configure script failed to
use the included libraries. If a system library was bumped, the
binary wouldn't run at the configure stage, even if it ran fine
during the build.

So patch the configure script to pass LD_LIBRARY_PATH as it is done
during the build.  From Sebastien Marie.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 13:55:42

Modified files:
	sys/net        : bfd.c 

Log message:
in order to avoid problems with precise timing, obey rfc 5880 section 6.8.7,
and jitter the sender by 70%-90% of the requested tx time


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 14:02:50

Modified files:
	sys/net        : bfd.c 

Log message:
jsg@ also found some uninitialized variables, thank you!


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/03 14:04:42

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	x11            : Makefile 
Removed files:
	x11/emiclock   : Makefile distinfo 
	x11/emiclock/patches: patch-Imakefile patch-config_h 
	                      patch-include_sound_h patch-sound_c 
	                      patch-sys_FreeBSD_audio_c 
	x11/emiclock/pkg: DESCR PLIST 

Log message:
Remove x11/emiclock. 1990s software that tries to use an obsolete
audio interface and has obvious LP64 errors.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/03 14:10:30

Modified files:
	misc/bible-kjv : Makefile distinfo 

Log message:
update to 4.29 to keep up with Debian upstream; no code or data changes


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/03 14:19:52

Removed files:
	sys/arch/arm/sa11x0: sa1111_reg.h sa11x0_ost.c sa11x0_ostreg.h 
	                     sa11x0_reg.h sa11x0_var.h 

Log message:
remove strongarm files that were abused by zaurus


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 14:28:11

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.socppc md.sparc md.sparc64 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 14:35:07

Modified files:
	sys/net        : bfd.c 

Log message:
we really should ntohl fields coming in from the network


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/03 14:37:32

Modified files:
	x11/gnome/clocks: Makefile distinfo 

Log message:
Update to gnome-clocks-3.20.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 14:38:22

Removed files:
	distrib/sets/lists/base: md.sparc 
	distrib/sets/lists/comp: md.sparc 
	distrib/sets/lists/etc: md.sparc 
	distrib/sets/lists/game: md.sparc 
	distrib/sets/lists/man: md.sparc 

Log message:
phessler points out sparc left the tree


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 14:49:05

Modified files:
	usr.sbin/vmctl : vmctl.h 

Log message:
Some .h files are not needed


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/03 14:52:53

Modified files:
	usr.bin/signify: zsig.c 

Log message:
add the keyname to meta-info that passes thru


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 15:01:42

Modified files:
	sys/net        : bfd.c 

Log message:
handle timer limitations


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/03 15:12:00

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

Log message:
zap eyesore whitespace at EOL


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/03 15:24:35

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
move zaurus down to the discontinued architectures


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/03 15:30:50

Modified files:
	sbin/pfctl     : pfctl.c 

Log message:
err->errx, errno info is not related to the failure mode

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 15:37:29

Modified files:
	share/man/man4 : Makefile eisa.4 isa.4 isapnp.4 
	sys/arch/hppa/conf: GENERIC 
	sys/arch/i386/conf: GENERIC RAMDISK_CD 
	sys/dev/eisa   : files.eisa 
	sys/dev/isa    : files.isa 
Removed files:
	share/man/man4 : aha.4 ahb.4 
	sys/dev/eisa   : aha1742.c 
	sys/dev/isa    : aha.c ahareg.h 

Log message:
the src tree is growing too large. delete the aha and ahb drivers in
order to make room for llvm. er, the llvm makefiles. er, some of them.


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2016/09/03 15:41:20

src/distrib/syspatch

Update of /cvs/src/distrib/syspatch
In directory cvs.openbsd.org:/tmp/cvs-serv1699/syspatch

Log Message:
Directory /cvs/src/distrib/syspatch added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2016/09/03 15:43:25

Added files:
	distrib/syspatch: Makefile Makefile.000 bsd.syspatch.mk 

Log message:
add infrastructure to build syspatches (binary updates to stable)

Makefile.000 corresponds to errata_000 which is nonexistent so it
is a good place to provide an example of how to build the others

this is still work in progress, getting it in so people can join
in on the development

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/03 15:43:46

Modified files:
	sys/ddb        : db_output.c 

Log message:
make intrace a volatile, while the compiler does the right thing still
(no change in the generated code), it's more correct and helps the reader.

ok deraadt@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/03 15:47:57

Modified files:
	sbin/ping6     : ping6.c 

Log message:
get to the target the same way as ping; no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/03 15:48:51

Modified files:
	sbin/ping      : ping.c 

Log message:
s/whereto/dst/


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/03 15:49:55

Modified files:
	sbin/ping      : ping.c 

Log message:
s/to/dst/


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/03 15:50:52

Modified files:
	sbin/ping      : ping.c 

Log message:
How can this not be AF_INET?!


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/03 15:51:52

Modified files:
	sys/dev/isa    : files.isapnp 

Log message:
aha remnants lurking in here


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/03 16:00:06

Modified files:
	usr.sbin/traceroute: Makefile traceroute.c 
Added files:
	usr.sbin/traceroute: worker.c traceroute.h 

Log message:
rearrange code: traceroute.c now only contains main() and usage(),
worker.c contains all other functions, and i tracked down which global
variables are used in which file and marked them accordingly with
static (or not). No functional change, just the basis of further work.

ok florian@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/09/03 16:16:39

Modified files:
	usr.sbin/smtpd : esc.c 

Log message:
remove dead code


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 16:24:43

Modified files:
	sys/net        : bfd.c 

Log message:
only clear the error counter if we are successful, not if we get
partially through processing


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/03 16:32:04

Modified files:
	gnu            : README 

Log message:
clarify purpose of src/gnu/ directory.

ok hackroom@


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/03 16:47:02

Log message:
    Use the space freed up by sparc and zaurus to import LLVM.
    
    ok hackroom@
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LLVM_3_8_1
    
    N src/gnu/llvm/Makefile.common
    N src/gnu/llvm/llvm.spec.in
    N src/gnu/llvm/configure
    N src/gnu/llvm/LICENSE.TXT
    N src/gnu/llvm/README.txt
    N src/gnu/llvm/Makefile.config.in
    N src/gnu/llvm/.clang-format
    N src/gnu/llvm/LLVMBuild.txt
    N src/gnu/llvm/.arcconfig
    N src/gnu/llvm/.clang-tidy
    N src/gnu/llvm/CMakeLists.txt
    N src/gnu/llvm/CREDITS.TXT
    N src/gnu/llvm/Makefile
    N src/gnu/llvm/CODE_OWNERS.TXT
    N src/gnu/llvm/.gitignore
    N src/gnu/llvm/Makefile.rules
    N src/gnu/llvm/bindings/README.txt
    N src/gnu/llvm/bindings/LLVMBuild.txt
    N src/gnu/llvm/bindings/Makefile
    N src/gnu/llvm/bindings/go/build.sh
    N src/gnu/llvm/bindings/go/conftest.go
    N src/gnu/llvm/bindings/go/README.txt
    N src/gnu/llvm/bindings/go/llvm/DIBuilderBindings.cpp
    N src/gnu/llvm/bindings/go/llvm/transforms_pmbuilder.go
    N src/gnu/llvm/bindings/go/llvm/IRBindings.cpp
    N src/gnu/llvm/bindings/go/llvm/target.go
    N src/gnu/llvm/bindings/go/llvm/dibuilder.go
    N src/gnu/llvm/bindings/go/llvm/bitreader.go
    N src/gnu/llvm/bindings/go/llvm/analysis.go
    N src/gnu/llvm/bindings/go/llvm/llvm_config.go.in
    N src/gnu/llvm/bindings/go/llvm/transforms_ipo.go
    N src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.h
    N src/gnu/llvm/bindings/go/llvm/SupportBindings.cpp
    N src/gnu/llvm/bindings/go/llvm/IRBindings.h
    N src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.cpp
    N src/gnu/llvm/bindings/go/llvm/ir.go
    N src/gnu/llvm/bindings/go/llvm/llvm_dep.go
    N src/gnu/llvm/bindings/go/llvm/SupportBindings.h
    N src/gnu/llvm/bindings/go/llvm/version.go
    N src/gnu/llvm/bindings/go/llvm/executionengine_test.go
    N src/gnu/llvm/bindings/go/llvm/support.go
    N src/gnu/llvm/bindings/go/llvm/ir_test.go
    N src/gnu/llvm/bindings/go/llvm/transforms_instrumentation.go
    N src/gnu/llvm/bindings/go/llvm/transforms_scalar.go
    N src/gnu/llvm/bindings/go/llvm/linker.go
    N src/gnu/llvm/bindings/go/llvm/executionengine.go
    N src/gnu/llvm/bindings/go/llvm/DIBuilderBindings.h
    N src/gnu/llvm/bindings/go/llvm/string_test.go
    N src/gnu/llvm/bindings/go/llvm/string.go
    N src/gnu/llvm/bindings/go/llvm/bitwriter.go
    N src/gnu/llvm/bindings/python/README.txt
    N src/gnu/llvm/bindings/python/llvm/enumerations.py
    N src/gnu/llvm/bindings/python/llvm/core.py
    N src/gnu/llvm/bindings/python/llvm/disassembler.py
    N src/gnu/llvm/bindings/python/llvm/__init__.py
    N src/gnu/llvm/bindings/python/llvm/object.py
    N src/gnu/llvm/bindings/python/llvm/common.py
    N src/gnu/llvm/bindings/python/llvm/bit_reader.py
    N src/gnu/llvm/bindings/python/llvm/tests/test_bitreader.py
    N src/gnu/llvm/bindings/python/llvm/tests/test_core.py
    N src/gnu/llvm/bindings/python/llvm/tests/test_disassembler.py
    N src/gnu/llvm/bindings/python/llvm/tests/__init__.py
    N src/gnu/llvm/bindings/python/llvm/tests/test_object.py
    N src/gnu/llvm/bindings/python/llvm/tests/test_file
    N src/gnu/llvm/bindings/python/llvm/tests/base.py
    N src/gnu/llvm/bindings/python/llvm/tests/test.bc
    N src/gnu/llvm/bindings/ocaml/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/Makefile.ocaml
    N src/gnu/llvm/bindings/ocaml/Makefile
    N src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.mli
    N src/gnu/llvm/bindings/ocaml/bitreader/bitreader_ocaml.c
    N src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.ml
    N src/gnu/llvm/bindings/ocaml/bitreader/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/bitreader/Makefile
    N src/gnu/llvm/bindings/ocaml/bitwriter/llvm_bitwriter.ml
    N src/gnu/llvm/bindings/ocaml/bitwriter/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/bitwriter/Makefile
    N src/gnu/llvm/bindings/ocaml/bitwriter/bitwriter_ocaml.c
    N src/gnu/llvm/bindings/ocaml/bitwriter/llvm_bitwriter.mli
    N src/gnu/llvm/bindings/ocaml/irreader/irreader_ocaml.c
    N src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.mli
    N src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.ml
    N src/gnu/llvm/bindings/ocaml/irreader/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/irreader/Makefile
    N src/gnu/llvm/bindings/ocaml/all_backends/all_backends_ocaml.c
    N src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.ml
    N src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.mli
    N src/gnu/llvm/bindings/ocaml/all_backends/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/all_backends/Makefile
    N src/gnu/llvm/bindings/ocaml/transforms/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/transforms/Makefile
    N src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/llvm_passmgr_builder.ml
    N src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/passmgr_builder_ocaml.c
    N src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/Makefile
    N src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/llvm_passmgr_builder.mli
    N src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.mli
    N src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.ml
    N src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/Makefile
    N src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/scalar_opts_ocaml.c
    N src/gnu/llvm/bindings/ocaml/transforms/ipo/llvm_ipo.ml
    N src/gnu/llvm/bindings/ocaml/transforms/ipo/llvm_ipo.mli
    N src/gnu/llvm/bindings/ocaml/transforms/ipo/ipo_ocaml.c
    N src/gnu/llvm/bindings/ocaml/transforms/ipo/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/transforms/ipo/Makefile
    N src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.ml
    N src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.mli
    N src/gnu/llvm/bindings/ocaml/transforms/vectorize/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/transforms/vectorize/Makefile
    N src/gnu/llvm/bindings/ocaml/transforms/vectorize/vectorize_ocaml.c
    N src/gnu/llvm/bindings/ocaml/transforms/utils/llvm_transform_utils.ml
    N src/gnu/llvm/bindings/ocaml/transforms/utils/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/transforms/utils/transform_utils_ocaml.c
    N src/gnu/llvm/bindings/ocaml/transforms/utils/Makefile
    N src/gnu/llvm/bindings/ocaml/transforms/utils/llvm_transform_utils.mli
    N src/gnu/llvm/bindings/ocaml/backends/Makefile.common
    N src/gnu/llvm/bindings/ocaml/backends/llvm_backend.ml.in
    N src/gnu/llvm/bindings/ocaml/backends/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/backends/Makefile
    N src/gnu/llvm/bindings/ocaml/backends/META.llvm_backend.in
    N src/gnu/llvm/bindings/ocaml/backends/backend_ocaml.c
    N src/gnu/llvm/bindings/ocaml/backends/llvm_backend.mli.in
    N src/gnu/llvm/bindings/ocaml/target/llvm_target.ml
    N src/gnu/llvm/bindings/ocaml/target/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/target/Makefile
    N src/gnu/llvm/bindings/ocaml/target/llvm_target.mli
    N src/gnu/llvm/bindings/ocaml/target/target_ocaml.c
    N src/gnu/llvm/bindings/ocaml/llvm/META.llvm.in
    N src/gnu/llvm/bindings/ocaml/llvm/llvm_ocaml.c
    N src/gnu/llvm/bindings/ocaml/llvm/llvm.mli
    N src/gnu/llvm/bindings/ocaml/llvm/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/llvm/Makefile
    N src/gnu/llvm/bindings/ocaml/llvm/llvm.ml
    N src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.ml
    N src/gnu/llvm/bindings/ocaml/analysis/analysis_ocaml.c
    N src/gnu/llvm/bindings/ocaml/analysis/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.mli
    N src/gnu/llvm/bindings/ocaml/analysis/Makefile
    N src/gnu/llvm/bindings/ocaml/linker/llvm_linker.ml
    N src/gnu/llvm/bindings/ocaml/linker/linker_ocaml.c
    N src/gnu/llvm/bindings/ocaml/linker/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/linker/Makefile
    N src/gnu/llvm/bindings/ocaml/linker/llvm_linker.mli
    N src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.ml
    N src/gnu/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
    N src/gnu/llvm/bindings/ocaml/executionengine/CMakeLists.txt
    N src/gnu/llvm/bindings/ocaml/executionengine/Makefile
    N src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.mli
    N src/gnu/llvm/unittests/Makefile.unittest
    N src/gnu/llvm/unittests/CMakeLists.txt
    N src/gnu/llvm/unittests/Makefile
    N src/gnu/llvm/unittests/ADT/ImmutableSetTest.cpp
    N src/gnu/llvm/unittests/ADT/FunctionRefTest.cpp
    N src/gnu/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp
    N src/gnu/llvm/unittests/ADT/DenseSetTest.cpp
    N src/gnu/llvm/unittests/ADT/DenseMapTest.cpp
    N src/gnu/llvm/unittests/ADT/FoldingSet.cpp
    N src/gnu/llvm/unittests/ADT/SmallPtrSetTest.cpp
    N src/gnu/llvm/unittests/ADT/PostOrderIteratorTest.cpp
    N src/gnu/llvm/unittests/ADT/HashingTest.cpp
    N src/gnu/llvm/unittests/ADT/BitVectorTest.cpp
    N src/gnu/llvm/unittests/ADT/TwineTest.cpp
    N src/gnu/llvm/unittests/ADT/SCCIteratorTest.cpp
    N src/gnu/llvm/unittests/ADT/ImmutableMapTest.cpp
    N src/gnu/llvm/unittests/ADT/PointerEmbeddedIntTest.cpp
    N src/gnu/llvm/unittests/ADT/SmallStringTest.cpp
    N src/gnu/llvm/unittests/ADT/APSIntTest.cpp
    N src/gnu/llvm/unittests/ADT/APIntTest.cpp
    N src/gnu/llvm/unittests/ADT/IntervalMapTest.cpp
    N src/gnu/llvm/unittests/ADT/PointerSumTypeTest.cpp
    N src/gnu/llvm/unittests/ADT/MakeUniqueTest.cpp
    N src/gnu/llvm/unittests/ADT/SmallVectorTest.cpp
    N src/gnu/llvm/unittests/ADT/IntEqClassesTest.cpp
    N src/gnu/llvm/unittests/ADT/TripleTest.cpp
    N src/gnu/llvm/unittests/ADT/SparseBitVectorTest.cpp
    N src/gnu/llvm/unittests/ADT/MapVectorTest.cpp
    N src/gnu/llvm/unittests/ADT/CMakeLists.txt
    N src/gnu/llvm/unittests/ADT/StringRefTest.cpp
    N src/gnu/llvm/unittests/ADT/PackedVectorTest.cpp
    N src/gnu/llvm/unittests/ADT/Makefile
    N src/gnu/llvm/unittests/ADT/StringMapTest.cpp
    N src/gnu/llvm/unittests/ADT/APFloatTest.cpp
    N src/gnu/llvm/unittests/ADT/VariadicFunctionTest.cpp
    N src/gnu/llvm/unittests/ADT/PointerUnionTest.cpp
    N src/gnu/llvm/unittests/ADT/TinyPtrVectorTest.cpp
    N src/gnu/llvm/unittests/ADT/ilistTest.cpp
    N src/gnu/llvm/unittests/ADT/ArrayRefTest.cpp
    N src/gnu/llvm/unittests/ADT/SparseMultiSetTest.cpp
    N src/gnu/llvm/unittests/ADT/RangeAdapterTest.cpp
    N src/gnu/llvm/unittests/ADT/PointerIntPairTest.cpp
    N src/gnu/llvm/unittests/ADT/SparseSetTest.cpp
    N src/gnu/llvm/unittests/ADT/OptionalTest.cpp
    N src/gnu/llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp
    N src/gnu/llvm/unittests/ADT/DeltaAlgorithmTest.cpp
    N src/gnu/llvm/unittests/CodeGen/CMakeLists.txt
    N src/gnu/llvm/unittests/CodeGen/Makefile
    N src/gnu/llvm/unittests/CodeGen/DIEHashTest.cpp
    N src/gnu/llvm/unittests/Option/Opts.td
    N src/gnu/llvm/unittests/Option/CMakeLists.txt
    N src/gnu/llvm/unittests/Option/OptionParsingTest.cpp
    N src/gnu/llvm/unittests/Option/Makefile
    N src/gnu/llvm/unittests/IR/UseTest.cpp
    N src/gnu/llvm/unittests/IR/ValueTest.cpp
    N src/gnu/llvm/unittests/IR/MDBuilderTest.cpp
    N src/gnu/llvm/unittests/IR/TypeBuilderTest.cpp
    N src/gnu/llvm/unittests/IR/IRBuilderTest.cpp
    N src/gnu/llvm/unittests/IR/InstructionsTest.cpp
    N src/gnu/llvm/unittests/IR/DebugInfoTest.cpp
    N src/gnu/llvm/unittests/IR/WaymarkTest.cpp
    N src/gnu/llvm/unittests/IR/ConstantRangeTest.cpp
    N src/gnu/llvm/unittests/IR/ConstantsTest.cpp
    N src/gnu/llvm/unittests/IR/LegacyPassManagerTest.cpp
    N src/gnu/llvm/unittests/IR/AsmWriterTest.cpp
    N src/gnu/llvm/unittests/IR/MetadataTest.cpp
    N src/gnu/llvm/unittests/IR/CMakeLists.txt
    N src/gnu/llvm/unittests/IR/PassManagerTest.cpp
    N src/gnu/llvm/unittests/IR/TypesTest.cpp
    N src/gnu/llvm/unittests/IR/ValueHandleTest.cpp
    N src/gnu/llvm/unittests/IR/Makefile
    N src/gnu/llvm/unittests/IR/AttributesTest.cpp
    N src/gnu/llvm/unittests/IR/PatternMatch.cpp
    N src/gnu/llvm/unittests/IR/VerifierTest.cpp
    N src/gnu/llvm/unittests/IR/UserTest.cpp
    N src/gnu/llvm/unittests/IR/ValueMapTest.cpp
    N src/gnu/llvm/unittests/IR/DominatorTreeTest.cpp
    N src/gnu/llvm/unittests/Transforms/CMakeLists.txt
    N src/gnu/llvm/unittests/Transforms/Makefile
    N src/gnu/llvm/unittests/Transforms/Utils/Local.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/Cloning.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/CMakeLists.txt
    N src/gnu/llvm/unittests/Transforms/Utils/IntegerDivision.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/Makefile
    N src/gnu/llvm/unittests/Transforms/Utils/ASanStackFrameLayoutTest.cpp
    N src/gnu/llvm/unittests/Transforms/IPO/LowerBitSets.cpp
    N src/gnu/llvm/unittests/Transforms/IPO/CMakeLists.txt
    N src/gnu/llvm/unittests/Transforms/IPO/Makefile
    N src/gnu/llvm/unittests/DebugInfo/CMakeLists.txt
    N src/gnu/llvm/unittests/DebugInfo/Makefile
    N src/gnu/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
    N src/gnu/llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    N src/gnu/llvm/unittests/DebugInfo/PDB/Makefile
    N src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp
    N src/gnu/llvm/unittests/DebugInfo/DWARF/CMakeLists.txt
    N src/gnu/llvm/unittests/DebugInfo/DWARF/Makefile
    N src/gnu/llvm/unittests/AsmParser/CMakeLists.txt
    N src/gnu/llvm/unittests/AsmParser/Makefile
    N src/gnu/llvm/unittests/AsmParser/AsmParserTest.cpp
    N src/gnu/llvm/unittests/LineEditor/LineEditor.cpp
    N src/gnu/llvm/unittests/LineEditor/CMakeLists.txt
    N src/gnu/llvm/unittests/LineEditor/Makefile
    N src/gnu/llvm/unittests/Analysis/MixedTBAATest.cpp
    N src/gnu/llvm/unittests/Analysis/ValueTrackingTest.cpp
    N src/gnu/llvm/unittests/Analysis/CallGraphTest.cpp
    N src/gnu/llvm/unittests/Analysis/CMakeLists.txt
    N src/gnu/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
    N src/gnu/llvm/unittests/Analysis/Makefile
    N src/gnu/llvm/unittests/Analysis/CFGTest.cpp
    N src/gnu/llvm/unittests/Analysis/LazyCallGraphTest.cpp
    N src/gnu/llvm/unittests/Analysis/AliasAnalysisTest.cpp
    N src/gnu/llvm/unittests/ProfileData/InstrProfTest.cpp
    N src/gnu/llvm/unittests/ProfileData/SampleProfTest.cpp
    N src/gnu/llvm/unittests/ProfileData/CMakeLists.txt
    N src/gnu/llvm/unittests/ProfileData/Makefile
    N src/gnu/llvm/unittests/ProfileData/CoverageMappingTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/CMakeLists.txt
    N src/gnu/llvm/unittests/ExecutionEngine/Makefile
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/CompileOnDemandLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectTransformLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/CMakeLists.txt
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectLinkingLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/Makefile
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/GlobalMappingLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/Makefile
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMemoryManagerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTests.def
    N src/gnu/llvm/unittests/Bitcode/BitReaderTest.cpp
    N src/gnu/llvm/unittests/Bitcode/BitstreamReaderTest.cpp
    N src/gnu/llvm/unittests/Bitcode/CMakeLists.txt
    N src/gnu/llvm/unittests/Bitcode/Makefile
    N src/gnu/llvm/unittests/Support/ThreadPool.cpp
    N src/gnu/llvm/unittests/Support/BranchProbabilityTest.cpp
    N src/gnu/llvm/unittests/Support/ReplaceFileTest.cpp
    N src/gnu/llvm/unittests/Support/LineIteratorTest.cpp
    N src/gnu/llvm/unittests/Support/TrailingObjectsTest.cpp
    N src/gnu/llvm/unittests/Support/TimerTest.cpp
    N src/gnu/llvm/unittests/Support/raw_pwrite_stream_test.cpp
    N src/gnu/llvm/unittests/Support/BlockFrequencyTest.cpp
    N src/gnu/llvm/unittests/Support/formatted_raw_ostream_test.cpp
    N src/gnu/llvm/unittests/Support/CommandLineTest.cpp
    N src/gnu/llvm/unittests/Support/EndianTest.cpp
    N src/gnu/llvm/unittests/Support/ScaledNumberTest.cpp
    N src/gnu/llvm/unittests/Support/SpecialCaseListTest.cpp
    N src/gnu/llvm/unittests/Support/LEB128Test.cpp
    N src/gnu/llvm/unittests/Support/ErrorOrTest.cpp
    N src/gnu/llvm/unittests/Support/DwarfTest.cpp
    N src/gnu/llvm/unittests/Support/YAMLIOTest.cpp
    N src/gnu/llvm/unittests/Support/UnicodeTest.cpp
    N src/gnu/llvm/unittests/Support/AllocatorTest.cpp
    N src/gnu/llvm/unittests/Support/raw_ostream_test.cpp
    N src/gnu/llvm/unittests/Support/Path.cpp
    N src/gnu/llvm/unittests/Support/FileOutputBufferTest.cpp
    N src/gnu/llvm/unittests/Support/MathExtrasTest.cpp
    N src/gnu/llvm/unittests/Support/ProcessTest.cpp
    N src/gnu/llvm/unittests/Support/IteratorTest.cpp
    N src/gnu/llvm/unittests/Support/MD5Test.cpp
    N src/gnu/llvm/unittests/Support/AlignOfTest.cpp
    N src/gnu/llvm/unittests/Support/MemoryTest.cpp
    N src/gnu/llvm/unittests/Support/ConvertUTFTest.cpp
    N src/gnu/llvm/unittests/Support/TimeValueTest.cpp
    N src/gnu/llvm/unittests/Support/DataExtractorTest.cpp
    N src/gnu/llvm/unittests/Support/CMakeLists.txt
    N src/gnu/llvm/unittests/Support/SwapByteOrderTest.cpp
    N src/gnu/llvm/unittests/Support/SourceMgrTest.cpp
    N src/gnu/llvm/unittests/Support/Makefile
    N src/gnu/llvm/unittests/Support/ManagedStatic.cpp
    N src/gnu/llvm/unittests/Support/Casting.cpp
    N src/gnu/llvm/unittests/Support/CompressionTest.cpp
    N src/gnu/llvm/unittests/Support/YAMLParserTest.cpp
    N src/gnu/llvm/unittests/Support/TargetRegistry.cpp
    N src/gnu/llvm/unittests/Support/ThreadLocalTest.cpp
    N src/gnu/llvm/unittests/Support/StreamingMemoryObject.cpp
    N src/gnu/llvm/unittests/Support/StringPool.cpp
    N src/gnu/llvm/unittests/Support/LockFileManagerTest.cpp
    N src/gnu/llvm/unittests/Support/EndianStreamTest.cpp
    N src/gnu/llvm/unittests/Support/ArrayRecyclerTest.cpp
    N src/gnu/llvm/unittests/Support/ProgramTest.cpp
    N src/gnu/llvm/unittests/Support/RegexTest.cpp
    N src/gnu/llvm/unittests/Support/MemoryBufferTest.cpp
    N src/gnu/llvm/unittests/MC/YAMLTest.cpp
    N src/gnu/llvm/unittests/MC/Disassembler.cpp
    N src/gnu/llvm/unittests/MC/CMakeLists.txt
    N src/gnu/llvm/unittests/MC/Makefile
    N src/gnu/llvm/unittests/MC/StringTableBuilderTest.cpp
    N src/gnu/llvm/unittests/Linker/LinkModulesTest.cpp
    N src/gnu/llvm/unittests/Linker/CMakeLists.txt
    N src/gnu/llvm/unittests/Linker/Makefile
    N src/gnu/llvm/projects/LLVMBuild.txt
    N src/gnu/llvm/projects/CMakeLists.txt
    N src/gnu/llvm/projects/Makefile
    N src/gnu/llvm/tools/LLVMBuild.txt
    N src/gnu/llvm/tools/CMakeLists.txt
    N src/gnu/llvm/tools/Makefile
    N src/gnu/llvm/tools/llc/llc.cpp
    N src/gnu/llvm/tools/llc/LLVMBuild.txt
    N src/gnu/llvm/tools/llc/CMakeLists.txt
    N src/gnu/llvm/tools/llc/Makefile
    N src/gnu/llvm/tools/llvm-dis/llvm-dis.cpp
    N src/gnu/llvm/tools/llvm-dis/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-dis/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-dis/Makefile
    N src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
    N src/gnu/llvm/tools/msbuild/toolset-vs2014_xp.targets
    N src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets
    N src/gnu/llvm/tools/msbuild/uninstall.bat
    N src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2010.targets
    N src/gnu/llvm/tools/msbuild/toolset-vs2013.targets
    N src/gnu/llvm/tools/msbuild/toolset-vs2014.targets
    N src/gnu/llvm/tools/msbuild/CMakeLists.txt
    N src/gnu/llvm/tools/msbuild/toolset-vs2013_xp.targets
    N src/gnu/llvm/tools/msbuild/install.bat
    N src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012.targets
    N src/gnu/llvm/tools/dsymutil/MachODebugMapParser.cpp
    N src/gnu/llvm/tools/dsymutil/DwarfLinker.cpp
    N src/gnu/llvm/tools/dsymutil/DebugMap.h
    N src/gnu/llvm/tools/dsymutil/dsymutil.h
    N src/gnu/llvm/tools/dsymutil/BinaryHolder.h
    N src/gnu/llvm/tools/dsymutil/dsymutil.cpp
    N src/gnu/llvm/tools/dsymutil/DebugMap.cpp
    N src/gnu/llvm/tools/dsymutil/LLVMBuild.txt
    N src/gnu/llvm/tools/dsymutil/MachOUtils.h
    N src/gnu/llvm/tools/dsymutil/MachOUtils.cpp
    N src/gnu/llvm/tools/dsymutil/CMakeLists.txt
    N src/gnu/llvm/tools/dsymutil/Makefile
    N src/gnu/llvm/tools/dsymutil/BinaryHolder.cpp
    N src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.h
    N src/gnu/llvm/tools/lto/lto.cpp
    N src/gnu/llvm/tools/lto/lto.exports
    N src/gnu/llvm/tools/lto/CMakeLists.txt
    N src/gnu/llvm/tools/lto/Makefile
    N src/gnu/llvm/tools/lto/LTODisassembler.cpp
    N src/gnu/llvm/tools/gold/gold.exports
    N src/gnu/llvm/tools/gold/README.txt
    N src/gnu/llvm/tools/gold/gold-plugin.cpp
    N src/gnu/llvm/tools/gold/CMakeLists.txt
    N src/gnu/llvm/tools/gold/Makefile
    N src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
    N src/gnu/llvm/tools/llvm-cov/TestingSupport.cpp
    N src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.h
    N src/gnu/llvm/tools/llvm-cov/CoverageFilters.cpp
    N src/gnu/llvm/tools/llvm-cov/CoverageViewOptions.h
    N src/gnu/llvm/tools/llvm-cov/CoverageFilters.h
    N src/gnu/llvm/tools/llvm-cov/llvm-cov.cpp
    N src/gnu/llvm/tools/llvm-cov/gcov.cpp
    N src/gnu/llvm/tools/llvm-cov/CodeCoverage.cpp
    N src/gnu/llvm/tools/llvm-cov/SourceCoverageView.cpp
    N src/gnu/llvm/tools/llvm-cov/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-cov/CoverageReport.cpp
    N src/gnu/llvm/tools/llvm-cov/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-cov/Makefile
    N src/gnu/llvm/tools/llvm-cov/CoverageReport.h
    N src/gnu/llvm/tools/llvm-cov/RenderingSupport.h
    N src/gnu/llvm/tools/llvm-cov/SourceCoverageView.h
    N src/gnu/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
    N src/gnu/llvm/tools/llvm-symbolizer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-symbolizer/Makefile
    N src/gnu/llvm/tools/obj2yaml/obj2yaml.cpp
    N src/gnu/llvm/tools/obj2yaml/obj2yaml.h
    N src/gnu/llvm/tools/obj2yaml/coff2yaml.cpp
    N src/gnu/llvm/tools/obj2yaml/elf2yaml.cpp
    N src/gnu/llvm/tools/obj2yaml/CMakeLists.txt
    N src/gnu/llvm/tools/obj2yaml/Error.cpp
    N src/gnu/llvm/tools/obj2yaml/Makefile
    N src/gnu/llvm/tools/obj2yaml/Error.h
    N src/gnu/llvm/tools/llvm-pdbdump/TypedefDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/FunctionDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/TypeDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/FunctionDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/BuiltinDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/VariableDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-pdbdump/TypeDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/BuiltinDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/Makefile
    N src/gnu/llvm/tools/llvm-pdbdump/VariableDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.h
    N src/gnu/llvm/tools/llvm-pdbdump/CompilandDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/CompilandDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/EnumDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/EnumDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/TypedefDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.h
    N src/gnu/llvm/tools/llvm-bcanalyzer/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-bcanalyzer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-bcanalyzer/Makefile
    N src/gnu/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
    N src/gnu/llvm/tools/llvm-config/llvm-config.cpp
    N src/gnu/llvm/tools/llvm-config/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-config/Makefile
    N src/gnu/llvm/tools/llvm-config/BuildVariables.inc.in
    N src/gnu/llvm/tools/llvm-extract/llvm-extract.cpp
    N src/gnu/llvm/tools/llvm-extract/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-extract/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-extract/Makefile
    N src/gnu/llvm/tools/opt/BreakpointPrinter.cpp
    N src/gnu/llvm/tools/opt/PrintSCC.cpp
    N src/gnu/llvm/tools/opt/BreakpointPrinter.h
    N src/gnu/llvm/tools/opt/GraphPrinters.cpp
    N src/gnu/llvm/tools/opt/LLVMBuild.txt
    N src/gnu/llvm/tools/opt/CMakeLists.txt
    N src/gnu/llvm/tools/opt/NewPMDriver.cpp
    N src/gnu/llvm/tools/opt/AnalysisWrappers.cpp
    N src/gnu/llvm/tools/opt/Makefile
    N src/gnu/llvm/tools/opt/opt.cpp
    N src/gnu/llvm/tools/opt/PassPrinters.h
    N src/gnu/llvm/tools/opt/NewPMDriver.h
    N src/gnu/llvm/tools/opt/PassPrinters.cpp
    N src/gnu/llvm/tools/llvm-as-fuzzer/llvm-as-fuzzer.cpp
    N src/gnu/llvm/tools/llvm-as-fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-as/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-as/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-as/Makefile
    N src/gnu/llvm/tools/llvm-as/llvm-as.cpp
    N src/gnu/llvm/tools/llvm-shlib/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-shlib/Makefile
    N src/gnu/llvm/tools/llvm-shlib/libllvm.cpp
    N src/gnu/llvm/tools/llvm-c-test/object.c
    N src/gnu/llvm/tools/llvm-c-test/include-all.c
    N src/gnu/llvm/tools/llvm-c-test/module.c
    N src/gnu/llvm/tools/llvm-c-test/calc.c
    N src/gnu/llvm/tools/llvm-c-test/targets.c
    N src/gnu/llvm/tools/llvm-c-test/metadata.c
    N src/gnu/llvm/tools/llvm-c-test/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-c-test/main.c
    N src/gnu/llvm/tools/llvm-c-test/llvm-c-test.h
    N src/gnu/llvm/tools/llvm-c-test/Makefile
    N src/gnu/llvm/tools/llvm-c-test/helpers.c
    N src/gnu/llvm/tools/llvm-c-test/disassemble.c
    N src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.h
    N src/gnu/llvm/tools/llvm-cxxdump/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-cxxdump/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-cxxdump/Error.cpp
    N src/gnu/llvm/tools/llvm-cxxdump/Makefile
    N src/gnu/llvm/tools/llvm-cxxdump/Error.h
    N src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
    N src/gnu/llvm/tools/verify-uselistorder/verify-uselistorder.cpp
    N src/gnu/llvm/tools/verify-uselistorder/LLVMBuild.txt
    N src/gnu/llvm/tools/verify-uselistorder/CMakeLists.txt
    N src/gnu/llvm/tools/verify-uselistorder/Makefile
    N src/gnu/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
    N src/gnu/llvm/tools/llvm-rtdyld/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-rtdyld/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-rtdyld/Makefile
    N src/gnu/llvm/tools/llvm-stress/llvm-stress.cpp
    N src/gnu/llvm/tools/llvm-stress/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-stress/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-stress/Makefile
    N src/gnu/llvm/tools/yaml2obj/yaml2obj.h
    N src/gnu/llvm/tools/yaml2obj/yaml2elf.cpp
    N src/gnu/llvm/tools/yaml2obj/CMakeLists.txt
    N src/gnu/llvm/tools/yaml2obj/yaml2obj.cpp
    N src/gnu/llvm/tools/yaml2obj/Makefile
    N src/gnu/llvm/tools/yaml2obj/yaml2coff.cpp
    N src/gnu/llvm/tools/llvm-dwp/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-dwp/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-dwp/Makefile
    N src/gnu/llvm/tools/llvm-dwp/llvm-dwp.cpp
    N src/gnu/llvm/tools/llvm-readobj/ObjDumper.h
    N src/gnu/llvm/tools/llvm-readobj/ObjDumper.cpp
    N src/gnu/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
    N src/gnu/llvm/tools/llvm-readobj/ELFDumper.cpp
    N src/gnu/llvm/tools/llvm-readobj/llvm-readobj.cpp
    N src/gnu/llvm/tools/llvm-readobj/MachODumper.cpp
    N src/gnu/llvm/tools/llvm-readobj/COFFImportDumper.cpp
    N src/gnu/llvm/tools/llvm-readobj/COFFDumper.cpp
    N src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
    N src/gnu/llvm/tools/llvm-readobj/StreamWriter.h
    N src/gnu/llvm/tools/llvm-readobj/llvm-readobj.h
    N src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.cpp
    N src/gnu/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
    N src/gnu/llvm/tools/llvm-readobj/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-readobj/StreamWriter.cpp
    N src/gnu/llvm/tools/llvm-readobj/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-readobj/Error.cpp
    N src/gnu/llvm/tools/llvm-readobj/Makefile
    N src/gnu/llvm/tools/llvm-readobj/StackMapPrinter.h
    N src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
    N src/gnu/llvm/tools/llvm-readobj/Error.h
    N src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.h
    N src/gnu/llvm/tools/llvm-readobj/ARMAttributeParser.h
    N src/gnu/llvm/tools/llvm-jitlistener/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-jitlistener/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-jitlistener/Makefile
    N src/gnu/llvm/tools/llvm-jitlistener/llvm-jitlistener.cpp
    N src/gnu/llvm/tools/llvm-ar/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-ar/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-ar/Makefile
    N src/gnu/llvm/tools/llvm-ar/llvm-ar.cpp
    N src/gnu/llvm/tools/llvm-size/llvm-size.cpp
    N src/gnu/llvm/tools/llvm-size/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-size/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-size/Makefile
    N src/gnu/llvm/tools/sancov/sancov.cc
    N src/gnu/llvm/tools/sancov/CMakeLists.txt
    N src/gnu/llvm/tools/sancov/Makefile
    N src/gnu/llvm/tools/llvm-nm/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-nm/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-nm/llvm-nm.cpp
    N src/gnu/llvm/tools/llvm-nm/Makefile
    N src/gnu/llvm/tools/llvm-diff/DiffConsumer.cpp
    N src/gnu/llvm/tools/llvm-diff/DifferenceEngine.cpp
    N src/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
    N src/gnu/llvm/tools/llvm-diff/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-diff/DiffLog.cpp
    N src/gnu/llvm/tools/llvm-diff/DiffLog.h
    N src/gnu/llvm/tools/llvm-diff/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-diff/Makefile
    N src/gnu/llvm/tools/llvm-diff/llvm-diff.cpp
    N src/gnu/llvm/tools/llvm-diff/DiffConsumer.h
    N src/gnu/llvm/tools/llvm-mcmarkup/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-mcmarkup/llvm-mcmarkup.cpp
    N src/gnu/llvm/tools/llvm-mcmarkup/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-mcmarkup/Makefile
    N src/gnu/llvm/tools/llvm-dwarfdump/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-dwarfdump/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-dwarfdump/Makefile
    N src/gnu/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
    N src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/llvm-dwarfdump-fuzzer.cpp
    N src/gnu/llvm/tools/bugpoint-passes/TestPasses.cpp
    N src/gnu/llvm/tools/bugpoint-passes/CMakeLists.txt
    N src/gnu/llvm/tools/bugpoint-passes/Makefile
    N src/gnu/llvm/tools/bugpoint-passes/bugpoint.exports
    N src/gnu/llvm/tools/llvm-split/llvm-split.cpp
    N src/gnu/llvm/tools/llvm-split/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-split/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-split/Makefile
    N src/gnu/llvm/tools/llvm-link/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-link/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-link/Makefile
    N src/gnu/llvm/tools/llvm-link/llvm-link.cpp
    N src/gnu/llvm/tools/llvm-mc-fuzzer/llvm-mc-fuzzer.cpp
    N src/gnu/llvm/tools/llvm-mc-fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/lli/OrcLazyJIT.h
    N src/gnu/llvm/tools/lli/OrcLazyJIT.cpp
    N src/gnu/llvm/tools/lli/LLVMBuild.txt
    N src/gnu/llvm/tools/lli/lli.cpp
    N src/gnu/llvm/tools/lli/CMakeLists.txt
    N src/gnu/llvm/tools/lli/Makefile
    N src/gnu/llvm/tools/lli/RemoteJITUtils.h
    N src/gnu/llvm/tools/lli/ChildTarget/LLVMBuild.txt
    N src/gnu/llvm/tools/lli/ChildTarget/CMakeLists.txt
    N src/gnu/llvm/tools/lli/ChildTarget/ChildTarget.cpp
    N src/gnu/llvm/tools/lli/ChildTarget/Makefile
    N src/gnu/llvm/tools/bugpoint/ToolRunner.cpp
    N src/gnu/llvm/tools/bugpoint/FindBugs.cpp
    N src/gnu/llvm/tools/bugpoint/OptimizerDriver.cpp
    N src/gnu/llvm/tools/bugpoint/ExecutionDriver.cpp
    N src/gnu/llvm/tools/bugpoint/bugpoint.cpp
    N src/gnu/llvm/tools/bugpoint/LLVMBuild.txt
    N src/gnu/llvm/tools/bugpoint/BugDriver.cpp
    N src/gnu/llvm/tools/bugpoint/BugDriver.h
    N src/gnu/llvm/tools/bugpoint/CMakeLists.txt
    N src/gnu/llvm/tools/bugpoint/Makefile
    N src/gnu/llvm/tools/bugpoint/Miscompilation.cpp
    N src/gnu/llvm/tools/bugpoint/ExtractFunction.cpp
    N src/gnu/llvm/tools/bugpoint/ToolRunner.h
    N src/gnu/llvm/tools/bugpoint/ListReducer.h
    N src/gnu/llvm/tools/bugpoint/CrashDebugger.cpp
    N src/gnu/llvm/tools/llvm-objdump/llvm-objdump.cpp
    N src/gnu/llvm/tools/llvm-objdump/llvm-objdump.h
    N src/gnu/llvm/tools/llvm-objdump/ELFDump.cpp
    N src/gnu/llvm/tools/llvm-objdump/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-objdump/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-objdump/Makefile
    N src/gnu/llvm/tools/llvm-objdump/COFFDump.cpp
    N src/gnu/llvm/tools/llvm-objdump/MachODump.cpp
    N src/gnu/llvm/tools/xcode-toolchain/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-lto/llvm-lto.cpp
    N src/gnu/llvm/tools/llvm-lto/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-lto/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-lto/Makefile
    N src/gnu/llvm/tools/llvm-go/llvm-go.go
    N src/gnu/llvm/tools/llvm-go/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-go/Makefile
    N src/gnu/llvm/tools/llvm-mc/Disassembler.cpp
    N src/gnu/llvm/tools/llvm-mc/llvm-mc.cpp
    N src/gnu/llvm/tools/llvm-mc/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-mc/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-mc/Makefile
    N src/gnu/llvm/tools/llvm-mc/Disassembler.h
    N src/gnu/llvm/tools/llvm-profdata/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-profdata/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-profdata/Makefile
    N src/gnu/llvm/tools/llvm-profdata/llvm-profdata.cpp
    N src/gnu/llvm/tools/clang/ModuleInfo.txt
    N src/gnu/llvm/tools/clang/LICENSE.TXT
    N src/gnu/llvm/tools/clang/README.txt
    N src/gnu/llvm/tools/clang/.clang-format
    N src/gnu/llvm/tools/clang/.arcconfig
    N src/gnu/llvm/tools/clang/.clang-tidy
    N src/gnu/llvm/tools/clang/INSTALL.txt
    N src/gnu/llvm/tools/clang/CMakeLists.txt
    N src/gnu/llvm/tools/clang/Makefile
    N src/gnu/llvm/tools/clang/NOTES.txt
    N src/gnu/llvm/tools/clang/CODE_OWNERS.TXT
    N src/gnu/llvm/tools/clang/.gitignore
    N src/gnu/llvm/tools/clang/runtime/CMakeLists.txt
    N src/gnu/llvm/tools/clang/runtime/Makefile
    N src/gnu/llvm/tools/clang/runtime/libcxx/Makefile
    N src/gnu/llvm/tools/clang/runtime/compiler-rt/Makefile
    N src/gnu/llvm/tools/clang/runtime/compiler-rt/clang_linux_test_input.c
    N src/gnu/llvm/tools/clang/bindings/python/README.txt
    N src/gnu/llvm/tools/clang/bindings/python/clang/enumerations.py
    N src/gnu/llvm/tools/clang/bindings/python/clang/cindex.py
    N src/gnu/llvm/tools/clang/bindings/python/clang/__init__.py
    N src/gnu/llvm/tools/clang/bindings/python/examples/cindex/cindex-includes.py
    N src/gnu/llvm/tools/clang/bindings/python/examples/cindex/cindex-dump.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/__init__.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_tokens.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_translation_unit.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_token_kind.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/util.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_location.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_code_completion.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cdb.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_access_specifiers.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/__init__.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_file.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_comment.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_index.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cursor.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_diagnostics.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_type.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cursor_kind.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/parse_arguments.c
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/include.cpp
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header2.h
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header3.h
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/compile_commands.json
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/hello.cpp
    N src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header1.h
    N src/gnu/llvm/tools/clang/bindings/xml/comment-xml-schema.rng
    N src/gnu/llvm/tools/clang/unittests/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Makefile
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTestProto.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTestJS.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/SortIncludesTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Format/Makefile
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTestJava.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTestSelective.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTestUtils.h
    N src/gnu/llvm/tools/clang/unittests/Driver/ToolChainTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Driver/MultilibTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Driver/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Driver/Makefile
    N src/gnu/llvm/tools/clang/unittests/CodeGen/BufferSourceTest.cpp
    N src/gnu/llvm/tools/clang/unittests/CodeGen/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/CodeGen/Makefile
    N src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestExprVisitor.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestDeclVisitor.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestTypeLocVisitor.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/TestVisitor.h
    N src/gnu/llvm/tools/clang/unittests/Tooling/LookupTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringCallbacksTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTestContext.h
    N src/gnu/llvm/tools/clang/unittests/Tooling/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestCallVisitor.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementsYamlTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/Makefile
    N src/gnu/llvm/tools/clang/unittests/Tooling/ToolingTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/CompilationDatabaseTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/CommentHandlerTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/ASTContextParentMapTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/NamedDeclPrinterTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/ASTVectorTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/ASTTypeTraitsTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/AST/DeclPrinterTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/MatchVerifier.h
    N src/gnu/llvm/tools/clang/unittests/AST/CommentParser.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/DeclTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/Makefile
    N src/gnu/llvm/tools/clang/unittests/AST/EvaluateAsRValueTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/ExternalASTSourceTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/CommentLexer.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/StmtPrinterTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/SourceLocationTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Rewrite/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Rewrite/Makefile
    N src/gnu/llvm/tools/clang/unittests/Rewrite/RewriteBufferTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Frontend/FrontendActionTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Frontend/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Frontend/Makefile
    N src/gnu/llvm/tools/clang/unittests/Basic/SourceManagerTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Basic/DiagnosticTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Basic/CharInfoTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Basic/VirtualFileSystemTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Basic/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Basic/Makefile
    N src/gnu/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp
    N src/gnu/llvm/tools/clang/unittests/libclang/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/libclang/LibclangTest.cpp
    N src/gnu/llvm/tools/clang/unittests/libclang/Makefile
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTest.cpp
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/Makefile
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTest.h
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/RegistryTest.cpp
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/VariantValueTest.cpp
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/ParserTest.cpp
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/Makefile
    N src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/Makefile
    N src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/AnalyzerOptionsTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Lex/LexerTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Lex/PPCallbacksTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Lex/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Lex/Makefile
    N src/gnu/llvm/tools/clang/unittests/Sema/ExternalSemaSourceTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Sema/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Sema/Makefile
    N src/gnu/llvm/tools/clang/tools/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/Makefile
    N src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.cpp
    N src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.cpp
    N src/gnu/llvm/tools/clang/tools/diagtool/diagtool_main.cpp
    N src/gnu/llvm/tools/clang/tools/diagtool/ListWarnings.cpp
    N src/gnu/llvm/tools/clang/tools/diagtool/ShowEnabledWarnings.cpp
    N src/gnu/llvm/tools/clang/tools/diagtool/TreeView.cpp
    N src/gnu/llvm/tools/clang/tools/diagtool/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/diagtool/Makefile
    N src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.h
    N src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.h
    N src/gnu/llvm/tools/clang/tools/arcmt-test/arcmt-test.cpp
    N src/gnu/llvm/tools/clang/tools/arcmt-test/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/arcmt-test/Makefile
    N src/gnu/llvm/tools/clang/tools/clang-check/ClangCheck.cpp
    N src/gnu/llvm/tools/clang/tools/clang-check/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-check/Makefile
    N src/gnu/llvm/tools/clang/tools/driver/driver.cpp
    N src/gnu/llvm/tools/clang/tools/driver/Info.plist.in
    N src/gnu/llvm/tools/clang/tools/driver/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/driver/Makefile
    N src/gnu/llvm/tools/clang/tools/driver/cc1_main.cpp
    N src/gnu/llvm/tools/clang/tools/driver/cc1as_main.cpp
    N src/gnu/llvm/tools/clang/tools/c-index-test/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/c-index-test/Makefile
    N src/gnu/llvm/tools/clang/tools/c-index-test/c-index-test.c
    N src/gnu/llvm/tools/clang/tools/diag-build/diag-build.sh
    N src/gnu/llvm/tools/clang/tools/clang-format/clang-format-bbedit.applescript
    N src/gnu/llvm/tools/clang/tools/clang-format/clang-format.el
    N src/gnu/llvm/tools/clang/tools/clang-format/git-clang-format
    N src/gnu/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
    N src/gnu/llvm/tools/clang/tools/clang-format/clang-format.py
    N src/gnu/llvm/tools/clang/tools/clang-format/clang-format-diff.py
    N src/gnu/llvm/tools/clang/tools/clang-format/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-format/Makefile
    N src/gnu/llvm/tools/clang/tools/clang-format/clang-format-sublime.py
    N src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/source.extension.vsixmanifest.in
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/README.txt
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat.sln
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormat.vsct
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/VSPackage.resx
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources.Designer.cs
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/GlobalSuppressions.cs
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/PkgCmdID.cs
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Guids.cs
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources.resx
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources/Images_32bit.bmp
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources/Package.ico
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Properties/AssemblyInfo.cs
    N src/gnu/llvm/tools/clang/tools/scan-build/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/scan-build/Makefile
    N src/gnu/llvm/tools/clang/tools/scan-build/bin/set-xcode-analyzer
    N src/gnu/llvm/tools/clang/tools/scan-build/bin/scan-build.bat
    N src/gnu/llvm/tools/clang/tools/scan-build/bin/scan-build
    N src/gnu/llvm/tools/clang/tools/scan-build/share/scan-build/scanview.css
    N src/gnu/llvm/tools/clang/tools/scan-build/share/scan-build/sorttable.js
    N src/gnu/llvm/tools/clang/tools/scan-build/libexec/c++-analyzer
    N src/gnu/llvm/tools/clang/tools/scan-build/libexec/ccc-analyzer
    N src/gnu/llvm/tools/clang/tools/scan-build/libexec/c++-analyzer.bat
    N src/gnu/llvm/tools/clang/tools/scan-build/libexec/ccc-analyzer.bat
    N src/gnu/llvm/tools/clang/tools/scan-build/man/scan-build.1
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/libclang.exports
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexCodeCompletion.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/ARCMigrate.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/IndexingContext.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexUSRs.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexer.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXStoredDiagnostic.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexCXX.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/IndexTypeSourceInfo.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/IndexingContext.h
    N src/gnu/llvm/tools/clang/tools/libclang/Index_Internal.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXString.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXCursor.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexHigh.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXComment.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXType.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXComment.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXCursor.h
    N src/gnu/llvm/tools/clang/tools/libclang/CIndex.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXTranslationUnit.h
    N src/gnu/llvm/tools/clang/tools/libclang/Makefile
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexer.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.h
    N src/gnu/llvm/tools/clang/tools/libclang/CLog.h
    N src/gnu/llvm/tools/clang/tools/libclang/CursorVisitor.h
    N src/gnu/llvm/tools/clang/tools/libclang/IndexBody.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXType.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXCompilationDatabase.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/IndexDecl.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/BuildSystem.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.h
    N src/gnu/llvm/tools/clang/tools/libclang/Indexing.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CXString.cpp
    N src/gnu/llvm/tools/clang/tools/libclang/CIndexInclusionStack.cpp
    N src/gnu/llvm/tools/clang/tools/scan-view/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/scan-view/Makefile
    N src/gnu/llvm/tools/clang/tools/scan-view/bin/scan-view
    N src/gnu/llvm/tools/clang/tools/scan-view/share/ScanView.py
    N src/gnu/llvm/tools/clang/tools/scan-view/share/bugcatcher.ico
    N src/gnu/llvm/tools/clang/tools/scan-view/share/Reporter.py
    N src/gnu/llvm/tools/clang/tools/scan-view/share/FileRadar.scpt
    N src/gnu/llvm/tools/clang/tools/scan-view/share/GetRadarVersion.scpt
    N src/gnu/llvm/tools/clang/tools/scan-view/share/startfile.py
    N src/gnu/llvm/tools/clang/tools/c-arcmt-test/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/c-arcmt-test/Makefile
    N src/gnu/llvm/tools/clang/tools/c-arcmt-test/c-arcmt-test.c
    N src/gnu/llvm/tools/clang/tools/clang-fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-fuzzer/ClangFuzzer.cpp
    N src/gnu/llvm/tools/clang/tools/scan-build-py/README.md
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-cc
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-build
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-c++
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-build
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/scan-build
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-c++
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libear/config.h.in
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libear/ear.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libear/__init__.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/__init__.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/__init__.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/emit-two.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/clean-two.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/broken-two.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/clean-one.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/emit-one.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/main.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/broken-one.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_regular.json.in
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_broken.json.in
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_clean.json.in
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/include/clean-one.h
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/build/Makefile
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_from_cmd.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_from_cdb.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_exec_anatomy.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/__init__.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_create_cdb.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/config.h.in
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/main.c
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_intercept.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_command.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_report.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_runner.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/__init__.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_analyze.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_clang.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_shell.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/fixtures.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/intercept.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/clang.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/shell.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/report.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/command.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/analyze.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/__init__.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/runner.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/selectable.js
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/scanview.css
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/sorttable.js
    N src/gnu/llvm/tools/clang/include/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/Makefile
    N src/gnu/llvm/tools/clang/include/clang/module.modulemap
    N src/gnu/llvm/tools/clang/include/clang/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/Makefile
    N src/gnu/llvm/tools/clang/include/clang/Format/Format.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Types.def
    N src/gnu/llvm/tools/clang/include/clang/Driver/ToolChain.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Types.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
    N src/gnu/llvm/tools/clang/include/clang/Driver/CC1Options.td
    N src/gnu/llvm/tools/clang/include/clang/Driver/Util.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Phases.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Compilation.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/Driver/Makefile
    N src/gnu/llvm/tools/clang/include/clang/Driver/Driver.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Action.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Job.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Tool.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Options.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/Options.td
    N src/gnu/llvm/tools/clang/include/clang/Driver/Multilib.h
    N src/gnu/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
    N src/gnu/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
    N src/gnu/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
    N src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
    N src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
    N src/gnu/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
    N src/gnu/llvm/tools/clang/include/clang/Config/config.h.in
    N src/gnu/llvm/tools/clang/include/clang/Config/config.h.cmake
    N src/gnu/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/Tooling.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h
    N src/gnu/llvm/tools/clang/include/clang/AST/StmtCXX.h
    N src/gnu/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ExprObjC.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Stmt.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
    N src/gnu/llvm/tools/clang/include/clang/AST/StmtObjC.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTVector.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclTemplate.h
    N src/gnu/llvm/tools/clang/include/clang/AST/VTableBuilder.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td
    N src/gnu/llvm/tools/clang/include/clang/AST/TypeLocNodes.def
    N src/gnu/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTContext.h
    N src/gnu/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Expr.h
    N src/gnu/llvm/tools/clang/include/clang/AST/AST.h
    N src/gnu/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclCXX.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Type.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ParentMap.h
    N src/gnu/llvm/tools/clang/include/clang/AST/GlobalDecl.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TypeVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/AST/APValue.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclarationName.h
    N src/gnu/llvm/tools/clang/include/clang/AST/LambdaCapture.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclGroup.h
    N src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Decl.h
    N src/gnu/llvm/tools/clang/include/clang/AST/AttrIterator.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTLambda.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TypeLoc.h
    N src/gnu/llvm/tools/clang/include/clang/AST/NSAPI.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclLookups.h
    N src/gnu/llvm/tools/clang/include/clang/AST/VTTBuilder.h
    N src/gnu/llvm/tools/clang/include/clang/AST/RecordLayout.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentParser.h
    N src/gnu/llvm/tools/clang/include/clang/AST/StmtVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TypeOrdering.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Mangle.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/AST/CanonicalType.h
    N src/gnu/llvm/tools/clang/include/clang/AST/BaseSubobject.h
    N src/gnu/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h
    N src/gnu/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Makefile
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclFriend.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentSema.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclBase.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTFwd.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TemplateName.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Comment.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentCommands.td
    N src/gnu/llvm/tools/clang/include/clang/AST/RawCommentList.h
    N src/gnu/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
    N src/gnu/llvm/tools/clang/include/clang/AST/Redeclarable.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Attr.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TypeNodes.def
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/AST/OpenMPClause.h
    N src/gnu/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CXXInheritance.h
    N src/gnu/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ExprCXX.h
    N src/gnu/llvm/tools/clang/include/clang/AST/DeclObjC.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentLexer.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
    N src/gnu/llvm/tools/clang/include/clang/AST/StmtIterator.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CharUnits.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TemplateBase.h
    N src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.td
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTImporter.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
    N src/gnu/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
    N src/gnu/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
    N src/gnu/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
    N src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
    N src/gnu/llvm/tools/clang/include/clang/Edit/Rewriters.h
    N src/gnu/llvm/tools/clang/include/clang/Edit/Commit.h
    N src/gnu/llvm/tools/clang/include/clang/Edit/FileOffset.h
    N src/gnu/llvm/tools/clang/include/clang/Edit/EditedSource.h
    N src/gnu/llvm/tools/clang/include/clang/Edit/EditsReceiver.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/Module.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/Serialization/ASTReader.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/Makefile
    N src/gnu/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
    N src/gnu/llvm/tools/clang/include/clang/Index/CommentToXML.h
    N src/gnu/llvm/tools/clang/include/clang/Index/USRGeneration.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandards.def
    N src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/Utils.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
    N src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandard.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Specifiers.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/CharInfo.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/TargetInfo.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DeclNodes.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/Module.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/CommentOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/arm_neon.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/LLVM.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/StmtNodes.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/PlistSupport.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/AttrKinds.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/AttrDocs.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/TypeTraits.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Attributes.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Lambda.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/Attr.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/Version.inc.in
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/VersionTuple.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/ABI.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/SourceManager.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Linkage.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/Visibility.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Version.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/Makefile
    N src/gnu/llvm/tools/clang/include/clang/Basic/TargetOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/SourceLocation.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/CommentNodes.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/FileManager.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def
    N src/gnu/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Parse/Parser.h
    N src/gnu/llvm/tools/clang/include/clang/Parse/ParseAST.h
    N src/gnu/llvm/tools/clang/include/clang/Parse/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/Parse/Makefile
    N src/gnu/llvm/tools/clang/include/clang/Analysis/CodeInjector.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/CFG.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/CFGStmtMap.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/CallGraph.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowValues.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyOps.def
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
    N src/gnu/llvm/tools/clang/include/clang/FrontendTool/Utils.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
    N src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopWidening.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/Token.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/MacroArgs.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/PTHManager.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/PTHLexer.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/ModuleMap.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/Preprocessor.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/Lexer.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/MacroInfo.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMap.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/Pragma.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/TokenLexer.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/AttributeList.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Designator.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/SemaInternal.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Ownership.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/LoopHint.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Weak.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/LocInfoType.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/SemaLambda.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Scope.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Lookup.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Template.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/SemaConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Overload.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Sema.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/DeclSpec.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Makefile
    N src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/Initialization.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h
    N src/gnu/llvm/tools/clang/include/clang-c/Platform.h
    N src/gnu/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
    N src/gnu/llvm/tools/clang/include/clang-c/module.modulemap
    N src/gnu/llvm/tools/clang/include/clang-c/CXString.h
    N src/gnu/llvm/tools/clang/include/clang-c/Documentation.h
    N src/gnu/llvm/tools/clang/include/clang-c/CXErrorCode.h
    N src/gnu/llvm/tools/clang/include/clang-c/Makefile
    N src/gnu/llvm/tools/clang/include/clang-c/BuildSystem.h
    N src/gnu/llvm/tools/clang/include/clang-c/Index.h
    N src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2.cmake
    N src/gnu/llvm/tools/clang/cmake/caches/PGO.cmake
    N src/gnu/llvm/tools/clang/cmake/caches/README.txt
    N src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2-instrumented.cmake
    N src/gnu/llvm/tools/clang/cmake/caches/Apple-stage1.cmake
    N src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2.cmake
    N src/gnu/llvm/tools/clang/cmake/modules/ClangConfig.cmake
    N src/gnu/llvm/tools/clang/INPUTS/Cocoa_h.m
    N src/gnu/llvm/tools/clang/INPUTS/stpcpy-test.c
    N src/gnu/llvm/tools/clang/INPUTS/all-std-headers.cpp
    N src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain2.c
    N src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain1.c
    N src/gnu/llvm/tools/clang/INPUTS/carbon_h.c
    N src/gnu/llvm/tools/clang/INPUTS/macro_pounder_obj.c
    N src/gnu/llvm/tools/clang/INPUTS/cfg-nested-var-scopes.cpp
    N src/gnu/llvm/tools/clang/INPUTS/c99-intconst-1.c
    N src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain3.c
    N src/gnu/llvm/tools/clang/INPUTS/cfg-big-switch.c
    N src/gnu/llvm/tools/clang/INPUTS/iostream.cc
    N src/gnu/llvm/tools/clang/INPUTS/macro_pounder_fn.c
    N src/gnu/llvm/tools/clang/INPUTS/cfg-nested-switches.c
    N src/gnu/llvm/tools/clang/examples/CMakeLists.txt
    N src/gnu/llvm/tools/clang/examples/Makefile
    N src/gnu/llvm/tools/clang/examples/clang-interpreter/README.txt
    N src/gnu/llvm/tools/clang/examples/clang-interpreter/main.cpp
    N src/gnu/llvm/tools/clang/examples/clang-interpreter/CMakeLists.txt
    N src/gnu/llvm/tools/clang/examples/clang-interpreter/Makefile
    N src/gnu/llvm/tools/clang/examples/analyzer-plugin/MainCallChecker.cpp
    N src/gnu/llvm/tools/clang/examples/analyzer-plugin/CMakeLists.txt
    N src/gnu/llvm/tools/clang/examples/analyzer-plugin/Makefile
    N src/gnu/llvm/tools/clang/examples/PrintFunctionNames/README.txt
    N src/gnu/llvm/tools/clang/examples/PrintFunctionNames/CMakeLists.txt
    N src/gnu/llvm/tools/clang/examples/PrintFunctionNames/Makefile
    N src/gnu/llvm/tools/clang/examples/PrintFunctionNames/PrintFunctionNames.exports
    N src/gnu/llvm/tools/clang/examples/PrintFunctionNames/PrintFunctionNames.cpp
    N src/gnu/llvm/tools/clang/utils/find-unused-diagnostics.sh
    N src/gnu/llvm/tools/clang/utils/clang.natvis
    N src/gnu/llvm/tools/clang/utils/token-delta.py
    N src/gnu/llvm/tools/clang/utils/clang-completion-mode.el
    N src/gnu/llvm/tools/clang/utils/builtin-defines.c
    N src/gnu/llvm/tools/clang/utils/FindSpecRefs
    N src/gnu/llvm/tools/clang/utils/CaptureCmd
    N src/gnu/llvm/tools/clang/utils/FuzzTest
    N src/gnu/llvm/tools/clang/utils/ClangDataFormat.py
    N src/gnu/llvm/tools/clang/utils/CmpDriver
    N src/gnu/llvm/tools/clang/utils/perf-training/README.txt
    N src/gnu/llvm/tools/clang/utils/perf-training/perf-helper.py
    N src/gnu/llvm/tools/clang/utils/perf-training/CMakeLists.txt
    N src/gnu/llvm/tools/clang/utils/perf-training/lit.site.cfg.in
    N src/gnu/llvm/tools/clang/utils/perf-training/lit.cfg
    N src/gnu/llvm/tools/clang/utils/perf-training/cxx/hello_world.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/TableGenBackends.h
    N src/gnu/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/TableGen.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/TableGen/CMakeLists.txt
    N src/gnu/llvm/tools/clang/utils/TableGen/Makefile
    N src/gnu/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
    N src/gnu/llvm/tools/clang/utils/analyzer/SATestBuild.py
    N src/gnu/llvm/tools/clang/utils/analyzer/update_plist_test.pl
    N src/gnu/llvm/tools/clang/utils/analyzer/reducer.pl
    N src/gnu/llvm/tools/clang/utils/analyzer/CmpRuns.py
    N src/gnu/llvm/tools/clang/utils/analyzer/SumTimerInfo.py
    N src/gnu/llvm/tools/clang/utils/analyzer/SATestAdd.py
    N src/gnu/llvm/tools/clang/utils/analyzer/ubiviz
    N src/gnu/llvm/tools/clang/utils/ABITest/build.sh
    N src/gnu/llvm/tools/clang/utils/ABITest/ABITestGen.py
    N src/gnu/llvm/tools/clang/utils/ABITest/TypeGen.py
    N src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize.sh
    N src/gnu/llvm/tools/clang/utils/ABITest/summarize.sh
    N src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize-all.sh
    N src/gnu/llvm/tools/clang/utils/ABITest/Makefile.test.common
    N src/gnu/llvm/tools/clang/utils/ABITest/Enumeration.py
    N src/gnu/llvm/tools/clang/utils/ABITest/return-types-64/Makefile
    N src/gnu/llvm/tools/clang/utils/ABITest/single-args-64/Makefile
    N src/gnu/llvm/tools/clang/utils/ABITest/single-args-32/Makefile
    N src/gnu/llvm/tools/clang/utils/ABITest/layout/Makefile
    N src/gnu/llvm/tools/clang/utils/ABITest/return-types-32/Makefile
    N src/gnu/llvm/tools/clang/utils/VtableTest/check-zti
    N src/gnu/llvm/tools/clang/utils/VtableTest/check-ztt
    N src/gnu/llvm/tools/clang/utils/VtableTest/check-zvt
    N src/gnu/llvm/tools/clang/utils/VtableTest/Makefile
    N src/gnu/llvm/tools/clang/utils/VtableTest/gen.cc
    N src/gnu/llvm/tools/clang/utils/CIndex/completion_logger_server.py
    N src/gnu/llvm/tools/clang/utils/TestUtils/deep-stack.py
    N src/gnu/llvm/tools/clang/utils/TestUtils/pch-test.pl
    N src/gnu/llvm/tools/clang/utils/check_cfc/test_check_cfc.py
    N src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.py
    N src/gnu/llvm/tools/clang/utils/check_cfc/setup.py
    N src/gnu/llvm/tools/clang/utils/check_cfc/obj_diff.py
    N src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.cfg
    N src/gnu/llvm/tools/clang/utils/valgrind/x86_64-pc-linux-gnu_gcc-4.3.3.supp
    N src/gnu/llvm/tools/clang/docs/AddressSanitizer.rst
    N src/gnu/llvm/tools/clang/docs/ThreadSanitizer.rst
    N src/gnu/llvm/tools/clang/docs/ControlFlowIntegrityDesign.rst
    N src/gnu/llvm/tools/clang/docs/Modules.rst
    N src/gnu/llvm/tools/clang/docs/BlockLanguageSpec.rst
    N src/gnu/llvm/tools/clang/docs/doxygen.intro
    N src/gnu/llvm/tools/clang/docs/JSONCompilationDatabase.rst
    N src/gnu/llvm/tools/clang/docs/ThreadSafetyAnalysis.rst
    N src/gnu/llvm/tools/clang/docs/ControlFlowIntegrity.rst
    N src/gnu/llvm/tools/clang/docs/PCHLayout.png
    N src/gnu/llvm/tools/clang/docs/FAQ.rst
    N src/gnu/llvm/tools/clang/docs/LibFormat.rst
    N src/gnu/llvm/tools/clang/docs/IntroductionToTheClangAST.rst
    N src/gnu/llvm/tools/clang/docs/DriverArchitecture.png
    N src/gnu/llvm/tools/clang/docs/AttributeReference.rst
    N src/gnu/llvm/tools/clang/docs/AutomaticReferenceCounting.rst
    N src/gnu/llvm/tools/clang/docs/UsersManual.rst
    N src/gnu/llvm/tools/clang/docs/README.txt
    N src/gnu/llvm/tools/clang/docs/LanguageExtensions.rst
    N src/gnu/llvm/tools/clang/docs/SanitizerSpecialCaseList.rst
    N src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.rst
    N src/gnu/llvm/tools/clang/docs/ClangTools.rst
    N src/gnu/llvm/tools/clang/docs/RAVFrontendAction.rst
    N src/gnu/llvm/tools/clang/docs/doxygen.cfg.in
    N src/gnu/llvm/tools/clang/docs/LeakSanitizer.rst
    N src/gnu/llvm/tools/clang/docs/SanitizerCoverage.rst
    N src/gnu/llvm/tools/clang/docs/ClangPlugins.rst
    N src/gnu/llvm/tools/clang/docs/DriverInternals.rst
    N src/gnu/llvm/tools/clang/docs/make.bat
    N src/gnu/llvm/tools/clang/docs/HowToSetupToolingForLLVM.rst
    N src/gnu/llvm/tools/clang/docs/ClangFormatStyleOptions.rst
    N src/gnu/llvm/tools/clang/docs/UndefinedBehaviorSanitizer.rst
    N src/gnu/llvm/tools/clang/docs/MSVCCompatibility.rst
    N src/gnu/llvm/tools/clang/docs/PCHLayout.graffle
    N src/gnu/llvm/tools/clang/docs/CMakeLists.txt
    N src/gnu/llvm/tools/clang/docs/ObjectiveCLiterals.rst
    N src/gnu/llvm/tools/clang/docs/CrossCompilation.rst
    N src/gnu/llvm/tools/clang/docs/Tooling.rst
    N src/gnu/llvm/tools/clang/docs/InternalsManual.rst
    N src/gnu/llvm/tools/clang/docs/Makefile
    N src/gnu/llvm/tools/clang/docs/PTHInternals.rst
    N src/gnu/llvm/tools/clang/docs/ClangCheck.rst
    N src/gnu/llvm/tools/clang/docs/MemorySanitizer.rst
    N src/gnu/llvm/tools/clang/docs/DataFlowSanitizer.rst
    N src/gnu/llvm/tools/clang/docs/SafeStack.rst
    N src/gnu/llvm/tools/clang/docs/Makefile.sphinx
    N src/gnu/llvm/tools/clang/docs/ReleaseNotes.rst
    N src/gnu/llvm/tools/clang/docs/PCHInternals.rst
    N src/gnu/llvm/tools/clang/docs/ClangFormat.rst
    N src/gnu/llvm/tools/clang/docs/conf.py
    N src/gnu/llvm/tools/clang/docs/DataFlowSanitizerDesign.rst
    N src/gnu/llvm/tools/clang/docs/LibTooling.rst
    N src/gnu/llvm/tools/clang/docs/LibASTMatchersTutorial.rst
    N src/gnu/llvm/tools/clang/docs/LibASTMatchersReference.html
    N src/gnu/llvm/tools/clang/docs/index.rst
    N src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.txt
    N src/gnu/llvm/tools/clang/docs/ExternalClangExamples.rst
    N src/gnu/llvm/tools/clang/docs/LibASTMatchers.rst
    N src/gnu/llvm/tools/clang/docs/CommandGuide/clang.rst
    N src/gnu/llvm/tools/clang/docs/CommandGuide/index.rst
    N src/gnu/llvm/tools/clang/docs/analyzer/nullability.rst
    N src/gnu/llvm/tools/clang/docs/analyzer/make.bat
    N src/gnu/llvm/tools/clang/docs/analyzer/Makefile
    N src/gnu/llvm/tools/clang/docs/analyzer/RegionStore.txt
    N src/gnu/llvm/tools/clang/docs/analyzer/DebugChecks.rst
    N src/gnu/llvm/tools/clang/docs/analyzer/conf.py
    N src/gnu/llvm/tools/clang/docs/analyzer/index.rst
    N src/gnu/llvm/tools/clang/docs/analyzer/IPA.txt
    N src/gnu/llvm/tools/clang/docs/tools/dump_ast_matchers.py
    N src/gnu/llvm/tools/clang/docs/tools/dump_format_style.py
    N src/gnu/llvm/tools/clang/www/libstdc++4.6-clang11.patch
    N src/gnu/llvm/tools/clang/www/libstdc++4.4-clang0x.patch
    N src/gnu/llvm/tools/clang/www/robots.txt
    N src/gnu/llvm/tools/clang/www/builtins.py
    N src/gnu/llvm/tools/clang/www/feature-compile1.png
    N src/gnu/llvm/tools/clang/www/feature-memory1.png
    N src/gnu/llvm/tools/clang/www/carbon-compile.png
    N src/gnu/llvm/tools/clang/www/cxx_status.html
    N src/gnu/llvm/tools/clang/www/related.html
    N src/gnu/llvm/tools/clang/www/OpenProjects.html
    N src/gnu/llvm/tools/clang/www/libstdc++4.7-clang11.patch
    N src/gnu/llvm/tools/clang/www/make_cxx_dr_status
    N src/gnu/llvm/tools/clang/www/feature-compile2.png
    N src/gnu/llvm/tools/clang/www/get_started.html
    N src/gnu/llvm/tools/clang/www/favicon.ico
    N src/gnu/llvm/tools/clang/www/clang_video-05-25-2007.html
    N src/gnu/llvm/tools/clang/www/menu.css
    N src/gnu/llvm/tools/clang/www/comparison.html
    N src/gnu/llvm/tools/clang/www/index.html
    N src/gnu/llvm/tools/clang/www/UniversalDriver.html
    N src/gnu/llvm/tools/clang/www/get_involved.html
    N src/gnu/llvm/tools/clang/www/features.html
    N src/gnu/llvm/tools/clang/www/menu.html.incl
    N src/gnu/llvm/tools/clang/www/diagnostics.html
    N src/gnu/llvm/tools/clang/www/cxx_dr_status.html
    N src/gnu/llvm/tools/clang/www/cxx_compatibility.html
    N src/gnu/llvm/tools/clang/www/clang_video-07-25-2007.html
    N src/gnu/llvm/tools/clang/www/content.css
    N src/gnu/llvm/tools/clang/www/compatibility.html
    N src/gnu/llvm/tools/clang/www/hacking.html
    N src/gnu/llvm/tools/clang/www/analyzer/alpha_checks.html
    N src/gnu/llvm/tools/clang/www/analyzer/implicit_checks.html
    N src/gnu/llvm/tools/clang/www/analyzer/annotations.html
    N src/gnu/llvm/tools/clang/www/analyzer/available_checks.html
    N src/gnu/llvm/tools/clang/www/analyzer/potential_checkers.html
    N src/gnu/llvm/tools/clang/www/analyzer/open_projects.html
    N src/gnu/llvm/tools/clang/www/analyzer/menu.css
    N src/gnu/llvm/tools/clang/www/analyzer/latest_checker.html.incl
    N src/gnu/llvm/tools/clang/www/analyzer/index.html
    N src/gnu/llvm/tools/clang/www/analyzer/filing_bugs.html
    N src/gnu/llvm/tools/clang/www/analyzer/checker_dev_manual.html
    N src/gnu/llvm/tools/clang/www/analyzer/faq.html
    N src/gnu/llvm/tools/clang/www/analyzer/scan-build.html
    N src/gnu/llvm/tools/clang/www/analyzer/menu.html.incl
    N src/gnu/llvm/tools/clang/www/analyzer/content.css
    N src/gnu/llvm/tools/clang/www/analyzer/release_notes.html
    N src/gnu/llvm/tools/clang/www/analyzer/xcode.html
    N src/gnu/llvm/tools/clang/www/analyzer/installation.html
    N src/gnu/llvm/tools/clang/www/analyzer/scripts/expandcollapse.js
    N src/gnu/llvm/tools/clang/www/analyzer/scripts/menu.js
    N src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_html.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/example_null_pointer.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/example_ns_returns_retained.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/scan_build_cmd.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/example_custom_assert.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/example_use_assert.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_xcode.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/example_attribute_nonnull.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained_gc.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained.png
    N src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_dark.gif
    N src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_light.gif
    N src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_light.gif
    N src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_dark.gif
    N src/gnu/llvm/tools/clang/www/demo/DemoInfo.html
    N src/gnu/llvm/tools/clang/www/demo/index.cgi
    N src/gnu/llvm/tools/clang/www/demo/cathead.png
    N src/gnu/llvm/tools/clang/www/demo/what is this directory.txt
    N src/gnu/llvm/tools/clang/www/demo/syntax.css
    N src/gnu/llvm/tools/clang/lib/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Makefile
    N src/gnu/llvm/tools/clang/lib/Headers/xsavecintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/rdseedintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/xmmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/mmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512erintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512bwintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/inttypes.h
    N src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
    N src/gnu/llvm/tools/clang/lib/Headers/xopintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
    N src/gnu/llvm/tools/clang/lib/Headers/iso646.h
    N src/gnu/llvm/tools/clang/lib/Headers/mm_malloc.h
    N src/gnu/llvm/tools/clang/lib/Headers/fxsrintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/limits.h
    N src/gnu/llvm/tools/clang/lib/Headers/adxintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/tbmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/altivec.h
    N src/gnu/llvm/tools/clang/lib/Headers/htmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/lzcntintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/float.h
    N src/gnu/llvm/tools/clang/lib/Headers/module.modulemap
    N src/gnu/llvm/tools/clang/lib/Headers/vadefs.h
    N src/gnu/llvm/tools/clang/lib/Headers/emmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/arm_acle.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx2intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/s390intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/stdatomic.h
    N src/gnu/llvm/tools/clang/lib/Headers/fma4intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/ia32intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/rtmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/bmiintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/stdint.h
    N src/gnu/llvm/tools/clang/lib/Headers/xtestintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/Intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/bmi2intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/ammintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/x86intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Headers/avx512dqintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/Makefile
    N src/gnu/llvm/tools/clang/lib/Headers/cpuid.h
    N src/gnu/llvm/tools/clang/lib/Headers/popcntintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/stdnoreturn.h
    N src/gnu/llvm/tools/clang/lib/Headers/unwind.h
    N src/gnu/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/pmmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/stdalign.h
    N src/gnu/llvm/tools/clang/lib/Headers/avxintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/tgmath.h
    N src/gnu/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h
    N src/gnu/llvm/tools/clang/lib/Headers/wmmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/htmxlintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h
    N src/gnu/llvm/tools/clang/lib/Headers/pkuintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/tmmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/stdbool.h
    N src/gnu/llvm/tools/clang/lib/Headers/fmaintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/xsaveintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512fintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/varargs.h
    N src/gnu/llvm/tools/clang/lib/Headers/immintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/shaintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512cdintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/nmmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/xsavesintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/f16cintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/mm3dnow.h
    N src/gnu/llvm/tools/clang/lib/Headers/vecintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/smmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/stddef.h
    N src/gnu/llvm/tools/clang/lib/Headers/stdarg.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512vlintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/prfchwintrin.h
    N src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
    N src/gnu/llvm/tools/clang/lib/Format/FormatToken.h
    N src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.h
    N src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
    N src/gnu/llvm/tools/clang/lib/Format/BreakableToken.cpp
    N src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.h
    N src/gnu/llvm/tools/clang/lib/Format/FormatToken.cpp
    N src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
    N src/gnu/llvm/tools/clang/lib/Format/BreakableToken.h
    N src/gnu/llvm/tools/clang/lib/Format/Encoding.h
    N src/gnu/llvm/tools/clang/lib/Format/Format.cpp
    N src/gnu/llvm/tools/clang/lib/Format/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
    N src/gnu/llvm/tools/clang/lib/Format/Makefile
    N src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
    N src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.h
    N src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
    N src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Driver.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Job.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Types.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Action.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Compilation.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Multilib.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/DriverOptions.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains.h
    N src/gnu/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Driver/Tool.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Makefile
    N src/gnu/llvm/tools/clang/lib/Driver/Tools.h
    N src/gnu/llvm/tools/clang/lib/Driver/Phases.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/InputInfo.h
    N src/gnu/llvm/tools/clang/lib/Driver/Tools.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChain.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGClass.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGException.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/README.txt
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGBuilder.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/Makefile
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/ABIInfo.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/Address.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGValue.h
    N src/gnu/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/Tooling.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/Refactoring.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/Makefile
    N src/gnu/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/Core/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Tooling/Core/Makefile
    N src/gnu/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ExprClassification.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CXXInheritance.cpp
    N src/gnu/llvm/tools/clang/lib/AST/Stmt.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ASTDumper.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclPrinter.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclarationName.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclFriend.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
    N src/gnu/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
    N src/gnu/llvm/tools/clang/lib/AST/TemplateBase.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclObjC.cpp
    N src/gnu/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ExprObjC.cpp
    N src/gnu/llvm/tools/clang/lib/AST/StmtObjC.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CXXABI.h
    N src/gnu/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
    N src/gnu/llvm/tools/clang/lib/AST/RawCommentList.cpp
    N src/gnu/llvm/tools/clang/lib/AST/StmtViz.cpp
    N src/gnu/llvm/tools/clang/lib/AST/TypePrinter.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
    N src/gnu/llvm/tools/clang/lib/AST/AttrImpl.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclBase.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclGroup.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ExprConstant.cpp
    N src/gnu/llvm/tools/clang/lib/AST/OpenMPClause.cpp
    N src/gnu/llvm/tools/clang/lib/AST/StmtPrinter.cpp
    N src/gnu/llvm/tools/clang/lib/AST/VTTBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/AST/TemplateName.cpp
    N src/gnu/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclTemplate.cpp
    N src/gnu/llvm/tools/clang/lib/AST/VTableBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/AST/Expr.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ASTContext.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/AST/StmtCXX.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ParentMap.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CommentParser.cpp
    N src/gnu/llvm/tools/clang/lib/AST/Comment.cpp
    N src/gnu/llvm/tools/clang/lib/AST/Decl.cpp
    N src/gnu/llvm/tools/clang/lib/AST/TypeLoc.cpp
    N src/gnu/llvm/tools/clang/lib/AST/StmtProfile.cpp
    N src/gnu/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/AST/Makefile
    N src/gnu/llvm/tools/clang/lib/AST/Mangle.cpp
    N src/gnu/llvm/tools/clang/lib/AST/DeclCXX.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CommentLexer.cpp
    N src/gnu/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ExprCXX.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ASTImporter.cpp
    N src/gnu/llvm/tools/clang/lib/AST/Type.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ASTConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/AST/RecordLayout.cpp
    N src/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
    N src/gnu/llvm/tools/clang/lib/AST/NSAPI.cpp
    N src/gnu/llvm/tools/clang/lib/AST/InheritViz.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CommentSema.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
    N src/gnu/llvm/tools/clang/lib/AST/APValue.cpp
    N src/gnu/llvm/tools/clang/lib/AST/StmtIterator.cpp
    N src/gnu/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/Makefile
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.h
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/Internals.h
    N src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
    N src/gnu/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp
    N src/gnu/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
    N src/gnu/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
    N src/gnu/llvm/tools/clang/lib/Rewrite/Rewriter.cpp
    N src/gnu/llvm/tools/clang/lib/Rewrite/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Rewrite/Makefile
    N src/gnu/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp
    N src/gnu/llvm/tools/clang/lib/Edit/EditedSource.cpp
    N src/gnu/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
    N src/gnu/llvm/tools/clang/lib/Edit/Commit.cpp
    N src/gnu/llvm/tools/clang/lib/Edit/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Edit/Makefile
    N src/gnu/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.h
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTReader.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Serialization/Makefile
    N src/gnu/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/Module.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
    N src/gnu/llvm/tools/clang/lib/Index/USRGeneration.cpp
    N src/gnu/llvm/tools/clang/lib/Index/CommentToXML.cpp
    N src/gnu/llvm/tools/clang/lib/Index/SimpleFormatContext.h
    N src/gnu/llvm/tools/clang/lib/Index/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Index/Makefile
    N src/gnu/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/LangStandards.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Makefile
    N src/gnu/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.h
    N src/gnu/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteTest.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/Makefile
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
    N src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Diagnostic.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/CharInfo.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/LangOptions.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/SourceManager.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Warnings.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/SourceLocation.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/TargetInfo.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/TokenKinds.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Version.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Basic/Makefile
    N src/gnu/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Attributes.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Module.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Builtins.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/VersionTuple.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Targets.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Sanitizers.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/FileManager.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseStmt.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseTentative.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParsePragma.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseDecl.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseInit.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/Makefile
    N src/gnu/llvm/tools/clang/lib/Parse/ParseObjc.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/Parser.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h
    N src/gnu/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseAST.cpp
    N src/gnu/llvm/tools/clang/lib/Parse/ParseExpr.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CFG.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyLogical.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.h
    N src/gnu/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CallGraph.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/Makefile
    N src/gnu/llvm/tools/clang/lib/Analysis/Dominators.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
    N src/gnu/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CodeInjector.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/FormatString.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/Consumed.cpp
    N src/gnu/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
    N src/gnu/llvm/tools/clang/lib/FrontendTool/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/FrontendTool/Makefile
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Makefile
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Makefile
    N src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/README.txt
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Makefile
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Makefile
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Makefile
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/Makefile
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/ModuleMap.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PPExpressions.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/MacroArgs.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/MacroInfo.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/Lexer.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/Preprocessor.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PPCaching.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/Pragma.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Lex/HeaderMap.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PPCallbacks.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/Makefile
    N src/gnu/llvm/tools/clang/lib/Lex/TokenLexer.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PTHLexer.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/PPDirectives.cpp
    N src/gnu/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
    N src/gnu/llvm/tools/clang/lib/Sema/SemaStmt.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaOverload.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaLambda.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/AttributeList.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/Sema.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/DeclSpec.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaDecl.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/TreeTransform.h
    N src/gnu/llvm/tools/clang/lib/Sema/Scope.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaCast.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/Makefile
    N src/gnu/llvm/tools/clang/lib/Sema/SemaExpr.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaInit.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
    N src/gnu/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaType.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaChecking.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaAttr.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaLookup.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaAccess.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
    N src/gnu/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
    N src/gnu/llvm/autoconf/configure.ac
    N src/gnu/llvm/autoconf/config.sub
    N src/gnu/llvm/autoconf/config.guess
    N src/gnu/llvm/autoconf/missing
    N src/gnu/llvm/autoconf/LICENSE.TXT
    N src/gnu/llvm/autoconf/mkinstalldirs
    N src/gnu/llvm/autoconf/install-sh
    N src/gnu/llvm/autoconf/AutoRegen.sh
    N src/gnu/llvm/autoconf/README.TXT
    N src/gnu/llvm/autoconf/ExportMap.map
    N src/gnu/llvm/autoconf/m4/config_project.m4
    N src/gnu/llvm/autoconf/m4/check_gnu_make.m4
    N src/gnu/llvm/autoconf/m4/header_mmap_anonymous.m4
    N src/gnu/llvm/autoconf/m4/build_exeext.m4
    N src/gnu/llvm/autoconf/m4/need_dev_zero_for_mmap.m4
    N src/gnu/llvm/autoconf/m4/find_std_program.m4
    N src/gnu/llvm/autoconf/m4/config_makefile.m4
    N src/gnu/llvm/autoconf/m4/linux_mixed_64_32.m4
    N src/gnu/llvm/autoconf/m4/visibility_inlines_hidden.m4
    N src/gnu/llvm/autoconf/m4/sanity_check.m4
    N src/gnu/llvm/autoconf/m4/huge_val.m4
    N src/gnu/llvm/autoconf/m4/cxx_flag_check.m4
    N src/gnu/llvm/autoconf/m4/link_options.m4
    N src/gnu/llvm/autoconf/m4/c_printf_a.m4
    N src/gnu/llvm/autoconf/m4/func_mmap_file.m4
    N src/gnu/llvm/autoconf/m4/define_subst.m4
    N src/gnu/llvm/autoconf/m4/single_cxx_check.m4
    N src/gnu/llvm/include/llvm-c/lto.h
    N src/gnu/llvm/include/llvm-c/Support.h
    N src/gnu/llvm/include/llvm-c/BitWriter.h
    N src/gnu/llvm/include/llvm-c/ErrorHandling.h
    N src/gnu/llvm/include/llvm-c/Types.h
    N src/gnu/llvm/include/llvm-c/Linker.h
    N src/gnu/llvm/include/llvm-c/module.modulemap
    N src/gnu/llvm/include/llvm-c/Object.h
    N src/gnu/llvm/include/llvm-c/IRReader.h
    N src/gnu/llvm/include/llvm-c/BitReader.h
    N src/gnu/llvm/include/llvm-c/OrcBindings.h
    N src/gnu/llvm/include/llvm-c/Initialization.h
    N src/gnu/llvm/include/llvm-c/ExecutionEngine.h
    N src/gnu/llvm/include/llvm-c/Analysis.h
    N src/gnu/llvm/include/llvm-c/Target.h
    N src/gnu/llvm/include/llvm-c/Disassembler.h
    N src/gnu/llvm/include/llvm-c/TargetMachine.h
    N src/gnu/llvm/include/llvm-c/LinkTimeOptimizer.h
    N src/gnu/llvm/include/llvm-c/Core.h
    N src/gnu/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
    N src/gnu/llvm/include/llvm-c/Transforms/Vectorize.h
    N src/gnu/llvm/include/llvm-c/Transforms/IPO.h
    N src/gnu/llvm/include/llvm-c/Transforms/Scalar.h
    N src/gnu/llvm/include/llvm/Pass.h
    N src/gnu/llvm/include/llvm/InitializePasses.h
    N src/gnu/llvm/include/llvm/PassSupport.h
    N src/gnu/llvm/include/llvm/module.modulemap
    N src/gnu/llvm/include/llvm/PassRegistry.h
    N src/gnu/llvm/include/llvm/LinkAllPasses.h
    N src/gnu/llvm/include/llvm/LinkAllIR.h
    N src/gnu/llvm/include/llvm/CMakeLists.txt
    N src/gnu/llvm/include/llvm/PassAnalysisSupport.h
    N src/gnu/llvm/include/llvm/PassInfo.h
    N src/gnu/llvm/include/llvm/module.modulemap.build
    N src/gnu/llvm/include/llvm/LibDriver/LibDriver.h
    N src/gnu/llvm/include/llvm/LTO/LTOModule.h
    N src/gnu/llvm/include/llvm/LTO/LTOCodeGenerator.h
    N src/gnu/llvm/include/llvm/ADT/SmallBitVector.h
    N src/gnu/llvm/include/llvm/ADT/ilist_node.h
    N src/gnu/llvm/include/llvm/ADT/SparseSet.h
    N src/gnu/llvm/include/llvm/ADT/SetVector.h
    N src/gnu/llvm/include/llvm/ADT/IntEqClasses.h
    N src/gnu/llvm/include/llvm/ADT/edit_distance.h
    N src/gnu/llvm/include/llvm/ADT/STLExtras.h
    N src/gnu/llvm/include/llvm/ADT/SmallPtrSet.h
    N src/gnu/llvm/include/llvm/ADT/FoldingSet.h
    N src/gnu/llvm/include/llvm/ADT/Optional.h
    N src/gnu/llvm/include/llvm/ADT/DenseMap.h
    N src/gnu/llvm/include/llvm/ADT/IndexedMap.h
    N src/gnu/llvm/include/llvm/ADT/Triple.h
    N src/gnu/llvm/include/llvm/ADT/StringExtras.h
    N src/gnu/llvm/include/llvm/ADT/PointerSumType.h
    N src/gnu/llvm/include/llvm/ADT/StringSwitch.h
    N src/gnu/llvm/include/llvm/ADT/Statistic.h
    N src/gnu/llvm/include/llvm/ADT/PriorityQueue.h
    N src/gnu/llvm/include/llvm/ADT/StringSet.h
    N src/gnu/llvm/include/llvm/ADT/DeltaAlgorithm.h
    N src/gnu/llvm/include/llvm/ADT/ImmutableSet.h
    N src/gnu/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
    N src/gnu/llvm/include/llvm/ADT/PointerEmbeddedInt.h
    N src/gnu/llvm/include/llvm/ADT/SparseBitVector.h
    N src/gnu/llvm/include/llvm/ADT/UniqueVector.h
    N src/gnu/llvm/include/llvm/ADT/DenseSet.h
    N src/gnu/llvm/include/llvm/ADT/SparseMultiSet.h
    N src/gnu/llvm/include/llvm/ADT/VariadicFunction.h
    N src/gnu/llvm/include/llvm/ADT/BitVector.h
    N src/gnu/llvm/include/llvm/ADT/PointerUnion.h
    N src/gnu/llvm/include/llvm/ADT/PostOrderIterator.h
    N src/gnu/llvm/include/llvm/ADT/StringMap.h
    N src/gnu/llvm/include/llvm/ADT/SetOperations.h
    N src/gnu/llvm/include/llvm/ADT/IntervalMap.h
    N src/gnu/llvm/include/llvm/ADT/StringRef.h
    N src/gnu/llvm/include/llvm/ADT/ImmutableMap.h
    N src/gnu/llvm/include/llvm/ADT/ImmutableList.h
    N src/gnu/llvm/include/llvm/ADT/TinyPtrVector.h
    N src/gnu/llvm/include/llvm/ADT/SmallString.h
    N src/gnu/llvm/include/llvm/ADT/iterator_range.h
    N src/gnu/llvm/include/llvm/ADT/PackedVector.h
    N src/gnu/llvm/include/llvm/ADT/ilist.h
    N src/gnu/llvm/include/llvm/ADT/Hashing.h
    N src/gnu/llvm/include/llvm/ADT/GraphTraits.h
    N src/gnu/llvm/include/llvm/ADT/APFloat.h
    N src/gnu/llvm/include/llvm/ADT/EquivalenceClasses.h
    N src/gnu/llvm/include/llvm/ADT/None.h
    N src/gnu/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
    N src/gnu/llvm/include/llvm/ADT/SCCIterator.h
    N src/gnu/llvm/include/llvm/ADT/SmallVector.h
    N src/gnu/llvm/include/llvm/ADT/MapVector.h
    N src/gnu/llvm/include/llvm/ADT/APSInt.h
    N src/gnu/llvm/include/llvm/ADT/SmallSet.h
    N src/gnu/llvm/include/llvm/ADT/ArrayRef.h
    N src/gnu/llvm/include/llvm/ADT/ScopedHashTable.h
    N src/gnu/llvm/include/llvm/ADT/APInt.h
    N src/gnu/llvm/include/llvm/ADT/EpochTracker.h
    N src/gnu/llvm/include/llvm/ADT/DenseMapInfo.h
    N src/gnu/llvm/include/llvm/ADT/DepthFirstIterator.h
    N src/gnu/llvm/include/llvm/ADT/iterator.h
    N src/gnu/llvm/include/llvm/ADT/PointerIntPair.h
    N src/gnu/llvm/include/llvm/ADT/Twine.h
    N src/gnu/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
    N src/gnu/llvm/include/llvm/CodeGen/LexicalScopes.h
    N src/gnu/llvm/include/llvm/CodeGen/GCMetadata.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
    N src/gnu/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
    N src/gnu/llvm/include/llvm/CodeGen/ValueTypes.td
    N src/gnu/llvm/include/llvm/CodeGen/BasicTTIImpl.h
    N src/gnu/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
    N src/gnu/llvm/include/llvm/CodeGen/MachinePostDominators.h
    N src/gnu/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundle.h
    N src/gnu/llvm/include/llvm/CodeGen/IntrinsicLowering.h
    N src/gnu/llvm/include/llvm/CodeGen/MachORelocation.h
    N src/gnu/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineFunctionPass.h
    N src/gnu/llvm/include/llvm/CodeGen/CommandFlags.h
    N src/gnu/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/MIRYamlMapping.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineMemOperand.h
    N src/gnu/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
    N src/gnu/llvm/include/llvm/CodeGen/Passes.h
    N src/gnu/llvm/include/llvm/CodeGen/PseudoSourceValue.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h
    N src/gnu/llvm/include/llvm/CodeGen/MachinePassRegistry.h
    N src/gnu/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
    N src/gnu/llvm/include/llvm/CodeGen/RegisterScavenging.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/DFAPacketizer.h
    N src/gnu/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
    N src/gnu/llvm/include/llvm/CodeGen/SlotIndexes.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineDominators.h
    N src/gnu/llvm/include/llvm/CodeGen/FastISel.h
    N src/gnu/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineValueType.h
    N src/gnu/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
    N src/gnu/llvm/include/llvm/CodeGen/RegisterClassInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/TargetSchedule.h
    N src/gnu/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
    N src/gnu/llvm/include/llvm/CodeGen/DIE.h
    N src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
    N src/gnu/llvm/include/llvm/CodeGen/LiveInterval.h
    N src/gnu/llvm/include/llvm/CodeGen/ISDOpcodes.h
    N src/gnu/llvm/include/llvm/CodeGen/ValueTypes.h
    N src/gnu/llvm/include/llvm/CodeGen/LivePhysRegs.h
    N src/gnu/llvm/include/llvm/CodeGen/ParallelCG.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
    N src/gnu/llvm/include/llvm/CodeGen/StackProtector.h
    N src/gnu/llvm/include/llvm/CodeGen/RegAllocPBQP.h
    N src/gnu/llvm/include/llvm/CodeGen/SelectionDAG.h
    N src/gnu/llvm/include/llvm/CodeGen/SchedulerRegistry.h
    N src/gnu/llvm/include/llvm/CodeGen/GCStrategy.h
    N src/gnu/llvm/include/llvm/CodeGen/LiveVariables.h
    N src/gnu/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineOperand.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineScheduler.h
    N src/gnu/llvm/include/llvm/CodeGen/RegAllocRegistry.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineRegionInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineFunction.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineBasicBlock.h
    N src/gnu/llvm/include/llvm/CodeGen/ScheduleDAG.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h
    N src/gnu/llvm/include/llvm/CodeGen/DIEValue.def
    N src/gnu/llvm/include/llvm/CodeGen/ScheduleDFS.h
    N src/gnu/llvm/include/llvm/CodeGen/LiveRegMatrix.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
    N src/gnu/llvm/include/llvm/CodeGen/VirtRegMap.h
    N src/gnu/llvm/include/llvm/CodeGen/StackMaps.h
    N src/gnu/llvm/include/llvm/CodeGen/LiveRangeEdit.h
    N src/gnu/llvm/include/llvm/CodeGen/RegisterPressure.h
    N src/gnu/llvm/include/llvm/CodeGen/Analysis.h
    N src/gnu/llvm/include/llvm/CodeGen/AsmPrinter.h
    N src/gnu/llvm/include/llvm/CodeGen/GCs.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineLoopInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/CalcSpillWeights.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/SelectionDAGISel.h
    N src/gnu/llvm/include/llvm/CodeGen/DAGCombine.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineFrameInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/EdgeBundles.h
    N src/gnu/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
    N src/gnu/llvm/include/llvm/CodeGen/LiveStackAnalysis.h
    N src/gnu/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
    N src/gnu/llvm/include/llvm/CodeGen/CallingConvLower.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineInstr.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineConstantPool.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
    N src/gnu/llvm/include/llvm/CodeGen/FaultMaps.h
    N src/gnu/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
    N src/gnu/llvm/include/llvm/CodeGen/PBQP/Math.h
    N src/gnu/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h
    N src/gnu/llvm/include/llvm/CodeGen/PBQP/Graph.h
    N src/gnu/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
    N src/gnu/llvm/include/llvm/CodeGen/PBQP/Solution.h
    N src/gnu/llvm/include/llvm/Passes/PassBuilder.h
    N src/gnu/llvm/include/llvm/Option/OptTable.h
    N src/gnu/llvm/include/llvm/Option/OptParser.td
    N src/gnu/llvm/include/llvm/Option/ArgList.h
    N src/gnu/llvm/include/llvm/Option/Option.h
    N src/gnu/llvm/include/llvm/Option/OptSpecifier.h
    N src/gnu/llvm/include/llvm/Option/Arg.h
    N src/gnu/llvm/include/llvm/IR/Statepoint.h
    N src/gnu/llvm/include/llvm/IR/Intrinsics.td
    N src/gnu/llvm/include/llvm/IR/PatternMatch.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsSystemZ.td
    N src/gnu/llvm/include/llvm/IR/Value.h
    N src/gnu/llvm/include/llvm/IR/GlobalVariable.h
    N src/gnu/llvm/include/llvm/IR/MDBuilder.h
    N src/gnu/llvm/include/llvm/IR/Value.def
    N src/gnu/llvm/include/llvm/IR/Constants.h
    N src/gnu/llvm/include/llvm/IR/AutoUpgrade.h
    N src/gnu/llvm/include/llvm/IR/TypeFinder.h
    N src/gnu/llvm/include/llvm/IR/GlobalAlias.h
    N src/gnu/llvm/include/llvm/IR/ValueSymbolTable.h
    N src/gnu/llvm/include/llvm/IR/DebugInfoMetadata.h
    N src/gnu/llvm/include/llvm/IR/ModuleSlotTracker.h
    N src/gnu/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
    N src/gnu/llvm/include/llvm/IR/Intrinsics.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsNVVM.td
    N src/gnu/llvm/include/llvm/IR/LLVMContext.h
    N src/gnu/llvm/include/llvm/IR/Module.h
    N src/gnu/llvm/include/llvm/IR/DebugInfoFlags.def
    N src/gnu/llvm/include/llvm/IR/DerivedTypes.h
    N src/gnu/llvm/include/llvm/IR/Mangler.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
    N src/gnu/llvm/include/llvm/IR/PredIteratorCache.h
    N src/gnu/llvm/include/llvm/IR/IRBuilder.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsXCore.td
    N src/gnu/llvm/include/llvm/IR/DIBuilder.h
    N src/gnu/llvm/include/llvm/IR/InlineAsm.h
    N src/gnu/llvm/include/llvm/IR/Constant.h
    N src/gnu/llvm/include/llvm/IR/TypeBuilder.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsMips.td
    N src/gnu/llvm/include/llvm/IR/IntrinsicsX86.td
    N src/gnu/llvm/include/llvm/IR/FunctionInfo.h
    N src/gnu/llvm/include/llvm/IR/Metadata.h
    N src/gnu/llvm/include/llvm/IR/DiagnosticInfo.h
    N src/gnu/llvm/include/llvm/IR/Dominators.h
    N src/gnu/llvm/include/llvm/IR/Type.h
    N src/gnu/llvm/include/llvm/IR/Argument.h
    N src/gnu/llvm/include/llvm/IR/CallSite.h
    N src/gnu/llvm/include/llvm/IR/OperandTraits.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsARM.td
    N src/gnu/llvm/include/llvm/IR/LegacyPassManager.h
    N src/gnu/llvm/include/llvm/IR/BasicBlock.h
    N src/gnu/llvm/include/llvm/IR/Use.h
    N src/gnu/llvm/include/llvm/IR/CFG.h
    N src/gnu/llvm/include/llvm/IR/Attributes.h
    N src/gnu/llvm/include/llvm/IR/Operator.h
    N src/gnu/llvm/include/llvm/IR/DiagnosticPrinter.h
    N src/gnu/llvm/include/llvm/IR/GlobalObject.h
    N src/gnu/llvm/include/llvm/IR/ConstantFolder.h
    N src/gnu/llvm/include/llvm/IR/ValueHandle.h
    N src/gnu/llvm/include/llvm/IR/PassManager.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicInst.h
    N src/gnu/llvm/include/llvm/IR/Verifier.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsAArch64.td
    N src/gnu/llvm/include/llvm/IR/PassManagerInternal.h
    N src/gnu/llvm/include/llvm/IR/CMakeLists.txt
    N src/gnu/llvm/include/llvm/IR/IntrinsicsHexagon.td
    N src/gnu/llvm/include/llvm/IR/Instruction.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsPowerPC.td
    N src/gnu/llvm/include/llvm/IR/GlobalValue.h
    N src/gnu/llvm/include/llvm/IR/DebugLoc.h
    N src/gnu/llvm/include/llvm/IR/InstrTypes.h
    N src/gnu/llvm/include/llvm/IR/GVMaterializer.h
    N src/gnu/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
    N src/gnu/llvm/include/llvm/IR/Attributes.td
    N src/gnu/llvm/include/llvm/IR/NoFolder.h
    N src/gnu/llvm/include/llvm/IR/SymbolTableListTraits.h
    N src/gnu/llvm/include/llvm/IR/IRPrintingPasses.h
    N src/gnu/llvm/include/llvm/IR/ConstantRange.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
    N src/gnu/llvm/include/llvm/IR/LegacyPassNameParser.h
    N src/gnu/llvm/include/llvm/IR/LegacyPassManagers.h
    N src/gnu/llvm/include/llvm/IR/InstVisitor.h
    N src/gnu/llvm/include/llvm/IR/ValueMap.h
    N src/gnu/llvm/include/llvm/IR/CallingConv.h
    N src/gnu/llvm/include/llvm/IR/DebugInfo.h
    N src/gnu/llvm/include/llvm/IR/InstIterator.h
    N src/gnu/llvm/include/llvm/IR/Metadata.def
    N src/gnu/llvm/include/llvm/IR/User.h
    N src/gnu/llvm/include/llvm/IR/IntrinsicsBPF.td
    N src/gnu/llvm/include/llvm/IR/UseListOrder.h
    N src/gnu/llvm/include/llvm/IR/Function.h
    N src/gnu/llvm/include/llvm/IR/TrackingMDRef.h
    N src/gnu/llvm/include/llvm/IR/Comdat.h
    N src/gnu/llvm/include/llvm/IR/Instruction.def
    N src/gnu/llvm/include/llvm/IR/Instructions.h
    N src/gnu/llvm/include/llvm/IR/DataLayout.h
    N src/gnu/llvm/include/llvm/Object/ObjectFile.h
    N src/gnu/llvm/include/llvm/Object/ELFYAML.h
    N src/gnu/llvm/include/llvm/Object/COFFImportFile.h
    N src/gnu/llvm/include/llvm/Object/Archive.h
    N src/gnu/llvm/include/llvm/Object/StackMapParser.h
    N src/gnu/llvm/include/llvm/Object/ArchiveWriter.h
    N src/gnu/llvm/include/llvm/Object/FunctionIndexObjectFile.h
    N src/gnu/llvm/include/llvm/Object/MachOUniversal.h
    N src/gnu/llvm/include/llvm/Object/ELFObjectFile.h
    N src/gnu/llvm/include/llvm/Object/RelocVisitor.h
    N src/gnu/llvm/include/llvm/Object/Binary.h
    N src/gnu/llvm/include/llvm/Object/COFF.h
    N src/gnu/llvm/include/llvm/Object/IRObjectFile.h
    N src/gnu/llvm/include/llvm/Object/COFFYAML.h
    N src/gnu/llvm/include/llvm/Object/ELFTypes.h
    N src/gnu/llvm/include/llvm/Object/MachO.h
    N src/gnu/llvm/include/llvm/Object/SymbolicFile.h
    N src/gnu/llvm/include/llvm/Object/Error.h
    N src/gnu/llvm/include/llvm/Object/ELF.h
    N src/gnu/llvm/include/llvm/Object/SymbolSize.h
    N src/gnu/llvm/include/llvm/Transforms/Vectorize.h
    N src/gnu/llvm/include/llvm/Transforms/IPO.h
    N src/gnu/llvm/include/llvm/Transforms/ObjCARC.h
    N src/gnu/llvm/include/llvm/Transforms/Instrumentation.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar.h
    N src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
    N src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/CtorUtils.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/Local.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/ValueMapper.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/LoopUtils.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/Cloning.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SplitModule.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/ADCE.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/SROA.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/LowerBitSets.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/FunctionImport.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/InlinerPass.h
    N src/gnu/llvm/include/llvm/TableGen/StringMatcher.h
    N src/gnu/llvm/include/llvm/TableGen/Main.h
    N src/gnu/llvm/include/llvm/TableGen/SetTheory.h
    N src/gnu/llvm/include/llvm/TableGen/TableGenBackend.h
    N src/gnu/llvm/include/llvm/TableGen/Record.h
    N src/gnu/llvm/include/llvm/TableGen/Error.h
    N src/gnu/llvm/include/llvm/TableGen/StringToOffsetTable.h
    N src/gnu/llvm/include/llvm/Config/config.h.in
    N src/gnu/llvm/include/llvm/Config/AsmPrinters.def.in
    N src/gnu/llvm/include/llvm/Config/config.h.cmake
    N src/gnu/llvm/include/llvm/Config/llvm-config.h.in
    N src/gnu/llvm/include/llvm/Config/AsmParsers.def.in
    N src/gnu/llvm/include/llvm/Config/Targets.def.in
    N src/gnu/llvm/include/llvm/Config/llvm-config.h.cmake
    N src/gnu/llvm/include/llvm/Config/Disassemblers.def.in
    N src/gnu/llvm/include/llvm/DebugInfo/DIContext.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDB.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/FieldListRecordBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/MethodListRecordBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/ListRecordBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewOStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/Line.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
    N src/gnu/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
    N src/gnu/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
    N src/gnu/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
    N src/gnu/llvm/include/llvm/AsmParser/Parser.h
    N src/gnu/llvm/include/llvm/AsmParser/SlotMapping.h
    N src/gnu/llvm/include/llvm/Target/TargetOpcodes.h
    N src/gnu/llvm/include/llvm/Target/TargetSchedule.td
    N src/gnu/llvm/include/llvm/Target/TargetItinerary.td
    N src/gnu/llvm/include/llvm/Target/CostTable.h
    N src/gnu/llvm/include/llvm/Target/TargetIntrinsicInfo.h
    N src/gnu/llvm/include/llvm/Target/TargetCallingConv.h
    N src/gnu/llvm/include/llvm/Target/TargetFrameLowering.h
    N src/gnu/llvm/include/llvm/Target/TargetSubtargetInfo.h
    N src/gnu/llvm/include/llvm/Target/TargetSelectionDAGInfo.h
    N src/gnu/llvm/include/llvm/Target/Target.td
    N src/gnu/llvm/include/llvm/Target/TargetRecip.h
    N src/gnu/llvm/include/llvm/Target/TargetCallingConv.td
    N src/gnu/llvm/include/llvm/Target/TargetLoweringObjectFile.h
    N src/gnu/llvm/include/llvm/Target/TargetOptions.h
    N src/gnu/llvm/include/llvm/Target/TargetLowering.h
    N src/gnu/llvm/include/llvm/Target/TargetInstrInfo.h
    N src/gnu/llvm/include/llvm/Target/TargetSelectionDAG.td
    N src/gnu/llvm/include/llvm/Target/TargetMachine.h
    N src/gnu/llvm/include/llvm/Target/TargetRegisterInfo.h
    N src/gnu/llvm/include/llvm/LineEditor/LineEditor.h
    N src/gnu/llvm/include/llvm/Analysis/Interval.h
    N src/gnu/llvm/include/llvm/Analysis/CodeMetrics.h
    N src/gnu/llvm/include/llvm/Analysis/DemandedBits.h
    N src/gnu/llvm/include/llvm/Analysis/LazyValueInfo.h
    N src/gnu/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
    N src/gnu/llvm/include/llvm/Analysis/IVUsers.h
    N src/gnu/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
    N src/gnu/llvm/include/llvm/Analysis/AssumptionCache.h
    N src/gnu/llvm/include/llvm/Analysis/TargetTransformInfo.h
    N src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/CGSCCPassManager.h
    N src/gnu/llvm/include/llvm/Analysis/CallGraphSCCPass.h
    N src/gnu/llvm/include/llvm/Analysis/RegionPass.h
    N src/gnu/llvm/include/llvm/Analysis/CaptureTracking.h
    N src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
    N src/gnu/llvm/include/llvm/Analysis/Passes.h
    N src/gnu/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
    N src/gnu/llvm/include/llvm/Analysis/DivergenceAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/MemoryBuiltins.h
    N src/gnu/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
    N src/gnu/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
    N src/gnu/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
    N src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
    N src/gnu/llvm/include/llvm/Analysis/InstructionSimplify.h
    N src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.h
    N src/gnu/llvm/include/llvm/Analysis/Trace.h
    N src/gnu/llvm/include/llvm/Analysis/VectorUtils.h
    N src/gnu/llvm/include/llvm/Analysis/DomPrinter.h
    N src/gnu/llvm/include/llvm/Analysis/LoopIterator.h
    N src/gnu/llvm/include/llvm/Analysis/IntervalIterator.h
    N src/gnu/llvm/include/llvm/Analysis/SparsePropagation.h
    N src/gnu/llvm/include/llvm/Analysis/EHPersonalities.h
    N src/gnu/llvm/include/llvm/Analysis/CFG.h
    N src/gnu/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/ObjCARCInstKind.h
    N src/gnu/llvm/include/llvm/Analysis/InlineCost.h
    N src/gnu/llvm/include/llvm/Analysis/ScalarEvolution.h
    N src/gnu/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
    N src/gnu/llvm/include/llvm/Analysis/LoopPass.h
    N src/gnu/llvm/include/llvm/Analysis/DominanceFrontier.h
    N src/gnu/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
    N src/gnu/llvm/include/llvm/Analysis/DependenceAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
    N src/gnu/llvm/include/llvm/Analysis/IntervalPartition.h
    N src/gnu/llvm/include/llvm/Analysis/Loads.h
    N src/gnu/llvm/include/llvm/Analysis/PHITransAddr.h
    N src/gnu/llvm/include/llvm/Analysis/LoopInfo.h
    N src/gnu/llvm/include/llvm/Analysis/CFLAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/CallPrinter.h
    N src/gnu/llvm/include/llvm/Analysis/ValueTracking.h
    N src/gnu/llvm/include/llvm/Analysis/Lint.h
    N src/gnu/llvm/include/llvm/Analysis/ConstantFolding.h
    N src/gnu/llvm/include/llvm/Analysis/OrderedBasicBlock.h
    N src/gnu/llvm/include/llvm/Analysis/AliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/MemoryLocation.h
    N src/gnu/llvm/include/llvm/Analysis/LazyCallGraph.h
    N src/gnu/llvm/include/llvm/Analysis/AliasSetTracker.h
    N src/gnu/llvm/include/llvm/Analysis/PtrUseVisitor.h
    N src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
    N src/gnu/llvm/include/llvm/Analysis/RegionIterator.h
    N src/gnu/llvm/include/llvm/Analysis/LoopInfoImpl.h
    N src/gnu/llvm/include/llvm/Analysis/GlobalsModRef.h
    N src/gnu/llvm/include/llvm/Analysis/PostDominators.h
    N src/gnu/llvm/include/llvm/Analysis/TargetFolder.h
    N src/gnu/llvm/include/llvm/Analysis/RegionInfo.h
    N src/gnu/llvm/include/llvm/Analysis/RegionInfoImpl.h
    N src/gnu/llvm/include/llvm/Analysis/CFGPrinter.h
    N src/gnu/llvm/include/llvm/Analysis/RegionPrinter.h
    N src/gnu/llvm/include/llvm/Analysis/CallGraph.h
    N src/gnu/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.def
    N src/gnu/llvm/include/llvm/ProfileData/CoverageMapping.h
    N src/gnu/llvm/include/llvm/ProfileData/SampleProf.h
    N src/gnu/llvm/include/llvm/ProfileData/InstrProf.h
    N src/gnu/llvm/include/llvm/ProfileData/InstrProfData.inc
    N src/gnu/llvm/include/llvm/ProfileData/CoverageMappingWriter.h
    N src/gnu/llvm/include/llvm/ProfileData/SampleProfReader.h
    N src/gnu/llvm/include/llvm/ProfileData/SampleProfWriter.h
    N src/gnu/llvm/include/llvm/ProfileData/CoverageMappingReader.h
    N src/gnu/llvm/include/llvm/ProfileData/InstrProfReader.h
    N src/gnu/llvm/include/llvm/ProfileData/InstrProfWriter.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Interpreter.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/MCJIT.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/ObjectCache.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/JITEventListener.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/GenericValue.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/JITSymbol.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LogicalDylib.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCChannel.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
    N src/gnu/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
    N src/gnu/llvm/include/llvm/Bitcode/LLVMBitCodes.h
    N src/gnu/llvm/include/llvm/Bitcode/BitstreamWriter.h
    N src/gnu/llvm/include/llvm/Bitcode/BitstreamReader.h
    N src/gnu/llvm/include/llvm/Bitcode/ReaderWriter.h
    N src/gnu/llvm/include/llvm/Bitcode/BitCodes.h
    N src/gnu/llvm/include/llvm/Support/PointerLikeTypeTraits.h
    N src/gnu/llvm/include/llvm/Support/BranchProbability.h
    N src/gnu/llvm/include/llvm/Support/UnicodeCharRanges.h
    N src/gnu/llvm/include/llvm/Support/DataStream.h
    N src/gnu/llvm/include/llvm/Support/Solaris.h
    N src/gnu/llvm/include/llvm/Support/Unicode.h
    N src/gnu/llvm/include/llvm/Support/Dwarf.def
    N src/gnu/llvm/include/llvm/Support/TrailingObjects.h
    N src/gnu/llvm/include/llvm/Support/Registry.h
    N src/gnu/llvm/include/llvm/Support/GenericDomTree.h
    N src/gnu/llvm/include/llvm/Support/SMLoc.h
    N src/gnu/llvm/include/llvm/Support/Casting.h
    N src/gnu/llvm/include/llvm/Support/circular_raw_ostream.h
    N src/gnu/llvm/include/llvm/Support/ArrayRecycler.h
    N src/gnu/llvm/include/llvm/Support/DynamicLibrary.h
    N src/gnu/llvm/include/llvm/Support/MemoryBuffer.h
    N src/gnu/llvm/include/llvm/Support/Valgrind.h
    N src/gnu/llvm/include/llvm/Support/Format.h
    N src/gnu/llvm/include/llvm/Support/ManagedStatic.h
    N src/gnu/llvm/include/llvm/Support/FileSystem.h
    N src/gnu/llvm/include/llvm/Support/Regex.h
    N src/gnu/llvm/include/llvm/Support/COM.h
    N src/gnu/llvm/include/llvm/Support/Memory.h
    N src/gnu/llvm/include/llvm/Support/StringSaver.h
    N src/gnu/llvm/include/llvm/Support/LineIterator.h
    N src/gnu/llvm/include/llvm/Support/ARMTargetParser.def
    N src/gnu/llvm/include/llvm/Support/Errno.h
    N src/gnu/llvm/include/llvm/Support/ThreadPool.h
    N src/gnu/llvm/include/llvm/Support/OnDiskHashTable.h
    N src/gnu/llvm/include/llvm/Support/LICENSE.TXT
    N src/gnu/llvm/include/llvm/Support/FormattedStream.h
    N src/gnu/llvm/include/llvm/Support/LEB128.h
    N src/gnu/llvm/include/llvm/Support/MathExtras.h
    N src/gnu/llvm/include/llvm/Support/BlockFrequency.h
    N src/gnu/llvm/include/llvm/Support/MipsABIFlags.h
    N src/gnu/llvm/include/llvm/Support/Allocator.h
    N src/gnu/llvm/include/llvm/Support/ErrorHandling.h
    N src/gnu/llvm/include/llvm/Support/ConvertUTF.h
    N src/gnu/llvm/include/llvm/Support/FileOutputBuffer.h
    N src/gnu/llvm/include/llvm/Support/raw_ostream.h
    N src/gnu/llvm/include/llvm/Support/ThreadLocal.h
    N src/gnu/llvm/include/llvm/Support/CrashRecoveryContext.h
    N src/gnu/llvm/include/llvm/Support/SpecialCaseList.h
    N src/gnu/llvm/include/llvm/Support/ToolOutputFile.h
    N src/gnu/llvm/include/llvm/Support/SaveAndRestore.h
    N src/gnu/llvm/include/llvm/Support/Dwarf.h
    N src/gnu/llvm/include/llvm/Support/Watchdog.h
    N src/gnu/llvm/include/llvm/Support/Win64EH.h
    N src/gnu/llvm/include/llvm/Support/UniqueLock.h
    N src/gnu/llvm/include/llvm/Support/WindowsError.h
    N src/gnu/llvm/include/llvm/Support/Mutex.h
    N src/gnu/llvm/include/llvm/Support/AlignOf.h
    N src/gnu/llvm/include/llvm/Support/RWMutex.h
    N src/gnu/llvm/include/llvm/Support/Path.h
    N src/gnu/llvm/include/llvm/Support/Compiler.h
    N src/gnu/llvm/include/llvm/Support/EndianStream.h
    N src/gnu/llvm/include/llvm/Support/TargetSelect.h
    N src/gnu/llvm/include/llvm/Support/YAMLParser.h
    N src/gnu/llvm/include/llvm/Support/Signals.h
    N src/gnu/llvm/include/llvm/Support/CodeGen.h
    N src/gnu/llvm/include/llvm/Support/ARMEHABI.h
    N src/gnu/llvm/include/llvm/Support/thread.h
    N src/gnu/llvm/include/llvm/Support/COFF.h
    N src/gnu/llvm/include/llvm/Support/Endian.h
    N src/gnu/llvm/include/llvm/Support/DataTypes.h.in
    N src/gnu/llvm/include/llvm/Support/LockFileManager.h
    N src/gnu/llvm/include/llvm/Support/FileUtilities.h
    N src/gnu/llvm/include/llvm/Support/Locale.h
    N src/gnu/llvm/include/llvm/Support/SwapByteOrder.h
    N src/gnu/llvm/include/llvm/Support/Recycler.h
    N src/gnu/llvm/include/llvm/Support/Timer.h
    N src/gnu/llvm/include/llvm/Support/SystemUtils.h
    N src/gnu/llvm/include/llvm/Support/GraphWriter.h
    N src/gnu/llvm/include/llvm/Support/DataExtractor.h
    N src/gnu/llvm/include/llvm/Support/Host.h
    N src/gnu/llvm/include/llvm/Support/raw_os_ostream.h
    N src/gnu/llvm/include/llvm/Support/RecyclingAllocator.h
    N src/gnu/llvm/include/llvm/Support/CBindingWrapping.h
    N src/gnu/llvm/include/llvm/Support/type_traits.h
    N src/gnu/llvm/include/llvm/Support/YAMLTraits.h
    N src/gnu/llvm/include/llvm/Support/JamCRC.h
    N src/gnu/llvm/include/llvm/Support/TimeValue.h
    N src/gnu/llvm/include/llvm/Support/Atomic.h
    N src/gnu/llvm/include/llvm/Support/DataTypes.h.cmake
    N src/gnu/llvm/include/llvm/Support/PrettyStackTrace.h
    N src/gnu/llvm/include/llvm/Support/MachO.h
    N src/gnu/llvm/include/llvm/Support/CommandLine.h
    N src/gnu/llvm/include/llvm/Support/PluginLoader.h
    N src/gnu/llvm/include/llvm/Support/AIXDataTypesFix.h
    N src/gnu/llvm/include/llvm/Support/StringPool.h
    N src/gnu/llvm/include/llvm/Support/RandomNumberGenerator.h
    N src/gnu/llvm/include/llvm/Support/Compression.h
    N src/gnu/llvm/include/llvm/Support/DOTGraphTraits.h
    N src/gnu/llvm/include/llvm/Support/GenericDomTreeConstruction.h
    N src/gnu/llvm/include/llvm/Support/ARMWinEH.h
    N src/gnu/llvm/include/llvm/Support/Debug.h
    N src/gnu/llvm/include/llvm/Support/ELF.h
    N src/gnu/llvm/include/llvm/Support/ARMBuildAttributes.h
    N src/gnu/llvm/include/llvm/Support/Printable.h
    N src/gnu/llvm/include/llvm/Support/TargetParser.h
    N src/gnu/llvm/include/llvm/Support/Threading.h
    N src/gnu/llvm/include/llvm/Support/GCOV.h
    N src/gnu/llvm/include/llvm/Support/Errc.h
    N src/gnu/llvm/include/llvm/Support/ScaledNumber.h
    N src/gnu/llvm/include/llvm/Support/MutexGuard.h
    N src/gnu/llvm/include/llvm/Support/Options.h
    N src/gnu/llvm/include/llvm/Support/RegistryParser.h
    N src/gnu/llvm/include/llvm/Support/ErrorOr.h
    N src/gnu/llvm/include/llvm/Support/SourceMgr.h
    N src/gnu/llvm/include/llvm/Support/Program.h
    N src/gnu/llvm/include/llvm/Support/Process.h
    N src/gnu/llvm/include/llvm/Support/Capacity.h
    N src/gnu/llvm/include/llvm/Support/MemoryObject.h
    N src/gnu/llvm/include/llvm/Support/TargetRegistry.h
    N src/gnu/llvm/include/llvm/Support/MD5.h
    N src/gnu/llvm/include/llvm/Support/StreamingMemoryObject.h
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/SystemZ.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/WebAssembly.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/Mips.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/i386.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/AArch64.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/AVR.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/Sparc.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC64.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/x86_64.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/Hexagon.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/ARM.def
    N src/gnu/llvm/include/llvm/IRReader/IRReader.h
    N src/gnu/llvm/include/llvm/MC/MCAsmBackend.h
    N src/gnu/llvm/include/llvm/MC/MCWinCOFFStreamer.h
    N src/gnu/llvm/include/llvm/MC/MCSymbol.h
    N src/gnu/llvm/include/llvm/MC/MCRelocationInfo.h
    N src/gnu/llvm/include/llvm/MC/MCTargetAsmParser.h
    N src/gnu/llvm/include/llvm/MC/MCInstrDesc.h
    N src/gnu/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h
    N src/gnu/llvm/include/llvm/MC/MCAsmInfoCOFF.h
    N src/gnu/llvm/include/llvm/MC/MCRegisterInfo.h
    N src/gnu/llvm/include/llvm/MC/MCInstBuilder.h
    N src/gnu/llvm/include/llvm/MC/MCInst.h
    N src/gnu/llvm/include/llvm/MC/MCContext.h
    N src/gnu/llvm/include/llvm/MC/MCAssembler.h
    N src/gnu/llvm/include/llvm/MC/MCSection.h
    N src/gnu/llvm/include/llvm/MC/StringTableBuilder.h
    N src/gnu/llvm/include/llvm/MC/MCFixedLenDisassembler.h
    N src/gnu/llvm/include/llvm/MC/MCSymbolELF.h
    N src/gnu/llvm/include/llvm/MC/MCExpr.h
    N src/gnu/llvm/include/llvm/MC/MCCodeGenInfo.h
    N src/gnu/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
    N src/gnu/llvm/include/llvm/MC/MCFixupKindInfo.h
    N src/gnu/llvm/include/llvm/MC/SubtargetFeature.h
    N src/gnu/llvm/include/llvm/MC/MCCodeEmitter.h
    N src/gnu/llvm/include/llvm/MC/MCInstrAnalysis.h
    N src/gnu/llvm/include/llvm/MC/MCAsmInfoDarwin.h
    N src/gnu/llvm/include/llvm/MC/MCExternalSymbolizer.h
    N src/gnu/llvm/include/llvm/MC/MCStreamer.h
    N src/gnu/llvm/include/llvm/MC/MCSectionELF.h
    N src/gnu/llvm/include/llvm/MC/MCSectionMachO.h
    N src/gnu/llvm/include/llvm/MC/MCObjectStreamer.h
    N src/gnu/llvm/include/llvm/MC/MCInstrInfo.h
    N src/gnu/llvm/include/llvm/MC/MCDirectives.h
    N src/gnu/llvm/include/llvm/MC/MCFixup.h
    N src/gnu/llvm/include/llvm/MC/MCSectionCOFF.h
    N src/gnu/llvm/include/llvm/MC/MCTargetOptions.h
    N src/gnu/llvm/include/llvm/MC/MachineLocation.h
    N src/gnu/llvm/include/llvm/MC/MCAsmLayout.h
    N src/gnu/llvm/include/llvm/MC/MCDisassembler.h
    N src/gnu/llvm/include/llvm/MC/MCDwarf.h
    N src/gnu/llvm/include/llvm/MC/MCAsmInfo.h
    N src/gnu/llvm/include/llvm/MC/MCWin64EH.h
    N src/gnu/llvm/include/llvm/MC/MCSymbolizer.h
    N src/gnu/llvm/include/llvm/MC/MCFragment.h
    N src/gnu/llvm/include/llvm/MC/MCELFStreamer.h
    N src/gnu/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
    N src/gnu/llvm/include/llvm/MC/MCInstrItineraries.h
    N src/gnu/llvm/include/llvm/MC/MCSymbolCOFF.h
    N src/gnu/llvm/include/llvm/MC/SectionKind.h
    N src/gnu/llvm/include/llvm/MC/MCObjectFileInfo.h
    N src/gnu/llvm/include/llvm/MC/MCSymbolMachO.h
    N src/gnu/llvm/include/llvm/MC/MCELFObjectWriter.h
    N src/gnu/llvm/include/llvm/MC/MCObjectWriter.h
    N src/gnu/llvm/include/llvm/MC/MCSchedule.h
    N src/gnu/llvm/include/llvm/MC/YAML.h
    N src/gnu/llvm/include/llvm/MC/MCWinEH.h
    N src/gnu/llvm/include/llvm/MC/MCLabel.h
    N src/gnu/llvm/include/llvm/MC/MCInstPrinter.h
    N src/gnu/llvm/include/llvm/MC/ConstantPools.h
    N src/gnu/llvm/include/llvm/MC/MCMachObjectWriter.h
    N src/gnu/llvm/include/llvm/MC/MCValue.h
    N src/gnu/llvm/include/llvm/MC/MCSubtargetInfo.h
    N src/gnu/llvm/include/llvm/MC/MCAsmInfoELF.h
    N src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
    N src/gnu/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
    N src/gnu/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
    N src/gnu/llvm/include/llvm/MC/MCParser/AsmCond.h
    N src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParser.h
    N src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
    N src/gnu/llvm/include/llvm/MC/MCParser/AsmLexer.h
    N src/gnu/llvm/include/llvm/Linker/IRMover.h
    N src/gnu/llvm/include/llvm/Linker/Linker.h
    N src/gnu/llvm/cmake/nsis_icon.ico
    N src/gnu/llvm/cmake/README
    N src/gnu/llvm/cmake/nsis_logo.bmp
    N src/gnu/llvm/cmake/config-ix.cmake
    N src/gnu/llvm/cmake/dummy.cpp
    N src/gnu/llvm/cmake/Makefile
    N src/gnu/llvm/cmake/modules/FindOCaml.cmake
    N src/gnu/llvm/cmake/modules/CrossCompile.cmake
    N src/gnu/llvm/cmake/modules/LLVMInstallSymlink.cmake
    N src/gnu/llvm/cmake/modules/TableGen.cmake
    N src/gnu/llvm/cmake/modules/LLVMConfig.cmake.in
    N src/gnu/llvm/cmake/modules/VersionFromVCS.cmake
    N src/gnu/llvm/cmake/modules/LLVMProcessSources.cmake
    N src/gnu/llvm/cmake/modules/CheckAtomic.cmake
    N src/gnu/llvm/cmake/modules/HandleLLVMOptions.cmake
    N src/gnu/llvm/cmake/modules/LLVMConfigVersion.cmake.in
    N src/gnu/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
    N src/gnu/llvm/cmake/modules/HandleLLVMStdlib.cmake
    N src/gnu/llvm/cmake/modules/GetHostTriple.cmake
    N src/gnu/llvm/cmake/modules/FindSphinx.cmake
    N src/gnu/llvm/cmake/modules/LLVM-Config.cmake
    N src/gnu/llvm/cmake/modules/AddOCaml.cmake
    N src/gnu/llvm/cmake/modules/CMakeLists.txt
    N src/gnu/llvm/cmake/modules/AddSphinxTarget.cmake
    N src/gnu/llvm/cmake/modules/DetermineGCCCompatible.cmake
    N src/gnu/llvm/cmake/modules/Makefile
    N src/gnu/llvm/cmake/modules/AddLLVM.cmake
    N src/gnu/llvm/cmake/modules/AddLLVMDefinitions.cmake
    N src/gnu/llvm/cmake/modules/ChooseMSVCCRT.cmake
    N src/gnu/llvm/cmake/modules/GetSVN.cmake
    N src/gnu/llvm/cmake/platforms/iOS.cmake
    N src/gnu/llvm/cmake/platforms/Android.cmake
    N src/gnu/llvm/examples/LLVMBuild.txt
    N src/gnu/llvm/examples/CMakeLists.txt
    N src/gnu/llvm/examples/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/parser.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/_tags
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toy.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/ast.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/token.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/bindings.c
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/lexer.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/codegen.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/myocamlbuild.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toplevel.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/parser.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/_tags
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toy.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/ast.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/token.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/bindings.c
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/lexer.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/codegen.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/myocamlbuild.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toplevel.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/parser.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/_tags
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toy.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/ast.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/token.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/lexer.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/codegen.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/myocamlbuild.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toplevel.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/parser.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/_tags
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toy.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/ast.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/token.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/bindings.c
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/lexer.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/codegen.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/myocamlbuild.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toplevel.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/parser.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/_tags
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toy.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/ast.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/token.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/lexer.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toplevel.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/parser.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/_tags
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toy.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/ast.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/Makefile
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/token.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/bindings.c
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/lexer.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/codegen.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/myocamlbuild.ml
    N src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toplevel.ml
    N src/gnu/llvm/examples/ModuleMaker/README.txt
    N src/gnu/llvm/examples/ModuleMaker/CMakeLists.txt
    N src/gnu/llvm/examples/ModuleMaker/Makefile
    N src/gnu/llvm/examples/ModuleMaker/ModuleMaker.cpp
    N src/gnu/llvm/examples/ParallelJIT/ParallelJIT.cpp
    N src/gnu/llvm/examples/ParallelJIT/CMakeLists.txt
    N src/gnu/llvm/examples/ParallelJIT/Makefile
    N src/gnu/llvm/examples/HowToUseJIT/CMakeLists.txt
    N src/gnu/llvm/examples/HowToUseJIT/Makefile
    N src/gnu/llvm/examples/HowToUseJIT/HowToUseJIT.cpp
    N src/gnu/llvm/examples/BrainF/BrainFDriver.cpp
    N src/gnu/llvm/examples/BrainF/CMakeLists.txt
    N src/gnu/llvm/examples/BrainF/Makefile
    N src/gnu/llvm/examples/BrainF/BrainF.cpp
    N src/gnu/llvm/examples/BrainF/BrainF.h
    N src/gnu/llvm/examples/Kaleidoscope/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Orc/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/initial/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/initial/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/initial/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Orc/initial/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_codegen/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_codegen/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_codegen/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_codegen/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_irgen/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_irgen/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_irgen/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Orc/lazy_irgen/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Orc/fully_lazy/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/fully_lazy/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Orc/fully_lazy/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Orc/fully_lazy/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter5/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Chapter5/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter4/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Chapter4/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter3/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter3/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Chapter3/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/toy-jit.cpp
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/split-lib.py
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/toy-jit.cpp
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/README.txt
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter7/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Chapter7/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter8/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Chapter8/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter2/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter2/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Chapter2/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter6/Makefile
    N src/gnu/llvm/examples/Kaleidoscope/Chapter6/toy.cpp
    N src/gnu/llvm/examples/ExceptionDemo/ExceptionDemo.cpp
    N src/gnu/llvm/examples/ExceptionDemo/CMakeLists.txt
    N src/gnu/llvm/examples/ExceptionDemo/Makefile
    N src/gnu/llvm/examples/Fibonacci/fibonacci.cpp
    N src/gnu/llvm/examples/Fibonacci/CMakeLists.txt
    N src/gnu/llvm/examples/Fibonacci/Makefile
    N src/gnu/llvm/utils/bisect
    N src/gnu/llvm/utils/schedcover.py
    N src/gnu/llvm/utils/llvm-native-gxx
    N src/gnu/llvm/utils/llvm.natvis
    N src/gnu/llvm/utils/UpdateCMakeLists.pl
    N src/gnu/llvm/utils/findoptdiff
    N src/gnu/llvm/utils/GenLibDeps.pl
    N src/gnu/llvm/utils/clang-parse-diagnostics-file
    N src/gnu/llvm/utils/update_llc_test_checks.py
    N src/gnu/llvm/utils/llvm-compilers-check
    N src/gnu/llvm/utils/llvmgrep
    N src/gnu/llvm/utils/DSAclean.py
    N src/gnu/llvm/utils/findsym.pl
    N src/gnu/llvm/utils/getsrcs.sh
    N src/gnu/llvm/utils/DSAextract.py
    N src/gnu/llvm/utils/LLVMBuild.txt
    N src/gnu/llvm/utils/codegen-diff
    N src/gnu/llvm/utils/lldbDataFormatters.py
    N src/gnu/llvm/utils/create_ladder_graph.py
    N src/gnu/llvm/utils/check-each-file
    N src/gnu/llvm/utils/makellvm
    N src/gnu/llvm/utils/Makefile
    N src/gnu/llvm/utils/llvmdo
    N src/gnu/llvm/utils/shuffle_fuzz.py
    N src/gnu/llvm/utils/wciia.py
    N src/gnu/llvm/utils/GetRepositoryPath
    N src/gnu/llvm/utils/findmisopt
    N src/gnu/llvm/utils/test_debuginfo.pl
    N src/gnu/llvm/utils/llvm.grm
    N src/gnu/llvm/utils/GetSourceVersion
    N src/gnu/llvm/utils/sort_includes.py
    N src/gnu/llvm/utils/countloc.sh
    N src/gnu/llvm/utils/jedit/README
    N src/gnu/llvm/utils/jedit/tablegen.xml
    N src/gnu/llvm/utils/fpcmp/fpcmp.cpp
    N src/gnu/llvm/utils/fpcmp/Makefile
    N src/gnu/llvm/utils/git/find-rev
    N src/gnu/llvm/utils/buildit/GNUmakefile
    N src/gnu/llvm/utils/buildit/build_llvm
    N src/gnu/llvm/utils/kate/llvm.xml
    N src/gnu/llvm/utils/kate/README
    N src/gnu/llvm/utils/lint/common_lint.py
    N src/gnu/llvm/utils/lint/cpp_lint.py
    N src/gnu/llvm/utils/lint/remove_trailing_whitespace.sh
    N src/gnu/llvm/utils/lint/generic_lint.py
    N src/gnu/llvm/utils/vim/README
    N src/gnu/llvm/utils/vim/vimrc
    N src/gnu/llvm/utils/vim/ftdetect/tablegen.vim
    N src/gnu/llvm/utils/vim/ftdetect/llvm-lit.vim
    N src/gnu/llvm/utils/vim/ftdetect/llvm.vim
    N src/gnu/llvm/utils/vim/ftplugin/tablegen.vim
    N src/gnu/llvm/utils/vim/ftplugin/llvm.vim
    N src/gnu/llvm/utils/vim/syntax/tablegen.vim
    N src/gnu/llvm/utils/vim/syntax/llvm.vim
    N src/gnu/llvm/utils/vim/indent/llvm.vim
    N src/gnu/llvm/utils/TableGen/CodeGenSchedule.cpp
    N src/gnu/llvm/utils/TableGen/X86DisassemblerTables.h
    N src/gnu/llvm/utils/TableGen/TableGenBackends.h
    N src/gnu/llvm/utils/TableGen/CodeGenIntrinsics.h
    N src/gnu/llvm/utils/TableGen/X86RecognizableInstr.cpp
    N src/gnu/llvm/utils/TableGen/SubtargetEmitter.cpp
    N src/gnu/llvm/utils/TableGen/AsmWriterEmitter.cpp
    N src/gnu/llvm/utils/TableGen/TableGen.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenTarget.cpp
    N src/gnu/llvm/utils/TableGen/OptParserEmitter.cpp
    N src/gnu/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
    N src/gnu/llvm/utils/TableGen/module.modulemap
    N src/gnu/llvm/utils/TableGen/CodeEmitterGen.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenInstruction.cpp
    N src/gnu/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
    N src/gnu/llvm/utils/TableGen/LLVMBuild.txt
    N src/gnu/llvm/utils/TableGen/CallingConvEmitter.cpp
    N src/gnu/llvm/utils/TableGen/RegisterInfoEmitter.cpp
    N src/gnu/llvm/utils/TableGen/SequenceToOffsetTable.h
    N src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
    N src/gnu/llvm/utils/TableGen/CTagsEmitter.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenTarget.h
    N src/gnu/llvm/utils/TableGen/AsmWriterInst.h
    N src/gnu/llvm/utils/TableGen/X86ModRMFilters.cpp
    N src/gnu/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
    N src/gnu/llvm/utils/TableGen/CMakeLists.txt
    N src/gnu/llvm/utils/TableGen/X86DisassemblerTables.cpp
    N src/gnu/llvm/utils/TableGen/FastISelEmitter.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenRegisters.cpp
    N src/gnu/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
    N src/gnu/llvm/utils/TableGen/DAGISelMatcherGen.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.h
    N src/gnu/llvm/utils/TableGen/Makefile
    N src/gnu/llvm/utils/TableGen/X86RecognizableInstr.h
    N src/gnu/llvm/utils/TableGen/IntrinsicEmitter.cpp
    N src/gnu/llvm/utils/TableGen/Attributes.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenInstruction.h
    N src/gnu/llvm/utils/TableGen/X86ModRMFilters.h
    N src/gnu/llvm/utils/TableGen/DAGISelMatcher.cpp
    N src/gnu/llvm/utils/TableGen/DAGISelMatcher.h
    N src/gnu/llvm/utils/TableGen/CodeGenRegisters.h
    N src/gnu/llvm/utils/TableGen/DisassemblerEmitter.cpp
    N src/gnu/llvm/utils/TableGen/X86DisassemblerShared.h
    N src/gnu/llvm/utils/TableGen/tdtags
    N src/gnu/llvm/utils/TableGen/InstrInfoEmitter.cpp
    N src/gnu/llvm/utils/TableGen/AsmMatcherEmitter.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenSchedule.h
    N src/gnu/llvm/utils/TableGen/AsmWriterInst.cpp
    N src/gnu/llvm/utils/TableGen/CodeGenMapTable.cpp
    N src/gnu/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
    N src/gnu/llvm/utils/TableGen/DAGISelEmitter.cpp
    N src/gnu/llvm/utils/llvm-lit/llvm-lit.in
    N src/gnu/llvm/utils/llvm-lit/CMakeLists.txt
    N src/gnu/llvm/utils/llvm-lit/Makefile
    N src/gnu/llvm/utils/KillTheDoctor/CMakeLists.txt
    N src/gnu/llvm/utils/KillTheDoctor/KillTheDoctor.cpp
    N src/gnu/llvm/utils/count/count.c
    N src/gnu/llvm/utils/count/CMakeLists.txt
    N src/gnu/llvm/utils/count/Makefile
    N src/gnu/llvm/utils/llvm-build/README.txt
    N src/gnu/llvm/utils/llvm-build/llvm-build
    N src/gnu/llvm/utils/llvm-build/llvmbuild/util.py
    N src/gnu/llvm/utils/llvm-build/llvmbuild/componentinfo.py
    N src/gnu/llvm/utils/llvm-build/llvmbuild/__init__.py
    N src/gnu/llvm/utils/llvm-build/llvmbuild/configutil.py
    N src/gnu/llvm/utils/llvm-build/llvmbuild/main.py
    N src/gnu/llvm/utils/textmate/README
    N src/gnu/llvm/utils/textmate/TableGen.tmbundle/info.plist
    N src/gnu/llvm/utils/textmate/TableGen.tmbundle/Syntaxes/TableGen.tmLanguage
    N src/gnu/llvm/utils/Misc/zkill
    N src/gnu/llvm/utils/Misc/mergefunctions.clang.svn.patch
    N src/gnu/llvm/utils/git-svn/git-svnup
    N src/gnu/llvm/utils/git-svn/git-svnrevert
    N src/gnu/llvm/utils/lit/TODO
    N src/gnu/llvm/utils/lit/setup.py
    N src/gnu/llvm/utils/lit/README.txt
    N src/gnu/llvm/utils/lit/lit.py
    N src/gnu/llvm/utils/lit/MANIFEST.in
    N src/gnu/llvm/utils/lit/examples/README.txt
    N src/gnu/llvm/utils/lit/examples/many-tests/README.txt
    N src/gnu/llvm/utils/lit/examples/many-tests/lit.cfg
    N src/gnu/llvm/utils/lit/lit/LitTestCase.py
    N src/gnu/llvm/utils/lit/lit/discovery.py
    N src/gnu/llvm/utils/lit/lit/util.py
    N src/gnu/llvm/utils/lit/lit/ShCommands.py
    N src/gnu/llvm/utils/lit/lit/TestRunner.py
    N src/gnu/llvm/utils/lit/lit/ProgressBar.py
    N src/gnu/llvm/utils/lit/lit/Test.py
    N src/gnu/llvm/utils/lit/lit/TestingConfig.py
    N src/gnu/llvm/utils/lit/lit/LitConfig.py
    N src/gnu/llvm/utils/lit/lit/__init__.py
    N src/gnu/llvm/utils/lit/lit/main.py
    N src/gnu/llvm/utils/lit/lit/run.py
    N src/gnu/llvm/utils/lit/lit/ShUtil.py
    N src/gnu/llvm/utils/lit/lit/formats/shtest.py
    N src/gnu/llvm/utils/lit/lit/formats/googletest.py
    N src/gnu/llvm/utils/lit/lit/formats/__init__.py
    N src/gnu/llvm/utils/lit/lit/formats/base.py
    N src/gnu/llvm/utils/lit/lit/ExampleTests.ObjDir/lit.site.cfg
    N src/gnu/llvm/utils/lit/utils/check-sdist
    N src/gnu/llvm/utils/lit/utils/check-coverage
    N src/gnu/llvm/utils/lit/utils/README.txt
    N src/gnu/llvm/utils/lit/tests/test-output.py
    N src/gnu/llvm/utils/lit/tests/discovery.py
    N src/gnu/llvm/utils/lit/tests/googletest-format.py
    N src/gnu/llvm/utils/lit/tests/shtest-shell.py
    N src/gnu/llvm/utils/lit/tests/shell-parsing.py
    N src/gnu/llvm/utils/lit/tests/unittest-adaptor.py
    N src/gnu/llvm/utils/lit/tests/shtest-format.py
    N src/gnu/llvm/utils/lit/tests/shtest-timeout.py
    N src/gnu/llvm/utils/lit/tests/googletest-timeout.py
    N src/gnu/llvm/utils/lit/tests/usage.py
    N src/gnu/llvm/utils/lit/tests/progress-bar.py
    N src/gnu/llvm/utils/lit/tests/xunit-output.py
    N src/gnu/llvm/utils/lit/tests/test-data.py
    N src/gnu/llvm/utils/lit/tests/lit.cfg
    N src/gnu/llvm/utils/lit/tests/shtest-encoding.py
    N src/gnu/llvm/utils/lit/tests/.coveragerc
    N src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-1.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-0.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/redirects.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-2.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-0.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.sh
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.sh
    N src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery/lit.site.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest
    N src/gnu/llvm/utils/lit/tests/Inputs/test-data/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/test-data/metrics.ini
    N src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-1.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-2.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-3.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-4.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/slow.py
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/quick_then_slow.py
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/short.py
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/infinite_loop.py
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/argv0.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xpass.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/fail.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/no-test-line.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-present.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-missing.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/pass.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-target.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-feature.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported_dir/some-test.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported_dir/lit.local.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/fail.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/pass.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/lit.local.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/fail_with_bad_encoding.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/write-bad-encoding.sh
    N src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/test-one.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/obj/lit.site.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-two.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-one.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-two.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-one.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/subdir/lit.local.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/subdir/test-three.py
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/test-two.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/test-one.txt
    N src/gnu/llvm/utils/Target/ARM/analyze-match-table.py
    N src/gnu/llvm/utils/PerfectShuffle/CMakeLists.txt
    N src/gnu/llvm/utils/PerfectShuffle/Makefile
    N src/gnu/llvm/utils/PerfectShuffle/PerfectShuffle.cpp
    N src/gnu/llvm/utils/not/not.cpp
    N src/gnu/llvm/utils/not/CMakeLists.txt
    N src/gnu/llvm/utils/not/Makefile
    N src/gnu/llvm/utils/crosstool/create-snapshots.sh
    N src/gnu/llvm/utils/crosstool/ARM/README
    N src/gnu/llvm/utils/crosstool/ARM/build-install-linux.sh
    N src/gnu/llvm/utils/emacs/emacs.el
    N src/gnu/llvm/utils/emacs/README
    N src/gnu/llvm/utils/emacs/tablegen-mode.el
    N src/gnu/llvm/utils/emacs/llvm-mode.el
    N src/gnu/llvm/utils/yaml-bench/CMakeLists.txt
    N src/gnu/llvm/utils/yaml-bench/Makefile
    N src/gnu/llvm/utils/yaml-bench/YAMLBench.cpp
    N src/gnu/llvm/utils/FileCheck/CMakeLists.txt
    N src/gnu/llvm/utils/FileCheck/Makefile
    N src/gnu/llvm/utils/FileCheck/FileCheck.cpp
    N src/gnu/llvm/utils/bugpoint/RemoteRunSafely.sh
    N src/gnu/llvm/utils/release/test-release.sh
    N src/gnu/llvm/utils/release/merge.sh
    N src/gnu/llvm/utils/release/findRegressions-nightly.py
    N src/gnu/llvm/utils/release/export.sh
    N src/gnu/llvm/utils/release/build_llvm_package.bat
    N src/gnu/llvm/utils/release/tag.sh
    N src/gnu/llvm/utils/release/findRegressions-simple.py
    N src/gnu/llvm/utils/unittest/LLVMBuild.txt
    N src/gnu/llvm/utils/unittest/CMakeLists.txt
    N src/gnu/llvm/utils/unittest/Makefile
    N src/gnu/llvm/utils/unittest/googletest/LICENSE.TXT
    N src/gnu/llvm/utils/unittest/googletest/Makefile
    N src/gnu/llvm/utils/unittest/googletest/README.LLVM
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-test-part.cc
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-all.cc
    N src/gnu/llvm/utils/unittest/googletest/src/gtest.cc
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-port.cc
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-internal-inl.h
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-typed-test.cc
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-filepath.cc
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-printers.cc
    N src/gnu/llvm/utils/unittest/googletest/src/gtest-death-test.cc
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-spi.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_pred_impl.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-param-test.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-test-part.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-death-test.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-printers.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_prod.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-message.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-typed-test.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-port.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-linked_ptr.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-tuple.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-internal.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-filepath.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-string.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-type-util.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-death-test-internal.h
    N src/gnu/llvm/utils/unittest/UnitTestMain/TestMain.cpp
    N src/gnu/llvm/utils/unittest/UnitTestMain/CMakeLists.txt
    N src/gnu/llvm/utils/unittest/UnitTestMain/Makefile
    N src/gnu/llvm/utils/testgen/mc-bundling-x86-gen.py
    N src/gnu/llvm/utils/valgrind/i386-pc-linux-gnu.supp
    N src/gnu/llvm/utils/valgrind/x86_64-pc-linux-gnu.supp
    N src/gnu/llvm/docs/CompilerWriterInfo.rst
    N src/gnu/llvm/docs/SourceLevelDebugging.rst
    N src/gnu/llvm/docs/BitSets.rst
    N src/gnu/llvm/docs/AliasAnalysis.rst
    N src/gnu/llvm/docs/BlockFrequencyTerminology.rst
    N src/gnu/llvm/docs/CMake.rst
    N src/gnu/llvm/docs/doxygen.intro
    N src/gnu/llvm/docs/TestSuiteMakefileGuide.rst
    N src/gnu/llvm/docs/Atomics.rst
    N src/gnu/llvm/docs/StackMaps.rst
    N src/gnu/llvm/docs/FAQ.rst
    N src/gnu/llvm/docs/ExceptionHandling.rst
    N src/gnu/llvm/docs/Statepoints.rst
    N src/gnu/llvm/docs/WritingAnLLVMPass.rst
    N src/gnu/llvm/docs/ARM-BE-bitcastfail.png
    N src/gnu/llvm/docs/DeveloperPolicy.rst
    N src/gnu/llvm/docs/ProgrammersManual.rst
    N src/gnu/llvm/docs/MCJIT-engine-builder.png
    N src/gnu/llvm/docs/HowToAddABuilder.rst
    N src/gnu/llvm/docs/HowToSubmitABug.rst
    N src/gnu/llvm/docs/MCJIT-load-object.png
    N src/gnu/llvm/docs/SegmentedStacks.rst
    N src/gnu/llvm/docs/README.txt
    N src/gnu/llvm/docs/MCJIT-creation.png
    N src/gnu/llvm/docs/Projects.rst
    N src/gnu/llvm/docs/GettingStartedVS.rst
    N src/gnu/llvm/docs/GettingStarted.rst
    N src/gnu/llvm/docs/GetElementPtr.rst
    N src/gnu/llvm/docs/Packaging.rst
    N src/gnu/llvm/docs/CommandLine.rst
    N src/gnu/llvm/docs/Vectorizers.rst
    N src/gnu/llvm/docs/NVPTXUsage.rst
    N src/gnu/llvm/docs/CompileCudaWithLLVM.rst
    N src/gnu/llvm/docs/SphinxQuickstartTemplate.rst
    N src/gnu/llvm/docs/HowToReleaseLLVM.rst
    N src/gnu/llvm/docs/ExtendedIntegerResults.txt
    N src/gnu/llvm/docs/SystemLibrary.rst
    N src/gnu/llvm/docs/LLVMBuild.txt
    N src/gnu/llvm/docs/TableGenFundamentals.rst
    N src/gnu/llvm/docs/Extensions.rst
    N src/gnu/llvm/docs/LibFuzzer.rst
    N src/gnu/llvm/docs/doxygen.cfg.in
    N src/gnu/llvm/docs/Phabricator.rst
    N src/gnu/llvm/docs/LinkTimeOptimization.rst
    N src/gnu/llvm/docs/re_format.7
    N src/gnu/llvm/docs/make.bat
    N src/gnu/llvm/docs/ExtendingLLVM.rst
    N src/gnu/llvm/docs/yaml2obj.rst
    N src/gnu/llvm/docs/BranchWeightMetadata.rst
    N src/gnu/llvm/docs/HowToSetUpLLVMStyleRTTI.rst
    N src/gnu/llvm/docs/MergeFunctions.rst
    N src/gnu/llvm/docs/InAlloca.rst
    N src/gnu/llvm/docs/CMakeLists.txt
    N src/gnu/llvm/docs/CodeGenerator.rst
    N src/gnu/llvm/docs/MCJITDesignAndImplementation.rst
    N src/gnu/llvm/docs/FaultMaps.rst
    N src/gnu/llvm/docs/Lexicon.rst
    N src/gnu/llvm/docs/CodingStandards.rst
    N src/gnu/llvm/docs/GarbageCollection.rst
    N src/gnu/llvm/docs/Makefile
    N src/gnu/llvm/docs/MarkedUpDisassembly.rst
    N src/gnu/llvm/docs/YamlIO.rst
    N src/gnu/llvm/docs/MakefileGuide.rst
    N src/gnu/llvm/docs/BigEndianNEON.rst
    N src/gnu/llvm/docs/LangRef.rst
    N src/gnu/llvm/docs/LLVMBuild.rst
    N src/gnu/llvm/docs/conf.py
    N src/gnu/llvm/docs/MCJIT-resolve-relocations.png
    N src/gnu/llvm/docs/Makefile.sphinx
    N src/gnu/llvm/docs/ReleaseNotes.rst
    N src/gnu/llvm/docs/HowToCrossCompileLLVM.rst
    N src/gnu/llvm/docs/linpack-pc.png
    N src/gnu/llvm/docs/BuildingLLVMWithAutotools.rst
    N src/gnu/llvm/docs/ARM-BE-ld1.png
    N src/gnu/llvm/docs/MIRLangRef.rst
    N src/gnu/llvm/docs/GoldPlugin.rst
    N src/gnu/llvm/docs/ARM-BE-bitcastsuccess.png
    N src/gnu/llvm/docs/gcc-loops.png
    N src/gnu/llvm/docs/MCJIT-load.png
    N src/gnu/llvm/docs/ReleaseProcess.rst
    N src/gnu/llvm/docs/CoverageMappingFormat.rst
    N src/gnu/llvm/docs/HowToUseInstrMappings.rst
    N src/gnu/llvm/docs/Passes.rst
    N src/gnu/llvm/docs/Bugpoint.rst
    N src/gnu/llvm/docs/BitCodeFormat.rst
    N src/gnu/llvm/docs/ARM-BE-ldr.png
    N src/gnu/llvm/docs/DebuggingJITedCode.rst
    N src/gnu/llvm/docs/TestingGuide.rst
    N src/gnu/llvm/docs/Dummy.html
    N src/gnu/llvm/docs/HowToBuildOnARM.rst
    N src/gnu/llvm/docs/index.rst
    N src/gnu/llvm/docs/HowToUseAttributes.rst
    N src/gnu/llvm/docs/AMDGPUUsage.rst
    N src/gnu/llvm/docs/MCJIT-dyld-load.png
    N src/gnu/llvm/docs/WritingAnLLVMBackend.rst
    N src/gnu/llvm/docs/CommandGuide/lit.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-build.rst
    N src/gnu/llvm/docs/CommandGuide/llc.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-link.rst
    N src/gnu/llvm/docs/CommandGuide/tblgen.rst
    N src/gnu/llvm/docs/CommandGuide/bugpoint.rst
    N src/gnu/llvm/docs/CommandGuide/opt.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-dis.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-cov.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-as.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-bcanalyzer.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-lib.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-config.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-ar.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-symbolizer.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-profdata.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-dwarfdump.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-stress.rst
    N src/gnu/llvm/docs/CommandGuide/FileCheck.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-diff.rst
    N src/gnu/llvm/docs/CommandGuide/index.rst
    N src/gnu/llvm/docs/CommandGuide/lli.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-nm.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-extract.rst
    N src/gnu/llvm/docs/_themes/llvm-theme/theme.conf
    N src/gnu/llvm/docs/_themes/llvm-theme/layout.html
    N src/gnu/llvm/docs/_themes/llvm-theme/static/llvm-theme.css
    N src/gnu/llvm/docs/_themes/llvm-theme/static/contents.png
    N src/gnu/llvm/docs/_themes/llvm-theme/static/navigation.png
    N src/gnu/llvm/docs/_themes/llvm-theme/static/logo.png
    N src/gnu/llvm/docs/_templates/layout.html
    N src/gnu/llvm/docs/_templates/indexsidebar.html
    N src/gnu/llvm/docs/TableGen/Deficiencies.rst
    N src/gnu/llvm/docs/TableGen/BackEnds.rst
    N src/gnu/llvm/docs/TableGen/LangIntro.rst
    N src/gnu/llvm/docs/TableGen/LangRef.rst
    N src/gnu/llvm/docs/TableGen/index.rst
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl2.rst
    N src/gnu/llvm/docs/tutorial/LangImpl9.rst
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl8.rst
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl7.rst
    N src/gnu/llvm/docs/tutorial/LangImpl5-cfg.png
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl1.rst
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl4.rst
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl6.rst
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl5.rst
    N src/gnu/llvm/docs/tutorial/LangImpl6.rst
    N src/gnu/llvm/docs/tutorial/LangImpl5.rst
    N src/gnu/llvm/docs/tutorial/LangImpl8.rst
    N src/gnu/llvm/docs/tutorial/LangImpl1.rst
    N src/gnu/llvm/docs/tutorial/LangImpl7.rst
    N src/gnu/llvm/docs/tutorial/OCamlLangImpl3.rst
    N src/gnu/llvm/docs/tutorial/LangImpl2.rst
    N src/gnu/llvm/docs/tutorial/LangImpl4.rst
    N src/gnu/llvm/docs/tutorial/index.rst
    N src/gnu/llvm/docs/tutorial/LangImpl3.rst
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp1.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-06-20-.NET-Differences.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-Memory.txt
    N src/gnu/llvm/docs/HistoricalNotes/2000-12-06-EncodingIdea.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-MemoryResponse.txt
    N src/gnu/llvm/docs/HistoricalNotes/2002-05-12-InstListChange.txt
    N src/gnu/llvm/docs/HistoricalNotes/2000-12-06-MeetingSummary.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebate.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations2.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-01-31-UniversalIRIdea.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveCommentsResponse.txt
    N src/gnu/llvm/docs/HistoricalNotes/2007-OriginalClangReadme.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp2.txt
    N src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeasResp.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-07-06-LoweringIRForCodeGen.txt
    N src/gnu/llvm/docs/HistoricalNotes/2003-06-26-Reoptimizer2.txt
    N src/gnu/llvm/docs/HistoricalNotes/2003-06-25-Reoptimizer1.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-05-19-ExceptionResponse.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-05-18-ExceptionHandling.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-04-16-DynamicCompilation.txt
    N src/gnu/llvm/docs/HistoricalNotes/2002-06-25-MegaPatchInfo.txt
    N src/gnu/llvm/docs/HistoricalNotes/2003-01-23-CygwinNotes.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-09-18-OptimizeExceptions.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveComments.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp4.txt
    N src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations.txt
    N src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeas.txt
    N src/gnu/llvm/docs/Frontend/PerformanceTips.rst
    N src/gnu/llvm/docs/_static/lines.gif
    N src/gnu/llvm/docs/_static/llvm.css
    N src/gnu/llvm/docs/_ocamldoc/style.css
    N src/gnu/llvm/lib/LLVMBuild.txt
    N src/gnu/llvm/lib/CMakeLists.txt
    N src/gnu/llvm/lib/Makefile
    N src/gnu/llvm/lib/LibDriver/LibDriver.cpp
    N src/gnu/llvm/lib/LibDriver/LLVMBuild.txt
    N src/gnu/llvm/lib/LibDriver/CMakeLists.txt
    N src/gnu/llvm/lib/LibDriver/Makefile
    N src/gnu/llvm/lib/LibDriver/Options.td
    N src/gnu/llvm/lib/LTO/LTOCodeGenerator.cpp
    N src/gnu/llvm/lib/LTO/LTOModule.cpp
    N src/gnu/llvm/lib/LTO/LLVMBuild.txt
    N src/gnu/llvm/lib/LTO/CMakeLists.txt
    N src/gnu/llvm/lib/LTO/Makefile
    N src/gnu/llvm/lib/CodeGen/PHIElimination.cpp
    N src/gnu/llvm/lib/CodeGen/VirtRegMap.cpp
    N src/gnu/llvm/lib/CodeGen/MIRPrinter.cpp
    N src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
    N src/gnu/llvm/lib/CodeGen/SlotIndexes.cpp
    N src/gnu/llvm/lib/CodeGen/MachineSink.cpp
    N src/gnu/llvm/lib/CodeGen/PostRASchedulerList.cpp
    N src/gnu/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
    N src/gnu/llvm/lib/CodeGen/StatepointExampleGC.cpp
    N src/gnu/llvm/lib/CodeGen/LiveRangeCalc.h
    N src/gnu/llvm/lib/CodeGen/IntrinsicLowering.cpp
    N src/gnu/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
    N src/gnu/llvm/lib/CodeGen/MachineFunctionPass.cpp
    N src/gnu/llvm/lib/CodeGen/MachineFunction.cpp
    N src/gnu/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
    N src/gnu/llvm/lib/CodeGen/PrologEpilogInserter.cpp
    N src/gnu/llvm/lib/CodeGen/SplitKit.cpp
    N src/gnu/llvm/lib/CodeGen/ImplicitNullChecks.cpp
    N src/gnu/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
    N src/gnu/llvm/lib/CodeGen/FuncletLayout.cpp
    N src/gnu/llvm/lib/CodeGen/LiveDebugVariables.cpp
    N src/gnu/llvm/lib/CodeGen/LiveIntervalUnion.cpp
    N src/gnu/llvm/lib/CodeGen/WinEHPrepare.cpp
    N src/gnu/llvm/lib/CodeGen/EarlyIfConversion.cpp
    N src/gnu/llvm/lib/CodeGen/SplitKit.h
    N src/gnu/llvm/lib/CodeGen/PseudoSourceValue.cpp
    N src/gnu/llvm/lib/CodeGen/LLVMTargetMachine.cpp
    N src/gnu/llvm/lib/CodeGen/LiveInterval.cpp
    N src/gnu/llvm/lib/CodeGen/OcamlGC.cpp
    N src/gnu/llvm/lib/CodeGen/MIRPrinter.h
    N src/gnu/llvm/lib/CodeGen/Analysis.cpp
    N src/gnu/llvm/lib/CodeGen/LiveDebugValues.cpp
    N src/gnu/llvm/lib/CodeGen/MachineTraceMetrics.cpp
    N src/gnu/llvm/lib/CodeGen/GCStrategy.cpp
    N src/gnu/llvm/lib/CodeGen/GCRootLowering.cpp
    N src/gnu/llvm/lib/CodeGen/SpillPlacement.h
    N src/gnu/llvm/lib/CodeGen/DFAPacketizer.cpp
    N src/gnu/llvm/lib/CodeGen/MachineLoopInfo.cpp
    N src/gnu/llvm/lib/CodeGen/SpillPlacement.cpp
    N src/gnu/llvm/lib/CodeGen/LexicalScopes.cpp
    N src/gnu/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
    N src/gnu/llvm/lib/CodeGen/TailDuplication.cpp
    N src/gnu/llvm/lib/CodeGen/TargetLoweringBase.cpp
    N src/gnu/llvm/lib/CodeGen/MachineModuleInfo.cpp
    N src/gnu/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
    N src/gnu/llvm/lib/CodeGen/StackMaps.cpp
    N src/gnu/llvm/lib/CodeGen/MachineRegionInfo.cpp
    N src/gnu/llvm/lib/CodeGen/RegisterPressure.cpp
    N src/gnu/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
    N src/gnu/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
    N src/gnu/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
    N src/gnu/llvm/lib/CodeGen/README.txt
    N src/gnu/llvm/lib/CodeGen/MachinePassRegistry.cpp
    N src/gnu/llvm/lib/CodeGen/Spiller.h
    N src/gnu/llvm/lib/CodeGen/LiveDebugVariables.h
    N src/gnu/llvm/lib/CodeGen/RegAllocBase.h
    N src/gnu/llvm/lib/CodeGen/BranchFolding.cpp
    N src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
    N src/gnu/llvm/lib/CodeGen/LiveRangeEdit.cpp
    N src/gnu/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
    N src/gnu/llvm/lib/CodeGen/module.modulemap
    N src/gnu/llvm/lib/CodeGen/SjLjEHPrepare.cpp
    N src/gnu/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
    N src/gnu/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
    N src/gnu/llvm/lib/CodeGen/CallingConvLower.cpp
    N src/gnu/llvm/lib/CodeGen/MachineRegisterInfo.cpp
    N src/gnu/llvm/lib/CodeGen/OptimizePHIs.cpp
    N src/gnu/llvm/lib/CodeGen/ErlangGC.cpp
    N src/gnu/llvm/lib/CodeGen/MachineBlockPlacement.cpp
    N src/gnu/llvm/lib/CodeGen/ShadowStackGC.cpp
    N src/gnu/llvm/lib/CodeGen/RegAllocPBQP.cpp
    N src/gnu/llvm/lib/CodeGen/CodeGenPrepare.cpp
    N src/gnu/llvm/lib/CodeGen/MachineCombiner.cpp
    N src/gnu/llvm/lib/CodeGen/InterleavedAccessPass.cpp
    N src/gnu/llvm/lib/CodeGen/LLVMBuild.txt
    N src/gnu/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
    N src/gnu/llvm/lib/CodeGen/CodeGen.cpp
    N src/gnu/llvm/lib/CodeGen/MIRPrintingPass.cpp
    N src/gnu/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
    N src/gnu/llvm/lib/CodeGen/ShrinkWrap.cpp
    N src/gnu/llvm/lib/CodeGen/DwarfEHPrepare.cpp
    N src/gnu/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
    N src/gnu/llvm/lib/CodeGen/AllocationOrder.h
    N src/gnu/llvm/lib/CodeGen/MachineDominators.cpp
    N src/gnu/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp
    N src/gnu/llvm/lib/CodeGen/IfConversion.cpp
    N src/gnu/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
    N src/gnu/llvm/lib/CodeGen/TargetInstrInfo.cpp
    N src/gnu/llvm/lib/CodeGen/GCMetadata.cpp
    N src/gnu/llvm/lib/CodeGen/StackSlotColoring.cpp
    N src/gnu/llvm/lib/CodeGen/PeepholeOptimizer.cpp
    N src/gnu/llvm/lib/CodeGen/AntiDepBreaker.h
    N src/gnu/llvm/lib/CodeGen/MachineSSAUpdater.cpp
    N src/gnu/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
    N src/gnu/llvm/lib/CodeGen/CMakeLists.txt
    N src/gnu/llvm/lib/CodeGen/LiveRegMatrix.cpp
    N src/gnu/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
    N src/gnu/llvm/lib/CodeGen/LiveRangeCalc.cpp
    N src/gnu/llvm/lib/CodeGen/CalcSpillWeights.cpp
    N src/gnu/llvm/lib/CodeGen/InlineSpiller.cpp
    N src/gnu/llvm/lib/CodeGen/MachineInstr.cpp
    N src/gnu/llvm/lib/CodeGen/MachineLICM.cpp
    N src/gnu/llvm/lib/CodeGen/RegisterScavenging.cpp
    N src/gnu/llvm/lib/CodeGen/AtomicExpandPass.cpp
    N src/gnu/llvm/lib/CodeGen/Makefile
    N src/gnu/llvm/lib/CodeGen/MachineVerifier.cpp
    N src/gnu/llvm/lib/CodeGen/Passes.cpp
    N src/gnu/llvm/lib/CodeGen/MachineCopyPropagation.cpp
    N src/gnu/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
    N src/gnu/llvm/lib/CodeGen/RegisterClassInfo.cpp
    N src/gnu/llvm/lib/CodeGen/CoreCLRGC.cpp
    N src/gnu/llvm/lib/CodeGen/ParallelCG.cpp
    N src/gnu/llvm/lib/CodeGen/StackProtector.cpp
    N src/gnu/llvm/lib/CodeGen/TargetOptionsImpl.cpp
    N src/gnu/llvm/lib/CodeGen/InterferenceCache.cpp
    N src/gnu/llvm/lib/CodeGen/ScheduleDAG.cpp
    N src/gnu/llvm/lib/CodeGen/ExpandISelPseudos.cpp
    N src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.cpp
    N src/gnu/llvm/lib/CodeGen/UnreachableBlockElim.cpp
    N src/gnu/llvm/lib/CodeGen/MachineCSE.cpp
    N src/gnu/llvm/lib/CodeGen/StackColoring.cpp
    N src/gnu/llvm/lib/CodeGen/TargetRegisterInfo.cpp
    N src/gnu/llvm/lib/CodeGen/RegAllocBase.cpp
    N src/gnu/llvm/lib/CodeGen/RegAllocBasic.cpp
    N src/gnu/llvm/lib/CodeGen/RegAllocGreedy.cpp
    N src/gnu/llvm/lib/CodeGen/ExecutionDepsFix.cpp
    N src/gnu/llvm/lib/CodeGen/BranchFolding.h
    N src/gnu/llvm/lib/CodeGen/RegAllocFast.cpp
    N src/gnu/llvm/lib/CodeGen/MachineBasicBlock.cpp
    N src/gnu/llvm/lib/CodeGen/InterferenceCache.h
    N src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
    N src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.h
    N src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
    N src/gnu/llvm/lib/CodeGen/RegisterCoalescer.h
    N src/gnu/llvm/lib/CodeGen/LiveStackAnalysis.cpp
    N src/gnu/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
    N src/gnu/llvm/lib/CodeGen/MachinePostDominators.cpp
    N src/gnu/llvm/lib/CodeGen/GCMetadataPrinter.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalMerge.cpp
    N src/gnu/llvm/lib/CodeGen/LiveVariables.cpp
    N src/gnu/llvm/lib/CodeGen/RegisterCoalescer.cpp
    N src/gnu/llvm/lib/CodeGen/LivePhysRegs.cpp
    N src/gnu/llvm/lib/CodeGen/FaultMaps.cpp
    N src/gnu/llvm/lib/CodeGen/EdgeBundles.cpp
    N src/gnu/llvm/lib/CodeGen/TargetSchedule.cpp
    N src/gnu/llvm/lib/CodeGen/AllocationOrder.cpp
    N src/gnu/llvm/lib/CodeGen/MachineInstrBundle.cpp
    N src/gnu/llvm/lib/CodeGen/MachineScheduler.cpp
    N src/gnu/llvm/lib/CodeGen/MIRParser/MIParser.cpp
    N src/gnu/llvm/lib/CodeGen/MIRParser/MIParser.h
    N src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.cpp
    N src/gnu/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
    N src/gnu/llvm/lib/CodeGen/MIRParser/LLVMBuild.txt
    N src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.h
    N src/gnu/llvm/lib/CodeGen/MIRParser/CMakeLists.txt
    N src/gnu/llvm/lib/CodeGen/MIRParser/Makefile
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/Makefile
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/Makefile
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h
    N src/gnu/llvm/lib/Passes/LLVMBuild.txt
    N src/gnu/llvm/lib/Passes/CMakeLists.txt
    N src/gnu/llvm/lib/Passes/PassRegistry.def
    N src/gnu/llvm/lib/Passes/Makefile
    N src/gnu/llvm/lib/Passes/PassBuilder.cpp
    N src/gnu/llvm/lib/Option/Option.cpp
    N src/gnu/llvm/lib/Option/LLVMBuild.txt
    N src/gnu/llvm/lib/Option/OptTable.cpp
    N src/gnu/llvm/lib/Option/Arg.cpp
    N src/gnu/llvm/lib/Option/CMakeLists.txt
    N src/gnu/llvm/lib/Option/Makefile
    N src/gnu/llvm/lib/Option/ArgList.cpp
    N src/gnu/llvm/lib/IR/Verifier.cpp
    N src/gnu/llvm/lib/IR/Pass.cpp
    N src/gnu/llvm/lib/IR/FunctionInfo.cpp
    N src/gnu/llvm/lib/IR/Function.cpp
    N src/gnu/llvm/lib/IR/InlineAsm.cpp
    N src/gnu/llvm/lib/IR/DebugInfo.cpp
    N src/gnu/llvm/lib/IR/Instruction.cpp
    N src/gnu/llvm/lib/IR/User.cpp
    N src/gnu/llvm/lib/IR/SymbolTableListTraitsImpl.h
    N src/gnu/llvm/lib/IR/ValueSymbolTable.cpp
    N src/gnu/llvm/lib/IR/Instructions.cpp
    N src/gnu/llvm/lib/IR/Core.cpp
    N src/gnu/llvm/lib/IR/DataLayout.cpp
    N src/gnu/llvm/lib/IR/Mangler.cpp
    N src/gnu/llvm/lib/IR/TypeFinder.cpp
    N src/gnu/llvm/lib/IR/IRPrintingPasses.cpp
    N src/gnu/llvm/lib/IR/ValueTypes.cpp
    N src/gnu/llvm/lib/IR/IntrinsicInst.cpp
    N src/gnu/llvm/lib/IR/module.modulemap
    N src/gnu/llvm/lib/IR/GCOV.cpp
    N src/gnu/llvm/lib/IR/GVMaterializer.cpp
    N src/gnu/llvm/lib/IR/MetadataImpl.h
    N src/gnu/llvm/lib/IR/AttributeImpl.h
    N src/gnu/llvm/lib/IR/AutoUpgrade.cpp
    N src/gnu/llvm/lib/IR/DiagnosticPrinter.cpp
    N src/gnu/llvm/lib/IR/LLVMBuild.txt
    N src/gnu/llvm/lib/IR/DebugInfoMetadata.cpp
    N src/gnu/llvm/lib/IR/Use.cpp
    N src/gnu/llvm/lib/IR/DebugLoc.cpp
    N src/gnu/llvm/lib/IR/LLVMContextImpl.cpp
    N src/gnu/llvm/lib/IR/Statepoint.cpp
    N src/gnu/llvm/lib/IR/CMakeLists.txt
    N src/gnu/llvm/lib/IR/ConstantsContext.h
    N src/gnu/llvm/lib/IR/Value.cpp
    N src/gnu/llvm/lib/IR/BasicBlock.cpp
    N src/gnu/llvm/lib/IR/Makefile
    N src/gnu/llvm/lib/IR/DiagnosticInfo.cpp
    N src/gnu/llvm/lib/IR/Dominators.cpp
    N src/gnu/llvm/lib/IR/DIBuilder.cpp
    N src/gnu/llvm/lib/IR/Comdat.cpp
    N src/gnu/llvm/lib/IR/Attributes.cpp
    N src/gnu/llvm/lib/IR/AttributesCompatFunc.td
    N src/gnu/llvm/lib/IR/AsmWriter.cpp
    N src/gnu/llvm/lib/IR/Module.cpp
    N src/gnu/llvm/lib/IR/Type.cpp
    N src/gnu/llvm/lib/IR/LLVMContextImpl.h
    N src/gnu/llvm/lib/IR/ConstantFold.h
    N src/gnu/llvm/lib/IR/PassManager.cpp
    N src/gnu/llvm/lib/IR/Constants.cpp
    N src/gnu/llvm/lib/IR/ConstantRange.cpp
    N src/gnu/llvm/lib/IR/Operator.cpp
    N src/gnu/llvm/lib/IR/Globals.cpp
    N src/gnu/llvm/lib/IR/MDBuilder.cpp
    N src/gnu/llvm/lib/IR/ConstantFold.cpp
    N src/gnu/llvm/lib/IR/LegacyPassManager.cpp
    N src/gnu/llvm/lib/IR/IRBuilder.cpp
    N src/gnu/llvm/lib/IR/Metadata.cpp
    N src/gnu/llvm/lib/IR/LLVMContext.cpp
    N src/gnu/llvm/lib/IR/PassRegistry.cpp
    N src/gnu/llvm/lib/Object/SymbolSize.cpp
    N src/gnu/llvm/lib/Object/COFFYAML.cpp
    N src/gnu/llvm/lib/Object/ELF.cpp
    N src/gnu/llvm/lib/Object/ArchiveWriter.cpp
    N src/gnu/llvm/lib/Object/Binary.cpp
    N src/gnu/llvm/lib/Object/Archive.cpp
    N src/gnu/llvm/lib/Object/SymbolicFile.cpp
    N src/gnu/llvm/lib/Object/LLVMBuild.txt
    N src/gnu/llvm/lib/Object/RecordStreamer.h
    N src/gnu/llvm/lib/Object/COFFObjectFile.cpp
    N src/gnu/llvm/lib/Object/Object.cpp
    N src/gnu/llvm/lib/Object/CMakeLists.txt
    N src/gnu/llvm/lib/Object/ELFObjectFile.cpp
    N src/gnu/llvm/lib/Object/Error.cpp
    N src/gnu/llvm/lib/Object/Makefile
    N src/gnu/llvm/lib/Object/ObjectFile.cpp
    N src/gnu/llvm/lib/Object/MachOUniversal.cpp
    N src/gnu/llvm/lib/Object/FunctionIndexObjectFile.cpp
    N src/gnu/llvm/lib/Object/MachOObjectFile.cpp
    N src/gnu/llvm/lib/Object/ELFYAML.cpp
    N src/gnu/llvm/lib/Object/RecordStreamer.cpp
    N src/gnu/llvm/lib/Object/IRObjectFile.cpp
    N src/gnu/llvm/lib/Transforms/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/Makefile
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/InstCombine/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/Makefile
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    N src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LoopSimplify.cpp
    N src/gnu/llvm/lib/Transforms/Utils/Utils.cpp
    N src/gnu/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
    N src/gnu/llvm/lib/Transforms/Utils/CloneModule.cpp
    N src/gnu/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
    N src/gnu/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
    N src/gnu/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LoopUtils.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LowerInvoke.cpp
    N src/gnu/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    N src/gnu/llvm/lib/Transforms/Utils/Local.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LoopVersioning.cpp
    N src/gnu/llvm/lib/Transforms/Utils/SplitModule.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LoopUnroll.cpp
    N src/gnu/llvm/lib/Transforms/Utils/FlattenCFG.cpp
    N src/gnu/llvm/lib/Transforms/Utils/MetaRenamer.cpp
    N src/gnu/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LowerSwitch.cpp
    N src/gnu/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
    N src/gnu/llvm/lib/Transforms/Utils/Mem2Reg.cpp
    N src/gnu/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
    N src/gnu/llvm/lib/Transforms/Utils/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/Utils/ModuleUtils.cpp
    N src/gnu/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp
    N src/gnu/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
    N src/gnu/llvm/lib/Transforms/Utils/IntegerDivision.cpp
    N src/gnu/llvm/lib/Transforms/Utils/Makefile
    N src/gnu/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
    N src/gnu/llvm/lib/Transforms/Utils/GlobalStatus.cpp
    N src/gnu/llvm/lib/Transforms/Utils/ValueMapper.cpp
    N src/gnu/llvm/lib/Transforms/Utils/CtorUtils.cpp
    N src/gnu/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
    N src/gnu/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
    N src/gnu/llvm/lib/Transforms/Utils/InlineFunction.cpp
    N src/gnu/llvm/lib/Transforms/Utils/CodeExtractor.cpp
    N src/gnu/llvm/lib/Transforms/Utils/SSAUpdater.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LCSSA.cpp
    N src/gnu/llvm/lib/Transforms/Utils/InstructionNamer.cpp
    N src/gnu/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
    N src/gnu/llvm/lib/Transforms/Utils/CloneFunction.cpp
    N src/gnu/llvm/lib/Transforms/Vectorize/Vectorize.cpp
    N src/gnu/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
    N src/gnu/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
    N src/gnu/llvm/lib/Transforms/Vectorize/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    N src/gnu/llvm/lib/Transforms/Vectorize/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/Vectorize/Makefile
    N src/gnu/llvm/lib/Transforms/Scalar/ADCE.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/Reassociate.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LICM.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopRotation.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/Scalar.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoadCombine.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/Sink.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/Scalar/SROA.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/Makefile
    N src/gnu/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/BDCE.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/SCCP.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/JumpThreading.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/DCE.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/ConstantProp.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/GVN.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/Float2Int.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/Scalarizer.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
    N src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
    N src/gnu/llvm/lib/Transforms/ObjCARC/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.h
    N src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.h
    N src/gnu/llvm/lib/Transforms/ObjCARC/Makefile
    N src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
    N src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
    N src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
    N src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/Instrumentation/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/Makefile
    N src/gnu/llvm/lib/Transforms/Instrumentation/SafeStack.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
    N src/gnu/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/CFGMST.h
    N src/gnu/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
    N src/gnu/llvm/lib/Transforms/IPO/InlineSimple.cpp
    N src/gnu/llvm/lib/Transforms/IPO/MergeFunctions.cpp
    N src/gnu/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
    N src/gnu/llvm/lib/Transforms/IPO/GlobalDCE.cpp
    N src/gnu/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
    N src/gnu/llvm/lib/Transforms/IPO/FunctionImport.cpp
    N src/gnu/llvm/lib/Transforms/IPO/GlobalOpt.cpp
    N src/gnu/llvm/lib/Transforms/IPO/StripSymbols.cpp
    N src/gnu/llvm/lib/Transforms/IPO/Inliner.cpp
    N src/gnu/llvm/lib/Transforms/IPO/ExtractGV.cpp
    N src/gnu/llvm/lib/Transforms/IPO/PruneEH.cpp
    N src/gnu/llvm/lib/Transforms/IPO/SampleProfile.cpp
    N src/gnu/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
    N src/gnu/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
    N src/gnu/llvm/lib/Transforms/IPO/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/IPO/ConstantMerge.cpp
    N src/gnu/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
    N src/gnu/llvm/lib/Transforms/IPO/PartialInlining.cpp
    N src/gnu/llvm/lib/Transforms/IPO/LowerBitSets.cpp
    N src/gnu/llvm/lib/Transforms/IPO/LoopExtractor.cpp
    N src/gnu/llvm/lib/Transforms/IPO/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/IPO/InlineAlways.cpp
    N src/gnu/llvm/lib/Transforms/IPO/Makefile
    N src/gnu/llvm/lib/Transforms/IPO/Internalize.cpp
    N src/gnu/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
    N src/gnu/llvm/lib/Transforms/IPO/IPO.cpp
    N src/gnu/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
    N src/gnu/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
    N src/gnu/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
    N src/gnu/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
    N src/gnu/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
    N src/gnu/llvm/lib/Transforms/Hello/Hello.cpp
    N src/gnu/llvm/lib/Transforms/Hello/Hello.exports
    N src/gnu/llvm/lib/Transforms/Hello/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/Hello/Makefile
    N src/gnu/llvm/lib/TableGen/StringMatcher.cpp
    N src/gnu/llvm/lib/TableGen/SetTheory.cpp
    N src/gnu/llvm/lib/TableGen/module.modulemap
    N src/gnu/llvm/lib/TableGen/TGParser.h
    N src/gnu/llvm/lib/TableGen/TableGenBackend.cpp
    N src/gnu/llvm/lib/TableGen/Main.cpp
    N src/gnu/llvm/lib/TableGen/LLVMBuild.txt
    N src/gnu/llvm/lib/TableGen/Record.cpp
    N src/gnu/llvm/lib/TableGen/CMakeLists.txt
    N src/gnu/llvm/lib/TableGen/TGLexer.cpp
    N src/gnu/llvm/lib/TableGen/Error.cpp
    N src/gnu/llvm/lib/TableGen/Makefile
    N src/gnu/llvm/lib/TableGen/TGLexer.h
    N src/gnu/llvm/lib/TableGen/TGParser.cpp
    N src/gnu/llvm/lib/DebugInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/DebugInfo/CMakeLists.txt
    N src/gnu/llvm/lib/DebugInfo/Makefile
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDB.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/LLVMBuild.txt
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBContext.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/CMakeLists.txt
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Makefile
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/Line.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/ListRecordBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
    N src/gnu/llvm/lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/CMakeLists.txt
    N src/gnu/llvm/lib/DebugInfo/CodeView/Makefile
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/module.modulemap
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/LLVMBuild.txt
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/Makefile
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
    N src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
    N src/gnu/llvm/lib/DebugInfo/Symbolize/LLVMBuild.txt
    N src/gnu/llvm/lib/DebugInfo/Symbolize/CMakeLists.txt
    N src/gnu/llvm/lib/DebugInfo/Symbolize/Makefile
    N src/gnu/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
    N src/gnu/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
    N src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
    N src/gnu/llvm/lib/AsmParser/LLParser.cpp
    N src/gnu/llvm/lib/AsmParser/LLParser.h
    N src/gnu/llvm/lib/AsmParser/module.modulemap
    N src/gnu/llvm/lib/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/AsmParser/LLLexer.h
    N src/gnu/llvm/lib/AsmParser/LLToken.h
    N src/gnu/llvm/lib/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/AsmParser/Makefile
    N src/gnu/llvm/lib/AsmParser/Parser.cpp
    N src/gnu/llvm/lib/AsmParser/LLLexer.cpp
    N src/gnu/llvm/lib/Target/README.txt
    N src/gnu/llvm/lib/Target/TargetIntrinsicInfo.cpp
    N src/gnu/llvm/lib/Target/TargetRecip.cpp
    N src/gnu/llvm/lib/Target/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/TargetMachineC.cpp
    N src/gnu/llvm/lib/Target/TargetMachine.cpp
    N src/gnu/llvm/lib/Target/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Target.cpp
    N src/gnu/llvm/lib/Target/Makefile
    N src/gnu/llvm/lib/Target/TargetLoweringObjectFile.cpp
    N src/gnu/llvm/lib/Target/TargetSubtargetInfo.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTX.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXSection.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXVector.td
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/NVPTX/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/NVVMReflect.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
    N src/gnu/llvm/lib/Target/NVPTX/ManagedStringPool.h
    N src/gnu/llvm/lib/Target/NVPTX/cl_common_defines.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
    N src/gnu/llvm/lib/Target/NVPTX/CMakeLists.txt
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
    N src/gnu/llvm/lib/Target/NVPTX/Makefile
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTX.td
    N src/gnu/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
    N src/gnu/llvm/lib/Target/NVPTX/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.h
    N src/gnu/llvm/lib/Target/NVPTX/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/NVPTX/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/NVPTX/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/NVPTX/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/NVPTX/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
    N src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/Relooper.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/README.txt
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPEI.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/Relooper.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
    N src/gnu/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/CMakeLists.txt
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/Makefile
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
    N src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
    N src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/WebAssembly/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/AVR/AVRConfig.h
    N src/gnu/llvm/lib/Target/AVR/AVR.h
    N src/gnu/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/AVR/AVRCallingConv.td
    N src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.h
    N src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.td
    N src/gnu/llvm/lib/Target/AVR/AVR.td
    N src/gnu/llvm/lib/Target/AVR/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/AVR/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/Makefile
    N src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.cpp
    N src/gnu/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
    N src/gnu/llvm/lib/Target/AVR/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/Hexagon/HexagonCallingConv.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
    N src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSchedule.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonRDF.h
    N src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonOperands.td
    N src/gnu/llvm/lib/Target/Hexagon/RDFGraph.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
    N src/gnu/llvm/lib/Target/Hexagon/RDFCopy.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonIsetDx.td
    N src/gnu/llvm/lib/Target/Hexagon/BitTracker.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
    N src/gnu/llvm/lib/Target/Hexagon/Hexagon.h
    N src/gnu/llvm/lib/Target/Hexagon/RDFGraph.h
    N src/gnu/llvm/lib/Target/Hexagon/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
    N src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Hexagon/BitTracker.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/Hexagon/Makefile
    N src/gnu/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
    N src/gnu/llvm/lib/Target/Hexagon/Hexagon.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrEnc.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonRDF.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSelectCCInfo.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
    N src/gnu/llvm/lib/Target/Hexagon/RDFCopy.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonSystemInst.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrAlias.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
    N src/gnu/llvm/lib/Target/Hexagon/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Hexagon/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/Hexagon/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Hexagon/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Hexagon/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
    N src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
    N src/gnu/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
    N src/gnu/llvm/lib/Target/Hexagon/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Hexagon/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Hexagon/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
    N src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIDefines.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIFixControlFlowLiveIntervals.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/CaymanInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.h
    N src/gnu/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIFixSGPRLiveRanges.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SISchedule.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600TextureIntrinsicsReplacer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/CIInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
    N src/gnu/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/VIInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600Defines.h
    N src/gnu/llvm/lib/Target/AMDGPU/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600Instructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600Intrinsics.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.h
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIInstrFormats.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/Makefile
    N src/gnu/llvm/lib/Target/AMDGPU/R600InstrFormats.td
    N src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/Processors.td
    N src/gnu/llvm/lib/Target/AMDGPU/R600Schedule.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/VIInstrFormats.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUDiagnosticInfoUnsupported.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIIntrinsics.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R700Instructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUDiagnosticInfoUnsupported.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/Makefile
    N src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
    N src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AMDGPU/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUFixupKinds.h
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.h
    N src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.h
    N src/gnu/llvm/lib/Target/Mips/Mips16HardFloat.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsOptionRecord.h
    N src/gnu/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips16InstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsISelLowering.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/Mips.h
    N src/gnu/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips.td
    N src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsCondMov.td
    N src/gnu/llvm/lib/Target/Mips/MipsFastISel.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsScheduleP5600.td
    N src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.h
    N src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.h
    N src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.h
    N src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsOs16.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsLongBranch.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
    N src/gnu/llvm/lib/Target/Mips/MipsSchedule.td
    N src/gnu/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
    N src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.h
    N src/gnu/llvm/lib/Target/Mips/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.h
    N src/gnu/llvm/lib/Target/Mips/MipsInstrFPU.td
    N src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.h
    N src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.h
    N src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
    N src/gnu/llvm/lib/Target/Mips/MipsTargetStreamer.h
    N src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.h
    N src/gnu/llvm/lib/Target/Mips/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/MipsInstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
    N src/gnu/llvm/lib/Target/Mips/Makefile
    N src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
    N src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.h
    N src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsCallingConv.td
    N src/gnu/llvm/lib/Target/Mips/MipsISelLowering.h
    N src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.h
    N src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.td
    N src/gnu/llvm/lib/Target/Mips/MipsCCState.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsSubtarget.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsSubtarget.h
    N src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
    N src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.h
    N src/gnu/llvm/lib/Target/Mips/MSA.txt
    N src/gnu/llvm/lib/Target/Mips/MipsCCState.h
    N src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
    N src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.h
    N src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.h
    N src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.h
    N src/gnu/llvm/lib/Target/Mips/Mips64InstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
    N src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
    N src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.cpp
    N src/gnu/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
    N src/gnu/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h
    N src/gnu/llvm/lib/Target/Mips/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Mips/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Mips/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/Mips/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Mips/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Mips/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Mips/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Mips/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
    N src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
    N src/gnu/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
    N src/gnu/llvm/lib/Target/Mips/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Mips/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Mips/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/CppBackend/CPPBackend.cpp
    N src/gnu/llvm/lib/Target/CppBackend/CPPTargetMachine.h
    N src/gnu/llvm/lib/Target/CppBackend/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/CppBackend/CMakeLists.txt
    N src/gnu/llvm/lib/Target/CppBackend/Makefile
    N src/gnu/llvm/lib/Target/CppBackend/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/CppBackend/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/CppBackend/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/CppBackend/TargetInfo/CppBackendTargetInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZ.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZPatterns.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZ.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/README.txt
    N src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZOperands.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFP.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
    N src/gnu/llvm/lib/Target/SystemZ/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.h
    N src/gnu/llvm/lib/Target/SystemZ/CMakeLists.txt
    N src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZInstrVector.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZProcessors.td
    N src/gnu/llvm/lib/Target/SystemZ/Makefile
    N src/gnu/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZOperators.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/SystemZ/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/SystemZ/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
    N src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
    N src/gnu/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/SystemZ/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
    N src/gnu/llvm/lib/Target/SystemZ/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/SystemZ/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/SystemZ/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/SystemZ/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
    N src/gnu/llvm/lib/Target/SystemZ/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/SystemZ/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCSchedule.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleA2.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrBuilder.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrVSX.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP7.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCFastISel.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrFormats.td
    N src/gnu/llvm/lib/Target/PowerPC/README.txt
    N src/gnu/llvm/lib/Target/PowerPC/README_ALTIVEC.txt
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrSPE.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP8.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG3.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG5.td
    N src/gnu/llvm/lib/Target/PowerPC/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCSchedule440.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrQPX.td
    N src/gnu/llvm/lib/Target/PowerPC/CMakeLists.txt
    N src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPC.td
    N src/gnu/llvm/lib/Target/PowerPC/Makefile
    N src/gnu/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPC.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCInstrHTM.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCLoopDataPrefetch.cpp
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4.td
    N src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
    N src/gnu/llvm/lib/Target/PowerPC/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
    N src/gnu/llvm/lib/Target/PowerPC/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/PowerPC/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
    N src/gnu/llvm/lib/Target/PowerPC/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/PowerPC/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/PowerPC/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/PowerPC/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/PowerPC/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/PowerPC/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
    N src/gnu/llvm/lib/Target/PowerPC/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/PowerPC/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/PowerPC/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
    N src/gnu/llvm/lib/Target/X86/X86ScheduleAtom.td
    N src/gnu/llvm/lib/Target/X86/X86InstrMMX.td
    N src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/X86/X86IntrinsicsInfo.h
    N src/gnu/llvm/lib/Target/X86/X86SchedSandyBridge.td
    N src/gnu/llvm/lib/Target/X86/X86InstrShiftRotate.td
    N src/gnu/llvm/lib/Target/X86/X86InstrSVM.td
    N src/gnu/llvm/lib/Target/X86/X86FixupLEAs.cpp
    N src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/X86/X86FloatingPoint.cpp
    N src/gnu/llvm/lib/Target/X86/X86RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/X86/X86.td
    N src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
    N src/gnu/llvm/lib/Target/X86/X86WinEHState.cpp
    N src/gnu/llvm/lib/Target/X86/X86Subtarget.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrExtension.td
    N src/gnu/llvm/lib/Target/X86/README.txt
    N src/gnu/llvm/lib/Target/X86/X86TargetMachine.cpp
    N src/gnu/llvm/lib/Target/X86/X86VZeroUpper.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrCMovSetCC.td
    N src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
    N src/gnu/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrFPStack.td
    N src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrTSX.td
    N src/gnu/llvm/lib/Target/X86/X86Instr3DNow.td
    N src/gnu/llvm/lib/Target/X86/X86AsmPrinter.cpp
    N src/gnu/llvm/lib/Target/X86/X86TargetMachine.h
    N src/gnu/llvm/lib/Target/X86/X86InstrArithmetic.td
    N src/gnu/llvm/lib/Target/X86/X86FrameLowering.h
    N src/gnu/llvm/lib/Target/X86/X86AsmPrinter.h
    N src/gnu/llvm/lib/Target/X86/X86ScheduleSLM.td
    N src/gnu/llvm/lib/Target/X86/X86InstrAVX512.td
    N src/gnu/llvm/lib/Target/X86/X86InstrBuilder.h
    N src/gnu/llvm/lib/Target/X86/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/X86/X86InstrSGX.td
    N src/gnu/llvm/lib/Target/X86/X86MCInstLower.cpp
    N src/gnu/llvm/lib/Target/X86/X86RegisterInfo.td
    N src/gnu/llvm/lib/Target/X86/X86CallingConv.h
    N src/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
    N src/gnu/llvm/lib/Target/X86/X86FastISel.cpp
    N src/gnu/llvm/lib/Target/X86/README-X86-64.txt
    N src/gnu/llvm/lib/Target/X86/X86InstrVMX.td
    N src/gnu/llvm/lib/Target/X86/CMakeLists.txt
    N src/gnu/llvm/lib/Target/X86/X86InstrSystem.td
    N src/gnu/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
    N src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/X86/X86Schedule.td
    N src/gnu/llvm/lib/Target/X86/X86SchedHaswell.td
    N src/gnu/llvm/lib/Target/X86/X86InstrXOP.td
    N src/gnu/llvm/lib/Target/X86/Makefile
    N src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
    N src/gnu/llvm/lib/Target/X86/X86ScheduleBtVer2.td
    N src/gnu/llvm/lib/Target/X86/X86ISelLowering.cpp
    N src/gnu/llvm/lib/Target/X86/X86Subtarget.h
    N src/gnu/llvm/lib/Target/X86/X86InstrMPX.td
    N src/gnu/llvm/lib/Target/X86/X86InstrSSE.td
    N src/gnu/llvm/lib/Target/X86/X86InstrFMA.td
    N src/gnu/llvm/lib/Target/X86/X86InstrFormats.td
    N src/gnu/llvm/lib/Target/X86/X86PadShortFunction.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrCompiler.td
    N src/gnu/llvm/lib/Target/X86/X86ExpandPseudo.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrInfo.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrInfo.h
    N src/gnu/llvm/lib/Target/X86/X86InstrInfo.td
    N src/gnu/llvm/lib/Target/X86/X86InstrControl.td
    N src/gnu/llvm/lib/Target/X86/README-FPStack.txt
    N src/gnu/llvm/lib/Target/X86/README-UNIMPLEMENTED.txt
    N src/gnu/llvm/lib/Target/X86/X86RegisterInfo.h
    N src/gnu/llvm/lib/Target/X86/X86ISelLowering.h
    N src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.h
    N src/gnu/llvm/lib/Target/X86/X86.h
    N src/gnu/llvm/lib/Target/X86/README-MMX.txt
    N src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.h
    N src/gnu/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
    N src/gnu/llvm/lib/Target/X86/README-SSE.txt
    N src/gnu/llvm/lib/Target/X86/X86CallingConv.td
    N src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
    N src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
    N src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
    N src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
    N src/gnu/llvm/lib/Target/X86/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/X86/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/X86/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstComments.h
    N src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
    N src/gnu/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
    N src/gnu/llvm/lib/Target/X86/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/X86/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/X86/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
    N src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
    N src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp
    N src/gnu/llvm/lib/Target/X86/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
    N src/gnu/llvm/lib/Target/X86/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/X86/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/X86/AsmParser/X86Operand.h
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MachORelocationInfo.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h
    N src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86ELFRelocationInfo.cpp
    N src/gnu/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
    N src/gnu/llvm/lib/Target/X86/Utils/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/X86/Utils/CMakeLists.txt
    N src/gnu/llvm/lib/Target/X86/Utils/Makefile
    N src/gnu/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
    N src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
    N src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
    N src/gnu/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
    N src/gnu/llvm/lib/Target/X86/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
    N src/gnu/llvm/lib/Target/X86/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/X86/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/X86/Disassembler/X86Disassembler.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430.td
    N src/gnu/llvm/lib/Target/MSP430/MSP430CallingConv.td
    N src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.td
    N src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
    N src/gnu/llvm/lib/Target/MSP430/README.txt
    N src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
    N src/gnu/llvm/lib/Target/MSP430/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
    N src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.h
    N src/gnu/llvm/lib/Target/MSP430/CMakeLists.txt
    N src/gnu/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
    N src/gnu/llvm/lib/Target/MSP430/Makefile
    N src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430InstrFormats.td
    N src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
    N src/gnu/llvm/lib/Target/MSP430/MSP430.h
    N src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h
    N src/gnu/llvm/lib/Target/MSP430/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
    N src/gnu/llvm/lib/Target/MSP430/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/MSP430/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/MSP430/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/MSP430/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.td
    N src/gnu/llvm/lib/Target/ARM/ARM.td
    N src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.h
    N src/gnu/llvm/lib/Target/ARM/README-Thumb.txt
    N src/gnu/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
    N src/gnu/llvm/lib/Target/ARM/A15SDOptimizer.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMFeatures.h
    N src/gnu/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMInstrNEON.td
    N src/gnu/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/ARM/LICENSE.TXT
    N src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARM.h
    N src/gnu/llvm/lib/Target/ARM/README.txt
    N src/gnu/llvm/lib/Target/ARM/ARMCallingConv.td
    N src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMInstrThumb.td
    N src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMScheduleSwift.td
    N src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMInstrVFP.td
    N src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMFastISel.cpp
    N src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMInstrFormats.td
    N src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMCallingConv.h
    N src/gnu/llvm/lib/Target/ARM/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMSubtarget.h
    N src/gnu/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMPerfectShuffle.h
    N src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.h
    N src/gnu/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.h
    N src/gnu/llvm/lib/Target/ARM/CMakeLists.txt
    N src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
    N src/gnu/llvm/lib/Target/ARM/Makefile
    N src/gnu/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMSubtarget.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/MLxExpansionPass.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMScheduleV6.td
    N src/gnu/llvm/lib/Target/ARM/ARMScheduleA9.td
    N src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMScheduleA8.td
    N src/gnu/llvm/lib/Target/ARM/ARMISelLowering.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.h
    N src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/README-Thumb2.txt
    N src/gnu/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMSchedule.td
    N src/gnu/llvm/lib/Target/ARM/ARMISelLowering.h
    N src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.h
    N src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.h
    N src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.h
    N src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.h
    N src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.td
    N src/gnu/llvm/lib/Target/ARM/ARMInstrThumb2.td
    N src/gnu/llvm/lib/Target/ARM/ARMMCInstLower.cpp
    N src/gnu/llvm/lib/Target/ARM/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/ARM/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
    N src/gnu/llvm/lib/Target/ARM/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
    N src/gnu/llvm/lib/Target/ARM/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/ARM/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/ARM/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
    N src/gnu/llvm/lib/Target/ARM/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/ARM/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/ARM/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
    N src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
    N src/gnu/llvm/lib/Target/ARM/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/ARM/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/ARM/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64Schedule.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64FastISel.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/AArch64/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedM1.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
    N src/gnu/llvm/lib/Target/AArch64/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64InstrFormats.td
    N src/gnu/llvm/lib/Target/AArch64/Makefile
    N src/gnu/llvm/lib/Target/AArch64/AArch64BranchRelaxation.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedA53.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    N src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
    N src/gnu/llvm/lib/Target/AArch64/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AArch64/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
    N src/gnu/llvm/lib/Target/AArch64/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AArch64/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AArch64/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
    N src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
    N src/gnu/llvm/lib/Target/AArch64/Utils/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AArch64/Utils/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/Utils/Makefile
    N src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
    N src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
    N src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
    N src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
    N src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
    N src/gnu/llvm/lib/Target/AArch64/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AArch64/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreTargetStreamer.h
    N src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.h
    N src/gnu/llvm/lib/Target/XCore/XCore.h
    N src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreISelLowering.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
    N src/gnu/llvm/lib/Target/XCore/README.txt
    N src/gnu/llvm/lib/Target/XCore/XCore.td
    N src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.td
    N src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.td
    N src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.cpp
    N src/gnu/llvm/lib/Target/XCore/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
    N src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.h
    N src/gnu/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.h
    N src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/XCore/CMakeLists.txt
    N src/gnu/llvm/lib/Target/XCore/XCoreISelLowering.h
    N src/gnu/llvm/lib/Target/XCore/Makefile
    N src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.h
    N src/gnu/llvm/lib/Target/XCore/XCoreCallingConv.td
    N src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.h
    N src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.h
    N src/gnu/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
    N src/gnu/llvm/lib/Target/XCore/XCoreInstrFormats.td
    N src/gnu/llvm/lib/Target/XCore/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h
    N src/gnu/llvm/lib/Target/XCore/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/XCore/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp
    N src/gnu/llvm/lib/Target/XCore/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
    N src/gnu/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/XCore/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
    N src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/XCore/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/XCore/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/XCore/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
    N src/gnu/llvm/lib/Target/XCore/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/XCore/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/XCore/Disassembler/Makefile
    N src/gnu/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.td
    N src/gnu/llvm/lib/Target/BPF/BPF.td
    N src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.h
    N src/gnu/llvm/lib/Target/BPF/BPFSubtarget.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFSubtarget.h
    N src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.h
    N src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.cpp
    N src/gnu/llvm/lib/Target/BPF/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.h
    N src/gnu/llvm/lib/Target/BPF/BPFISelLowering.h
    N src/gnu/llvm/lib/Target/BPF/CMakeLists.txt
    N src/gnu/llvm/lib/Target/BPF/Makefile
    N src/gnu/llvm/lib/Target/BPF/BPF.h
    N src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.h
    N src/gnu/llvm/lib/Target/BPF/BPFCallingConv.td
    N src/gnu/llvm/lib/Target/BPF/BPFISelLowering.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFInstrFormats.td
    N src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.h
    N src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.td
    N src/gnu/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.cpp
    N src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
    N src/gnu/llvm/lib/Target/BPF/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/BPF/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/BPF/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.h
    N src/gnu/llvm/lib/Target/BPF/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/BPF/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/BPF/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.h
    N src/gnu/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.h
    N src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.h
    N src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
    N src/gnu/llvm/lib/Target/Sparc/README.txt
    N src/gnu/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcInstr64Bit.td
    N src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.h
    N src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/Sparc/Sparc.h
    N src/gnu/llvm/lib/Target/Sparc/SparcTargetStreamer.h
    N src/gnu/llvm/lib/Target/Sparc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcInstrVIS.td
    N src/gnu/llvm/lib/Target/Sparc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
    N src/gnu/llvm/lib/Target/Sparc/Makefile
    N src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.h
    N src/gnu/llvm/lib/Target/Sparc/SparcCallingConv.td
    N src/gnu/llvm/lib/Target/Sparc/SparcInstrFormats.td
    N src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
    N src/gnu/llvm/lib/Target/Sparc/Sparc.td
    N src/gnu/llvm/lib/Target/Sparc/SparcInstrAliases.td
    N src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.td
    N src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.h
    N src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.td
    N src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
    N src/gnu/llvm/lib/Target/Sparc/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Sparc/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Sparc/InstPrinter/Makefile
    N src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
    N src/gnu/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
    N src/gnu/llvm/lib/Target/Sparc/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Sparc/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Sparc/TargetInfo/Makefile
    N src/gnu/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
    N src/gnu/llvm/lib/Target/Sparc/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Sparc/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Sparc/AsmParser/Makefile
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/Makefile
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
    N src/gnu/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
    N src/gnu/llvm/lib/Target/Sparc/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Sparc/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Sparc/Disassembler/Makefile
    N src/gnu/llvm/lib/LineEditor/LineEditor.cpp
    N src/gnu/llvm/lib/LineEditor/LLVMBuild.txt
    N src/gnu/llvm/lib/LineEditor/CMakeLists.txt
    N src/gnu/llvm/lib/LineEditor/Makefile
    N src/gnu/llvm/lib/Analysis/ObjCARCInstKind.cpp
    N src/gnu/llvm/lib/Analysis/TargetTransformInfo.cpp
    N src/gnu/llvm/lib/Analysis/BlockFrequencyInfo.cpp
    N src/gnu/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/LoopInfo.cpp
    N src/gnu/llvm/lib/Analysis/CFG.cpp
    N src/gnu/llvm/lib/Analysis/CallPrinter.cpp
    N src/gnu/llvm/lib/Analysis/CostModel.cpp
    N src/gnu/llvm/lib/Analysis/MemDepPrinter.cpp
    N src/gnu/llvm/lib/Analysis/DomPrinter.cpp
    N src/gnu/llvm/lib/Analysis/InstructionSimplify.cpp
    N src/gnu/llvm/lib/Analysis/AliasAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/CallGraphSCCPass.cpp
    N src/gnu/llvm/lib/Analysis/CFGPrinter.cpp
    N src/gnu/llvm/lib/Analysis/Analysis.cpp
    N src/gnu/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
    N src/gnu/llvm/lib/Analysis/MemoryLocation.cpp
    N src/gnu/llvm/lib/Analysis/DivergenceAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/InlineCost.cpp
    N src/gnu/llvm/lib/Analysis/TargetLibraryInfo.cpp
    N src/gnu/llvm/lib/Analysis/InstCount.cpp
    N src/gnu/llvm/lib/Analysis/README.txt
    N src/gnu/llvm/lib/Analysis/RegionPass.cpp
    N src/gnu/llvm/lib/Analysis/LoopPass.cpp
    N src/gnu/llvm/lib/Analysis/CodeMetrics.cpp
    N src/gnu/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
    N src/gnu/llvm/lib/Analysis/DependenceAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/DominanceFrontier.cpp
    N src/gnu/llvm/lib/Analysis/LoopAccessAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/CFLAliasAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/EHPersonalities.cpp
    N src/gnu/llvm/lib/Analysis/MemDerefPrinter.cpp
    N src/gnu/llvm/lib/Analysis/LazyCallGraph.cpp
    N src/gnu/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/Makefile
    N src/gnu/llvm/lib/Analysis/Delinearization.cpp
    N src/gnu/llvm/lib/Analysis/CallGraph.cpp
    N src/gnu/llvm/lib/Analysis/ScalarEvolution.cpp
    N src/gnu/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
    N src/gnu/llvm/lib/Analysis/MemoryBuiltins.cpp
    N src/gnu/llvm/lib/Analysis/LLVMBuild.txt
    N src/gnu/llvm/lib/Analysis/PostDominators.cpp
    N src/gnu/llvm/lib/Analysis/DemandedBits.cpp
    N src/gnu/llvm/lib/Analysis/CaptureTracking.cpp
    N src/gnu/llvm/lib/Analysis/PHITransAddr.cpp
    N src/gnu/llvm/lib/Analysis/CGSCCPassManager.cpp
    N src/gnu/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
    N src/gnu/llvm/lib/Analysis/ValueTracking.cpp
    N src/gnu/llvm/lib/Analysis/CMakeLists.txt
    N src/gnu/llvm/lib/Analysis/LazyValueInfo.cpp
    N src/gnu/llvm/lib/Analysis/SparsePropagation.cpp
    N src/gnu/llvm/lib/Analysis/IntervalPartition.cpp
    N src/gnu/llvm/lib/Analysis/AliasSetTracker.cpp
    N src/gnu/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
    N src/gnu/llvm/lib/Analysis/PtrUseVisitor.cpp
    N src/gnu/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
    N src/gnu/llvm/lib/Analysis/StratifiedSets.h
    N src/gnu/llvm/lib/Analysis/ScopedNoAliasAA.cpp
    N src/gnu/llvm/lib/Analysis/Trace.cpp
    N src/gnu/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
    N src/gnu/llvm/lib/Analysis/BranchProbabilityInfo.cpp
    N src/gnu/llvm/lib/Analysis/Interval.cpp
    N src/gnu/llvm/lib/Analysis/RegionInfo.cpp
    N src/gnu/llvm/lib/Analysis/Lint.cpp
    N src/gnu/llvm/lib/Analysis/GlobalsModRef.cpp
    N src/gnu/llvm/lib/Analysis/OrderedBasicBlock.cpp
    N src/gnu/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/VectorUtils.cpp
    N src/gnu/llvm/lib/Analysis/IVUsers.cpp
    N src/gnu/llvm/lib/Analysis/Loads.cpp
    N src/gnu/llvm/lib/Analysis/RegionPrinter.cpp
    N src/gnu/llvm/lib/Analysis/ConstantFolding.cpp
    N src/gnu/llvm/lib/Analysis/BasicAliasAnalysis.cpp
    N src/gnu/llvm/lib/Analysis/AssumptionCache.cpp
    N src/gnu/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerIO.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerMutate.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerInternal.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerTraceState.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerLoop.cpp
    N src/gnu/llvm/lib/Fuzzer/README.txt
    N src/gnu/llvm/lib/Fuzzer/FuzzerMain.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerUtil.cpp
    N src/gnu/llvm/lib/Fuzzer/cxx.dict
    N src/gnu/llvm/lib/Fuzzer/FuzzerInterface.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerDFSan.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerFlags.def
    N src/gnu/llvm/lib/Fuzzer/FuzzerInterface.h
    N src/gnu/llvm/lib/Fuzzer/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/FuzzerCrossOver.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerSanitizerOptions.cpp
    N src/gnu/llvm/lib/Fuzzer/pull_and_push_fuzz_corpus.sh
    N src/gnu/llvm/lib/Fuzzer/FuzzerDriver.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerSHA1.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-threaded.test
    N src/gnu/llvm/lib/Fuzzer/test/FullCoverageSetTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/StrncmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-traces.test
    N src/gnu/llvm/lib/Fuzzer/test/SwitchTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/SimpleTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-dfsan.test
    N src/gnu/llvm/lib/Fuzzer/test/NullDerefTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/hi.txt
    N src/gnu/llvm/lib/Fuzzer/test/TimeoutTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/StrcmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-dict.test
    N src/gnu/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/CounterTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/MemcmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/ThreadedTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/lit.cfg
    N src/gnu/llvm/lib/Fuzzer/test/SimpleHashTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer.test
    N src/gnu/llvm/lib/Fuzzer/test/SimpleCmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/test/CallerCalleeTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-drill.test
    N src/gnu/llvm/lib/Fuzzer/test/UserSuppliedFuzzerTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/merge.test
    N src/gnu/llvm/lib/Fuzzer/test/UninstrumentedTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/dict1.txt
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-timeout.test
    N src/gnu/llvm/lib/Fuzzer/test/lit.site.cfg.in
    N src/gnu/llvm/lib/Fuzzer/test/uninstrumented/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/test/dfsan/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/test/unit/lit.site.cfg.in
    N src/gnu/llvm/lib/Fuzzer/test/unit/lit.cfg
    N src/gnu/llvm/lib/Fuzzer/test/trace-bb/CMakeLists.txt
    N src/gnu/llvm/lib/ProfileData/CoverageMappingReader.cpp
    N src/gnu/llvm/lib/ProfileData/InstrProf.cpp
    N src/gnu/llvm/lib/ProfileData/SampleProf.cpp
    N src/gnu/llvm/lib/ProfileData/LLVMBuild.txt
    N src/gnu/llvm/lib/ProfileData/CoverageMappingWriter.cpp
    N src/gnu/llvm/lib/ProfileData/CMakeLists.txt
    N src/gnu/llvm/lib/ProfileData/Makefile
    N src/gnu/llvm/lib/ProfileData/SampleProfWriter.cpp
    N src/gnu/llvm/lib/ProfileData/InstrProfWriter.cpp
    N src/gnu/llvm/lib/ProfileData/InstrProfReader.cpp
    N src/gnu/llvm/lib/ProfileData/SampleProfReader.cpp
    N src/gnu/llvm/lib/ProfileData/CoverageMapping.cpp
    N src/gnu/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
    N src/gnu/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
    N src/gnu/llvm/lib/ExecutionEngine/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
    N src/gnu/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
    N src/gnu/llvm/lib/ExecutionEngine/TargetSelect.cpp
    N src/gnu/llvm/lib/ExecutionEngine/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/Makefile
    N src/gnu/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
    N src/gnu/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
    N src/gnu/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcArchitectureSupport.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/Makefile
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
    N src/gnu/llvm/lib/ExecutionEngine/Interpreter/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/Interpreter/Makefile
    N src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Makefile
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
    N src/gnu/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h
    N src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
    N src/gnu/llvm/lib/ExecutionEngine/MCJIT/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/MCJIT/Makefile
    N src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/Makefile
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
    N src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
    N src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
    N src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
    N src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/Makefile
    N src/gnu/llvm/lib/Bitcode/module.modulemap
    N src/gnu/llvm/lib/Bitcode/LLVMBuild.txt
    N src/gnu/llvm/lib/Bitcode/CMakeLists.txt
    N src/gnu/llvm/lib/Bitcode/Makefile
    N src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
    N src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
    N src/gnu/llvm/lib/Bitcode/Writer/LLVMBuild.txt
    N src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
    N src/gnu/llvm/lib/Bitcode/Writer/CMakeLists.txt
    N src/gnu/llvm/lib/Bitcode/Writer/Makefile
    N src/gnu/llvm/lib/Bitcode/Writer/BitWriter.cpp
    N src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.h
    N src/gnu/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
    N src/gnu/llvm/lib/Bitcode/Reader/BitReader.cpp
    N src/gnu/llvm/lib/Bitcode/Reader/LLVMBuild.txt
    N src/gnu/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
    N src/gnu/llvm/lib/Bitcode/Reader/CMakeLists.txt
    N src/gnu/llvm/lib/Bitcode/Reader/Makefile
    N src/gnu/llvm/lib/Support/APInt.cpp
    N src/gnu/llvm/lib/Support/ARMWinEH.cpp
    N src/gnu/llvm/lib/Support/raw_ostream.cpp
    N src/gnu/llvm/lib/Support/ThreadPool.cpp
    N src/gnu/llvm/lib/Support/ARMBuildAttrs.cpp
    N src/gnu/llvm/lib/Support/regcclass.h
    N src/gnu/llvm/lib/Support/Process.cpp
    N src/gnu/llvm/lib/Support/Signals.cpp
    N src/gnu/llvm/lib/Support/Dwarf.cpp
    N src/gnu/llvm/lib/Support/PrettyStackTrace.cpp
    N src/gnu/llvm/lib/Support/Compression.cpp
    N src/gnu/llvm/lib/Support/FoldingSet.cpp
    N src/gnu/llvm/lib/Support/Hashing.cpp
    N src/gnu/llvm/lib/Support/Timer.cpp
    N src/gnu/llvm/lib/Support/DynamicLibrary.cpp
    N src/gnu/llvm/lib/Support/regfree.c
    N src/gnu/llvm/lib/Support/CrashRecoveryContext.cpp
    N src/gnu/llvm/lib/Support/StringSaver.cpp
    N src/gnu/llvm/lib/Support/FormattedStream.cpp
    N src/gnu/llvm/lib/Support/COM.cpp
    N src/gnu/llvm/lib/Support/APSInt.cpp
    N src/gnu/llvm/lib/Support/TimeValue.cpp
    N src/gnu/llvm/lib/Support/Statistic.cpp
    N src/gnu/llvm/lib/Support/Watchdog.cpp
    N src/gnu/llvm/lib/Support/SourceMgr.cpp
    N src/gnu/llvm/lib/Support/Errno.cpp
    N src/gnu/llvm/lib/Support/StringMap.cpp
    N src/gnu/llvm/lib/Support/BranchProbability.cpp
    N src/gnu/llvm/lib/Support/LEB128.cpp
    N src/gnu/llvm/lib/Support/Path.cpp
    N src/gnu/llvm/lib/Support/IntEqClasses.cpp
    N src/gnu/llvm/lib/Support/Threading.cpp
    N src/gnu/llvm/lib/Support/regcomp.c
    N src/gnu/llvm/lib/Support/Twine.cpp
    N src/gnu/llvm/lib/Support/MemoryObject.cpp
    N src/gnu/llvm/lib/Support/Options.cpp
    N src/gnu/llvm/lib/Support/Regex.cpp
    N src/gnu/llvm/lib/Support/ConvertUTF.c
    N src/gnu/llvm/lib/Support/Atomic.cpp
    N src/gnu/llvm/lib/Support/SmallVector.cpp
    N src/gnu/llvm/lib/Support/Memory.cpp
    N src/gnu/llvm/lib/Support/APFloat.cpp
    N src/gnu/llvm/lib/Support/regerror.c
    N src/gnu/llvm/lib/Support/ThreadLocal.cpp
    N src/gnu/llvm/lib/Support/TargetParser.cpp
    N src/gnu/llvm/lib/Support/DeltaAlgorithm.cpp
    N src/gnu/llvm/lib/Support/Unicode.cpp
    N src/gnu/llvm/lib/Support/PluginLoader.cpp
    N src/gnu/llvm/lib/Support/LLVMBuild.txt
    N src/gnu/llvm/lib/Support/SmallPtrSet.cpp
    N src/gnu/llvm/lib/Support/regex_impl.h
    N src/gnu/llvm/lib/Support/SystemUtils.cpp
    N src/gnu/llvm/lib/Support/circular_raw_ostream.cpp
    N src/gnu/llvm/lib/Support/regutils.h
    N src/gnu/llvm/lib/Support/IntervalMap.cpp
    N src/gnu/llvm/lib/Support/Triple.cpp
    N src/gnu/llvm/lib/Support/DAGDeltaAlgorithm.cpp
    N src/gnu/llvm/lib/Support/LockFileManager.cpp
    N src/gnu/llvm/lib/Support/CMakeLists.txt
    N src/gnu/llvm/lib/Support/README.txt.system
    N src/gnu/llvm/lib/Support/regex2.h
    N src/gnu/llvm/lib/Support/Makefile
    N src/gnu/llvm/lib/Support/IntrusiveRefCntPtr.cpp
    N src/gnu/llvm/lib/Support/RandomNumberGenerator.cpp
    N src/gnu/llvm/lib/Support/regexec.c
    N src/gnu/llvm/lib/Support/COPYRIGHT.regex
    N src/gnu/llvm/lib/Support/SpecialCaseList.cpp
    N src/gnu/llvm/lib/Support/ManagedStatic.cpp
    N src/gnu/llvm/lib/Support/JamCRC.cpp
    N src/gnu/llvm/lib/Support/raw_os_ostream.cpp
    N src/gnu/llvm/lib/Support/Allocator.cpp
    N src/gnu/llvm/lib/Support/regengine.inc
    N src/gnu/llvm/lib/Support/ErrorHandling.cpp
    N src/gnu/llvm/lib/Support/StringRef.cpp
    N src/gnu/llvm/lib/Support/Host.cpp
    N src/gnu/llvm/lib/Support/DataExtractor.cpp
    N src/gnu/llvm/lib/Support/Debug.cpp
    N src/gnu/llvm/lib/Support/YAMLTraits.cpp
    N src/gnu/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp
    N src/gnu/llvm/lib/Support/GraphWriter.cpp
    N src/gnu/llvm/lib/Support/LineIterator.cpp
    N src/gnu/llvm/lib/Support/FileUtilities.cpp
    N src/gnu/llvm/lib/Support/TargetRegistry.cpp
    N src/gnu/llvm/lib/Support/RWMutex.cpp
    N src/gnu/llvm/lib/Support/CommandLine.cpp
    N src/gnu/llvm/lib/Support/MathExtras.cpp
    N src/gnu/llvm/lib/Support/StringExtras.cpp
    N src/gnu/llvm/lib/Support/StreamingMemoryObject.cpp
    N src/gnu/llvm/lib/Support/ScaledNumber.cpp
    N src/gnu/llvm/lib/Support/StringPool.cpp
    N src/gnu/llvm/lib/Support/FileOutputBuffer.cpp
    N src/gnu/llvm/lib/Support/DataStream.cpp
    N src/gnu/llvm/lib/Support/Program.cpp
    N src/gnu/llvm/lib/Support/BlockFrequency.cpp
    N src/gnu/llvm/lib/Support/ConvertUTFWrapper.cpp
    N src/gnu/llvm/lib/Support/Mutex.cpp
    N src/gnu/llvm/lib/Support/MD5.cpp
    N src/gnu/llvm/lib/Support/ToolOutputFile.cpp
    N src/gnu/llvm/lib/Support/regstrlcpy.c
    N src/gnu/llvm/lib/Support/MemoryBuffer.cpp
    N src/gnu/llvm/lib/Support/Locale.cpp
    N src/gnu/llvm/lib/Support/YAMLParser.cpp
    N src/gnu/llvm/lib/Support/Valgrind.cpp
    N src/gnu/llvm/lib/Support/regcname.h
    N src/gnu/llvm/lib/Support/Unix/Process.inc
    N src/gnu/llvm/lib/Support/Unix/Watchdog.inc
    N src/gnu/llvm/lib/Support/Unix/README.txt
    N src/gnu/llvm/lib/Support/Unix/RWMutex.inc
    N src/gnu/llvm/lib/Support/Unix/TimeValue.inc
    N src/gnu/llvm/lib/Support/Unix/Signals.inc
    N src/gnu/llvm/lib/Support/Unix/COM.inc
    N src/gnu/llvm/lib/Support/Unix/ThreadLocal.inc
    N src/gnu/llvm/lib/Support/Unix/Mutex.inc
    N src/gnu/llvm/lib/Support/Unix/Program.inc
    N src/gnu/llvm/lib/Support/Unix/Unix.h
    N src/gnu/llvm/lib/Support/Unix/Path.inc
    N src/gnu/llvm/lib/Support/Unix/Host.inc
    N src/gnu/llvm/lib/Support/Unix/Memory.inc
    N src/gnu/llvm/lib/Support/Windows/Process.inc
    N src/gnu/llvm/lib/Support/Windows/Watchdog.inc
    N src/gnu/llvm/lib/Support/Windows/explicit_symbols.inc
    N src/gnu/llvm/lib/Support/Windows/WindowsSupport.h
    N src/gnu/llvm/lib/Support/Windows/RWMutex.inc
    N src/gnu/llvm/lib/Support/Windows/TimeValue.inc
    N src/gnu/llvm/lib/Support/Windows/Signals.inc
    N src/gnu/llvm/lib/Support/Windows/COM.inc
    N src/gnu/llvm/lib/Support/Windows/ThreadLocal.inc
    N src/gnu/llvm/lib/Support/Windows/Mutex.inc
    N src/gnu/llvm/lib/Support/Windows/Program.inc
    N src/gnu/llvm/lib/Support/Windows/DynamicLibrary.inc
    N src/gnu/llvm/lib/Support/Windows/Path.inc
    N src/gnu/llvm/lib/Support/Windows/Host.inc
    N src/gnu/llvm/lib/Support/Windows/Memory.inc
    N src/gnu/llvm/lib/IRReader/LLVMBuild.txt
    N src/gnu/llvm/lib/IRReader/CMakeLists.txt
    N src/gnu/llvm/lib/IRReader/IRReader.cpp
    N src/gnu/llvm/lib/IRReader/Makefile
    N src/gnu/llvm/lib/MC/MCAssembler.cpp
    N src/gnu/llvm/lib/MC/StringTableBuilder.cpp
    N src/gnu/llvm/lib/MC/MCMachObjectTargetWriter.cpp
    N src/gnu/llvm/lib/MC/MCAsmInfoELF.cpp
    N src/gnu/llvm/lib/MC/MCNullStreamer.cpp
    N src/gnu/llvm/lib/MC/MCSymbolizer.cpp
    N src/gnu/llvm/lib/MC/MachObjectWriter.cpp
    N src/gnu/llvm/lib/MC/MCValue.cpp
    N src/gnu/llvm/lib/MC/MCELFObjectTargetWriter.cpp
    N src/gnu/llvm/lib/MC/MCSection.cpp
    N src/gnu/llvm/lib/MC/MCWin64EH.cpp
    N src/gnu/llvm/lib/MC/MCSymbol.cpp
    N src/gnu/llvm/lib/MC/MCInst.cpp
    N src/gnu/llvm/lib/MC/MCDwarf.cpp
    N src/gnu/llvm/lib/MC/MCStreamer.cpp
    N src/gnu/llvm/lib/MC/MCWinEH.cpp
    N src/gnu/llvm/lib/MC/MCInstrDesc.cpp
    N src/gnu/llvm/lib/MC/MCObjectFileInfo.cpp
    N src/gnu/llvm/lib/MC/MCMachOStreamer.cpp
    N src/gnu/llvm/lib/MC/MCCodeEmitter.cpp
    N src/gnu/llvm/lib/MC/MCContext.cpp
    N src/gnu/llvm/lib/MC/MCAsmInfoCOFF.cpp
    N src/gnu/llvm/lib/MC/MCFragment.cpp
    N src/gnu/llvm/lib/MC/MCObjectWriter.cpp
    N src/gnu/llvm/lib/MC/MCSectionELF.cpp
    N src/gnu/llvm/lib/MC/ConstantPools.cpp
    N src/gnu/llvm/lib/MC/LLVMBuild.txt
    N src/gnu/llvm/lib/MC/MCExpr.cpp
    N src/gnu/llvm/lib/MC/MCSchedule.cpp
    N src/gnu/llvm/lib/MC/MCRegisterInfo.cpp
    N src/gnu/llvm/lib/MC/MCTargetOptions.cpp
    N src/gnu/llvm/lib/MC/CMakeLists.txt
    N src/gnu/llvm/lib/MC/WinCOFFObjectWriter.cpp
    N src/gnu/llvm/lib/MC/MCInstPrinter.cpp
    N src/gnu/llvm/lib/MC/MCSectionCOFF.cpp
    N src/gnu/llvm/lib/MC/SubtargetFeature.cpp
    N src/gnu/llvm/lib/MC/Makefile
    N src/gnu/llvm/lib/MC/ELFObjectWriter.cpp
    N src/gnu/llvm/lib/MC/MCInstrAnalysis.cpp
    N src/gnu/llvm/lib/MC/MCCodeGenInfo.cpp
    N src/gnu/llvm/lib/MC/MCAsmBackend.cpp
    N src/gnu/llvm/lib/MC/MCAsmStreamer.cpp
    N src/gnu/llvm/lib/MC/MCSubtargetInfo.cpp
    N src/gnu/llvm/lib/MC/MCAsmInfo.cpp
    N src/gnu/llvm/lib/MC/MCAsmInfoDarwin.cpp
    N src/gnu/llvm/lib/MC/MCObjectStreamer.cpp
    N src/gnu/llvm/lib/MC/MCELFStreamer.cpp
    N src/gnu/llvm/lib/MC/WinCOFFStreamer.cpp
    N src/gnu/llvm/lib/MC/MCSymbolELF.cpp
    N src/gnu/llvm/lib/MC/MCSectionMachO.cpp
    N src/gnu/llvm/lib/MC/MCLabel.cpp
    N src/gnu/llvm/lib/MC/YAML.cpp
    N src/gnu/llvm/lib/MC/MCLinkerOptimizationHint.cpp
    N src/gnu/llvm/lib/MC/MCParser/AsmLexer.cpp
    N src/gnu/llvm/lib/MC/MCParser/AsmParser.cpp
    N src/gnu/llvm/lib/MC/MCParser/COFFAsmParser.cpp
    N src/gnu/llvm/lib/MC/MCParser/LLVMBuild.txt
    N src/gnu/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
    N src/gnu/llvm/lib/MC/MCParser/MCAsmParser.cpp
    N src/gnu/llvm/lib/MC/MCParser/MCAsmLexer.cpp
    N src/gnu/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
    N src/gnu/llvm/lib/MC/MCParser/CMakeLists.txt
    N src/gnu/llvm/lib/MC/MCParser/ELFAsmParser.cpp
    N src/gnu/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
    N src/gnu/llvm/lib/MC/MCParser/Makefile
    N src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.cpp
    N src/gnu/llvm/lib/MC/MCDisassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/MC/MCDisassembler/CMakeLists.txt
    N src/gnu/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
    N src/gnu/llvm/lib/MC/MCDisassembler/Makefile
    N src/gnu/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
    N src/gnu/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
    N src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.h
    N src/gnu/llvm/lib/Linker/LinkDiagnosticInfo.h
    N src/gnu/llvm/lib/Linker/IRMover.cpp
    N src/gnu/llvm/lib/Linker/LLVMBuild.txt
    N src/gnu/llvm/lib/Linker/CMakeLists.txt
    N src/gnu/llvm/lib/Linker/Makefile
    N src/gnu/llvm/lib/Linker/LinkModules.cpp
    N src/gnu/llvm/resources/windows_version_resource.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/03 16:51:15

Modified files:
	sys/net        : bfd.c 

Log message:
handle the remaining bits of the packet we are sent


CVSROOT:	/cvs
Module name:	src
Changes by:	giovanni@cvs.openbsd.org	2016/09/03 16:59:06

Modified files:
	usr.sbin/smtpd : mta.c smtp_session.c 

Log message:
log IP/hostname for all SMTP operations.
patch from Pavel Korovin, thanks
ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 17:11:01

Modified files:
	sys/arch/sparc64/conf: ld.script 

Log message:
ld knows PT_OPENBSD_RANDOMIZE now


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/03 17:14:56

Modified files:
	sbin/isakmpd   : Makefile 

Log message:
A commented block starts with
# If you have ElectricFence available, you can spot abuses of the heap."
Or, uhm you can simply use our malloc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/03 17:38:57

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	www            : Makefile 
Removed files:
	www/cherokee   : Makefile distinfo 
	www/cherokee/patches: patch-Makefile_in 
	                      patch-admin_configured_py_pre 
	                      patch-admin_wizards_php_py 
	                      patch-cherokee_Makefile_in 
	                      patch-cherokee_common-internal_h 
	                      patch-cherokee_conf_sample_pre 
	                      patch-cherokee_handler_streaming_c 
	                      patch-cherokee_main_admin_c 
	                      patch-cherokee_validator_ldap_c 
	                      patch-configure_in patch-constants_h_pre 
	www/cherokee/pkg: DESCR-geoip DESCR-ldap DESCR-main DESCR-mysql 
	                  DESCR-streaming MESSAGE-main PLIST-geoip 
	                  PLIST-ldap PLIST-main PLIST-mysql 
	                  PLIST-streaming cherokee.rc 

Log message:
Remove www/cherokee.

Upstream is almost dead. The package is a webserver, so better safe than sorry.

Help jca@ sthen@. OK jca@ and MAINTAINER.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/03 18:34:29

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

Log message:
Treat .cpp files as C++ source code in make depend.

ok deraadt@ jca@ jsg@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2016/09/03 18:56:08

Modified files:
	sys/arch/luna88k/luna88k: clock.c 

Log message:
Modify to ANSI-style function declarations.  No binary change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/03 18:59:26

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
cherokee-main -> cherokee. Spotted by jca@.


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2016/09/03 20:07:48

Modified files:
	share/man/man9 : mbuf.9 

Log message:
Fix incorrect formatting and add the missing argument name for m_resethdr().

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2016/09/03 20:26:45

Modified files:
	share/man/man9 : mbuf.9 

Log message:
Sync struct pkthdr with sys/mbuf.h


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 00:07:47

Modified files:
	gnu/usr.bin/cvs/doc: cvs.texinfo 

Log message:
httpS://www.openbsd.org/


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/04 02:26:48

Modified files:
	sys/net        : switchctl.c 

Log message:
Do "goto failed" in case returning EAGAIN as well.

ok goda


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/04 02:33:50

Modified files:
	sys/arch/sparc64/conf: ld.script 

Log message:
ld also knows about PT_OPENBSD_BOOTDATA


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/04 02:42:47

Modified files:
	sys/arch/powerpc/include: tcb.h 

Log message:
Telling gcc the TCB pointer is in %r2 via the 'register asm' extension
tests out on powerpc and generates slightly better code


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/04 02:49:18

Modified files:
	sys/arch/amd64/include: vmmvar.h 
	sys/arch/amd64/amd64: vmm.c 

Log message:
Restrict MSR access to supported ones, log invalid accesses.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/04 02:49:35

Modified files:
	sys/arch/amd64/include: tcb.h 
	sys/arch/i386/include: tcb.h 
	sys/arch/m88k/include: tcb.h 
	sys/arch/sparc64/include: tcb.h 

Log message:
TCB_GET_MEMBER() is no longer used after the TIB changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/04 02:55:13

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Update to nss 3.26.

See
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.26_release_notes,
notables changes:

- the letsencrypt CA (ISRG Root X1) root certificate was added
- NPN is disabled and ALPN is enabled by default


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/04 02:56:38

Modified files:
	x11/gnome/calendar: Makefile distinfo 
	x11/gnome/calendar/pkg: PLIST 

Log message:
update to gnome-calendar-3.20.3


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/04 03:00:14

Modified files:
	usr.bin/openssl: apps.c 

Log message:
Options that take a time argument....take an argument

diff from Kinichiro Inoguchi (kinichiro.inoguchi (at) gmail.com)


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 03:04:39

Modified files:
	x11/xfe        : Makefile distinfo 
	x11/xfe/patches: patch-Makefile_in patch-src_xfedefs_h 
Removed files:
	x11/xfe/patches: patch-src_XFileExplorer_cpp patch-xvt_ttyinit_c 
	                 patch-xvt_xvt_h 

Log message:
bugfix update to 1.42


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/04 03:14:49

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/04 03:22:29

Modified files:
	sys/arch/amd64/amd64: db_trace.c locore.S vector.S 
	sys/arch/amd64/include: cpu.h cpufunc.h db_machdep.h frameasm.h 
	sys/conf       : GENERIC files 
	sys/ddb        : db_extern.h db_usrreq.c db_var.h 
	sys/kern       : init_main.c kern_clock.c kern_sysctl.c 
	                 subr_prof.c 
	sys/sys        : sysctl.h systm.h 
Added files:
	sys/ddb        : db_prof.c 

Log message:
Introduce Dynamic Profiling, a ddb(4) based & gprof compatible kernel
profiling framework.

Code patching is used to enable probes when entering functions.  The
probes will call a mcount()-like function to match the behavior of a
GPROF kernel.

Currently only available on amd64 and guarded under DDBPROF.  Support
for other archs will follow soon.

A new sysctl knob, ddb.console, need to be set to 1 in securelevel 0
to be able to use this feature.

Inputs and ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 03:24:38

Modified files:
	lib/libc/hash  : rmd160.3 sha1.3 sha2.3 

Log message:
remove caveats that are either misleading or unhelpful.
ok jmc naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 03:28:12

Modified files:
	lib/libc/hash  : sha2.3 

Log message:
jmc says you can never have too many functions in one man page, so list
the SHA512/256 functions as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/04 03:33:49

Modified files:
	usr.sbin/smtpd : control.c smtpctl.8 smtpctl.c smtpd.c smtpd.h 

Log message:
Remove the "smtpctl stop" command.
The daemon is stopped with kill(1).

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/04 03:36:37

Modified files:
	sbin/ping      : ping.c 

Log message:
Switch ping to getaddrinfo while retaining inet_aton functionality as
has been done in the traceroute merge.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 03:37:26

Modified files:
	etc            : crontab 

Log message:
bump the random timeout to taking % 2048 sec to avoid modulus bias

ok phessler


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/04 03:38:02

Added files:
	regress/lib/libc/locale/wcrtomb: Makefile test_wcrtomb.c 

Log message:
test wcrtomb(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/04 03:39:01

Modified files:
	sys/net        : bfd.h bfd.c route.c route.h rtsock.c 

Log message:
Make it possible to toggle RTF_BFD via RTM_CHANGE and fix some minor things
in bfd.c. Make bfd_rtfree() a void function.
OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/04 03:41:03

Modified files:
	sbin/route     : keywords.h keywords.sh route.c 

Log message:
Make it possible to set the RTF_BFD flag in a change request. Also add a
nobfd option to turn it off again. While here also print the fmask in the
rtmsg dump so it is possible to figure out why something happens (or not).
OK phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/04 03:46:46

Modified files:
	devel/ruby-rspec/3/core: Makefile distinfo 

Log message:
update to rspec-core-3.5.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/04 03:47:56

Modified files:
	net/telepathy/telepathy-mission-control: Makefile distinfo 
	net/telepathy/telepathy-mission-control/pkg: PLIST 

Log message:
update to telepathy-mission-control-5.16.4


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/04 03:52:03

Modified files:
	distrib/alpha/common: install.md 
	distrib/amd64/common: install.md 
	distrib/armv7/ramdisk: install.md 
	distrib/hppa   : install.md 
	distrib/i386/common: install.md 
	distrib/landisk/ramdisk: install.md 
	distrib/loongson/ramdisk: install.md 
	distrib/luna88k/ramdisk: install.md 
	distrib/macppc/ramdisk: install.md 
	distrib/octeon/ramdisk: install.md 
	distrib/sgi/ramdisk: install.md 
	distrib/socppc/ramdisk: install.md 
	distrib/sparc64/common: install.md 

Log message:
Move files created by root during install/upgrade in a subdir of
/tmp with proper permissions so that unprivileged programs can not
tamper with them.

positive feedback from deraadt
OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/04 03:54:22

Modified files:
	distrib/alpha/common: list 
	distrib/amd64/common: list 
	distrib/armv7/ramdisk: list 
	distrib/hppa/ramdisk: list.local 
	distrib/i386/common: list 
	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/socppc/ramdisk: list 
	distrib/sparc64/bsd.rd: list 
	distrib/sparc64/ramdisk: list 
	distrib/sparc64/ramdiskB: list 

Log message:
Move files created by root during install/upgrade in a subdir of
/tmp with proper permissions so that unprivileged programs can not
tamper with them.

positive feedback from deraadt
OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/04 03:54:25

Modified files:
	lib/libcrypto  : Makefile 
	lib/libexpat   : Makefile 
	lib/libfuse    : Makefile 
	lib/libssl     : Makefile 
	lib/libz       : Makefile 

Log message:
only regen pkg-config files when required; ok jasper


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/04 03:56:46

Modified files:
	distrib/miniroot: dot.profile install.sub 

Log message:
Move files created by root during install/upgrade in a subdir of
/tmp with proper permissions so that unprivileged programs can not
tamper with them.

positive feedback from deraadt
OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/04 04:06:11

Modified files:
	distrib/armv7/miniroot/cubie: Makefile 
	distrib/armv7/ramdisk: install.md list 
	distrib/notes/armv7: contents 

Log message:
Switch the cubie miniroot from the Allwinner A10 based Cubieboard1
to the Allwinner A20 based Cubieboard2 now that problems with cortex A7
are fixed.  There seems to be more people with the Cubieboard2
than the Cubieboard1.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/04 04:10:23

Modified files:
	usr.sbin/ospfd : ospfd.c rde.c 

Log message:
A few bits of stray leading/embedded/trailing whitespace spotted while
stealing code.


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/04 04:13:36

Modified files:
	lib/librthread : rthread.c rthread.h rthread_file.c 
	                 rthread_fork.c rthread_libc.c rthread_rwlock.c 
	                 rthread_sem.c rthread_spin_lock.c 
	                 rthread_stack.c rthread_sync.c rthread_tls.c 

Log message:
Get rid of ticket support, replace "struct _spinlock" with "_atomic_lock_t".

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 04:14:35

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

Log message:
Get rid of pointless iwm_mvm_time_event_send_add() wrapper.
Call iwm_mvm_send_time_event_cmd() directly instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/09/04 04:15:04

Modified files:
	distrib/miniroot: install.sub 

Log message:
Improve the auto disk selection and also apply it for installs as well
as for upgrades.

- For installs, find all and any disks available.
- For upgrades, look for 'a' partitions with the typical root filesystem
directories in them.

In both cases, if one and only one match is found, it will be selected.

If no disk or multiple disks are found, the installer will require you
to specify a disk, be it by hand or by auto{install,upgrade}.conf.

ok rpe@ krw@ "Innovative." deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 04:21:14

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

Log message:
Remove unused iwm_mvm_binding_update() wrapper function and replace the
iwm_mvm_binding_add_vif() wrapper with a direct call to iwm_mvm_binding_cmd().


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 04:22:06

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/arch/hppa/conf: GENERIC 
	sys/arch/i386/conf: GENERIC RAMDISK_CD 
	sys/arch/macppc/conf: GENERIC 

Log message:
bha depends on the deleted aha.h, so it will follow it into the attic


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/04 04:26:02

Modified files:
	sbin/iked      : iked.h ikev2_msg.c util.c 

Log message:
Now that we have IP_SENDSRCADDR, add sendtofrom().

Ok jca@ and reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/04 04:32:01

Modified files:
	sys/net        : route.c route.h if.c 
	sys/netinet    : in.c 
	sys/netinet6   : in6.c 

Log message:
Purge routes attached to an address when this address is removed.

This is done to stop using stale ifa attached to routes, which is
the easiest way to make rtisvalid(9) MP-safe.

sthen@ and henning@ like it, ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 04:35:39

Modified files:
	share/man/man4 : Makefile eisa.4 isa.4 pci.4 
	sys/dev/eisa   : files.eisa 
	sys/dev/isa    : files.isa 
	sys/dev/pci    : files.pci 
Removed files:
	share/man/man4 : bha.4 
	sys/dev/eisa   : bha_eisa.c 
	sys/dev/ic     : bha.c bhareg.h bhavar.h 
	sys/dev/isa    : bha_isa.c 
	sys/dev/pci    : bha_pci.c 

Log message:
naddy discovered that bha no longer builds because it includes the now
deleted aha.h header. therefore bha must be dragged into the attic too.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 04:40:59

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

Log message:
Rename iwm_mvm_phy_ctxt_apply() to iwm_mvm_phy_ctxt_cmd() and get rid of
redundant iwm_mvm_phy_ctxt_add() and iwm_mvm_phy_ctxt_changed() wrappers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/04 04:43:52

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

Log message:
Avoid double negations in tests.

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/04 04:44:28

Modified files:
	sbin/ping6     : ping6.c 

Log message:
move to ping's getaddrinfo version to reduce diff; no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/04 04:45:11

Modified files:
	share/man/man7 : hier.7 

Log message:
Add /var/syspatch/ to hier(7).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/04 04:45:29

Modified files:
	sys/dev/i2c    : iatp.c 

Log message:
correct the size passed to free in iatp_write_reg
ok jcs@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/04 04:51:24

Modified files:
	sys/arch/alpha/alpha: conf.c 
	sys/arch/amd64/amd64: conf.c 
	sys/arch/arm/arm: conf.c 
	sys/arch/hppa/hppa: conf.c 
	sys/arch/i386/i386: conf.c 
	sys/arch/landisk/landisk: conf.c 
	sys/arch/loongson/loongson: conf.c 
	sys/arch/luna88k/luna88k: conf.c 
	sys/arch/macppc/macppc: conf.c 
	sys/arch/octeon/octeon: conf.c 
	sys/arch/sgi/sgi: conf.c 
	sys/arch/socppc/socppc: conf.c 
	sys/arch/sparc64/sparc64: conf.c 
	sys/kern       : vfs_bio.c 
	sys/scsi       : st.c 
	sys/sys        : conf.h 

Log message:
Remove support for tape block devices. Nobody mount(8)s tapes any longer.
ok deraadt@ guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/04 04:53:41

Modified files:
	graphics/py-Pillow: Makefile distinfo 
	graphics/py-Pillow/pkg: PLIST 
Removed files:
	graphics/py-Pillow/patches: patch-setup_py 

Log message:
update to py-Pillow 3.3.1


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 04:54:17

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

Log message:
Clean up the pile of iwm MAC context command add/send/changed functions.
They all collapse to a single iwm_mvm_mac_ctxt_cmd() entry point.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 05:07:04

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

Log message:
Rename local variables called 'ret' to 'err' everywhere in iwm.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/04 05:10:19

Modified files:
	sys/sys        : socketvar.h 

Log message:
Bring back 2 MB socket buffers to speed up TCP.  This increases
window scale option in TCP-SYN to 6.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/04 05:13:08

Modified files:
	regress/usr.bin/mandoc/db: Makefile 
Added files:
	regress/usr.bin/mandoc/db: Makefile.inc 

Log message:
define the targets the parent level forwards with _SUBDIRUSE


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/04 05:14:44

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Remove the IFF_LINK0 option to send the response back to the peer's
UDP src port - the VXLAN RFC clearly says that packet should be send
to the configured VXLAN port (4789).

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/04 05:21:24

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Use 'daemonize' instead of 'no_daemon', just like in dhcpd and dhcrelay.

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/04 05:34:56

Modified files:
	sys/net        : bfd.c 

Log message:
Grab a reference to the route and free it once no longer needed.
Also free all sockets in bfd_rtfree(). Agreement with phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/04 05:35:30

Modified files:
	sbin/disklabel : disklabel.c 

Log message:
After aligning the cpg field, non ffs partitions were not displayed
aligned anymore.  Put one more space in front of the "# none" mount
point output.
OK otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 05:40:25

Modified files:
	mail/courier-authlib: Makefile 
Added files:
	mail/courier-authlib/patches: patch-userdb_userdbpw_c 

Log message:
unbreak userdbpw(8), spotted by Stanley Lieber, thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 05:43:25

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

Log message:
Update to 1.28
ok armani@ (Maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/04 05:51:38

Modified files:
	regress/usr.bin/mandoc/db/dbm_dump: Makefile 

Log message:
Mandoc db dump regress depends on objects existing in usr.bin/mandoc.
Build them there if they are missing.  This allows to run the tests
without runnning a make build before.
OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/04 05:52:56

Modified files:
	sys/sys        : exec_elf.h 

Log message:
Add PT_GNU_EH_FRAME.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/04 05:53:23

Modified files:
	include        : icdb.h 

Log message:
Add the usual header stuff (#ifdef _ICDB_H_ etc) to icdb.h, ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/09/04 05:56:59

Modified files:
	sys/arch/armv7/sunxi: sxidog.c 

Log message:
For the allwinner,sun4i-a10-wdt disable/enable the reset-bit instead of
the enable-bit.  Fixes system reboot ('reboot failed; spinning') seen on
the allwinner,sun5i-r8.

Suggested and ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/04 05:58:15

Modified files:
	lib/libcrypto  : cert.pem 

Log message:
Add ISRG Root X1, the letsencrypt CA root. This is now included in its own
right in Mozilla's CA list, rather than relying on IdenTrust cross-signing.
ok beck@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/04 05:59:50

Modified files:
	sys/arch/sparc64/sparc64: conf.c 

Log message:
Add comments to the character-to-block device table and remove an
obsolete entry for the concatenated disk driver.  ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/04 06:02:49

Modified files:
	editors/libreoffice: Makefile distinfo 
	editors/libreoffice/patches: patch-configure 
	                             patch-desktop_source_app_app_cxx 
	                             patch-external_liborcus_ExternalProject_liborcus_mk 
	                             patch-external_libxmlsec_ExternalProject_xmlsec_mk 
	                             patch-sal_cppunittester_cppunittester_cxx 
	                             patch-sc_qa_unit_subsequent_filters-test_cxx 
	                             patch-sdext_Executable_pdf2xml_mk 
	                             patch-shell_source_unix_exec_shellexec_cxx 
	                             patch-svx_Library_svxcore_mk 
	                             patch-vcl_Library_vclplug_gtk3_mk 
	                             patch-vcl_Library_vclplug_gtk_mk 
	                             patch-writerfilter_source_rtftok_rtfsprm_hxx 
	editors/libreoffice/pkg: PLIST-kde PLIST-main 
Added files:
	editors/libreoffice/patches: patch-include_osl_endian_h 
Removed files:
	editors/libreoffice/patches: 
	                             patch-external_libxmlsec_src_keywrapers_c 
	                             patch-include_LibreOfficeKit_LibreOfficeKitInit_h 
	                             patch-m4_ax_boost_system_m4 

Log message:
update to 5.2.0.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 06:03:24

Modified files:
	lib/libtls     : tls_init.3 

Log message:
State that libtls functions apply to both clients and servers, unless
noted otherwise. Remove all of the now redundant "client and server"
notations and change the client and server notations to "client only"
and "server only".

With input from jmc@.

ok beck@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/04 06:08:49

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocation.pm 
	                          PackageRepository.pm PackingList.pm 

Log message:
basic scaffolding to ask signify to check stuff
still missing some proper error reporting


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 06:14:09

Modified files:
	www/piwik      : Makefile distinfo 
	www/piwik/pkg  : PLIST 

Log message:
bugfix update to 2.16.2
cvs: ----------------------------------------------------------------------


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/04 06:20:06

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

Log message:
include <sys/cdefs.h> for portable


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/04 06:26:43

Modified files:
	lib/libtls     : Makefile shlib_version tls.c tls.h tls_client.c 
	                 tls_init.3 tls_internal.h tls_server.c 
	                 tls_verify.c 
Added files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Add callback-based interface to libtls.

This allows working with buffers and callback functions instead of directly on
sockets or file descriptors.
Original patch from Tobias Pape <tobias_at_netshed.de>.
ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/04 06:30:01

Modified files:
	sbin/init      : init.c 

Log message:
Use an RB tree instead of BDB to map process->session, ok tedu millert


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/04 06:35:23

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

Log message:
include <sys/types.h> to get <sys/cdefs.h> instead (for __warn_references)

corrected by deraadt@ / guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/09/04 06:36:34

Modified files:
	distrib/miniroot: install.sub 

Log message:
Not having the root filesystem on the 'a' partition is
stupi^Wunfortunate, so stop asking.

deraadt@ and krw@ agrees
ok rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/04 06:41:26

Modified files:
	distrib/armv7/ramdisk: list 
	distrib/sgi/ramdisk: list 

Log message:
add missing doas entries; noticed by avsm


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 06:41:40

Modified files:
	devel/vanessa/socket: Makefile distinfo 

Log message:
bugfix update to 0.0.13


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/04 06:48:34

Added files:
	lib/libcxx     : Makefile shlib_version 
	lib/libcxxabi  : Makefile 

Log message:
Add makefiles to compile libc++, libc++abi and libunwind.

Tweaks from pascal@
ok guenther@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 06:48:50

Modified files:
	lib/libtls     : tls_init.3 

Log message:
New sentence, new line. Also wrap at 80 chars.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/04 06:49:22

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/04 06:50:56

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/04 06:51:12

Modified files:
	sysutils/pkg_mgr: Makefile distinfo 
	sysutils/pkg_mgr/pkg: PLIST 

Log message:
Release early, release often... update to pkg_mgr 0.2.3.

I probably haven't fixed all the bugs/crashes caused by espie's
underlying pkg_add refactoring from last year, but it at least allows to
do basic stuff without blowing too much.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/04 06:51:45

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocation.pm 
	                          PackageRepository.pm 

Log message:
signature tracking bases: stored signed status inside object, so that
we don't erroneously get "signature" comments from unsigned packages.
force the gzip object to get its header.
So if it can't something wrong happened.
for now, we just know shit happened...


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 06:54:33

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
$OpenBSD$ tag


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 07:17:08

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Sort headers and use the installed tls.h, rather than the local one.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 07:20:56

Modified files:
	lib/libtls     : tls_client.c tls_server.c 

Log message:
Maintain consistency with function naming.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/04 07:24:27

Modified files:
	sys/net        : bfd.c 

Log message:
Only allow bfd on host routes and non-gateway routes for now.
Also just use bfd_lookup() instead of handrolling the same lookup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/04 07:35:02

Modified files:
	www/lynx       : Makefile 
	www/lynx/patches: patch-src_LYReadCFG_c patch-userdefs_h 

Log message:
Disable spawning an external viewer. On top of disabling the hardcoded
XLOADIMAGE_COMMAND value in userdefs.h, we also remove the possibility
of setting a custom value in lynx.cfg.

The ability to assign MIME types to external viewers via configuration
file (via the VIEWER variables) is also disabled.

OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 07:38:59

Modified files:
	net/p5-Geo-IP  : Makefile distinfo 
	net/p5-Geo-IP/pkg: PLIST 

Log message:
update to 1.50


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 07:39:48

Modified files:
	lib/libcrypto/whrlpool: wp_block.c 
Removed files:
	lib/libcrypto/arch/vax: Makefile.inc bn_asm_vax.S opensslconf.h 

Log message:
Less vax.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 07:59:13

Modified files:
	www/fcgi-cgi   : Makefile distinfo 

Log message:
bugfix update to 0.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/04 08:01:31

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocation.pm 
	                          PackageRepository.pm 

Log message:
put signify errors alongside ftp


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/04 08:03:01

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

Log message:
Update to trojita 0.7 and switch to qt5, from maintainer Caspar Schutijser.

Note that this is currently broken at runtime because it uses QtWebKit
which still has W^X violations, but runs fine when testing locally w/
USE_WXNEEDED. cmake hacks/fixes for QtWebKit fixes being looked by dcoppa@..


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 08:06:46

Modified files:
	lib/libcrypto/whrlpool: wp_block.c 
Removed files:
	lib/libcrypto  : ia64cpuid.S 
	lib/libcrypto/aes/asm: aes-ia64.S 
	lib/libcrypto/bn/asm: ia64-mont.pl ia64.S 
	lib/libcrypto/md5/asm: md5-ia64.S 
	lib/libcrypto/modes/asm: ghash-ia64.pl 
	lib/libcrypto/rc4/asm: rc4-ia64.pl 
	lib/libcrypto/sha/asm: sha1-ia64.pl sha512-ia64.pl 

Log message:
Less IA64.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 08:15:44

Modified files:
	lib/libtls     : tls.h 

Log message:
Bump TLS_API for addition of callbacks.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 08:21:05

Modified files:
	usr.bin/vmstat : dkstats.c 

Log message:
straightforward realloc -> reallocarray conversion

ok deraadt, guenther, tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 08:31:29

Modified files:
	lib/libcrypto  : md32_common.h 
	lib/libcrypto/camellia: camellia.c 
Removed files:
	lib/libcrypto  : s390xcap.c s390xcpuid.S 
	lib/libcrypto/aes/asm: aes-s390x.pl 
	lib/libcrypto/bn/asm: s390x-gf2m.pl s390x-mont.pl s390x.S 
	lib/libcrypto/modes/asm: ghash-s390x.pl 
	lib/libcrypto/rc4/asm: rc4-s390x.pl 
	lib/libcrypto/sha/asm: sha1-s390x.pl sha512-s390x.pl 

Log message:
Less S390.

ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/04 08:35:21

Modified files:
	faq            : faq6.html 

Log message:
remove "setting up your openbsd box as a forwarding gateway" section that
was just a link to a different page.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/04 08:38:53

Modified files:
	lib/libc       : shlib_version 

Log message:
minor bump for SHA512/256 API additions; ok tedu@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/04 08:39:32

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

Log message:
Add format attribute to logger functions.
Input & OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/04 08:40:34

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

Log message:
Add format attribute to logger functions.
Fix format string while here.
Input & OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/04 08:41:16

Modified files:
	usr.sbin/tftp-proxy: tftp-proxy.c 

Log message:
Add format attribute to logger functions.
Add syslog_debug to keep in sync with others.
Input & OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/04 08:41:49

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

Log message:
Add format attribute to logger functions.
Add syslog_debug to keep in sync with others.
Input & OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/04 08:42:58

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

Log message:
Block devices are no longer supported, so stop talking about them and
the difference from raw devices.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/04 08:51:39

Modified files:
	lib/libc/stdlib: icdb.c 
	include        : icdb.h 

Log message:
Make the key sizes and offsets arrays const, ok tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/04 08:52:38

Modified files:
	mail/zarafa/zarafa: Makefile 
	mail/zarafa/zarafa/patches: patch-spooler_DAgent_cpp 
	                            patch-spooler_Spooler_cpp 
Added files:
	mail/zarafa/zarafa/patches: 
	                            patch-tools_python-scripts_zarafa-cachestat_py 

Log message:
fix shebang in zarafa-cachestat.py and use SUBST_CMD for /usr/local
as well


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/04 08:54:55

Modified files:
	devel/proj     : Makefile distinfo 

Log message:
Update to proj 4.9.3/datumgrid 1.6RC1


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/04 08:55:10

Modified files:
	usr.sbin/nsd   : configure 

Log message:
forgot to regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/04 08:55:52

Modified files:
	editors/libreoffice: Makefile 

Log message:
update wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 08:58:59

Modified files:
	mail/enigmail  : Makefile distinfo 
	mail/enigmail/pkg: PLIST-main PLIST-seamonkey 
Added files:
	mail/enigmail/patches: patch-Makefile 

Log message:
update to 1.9.5
ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/04 09:03:13

Modified files:
	libexec/rpc.rusersd: rusersd.c 

Log message:
'pw' can't be NULL here, remove useless test.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/04 09:10:59

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

Log message:
Move code to change the rdomain of an interface from the ioctl switch case
to a new function if_setrdomain().

OK mpi@ henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 09:11:13

Modified files:
	usr.bin/doas   : parse.y 

Log message:
don't allow combining nopass and persist in a single rule


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 09:20:37

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

Log message:
-L means no command


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/04 09:24:50

Modified files:
	regress/sys/netinet6/pktinfo_addr: test_wrapper.sh 

Log message:
If we bind to [::], we do not check for sockaddr availability.

see sys/netinet6/udp6_output.c 1.48


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 09:29:21

Modified files:
	usr.bin/deroff : deroff.c 

Log message:
remove two blanks that shouldn't be there


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 09:36:13

Modified files:
	usr.bin/encrypt: encrypt.c 

Log message:
usage() is static and __dead; add prototype for print_passwd;
return instead of exit from main


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/04 09:38:59

Modified files:
	etc            : MAKEDEV.common 
	etc/etc.alpha  : MAKEDEV.md 
	etc/etc.amd64  : MAKEDEV MAKEDEV.md 
	etc/etc.armv7  : MAKEDEV.md 
	etc/etc.hppa   : MAKEDEV.md 
	etc/etc.i386   : MAKEDEV.md 
	etc/etc.landisk: MAKEDEV.md 
	etc/etc.loongson: MAKEDEV.md 
	etc/etc.luna88k: MAKEDEV.md 
	etc/etc.macppc : MAKEDEV.md 
	etc/etc.octeon : MAKEDEV.md 
	etc/etc.sgi    : MAKEDEV.md 
	etc/etc.socppc : MAKEDEV.md 
	etc/etc.sparc64: MAKEDEV.md 

Log message:
Remove the tape block device nodes.
While here, also remove two forgotten descriptions for long obsolete
devices.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/04 09:39:53

Modified files:
	etc/etc.alpha  : 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.socppc : MAKEDEV 
	etc/etc.sparc64: MAKEDEV 
	share/man/man8/man8.alpha: MAKEDEV.8 
	share/man/man8/man8.amd64: MAKEDEV.8 
	share/man/man8/man8.armv7: MAKEDEV.8 
	share/man/man8/man8.hppa: MAKEDEV.8 
	share/man/man8/man8.i386: MAKEDEV.8 
	share/man/man8/man8.landisk: MAKEDEV.8 
	share/man/man8/man8.loongson: MAKEDEV.8 
	share/man/man8/man8.luna88k: MAKEDEV.8 
	share/man/man8/man8.macppc: MAKEDEV.8 
	share/man/man8/man8.octeon: MAKEDEV.8 
	share/man/man8/man8.sgi: MAKEDEV.8 
	share/man/man8/man8.socppc: MAKEDEV.8 
	share/man/man8/man8.sparc64: MAKEDEV.8 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 09:41:23

Modified files:
	usr.bin/nice   : nice.c 

Log message:
usage() is __dead and main() needs no prototype


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 09:43:51

Modified files:
	sbin/savecore  : Makefile zopen.c 

Log message:
unifdef SAVECORE now that we're done sharing


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 09:45:27

Modified files:
	sbin/savecore  : zopen.c 

Log message:
chop out the zread code since we only write files


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/04 09:45:42

Modified files:
	sys/net        : route.c 

Log message:
Do not assume that an interface index of a route is still valid in
rtrequest_delete().  The inpcb has a cache of the route that still
exists when the interface has been detached.
kassert triggered from tcp timeout by awolk@; OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 09:45:46

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

Log message:
Remove disabled iwm debug code which prints the regdomain.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/04 09:46:39

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

Log message:
When auto-creating an interface when opening a /dev/{tun,tap,switch}
device, inherit the rdomain from the calling process.  This adds an
rdomain argument to if_clone_create().

OK mpi@ henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 09:53:03

Modified files:
	lib/libcrypto/pem: pem_all.c pem_pk8.c pem_x509.c pem_xaux.c 

Log message:
Expand IMPLEMENT_PEM macros.

No change in generated assembly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/04 09:53:12

Modified files:
	mail/rspamd    : Makefile 

Log message:
Remove BROKEN-macppc marker, it now builds fine there.

The cpuid rdrand runtime detection asm code was guarded for x86 only in
https://github.com/vstakhov/rspamd/commit/3ed4cae07ea2adfea3fe5eb4070dcf59f9e11f5d


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/04 10:06:47

Modified files:
	share/man/man4 : bridge.4 
Added files:
	share/man/man4 : switch.4 

Log message:
Add switch(4) man page and update the bridge(4) man page about the
modification for switch(4).

ok goda


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/04 10:10:31

Modified files:
	usr.sbin/smtpd : ca.c control.c lka.c pony.c queue.c scheduler.c 
	                 smtpd.c 

Log message:
The smtpd processes are not expected to ever leave their event loop.
So stop pretending that the *_shutdown() functions could ever be called
in this context, and just fatal() if event_dispatch() returns.

ok gilles@ sunil@ giovanni@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 10:10:38

Modified files:
	lib/libcrypto/pem: pem_all.c pem_pk8.c pem_x509.c pem_xaux.c 

Log message:
Sort and group functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 10:11:47

Modified files:
	lib/libssl     : ssl_sess.c 

Log message:
Expand IMPLEMENT_PEM macros.

No change in generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 10:12:33

Modified files:
	lib/libssl     : ssl_sess.c 

Log message:
Sort and group functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/04 10:15:30

Modified files:
	sys/dev        : rnd.c 

Log message:
Rototil the _rs_clearseed() function once more such that we don't map pages
beyond the end of .text/.rodata.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/04 10:20:23

Log message:
    Import GCC 6.2.0.
    
    ok espie@
    
    Status:
    
    Vendor Tag:	pascal
    Release Tags:	pascal_20160904
    
    N ports/lang/gcc/6/distinfo
    N ports/lang/gcc/6/gcc4.port.mk
    N ports/lang/gcc/6/Makefile
    N ports/lang/gcc/6/patches/patch-Makefile_in
    N ports/lang/gcc/6/patches/patch-boehm-gc_configure
    N ports/lang/gcc/6/patches/patch-boehm-gc_dyn_load_c
    N ports/lang/gcc/6/patches/patch-boehm-gc_include_gc_config_h_in
    N ports/lang/gcc/6/patches/patch-boehm-gc_include_gc_config_macros_h
    N ports/lang/gcc/6/patches/patch-boehm-gc_include_gc_pthread_redirects_h
    N ports/lang/gcc/6/patches/patch-boehm-gc_include_private_gcconfig_h
    N ports/lang/gcc/6/patches/patch-boehm-gc_mach_dep_c
    N ports/lang/gcc/6/patches/patch-boehm-gc_misc_c
    N ports/lang/gcc/6/patches/patch-boehm-gc_os_dep_c
    N ports/lang/gcc/6/patches/patch-boehm-gc_pthread_support_c
    N ports/lang/gcc/6/patches/patch-configure
    N ports/lang/gcc/6/patches/patch-boehm-gc_threadlibs_c
    N ports/lang/gcc/6/patches/patch-fixincludes_inclhack_def
    N ports/lang/gcc/6/patches/patch-gcc_ada_osint_adb
    N ports/lang/gcc/6/patches/patch-gcc_ada_a-calend_adb
    N ports/lang/gcc/6/patches/patch-gcc_ada_adaint_c
    N ports/lang/gcc/6/patches/patch-gcc_ada_adaint_h
    N ports/lang/gcc/6/patches/patch-gcc_ada_gcc-interface_Make-lang_in
    N ports/lang/gcc/6/patches/patch-gcc_ada_gcc-interface_Makefile_in
    N ports/lang/gcc/6/patches/patch-gcc_ada_s-osinte-openbsd_adb
    N ports/lang/gcc/6/patches/patch-gcc_ada_s-osinte-openbsd_ads
    N ports/lang/gcc/6/patches/patch-libgo_Makefile_in
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-sparcv9_ads
    N ports/lang/gcc/6/patches/patch-gcc_c_c-decl_c
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-x86_64_ads
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-x86_ads
    N ports/lang/gcc/6/patches/patch-gcc_c-family_c-format_c
    N ports/lang/gcc/6/patches/patch-gcc_common_opt
    N ports/lang/gcc/6/patches/patch-gcc_config_alpha_alpha_c
    N ports/lang/gcc/6/patches/patch-gcc_config_alpha_alpha_md
    N ports/lang/gcc/6/patches/patch-gcc_config_gcc
    N ports/lang/gcc/6/patches/patch-libffi_src_closures_c
    N ports/lang/gcc/6/patches/patch-gcc_config_alpha_alpha_opt
    N ports/lang/gcc/6/patches/patch-gcc_configure
    N ports/lang/gcc/6/patches/patch-gcc_fortran_f95-lang_c
    N ports/lang/gcc/6/patches/patch-gcc_config_alpha_openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_config_arm_openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_config_exec-stack_h
    N ports/lang/gcc/6/patches/patch-gcc_config_i386_i386_c
    N ports/lang/gcc/6/patches/patch-gcc_config_i386_openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_config_i386_openbsdelf_h
    N ports/lang/gcc/6/patches/patch-gcc_config_mips_mips_h
    N ports/lang/gcc/6/patches/patch-gcc_config_mips_openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_config_openbsd-libpthread_h
    N ports/lang/gcc/6/patches/patch-gcc_config_openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_config_openbsd_opt
    N ports/lang/gcc/6/patches/patch-gcc_config_pa_pa_c
    N ports/lang/gcc/6/patches/patch-gcc_gcc_c
    N ports/lang/gcc/6/patches/patch-gcc_config_pa_pa_h
    N ports/lang/gcc/6/patches/patch-gcc_config_rs6000_driver-rs6000_c
    N ports/lang/gcc/6/patches/patch-gcc_config_rs6000_openbsd1_h
    N ports/lang/gcc/6/patches/patch-gcc_config_rs6000_openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_config_rs6000_sysv4_h
    N ports/lang/gcc/6/patches/patch-gcc_config_rs6000_t-openbsd
    N ports/lang/gcc/6/patches/patch-gcc_config_sparc_openbsd64_h
    N ports/lang/gcc/6/patches/patch-gcc_config_sparc_openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_cp_g++spec_c
    N ports/lang/gcc/6/patches/patch-gcc_defaults_h
    N ports/lang/gcc/6/patches/patch-gcc_flags_h
    N ports/lang/gcc/6/patches/patch-gcc_go_go-lang_c
    N ports/lang/gcc/6/patches/patch-gcc_config_rs6000_rs6000_c
    N ports/lang/gcc/6/patches/patch-gcc_config_sparc_sparc_c
    N ports/lang/gcc/6/patches/patch-gcc_java_lang_c
    N ports/lang/gcc/6/patches/patch-gcc_lto_lto_c
    N ports/lang/gcc/6/patches/patch-gcc_opts_c
    N ports/lang/gcc/6/patches/patch-gcc_targhooks_c
    N ports/lang/gcc/6/patches/patch-gcc_testsuite_gcc_dg_format_format_h
    N ports/lang/gcc/6/patches/patch-gnattools_Makefile_in
    N ports/lang/gcc/6/patches/patch-gnattools_configure
    N ports/lang/gcc/6/patches/patch-gnattools_configure_ac
    N ports/lang/gcc/6/patches/patch-libatomic_Makefile_in
    N ports/lang/gcc/6/patches/patch-libatomic_configure_tgt
    N ports/lang/gcc/6/patches/patch-libcilkrts_Makefile_in
    N ports/lang/gcc/6/patches/patch-libcilkrts_runtime_os-unix_c
    N ports/lang/gcc/6/patches/patch-libffi_Makefile_in
    N ports/lang/gcc/6/patches/patch-libffi_include_Makefile_in
    N ports/lang/gcc/6/patches/patch-libgcc_Makefile_in
    N ports/lang/gcc/6/patches/patch-libgcc_config_host
    N ports/lang/gcc/6/patches/patch-libgcc_libgcc2_c
    N ports/lang/gcc/6/patches/patch-libgo_configure
    N ports/lang/gcc/6/patches/patch-libgo_config_libtool_m4
    N ports/lang/gcc/6/patches/patch-libgomp_configure
    N ports/lang/gcc/6/patches/patch-libitm_Makefile_in
    N ports/lang/gcc/6/patches/patch-gcc_c-family_c_opt
    N ports/lang/gcc/6/patches/patch-libiberty_cp-demangle_c
    N ports/lang/gcc/6/patches/patch-libjava_Makefile_in
    N ports/lang/gcc/6/patches/patch-libbacktrace_configure
    N ports/lang/gcc/6/patches/patch-libjava_classpath_configure
    N ports/lang/gcc/6/patches/patch-libjava_configure
    N ports/lang/gcc/6/patches/patch-libjava_configure_host
    N ports/lang/gcc/6/patches/patch-libjava_libltdl_configure
    N ports/lang/gcc/6/patches/patch-libjava_prims_cc
    N ports/lang/gcc/6/patches/patch-libobjc_Makefile_in
    N ports/lang/gcc/6/patches/patch-libobjc_configure
    N ports/lang/gcc/6/patches/patch-libquadmath_Makefile_in
    N ports/lang/gcc/6/patches/patch-libquadmath_configure
    N ports/lang/gcc/6/patches/patch-libssp_Makefile_in
    N ports/lang/gcc/6/patches/patch-libssp_configure
    N ports/lang/gcc/6/patches/patch-libtool_m4
    N ports/lang/gcc/6/patches/patch-libstdc++-v3_configure
    N ports/lang/gcc/6/patches/patch-libstdc++-v3_src_Makefile_in
    N ports/lang/gcc/6/patches/patch-libstdc++-v3_include_c_global_cstddef
    N ports/lang/gcc/6/patches/patch-libstdc++-v3_include_c_std_cstddef
    N ports/lang/gcc/6/patches/patch-libstdc++-v3_libsupc++_Makefile_in
    N ports/lang/gcc/6/patches/patch-lto-plugin_Makefile_in
    N ports/lang/gcc/6/patches/patch-lto-plugin_configure
    N ports/lang/gcc/6/patches/patch-gcc_config_pa_pa-openbsd_h
    N ports/lang/gcc/6/patches/patch-gcc_Makefile_in
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-hppa_ads
    N ports/lang/gcc/6/patches/patch-fixincludes_fixincl_x
    N ports/lang/gcc/6/patches/patch-gcc_builtins_c
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-mips64_ads
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-mips64el_ads
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-ppc_ads
    N ports/lang/gcc/6/patches/patch-libgfortran_Makefile_in
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-sparc_ads
    N ports/lang/gcc/6/patches/patch-gcc_ada_system-openbsd-arm_ads
    N ports/lang/gcc/6/patches/patch-zlib_configure
    N ports/lang/gcc/6/patches/patch-libgcc_config_t-hardfp
    N ports/lang/gcc/6/patches/patch-libcc1_Makefile_in
    N ports/lang/gcc/6/pkg/PFRAG.CILKRTS-libs
    N ports/lang/gcc/6/pkg/PFRAG.CILKRTS-main
    N ports/lang/gcc/6/pkg/PFRAG.ITM-libs
    N ports/lang/gcc/6/pkg/PFRAG.ITM-main
    N ports/lang/gcc/6/pkg/PFRAG.QUADMATH-libs
    N ports/lang/gcc/6/pkg/PFRAG.QUADMATH-main
    N ports/lang/gcc/6/pkg/PFRAG.X86-main
    N ports/lang/gcc/6/pkg/PFRAG.amd64-main
    N ports/lang/gcc/6/pkg/PFRAG.arm-main
    N ports/lang/gcc/6/pkg/PFRAG.hppa-main
    N ports/lang/gcc/6/pkg/PFRAG.i386-main
    N ports/lang/gcc/6/pkg/PFRAG.powerpc-main
    N ports/lang/gcc/6/pkg/PFRAG.sparc-main
    N ports/lang/gcc/6/pkg/PFRAG.sparc64-main
    N ports/lang/gcc/6/pkg/PLIST-ada
    N ports/lang/gcc/6/pkg/PLIST-c++
    N ports/lang/gcc/6/pkg/PLIST-f95
    N ports/lang/gcc/6/pkg/PLIST-java
    N ports/lang/gcc/6/pkg/PLIST-libs
    N ports/lang/gcc/6/pkg/PLIST-main
    N ports/lang/gcc/6/pkg/PLIST-objc
    N ports/lang/gcc/6/pkg/PFRAG.mips64-main
    N ports/lang/gcc/6/pkg/PFRAG.mips64el-main
    N ports/lang/gcc/6/pkg/PFRAG.X86-ada
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 10:22:54

Modified files:
	lib/libcrypto/pem: pem.h 

Log message:
Place IMPLEMENT_PEM macros under #ifndef LIBRESSL_INTERNAL.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 10:25:01

Added files:
	lib/libc/stdlib: icdb.3 

Log message:
it doesn't say anything yet, but start adding a man page


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 10:26:03

Added files:
	lib/libc/stdlib: icdb_new.3 

Log message:
oops, name file after main function


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 10:26:21

Removed files:
	lib/libc/stdlib: icdb.3 

Log message:
rm


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/04 10:37:18

Modified files:
	lib/libtls     : tls_init.3 

Log message:
minor tweaks;


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 10:39:50

Modified files:
	usr.bin/cvs    : cvs.c 

Log message:
Add missing getpw pledge

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2016/09/04 10:40:34

Modified files:
	distrib/syspatch: bsd.syspatch.mk 

Log message:
allow everything to run as unprivileged user except for fake
install and mtree by splitting up some targets


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/04 10:41:43

Modified files:
	usr.bin/hexdump: parse.c 

Log message:
Replace strlen + calloc + snprintf with asprintf.

ok martijn, beck, deraadt, gsoares


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 10:46:54

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

Log message:
Purge a ton of "-1 not informative" rated comments from iwm and improve
some of the more useful ones.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/04 10:46:57

Modified files:
	graphics/mapnik: Makefile distinfo 
	graphics/mapnik/patches: patch-SConstruct patch-src_build_py 
	                         patch-src_text_font_feature_settings_cpp 

Log message:
Update to 3.0.10, still BROKEN because of missing symbol for
_ZN6icu_5713UnicodeStringC1EPKciEOS0_. Maybe switching icu to build with
a decent compiler would help, but that's not planned for now...


CVSROOT:	/cvs
Module name:	src
Changes by:	goda@cvs.openbsd.org	2016/09/04 10:47:42

Modified files:
	sys/net        : if_switch.c if_switch.h switchofp.c 

Log message:
Make per-packet allocated memory use pool in switch(4)

ok yasuoka@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/04 10:48:11

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 10:49:24

Modified files:
	lib/libcrypto/x509: x509.h 

Log message:
Expand DECLARE_ASN1_.*FUNCTIONS macros.

No change in preprocessed output, ignoring whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/04 10:49:57

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

Log message:
SIOCBRDGSIFFLGS is not supported by switch(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 10:52:44

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

Log message:
Remove unused IWM_READ_NVM_CHUNK_... macros.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/04 10:53:41

Modified files:
	x11/slim-themes: Makefile 

Log message:
missing run_depends on x11/slim


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/04 10:55:43

Modified files:
	sbin/iked      : control.c iked.c 

Log message:
Forward IMSG_CTL_VERBOSE via the parent; this fixes a crash when doing
"ikectl log verbose" and keeps the control process separated from the
cert process.

Thanks for the bug report to Wouter Clarie

OK vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/04 10:56:02

Modified files:
	lib/libc/stdlib: icdb.c 

Log message:
Set errno more consistently, and fix a warning, ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/04 11:00:22

Modified files:
	usr.bin/signify: zsig.c 

Log message:
well, adding the filename doesn't help... mostly used with pipes anyhow


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 11:01:59

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

Log message:
Even more enums which should be #defines were hiding inside if_iwm.c.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:02:32

Modified files:
	lib/libcrypto/gost: gost.h gost_asn1.h 

Log message:
Expand DECLARE_ASN1_.*FUNCTIONS macros.

No change in preprocessed output, ignoring whitespace and line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/04 11:05:24

Modified files:
	sys/netinet    : inet_ntop.c in.h 

Log message:
Implement a sockaddr_ntop() function that works like inet_ntop() but prints
sockaddrs. Works for all sockaddrs so can be used to print sockaddrs nicely.
OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/04 11:05:53

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

Log message:
s,getpass,readpassphrase,
OK tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	goda@cvs.openbsd.org	2016/09/04 11:11:09

Modified files:
	sys/net        : if_switch.c 

Log message:
Fixed uninitialized variable in switch_process()


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/04 11:12:00

Modified files:
	sys/net        : bfd.c 

Log message:
Refactor the code an fix a few issues by doing so.
- Use rt_key() instead of rt_gwroute / rt_gateway since bfd runs on host routes
- Fixup the timeout / task interaction a bit (still broken but better)
- fix panics in bfd_rtfree when calling soclose().
It is required to clear the upcall before calling soclose() because sorflush()
would be calling the upcall again which then results in a reenter panic.
- Simplify the mbuf dance a bit in bfd_send_control()
With and OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:14:46

Modified files:
	lib/libcrypto/x509v3: x509v3.h 

Log message:
Expand DECLARE_ASN1_.*FUNCTIONS macros.

No change in preprocessed output, ignoring whitespace and line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/04 11:14:58

Modified files:
	sys/net        : if.c 

Log message:
Prevent a race between a thread detaching an interface and the watchdog
or linkstate task sleeping.

Pass an index to the task and use if_get(9) if the ifp is still alive.

Found the hardway by awolk@.

ok claudio@, bluhm@, mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:18:18

Modified files:
	lib/libcrypto/ocsp: ocsp.h 

Log message:
Expand DECLARE_ASN1_.*FUNCTIONS macros.

No change in preprocessed output, ignoring whitespace and line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/04 11:18:56

Modified files:
	sys/netinet    : ip_output.c 

Log message:
Prevent a NULL derefernce in ip_output().

A race can happen if a task, like the watchog, sleeps too long keeping
an ifp reference while the interface is detached.  In this case a TCP
timer will try to send packets with a cached route.  Since the ifp is
being detached if_get(9) returns NULL.

Found the hardway by awolk@.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:19:33

Modified files:
	lib/libcrypto/pkcs12: pkcs12.h 

Log message:
Expand DECLARE_ASN1_.*FUNCTIONS macros.

No change in preprocessed output, ignoring whitespace and line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:20:55

Modified files:
	lib/libcrypto/pkcs7: pkcs7.h 

Log message:
Expand DECLARE_ASN1_.*FUNCTIONS macros.

No change in preprocessed output, ignoring whitespace and line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/04 11:21:44

Modified files:
	bin/ksh        : edit.c ksh.1 

Log message:
Allow simple custom completions by creating an array named
"complete_commandname_argnum", for example:

set -A complete_kill_1 -- -9 -HUP -INFO -KILL -TERM

To set completions for the first argument to kill(1). If no complete_*
arrays are present, the normal filename completion is offered.

positive comments from many; man page ok/tweaks jmc; ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:22:40

Modified files:
	sys/kern       : kern_sig.c kern_pledge.c syscalls.master 

Log message:
Remove sys_o58_kill since OpenBSD 6.0 has been tagged/released.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:24:02

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:	jsing@cvs.openbsd.org	2016/09/04 11:25:27

Modified files:
	lib/libcrypto/rsa: rsa.h 

Log message:
Expand DECLARE_ASN1_.*FUNCTIONS macros.

No change in preprocessed output, ignoring whitespace and line numbers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/04 11:29:28

Modified files:
	multimedia/mpv : Makefile distinfo 

Log message:
update to mpv-0.20.0


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/04 11:36:11

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
Add SWITCH section for switch(4).

ok goda


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/04 11:37:06

Modified files:
	usr.bin/tmux   : cmd-join-pane.c cmd-split-window.c layout.c 
	                 tmux.1 tmux.h 

Log message:
Add support for performing a full width split (with splitw -f), rather
than splitting the current cell. From Stephen Kent.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/04 11:42:18

Modified files:
	devel/py-certifi: Makefile distinfo 
	devel/py-certifi/patches: patch-setup_py 

Log message:
update to py-certifi-2016.8.31


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/04 11:47:37

Modified files:
	regress/sbin/isakmpd/prf: prftest.c 

Log message:
Fix use after free


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/04 11:49:06

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

Log message:
update to py-cryptography 1.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:55:28

Removed files:
	lib/libcrypto/cms: cms.h 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_lcl.h cms_lib.c cms_pwri.c 
	                   cms_sd.c cms_smime.c 

Log message:
Remove cms.

ok beck@, guenther@, tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/04 11:59:26

Modified files:
	lib/libcrypto  : Makefile 

Log message:
Remove cms.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/04 12:05:34

Modified files:
	usr.bin/openssl: Makefile 
Removed files:
	usr.bin/openssl: cms.c 

Log message:
bye bye cms. send it to the attic
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/04 12:08:04

Modified files:
	regress/sys/kern/kqueue: kqueue-process.c 

Log message:
When passing the (1ULL << 32) to EV_SET, it gets casted to __uintptr_t.
On 32 bit architectues, the high bit is lost and the test fails.
Create an invalid pid in the lower 32 bits.
OK guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/04 12:13:18

Modified files:
	regress/sbin   : Makefile 

Log message:
Link isakmpd regress to the build.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/04 12:19:53

Modified files:
	usr.bin/openssl: openssl.c 

Log message:
Nuke one more cms tendril
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/04 12:20:34

Modified files:
	sys/dev/ic     : com.c z8530tty.c 
	sys/dev/sbus   : sbusvar.h 
	sys/dev/wscons : wsdisplayvar.h 
	sys/dev/wsfont : wsfont.c 

Log message:
remove some more sparc remnants. ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/04 12:26:28

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
Redundant memset and some better style wrt exiting functions after error.
ok guenther@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/04 12:32:13

Modified files:
	faq            : faq6.html 

Log message:
gzip PXE booting. With help from phessler, ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/04 12:49:21

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmvar.h 

Log message:
Replace iwm's ioctl tsleep/wakeup BUSY flag dance with an rwlock.
ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/04 12:55:08

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

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/04 13:03:34

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

Log message:
tweaks;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/04 13:05:09

Modified files:
	lib/libc/stdlib: icdb_new.3 

Log message:
fix Dt;


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/04 13:13:17

Modified files:
	app/xdm        : Makefile.bsd-wrapper 

Log message:
Remove zaurus specific default VT configuration (it had only 2 VTs)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/04 13:14:19

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
switch tweaks;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/04 13:38:51

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

Log message:
shorten sess_id;


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/04 13:45:27

Modified files:
	sbin/mount     : mount.c 

Log message:
strlen + malloc + snprintf == asprintf

ok martijn@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/04 14:13:44

Log message:
    Import graphics/grafx2
    
    GrafX2 is a bitmap paint program inspired by the Amiga programs Deluxe
    Paint and Brilliance. Specialized in 256-color drawing, it includes a
    very large number of tools and effects that make it particularly
    suitable for pixel art, game graphics, and generally any detailed
    graphics painted with a mouse.
    
    OK giovanni@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20160904
    
    N ports/graphics/grafx2/Makefile
    N ports/graphics/grafx2/distinfo
    N ports/graphics/grafx2/patches/patch-realpath_c
    N ports/graphics/grafx2/pkg/PLIST
    N ports/graphics/grafx2/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/04 14:19:24

Modified files:
	graphics       : Makefile 

Log message:
Add grafx2


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/09/04 14:33:36

Modified files:
	usr.bin/column : column.c 

Log message:
Add full UTF-8 support to column(1).

Feedback and OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/04 15:46:36

Modified files:
	sys/net        : if_enc.c 

Log message:
Make enc_output() return EAFNOSUPPORT after dropping the packet,
instead of 0. Makes it consistent with other similar interfaces.

ok mpi@ vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/09/05 00:20:29

Modified files:
	regress/usr.sbin/ldapd: Makefile 

Log message:
Add purge to the all: target and comment out cpan for now


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/09/05 00:21:02

Modified files:
	regress/usr.sbin: Makefile 

Log message:
link ldapd regress to the build


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/05 01:20:34

Modified files:
	regress/libexec/ld.so/init-env/libaa: Makefile 

Log message:
Add a regress target so that a recursive "make regress" also builds
this library as a prerequisite.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 01:22:29

Modified files:
	share/man/man9 : Makefile 
Added files:
	share/man/man9 : RBT_INIT.9 

Log message:
first cut at documenting new red-black tree code.

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 01:24:34

Modified files:
	sys/conf       : files 
	sys/sys        : tree.h 

Log message:
enable the subr_tree version of red-black trees


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 01:38:32

Modified files:
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c 

Log message:
move pool red-black trees from tree.h code to subr_tree.c code

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 01:41:22

Modified files:
	sys/net        : if_pppx.c 

Log message:
move pppx red-black trees from tree.h code to subr_tree.c code

this change and the same one for pools should have us breaking even for
the "extra" code in subr_tree. after this we will get more space back
by converting RB_ to RBT_ code, and any new red-black trees using RBT_
are free.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/05 01:50:04

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

Log message:
Dump vcpu and vmcs info on various fail to enter scenarios


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2016/09/05 02:10:58

Modified files:
	usr.bin/mg     : undo.c 

Log message:
Initialize stack variables to zero before memmove().

Coverity Scan reported these two stack variables as uninitialized, in
particular the .r_lineno struct member was uninitialized.  This patch
clears the 'struct region' rather than setting .r_lineno because if
any more struct members are added in the future the clear will cover
them too.

Source Joachim Nilsson. ok tom@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/05 02:14:47

Removed files:
	mail/trojita/patches: patch-cmake_FindLinguistForTrojita_cmake 

Log message:
cvs rm patch that should have been removed - reported by dcoppa@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/05 02:17:29

Modified files:
	sys/dev/pci    : if_ipw.c if_ipwvar.h 

Log message:
convert busy flag and tsleep to rwlock as in iwm


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/05 02:17:48

Modified files:
	sys/dev/pci    : if_iwi.c if_iwivar.h 

Log message:
convert busy flag and tsleep to rwlock as in iwm


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/05 02:18:18

Modified files:
	sys/dev/pci    : if_iwn.c if_iwnvar.h 

Log message:
convert busy flag and tsleep to rwlock as in iwm


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/05 02:18:40

Modified files:
	sys/dev/pci    : if_wpi.c if_wpivar.h 

Log message:
convert busy flag and tsleep to rwlock as in iwm


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/05 02:40:06

Modified files:
	databases/mariadb: Tag: OPENBSD_6_0 Makefile distinfo 
	databases/mariadb/patches: Tag: OPENBSD_6_0 
	                           patch-storage_connect_reldef_cpp 
	databases/mariadb/pkg: Tag: OPENBSD_6_0 PLIST-main PLIST-tests 
Added files:
	databases/mariadb/patches: Tag: OPENBSD_6_0 
	                           patch-sql_signal_handler_cc 

Log message:
- security update to mariadb-10.0.27, addressing CVE-2016-3477, CVE-2016-3521,
CVE-2016-3615 and CVE-2016-5440

from brad (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/05 02:50:26

Modified files:
	sysutils/ruby-puppet/4: Makefile distinfo 

Log message:
update to puppet-4.6.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/05 03:00:08

Modified files:
	devel/ruby-rgen: Makefile 
	databases/ruby-hiera-eyaml: Makefile 
	databases/ruby-hiera-file: Makefile 
	net/ruby-msgpack: Makefile 
	sysutils/mcollective: Makefile 
	sysutils/ruby-augeas: Makefile 
	sysutils/ruby-shadow: Makefile 
	databases/puppetdb: Makefile 
	databases/ruby-hiera: Makefile 
	sysutils/ruby-puppet: Makefile.inc 
	sysutils/ruby-facter: Makefile 
	sysutils/facter: Makefile 
	databases/ruby-hiera3: Makefile 

Log message:
force MODRUBY_REV=2.2, partially from jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/05 03:00:53

Modified files:
	sysutils/ruby-facter: Makefile 

Log message:
uncomment line


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 03:04:31

Modified files:
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c 

Log message:
revert moving pools from tree.h to subr_tree.c rb trees.

itll go in again when i dont break userland.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/05 03:15:05

Modified files:
	distrib/miniroot: dot.profile 

Log message:
Relax permissions to make files readable by unpriv users again.

Found out by naddy
OK deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/05 03:19:04

Modified files:
	share/man/man9 : RBT_INIT.9 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2016/09/05 03:23:22

Modified files:
	share/misc     : Makefile 
Removed files:
	share/misc     : getopt 

Log message:
Remove an old getopt example from some dusty corner.

ok tedu@ schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/05 03:47:03

Modified files:
	lib/libc/citrus: Makefile.inc citrus_ctype.h citrus_none.c 
	                 citrus_utf8.c 
	lib/libc/locale: multibyte_citrus.c rune.c rune_local.h 
	                 runetable.c runetype.h setrunelocale.c 
Removed files:
	lib/libc/citrus: citrus_ctype.c citrus_ctype_local.h 
	                 citrus_none.h citrus_utf8.h 
	lib/libc/locale: multibyte.h 

Log message:
Delete some abstraction that we don't and won't need.
Declare functions rather than generating declarations with macros.
Just call functions rather than mainting function pointer tables.
Purge unused arguments.  Simplify mbstate_t casting.
Garbage collect one empty and one unused function.

As a bonus, make mbsinit(3) work at all, it returned garbage
in the past due to a missing cast when passing mbstate_t.
Apart from that, no functional change.

No libc bump needed; only private functions are removed and
change prototype and only private structs change size.

OK stsp@ mpi@; deraadt@ likes the general direction.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/05 03:52:49

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/05 03:53:53

Modified files:
	regress/lib/libc/locale: Makefile 

Log message:
Enable mbrtowc(3) and wcrtomb(3) tests now that mbsinit(3) works.
Related to locale/multibyte_citrus.c rev. 1.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/05 03:55:18

Modified files:
	regress/usr.sbin: Makefile 

Log message:
ldapd regress is creating files during make obj; comment out until fixed


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/05 03:59:21

Modified files:
	sys/dev/pci    : if_ipw.c if_ipwvar.h 

Log message:
Backout previous commit; does not compile.


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/05 04:15:24

Modified files:
	regress/sys/netinet/in_pcbbind: Makefile runtest.c 

Log message:
Big refactoring in main(), simplify the invocation syntax.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/05 04:17:30

Modified files:
	sys/dev/pci    : if_ipw.c if_ipwvar.h 

Log message:
redo rwlock conversion now that i've compiled it on i386


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/05 04:19:46

Modified files:
	distrib/miniroot: dot.profile 

Log message:
Tweak comments and spacing.

OK krw, halex


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/09/05 04:20:40

Modified files:
	sbin/init      : init.c 

Log message:
replace obsolete getpass() by readpassphrase()
OK tedu millert


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/05 04:36:21

Modified files:
	usr.sbin/pkg_add/OpenBSD/PackageRepository: Installed.pm 

Log message:
forgot to provide an empty method


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/05 04:43:42

Modified files:
	lib/libcrypto/doc: X509_STORE_set_verify_cb_func.pod 
	lib/libcrypto/man: Makefile 
Removed files:
	lib/libcrypto/doc: PEM_write_bio_CMS_stream.pod 
	                   SMIME_read_CMS.pod SMIME_write_CMS.pod 
	                   i2d_CMS_bio_stream.pod 
	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 

Log message:
remove CMS manuals; beck@ agress with the general idea


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/05 04:45:01

Removed files:
	mail/enigmail/patches: patch-config_getOsTarget_pl 
	                       patch-ipc_src_Makefile 

Log message:
remove patches to unbreak
spotted by espie@, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/05 04:45:19

Modified files:
	usr.bin/openssl: progs.h 

Log message:
remove a cms leftover


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:48:43

src/gnu/usr.bin/clang

Update of /cvs/src/gnu/usr.bin/clang
In directory cvs.openbsd.org:/tmp/cvs-serv89767/clang

Log Message:
Directory /cvs/src/gnu/usr.bin/clang added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMAnalysis

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAnalysis
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMAnalysis

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAnalysis added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMAsmParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAsmParser
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMAsmParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAsmParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMAsmPrinter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAsmPrinter
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMAsmPrinter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAsmPrinter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMBitReader

Update of /cvs/src/gnu/usr.bin/clang/libLLVMBitReader
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMBitReader

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMBitReader added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMBitWriter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMBitWriter
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMBitWriter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMBitWriter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMCodeGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMCodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMCodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMCodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMCore

Update of /cvs/src/gnu/usr.bin/clang/libLLVMCore
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMCore

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMCore added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMIRReader

Update of /cvs/src/gnu/usr.bin/clang/libLLVMIRReader
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMIRReader

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMIRReader added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMInstCombine

Update of /cvs/src/gnu/usr.bin/clang/libLLVMInstCombine
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMInstCombine

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMInstCombine added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMInstrumentation

Update of /cvs/src/gnu/usr.bin/clang/libLLVMInstrumentation
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMInstrumentation

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMInstrumentation added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMLinker

Update of /cvs/src/gnu/usr.bin/clang/libLLVMLinker
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMLinker

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMLinker added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMMC

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMC
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMMC

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMMCDisassembler

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMCDisassembler
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMMCDisassembler

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMCDisassembler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:05

src/gnu/usr.bin/clang/libLLVMMCParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMCParser
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMMCParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMCParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMMIRParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMIRParser
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMMIRParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMIRParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMObjCARCOpts

Update of /cvs/src/gnu/usr.bin/clang/libLLVMObjCARCOpts
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMObjCARCOpts

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMObjCARCOpts added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMObject

Update of /cvs/src/gnu/usr.bin/clang/libLLVMObject
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMObject

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMObject added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMOption

Update of /cvs/src/gnu/usr.bin/clang/libLLVMOption
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMOption

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMOption added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMProfileData

Update of /cvs/src/gnu/usr.bin/clang/libLLVMProfileData
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMProfileData

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMProfileData added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMScalarOpts

Update of /cvs/src/gnu/usr.bin/clang/libLLVMScalarOpts
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMScalarOpts

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMScalarOpts added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSelectionDAG

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSelectionDAG
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSelectionDAG

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSelectionDAG added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSparcAsmParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSparcAsmParser
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSparcAsmParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSparcAsmParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSparcAsmPrinter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSparcAsmPrinter
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSparcAsmPrinter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSparcAsmPrinter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSparcCodeGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSparcCodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSparcCodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSparcCodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSparcDesc

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSparcDesc
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSparcDesc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSparcDesc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSparcDisassembler

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSparcDisassembler
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSparcDisassembler

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSparcDisassembler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSparcInfo

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSparcInfo
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSparcInfo

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSparcInfo added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMSupport

Update of /cvs/src/gnu/usr.bin/clang/libLLVMSupport
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMSupport

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMSupport added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:06

src/gnu/usr.bin/clang/libLLVMTableGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMTableGen
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMTableGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMTableGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMTarget

Update of /cvs/src/gnu/usr.bin/clang/libLLVMTarget
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMTarget

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMTarget added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMTransformUtils

Update of /cvs/src/gnu/usr.bin/clang/libLLVMTransformUtils
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMTransformUtils

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMTransformUtils added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMVectorize

Update of /cvs/src/gnu/usr.bin/clang/libLLVMVectorize
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMVectorize

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMVectorize added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMX86AsmParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMX86AsmParser
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMX86AsmParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMX86AsmParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMX86AsmPrinter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMX86AsmPrinter
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMX86AsmPrinter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMX86AsmPrinter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMX86CodeGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMX86CodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMX86CodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMX86CodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMX86Desc

Update of /cvs/src/gnu/usr.bin/clang/libLLVMX86Desc
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMX86Desc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMX86Desc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMX86Disassembler

Update of /cvs/src/gnu/usr.bin/clang/libLLVMX86Disassembler
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMX86Disassembler

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMX86Disassembler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMX86Info

Update of /cvs/src/gnu/usr.bin/clang/libLLVMX86Info
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMX86Info

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMX86Info added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMX86Utils

Update of /cvs/src/gnu/usr.bin/clang/libLLVMX86Utils
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMX86Utils

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMX86Utils added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libLLVMipo

Update of /cvs/src/gnu/usr.bin/clang/libLLVMipo
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libLLVMipo

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMipo added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libclangAST

Update of /cvs/src/gnu/usr.bin/clang/libclangAST
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangAST

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangAST added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libclangAnalysis

Update of /cvs/src/gnu/usr.bin/clang/libclangAnalysis
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangAnalysis

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangAnalysis added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libclangBasic

Update of /cvs/src/gnu/usr.bin/clang/libclangBasic
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangBasic

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangBasic added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:07

src/gnu/usr.bin/clang/libclangCodeGen

Update of /cvs/src/gnu/usr.bin/clang/libclangCodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangCodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangCodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangDriver

Update of /cvs/src/gnu/usr.bin/clang/libclangDriver
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangDriver

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangDriver added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangEdit

Update of /cvs/src/gnu/usr.bin/clang/libclangEdit
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangEdit

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangEdit added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangFrontend

Update of /cvs/src/gnu/usr.bin/clang/libclangFrontend
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangFrontend

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangFrontend added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangFrontendTool

Update of /cvs/src/gnu/usr.bin/clang/libclangFrontendTool
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangFrontendTool

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangFrontendTool added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangLex

Update of /cvs/src/gnu/usr.bin/clang/libclangLex
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangLex

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangLex added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangParse

Update of /cvs/src/gnu/usr.bin/clang/libclangParse
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangParse

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangParse added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangRewrite

Update of /cvs/src/gnu/usr.bin/clang/libclangRewrite
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangRewrite

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangRewrite added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangRewriteFrontend

Update of /cvs/src/gnu/usr.bin/clang/libclangRewriteFrontend
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangRewriteFrontend

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangRewriteFrontend added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangSema

Update of /cvs/src/gnu/usr.bin/clang/libclangSema
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangSema

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangSema added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/libclangSerialization

Update of /cvs/src/gnu/usr.bin/clang/libclangSerialization
In directory cvs.openbsd.org:/tmp/cvs-serv51085/libclangSerialization

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libclangSerialization added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/clang

Update of /cvs/src/gnu/usr.bin/clang/clang
In directory cvs.openbsd.org:/tmp/cvs-serv51085/clang

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/clang added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/clang-tblgen

Update of /cvs/src/gnu/usr.bin/clang/clang-tblgen
In directory cvs.openbsd.org:/tmp/cvs-serv51085/clang-tblgen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/clang-tblgen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/llc

Update of /cvs/src/gnu/usr.bin/clang/llc
In directory cvs.openbsd.org:/tmp/cvs-serv51085/llc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/llc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:08

src/gnu/usr.bin/clang/llvm-tblgen

Update of /cvs/src/gnu/usr.bin/clang/llvm-tblgen
In directory cvs.openbsd.org:/tmp/cvs-serv51085/llvm-tblgen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/llvm-tblgen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:38

src/gnu/usr.bin/clang/include

Update of /cvs/src/gnu/usr.bin/clang/include
In directory cvs.openbsd.org:/tmp/cvs-serv9175/include

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:53

src/gnu/usr.bin/clang/include/clang

Update of /cvs/src/gnu/usr.bin/clang/include/clang
In directory cvs.openbsd.org:/tmp/cvs-serv40430/include/clang

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:49:54

src/gnu/usr.bin/clang/include/llvm

Update of /cvs/src/gnu/usr.bin/clang/include/llvm
In directory cvs.openbsd.org:/tmp/cvs-serv40430/include/llvm

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:50:27

src/gnu/usr.bin/clang/include/llvm/Config

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/Config
In directory cvs.openbsd.org:/tmp/cvs-serv61587/Config

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/Config added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:50:27

src/gnu/usr.bin/clang/include/llvm/IR

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/IR
In directory cvs.openbsd.org:/tmp/cvs-serv61587/IR

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/IR added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:50:28

src/gnu/usr.bin/clang/include/llvm/Sparc

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/Sparc
In directory cvs.openbsd.org:/tmp/cvs-serv61587/Sparc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/Sparc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:50:28

src/gnu/usr.bin/clang/include/llvm/Support

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/Support
In directory cvs.openbsd.org:/tmp/cvs-serv61587/Support

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/Support added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:50:28

src/gnu/usr.bin/clang/include/llvm/X86

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/X86
In directory cvs.openbsd.org:/tmp/cvs-serv61587/X86

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/X86 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:45

src/gnu/usr.bin/clang/include/clang/AST

Update of /cvs/src/gnu/usr.bin/clang/include/clang/AST
In directory cvs.openbsd.org:/tmp/cvs-serv47423/AST

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/AST added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:45

src/gnu/usr.bin/clang/include/clang/Basic

Update of /cvs/src/gnu/usr.bin/clang/include/clang/Basic
In directory cvs.openbsd.org:/tmp/cvs-serv47423/Basic

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/Basic added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:45

src/gnu/usr.bin/clang/include/clang/Config

Update of /cvs/src/gnu/usr.bin/clang/include/clang/Config
In directory cvs.openbsd.org:/tmp/cvs-serv47423/Config

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/Config added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:45

src/gnu/usr.bin/clang/include/clang/Driver

Update of /cvs/src/gnu/usr.bin/clang/include/clang/Driver
In directory cvs.openbsd.org:/tmp/cvs-serv47423/Driver

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/Driver added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:45

src/gnu/usr.bin/clang/include/clang/Parse

Update of /cvs/src/gnu/usr.bin/clang/include/clang/Parse
In directory cvs.openbsd.org:/tmp/cvs-serv47423/Parse

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/Parse added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:45

src/gnu/usr.bin/clang/include/clang/Sema

Update of /cvs/src/gnu/usr.bin/clang/include/clang/Sema
In directory cvs.openbsd.org:/tmp/cvs-serv47423/Sema

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/Sema added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:45

src/gnu/usr.bin/clang/include/clang/Serialization

Update of /cvs/src/gnu/usr.bin/clang/include/clang/Serialization
In directory cvs.openbsd.org:/tmp/cvs-serv47423/Serialization

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/Serialization added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:52:46

src/gnu/usr.bin/clang/include/clang/intrin

Update of /cvs/src/gnu/usr.bin/clang/include/clang/intrin
In directory cvs.openbsd.org:/tmp/cvs-serv47423/intrin

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/clang/intrin added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 04:56:50

Added files:
	gnu/usr.bin/clang: Makefile.arch Makefile.inc 
	gnu/usr.bin/clang/clang: Makefile 
	gnu/usr.bin/clang/clang-tblgen: Makefile 
	gnu/usr.bin/clang/include/clang: Makefile 
	gnu/usr.bin/clang/include/clang/AST: Makefile 
	gnu/usr.bin/clang/include/clang/Basic: Makefile Version.inc 
	gnu/usr.bin/clang/include/clang/Config: config.h 
	gnu/usr.bin/clang/include/clang/Driver: Makefile 
	gnu/usr.bin/clang/include/clang/Parse: Makefile 
	gnu/usr.bin/clang/include/clang/Sema: Makefile 
	gnu/usr.bin/clang/include/clang/Serialization: Makefile 
	gnu/usr.bin/clang/include/clang/intrin: Makefile 
	gnu/usr.bin/clang/include/llvm/Config: Makefile config.h 
	                                       llvm-config.h 
	gnu/usr.bin/clang/include/llvm/IR: Makefile 
	gnu/usr.bin/clang/include/llvm/Sparc: Makefile 
	gnu/usr.bin/clang/include/llvm/X86: Makefile 
	gnu/usr.bin/clang/libLLVMAnalysis: Makefile 
	gnu/usr.bin/clang/libLLVMAsmParser: Makefile 
	gnu/usr.bin/clang/libLLVMAsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMBitReader: Makefile 
	gnu/usr.bin/clang/libLLVMBitWriter: Makefile 
	gnu/usr.bin/clang/libLLVMCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMCore: Makefile 
	gnu/usr.bin/clang/libLLVMIRReader: Makefile 
	gnu/usr.bin/clang/libLLVMInstCombine: Makefile 
	gnu/usr.bin/clang/libLLVMInstrumentation: Makefile 
	gnu/usr.bin/clang/libLLVMLinker: Makefile 
	gnu/usr.bin/clang/libLLVMMC: Makefile 
	gnu/usr.bin/clang/libLLVMMCDisassembler: Makefile 
	gnu/usr.bin/clang/libLLVMMCParser: Makefile 
	gnu/usr.bin/clang/libLLVMMIRParser: Makefile 
	gnu/usr.bin/clang/libLLVMObjCARCOpts: Makefile 
	gnu/usr.bin/clang/libLLVMObject: Makefile 
	gnu/usr.bin/clang/libLLVMOption: Makefile 
	gnu/usr.bin/clang/libLLVMProfileData: Makefile 
	gnu/usr.bin/clang/libLLVMScalarOpts: Makefile 
	gnu/usr.bin/clang/libLLVMSelectionDAG: Makefile 
	gnu/usr.bin/clang/libLLVMSparcAsmParser: Makefile 
	gnu/usr.bin/clang/libLLVMSparcAsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMSparcCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMSparcDesc: Makefile 
	gnu/usr.bin/clang/libLLVMSparcDisassembler: Makefile 
	gnu/usr.bin/clang/libLLVMSparcInfo: Makefile 
	gnu/usr.bin/clang/libLLVMSupport: Makefile 
	gnu/usr.bin/clang/libLLVMTableGen: Makefile 
	gnu/usr.bin/clang/libLLVMTarget: Makefile 
	gnu/usr.bin/clang/libLLVMTransformUtils: Makefile 
	gnu/usr.bin/clang/libLLVMVectorize: Makefile 
	gnu/usr.bin/clang/libLLVMX86AsmParser: Makefile 
	gnu/usr.bin/clang/libLLVMX86AsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMX86CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMX86Desc: Makefile 
	gnu/usr.bin/clang/libLLVMX86Disassembler: Makefile 
	gnu/usr.bin/clang/libLLVMX86Info: Makefile 
	gnu/usr.bin/clang/libLLVMX86Utils: 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/libclangCodeGen: Makefile 
	gnu/usr.bin/clang/libclangDriver: Makefile 
	gnu/usr.bin/clang/libclangEdit: Makefile 
	gnu/usr.bin/clang/libclangFrontend: Makefile 
	gnu/usr.bin/clang/libclangFrontendTool: Makefile 
	gnu/usr.bin/clang/libclangLex: Makefile 
	gnu/usr.bin/clang/libclangParse: Makefile 
	gnu/usr.bin/clang/libclangRewrite: Makefile 
	gnu/usr.bin/clang/libclangRewriteFrontend: Makefile 
	gnu/usr.bin/clang/libclangSema: Makefile 
	gnu/usr.bin/clang/libclangSerialization: Makefile 
	gnu/usr.bin/clang/llc: Makefile 
	gnu/usr.bin/clang/llvm-tblgen: Makefile 

Log message:
LLVM/Clang build system.  This only builds the bare minimum of what is needed
to get a working "clang" binary.

Note that you need GCC from ports to bootstrap clang.

looks good to patrick@, ok jsg@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 05:02:05

Added files:
	gnu/usr.bin/clang: Makefile 
	gnu/usr.bin/clang/clang: clang.1 
	gnu/usr.bin/clang/include/llvm/Support: DataTypes.h 

Log message:
I was bound to forget some files ...


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/05 05:03:22

src/usr.sbin/syspatch

Update of /cvs/src/usr.sbin/syspatch
In directory cvs.openbsd.org:/tmp/cvs-serv4317/syspatch

Log Message:
Directory /cvs/src/usr.sbin/syspatch added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/05 05:04:45

Added files:
	usr.sbin/syspatch: Makefile syspatch.8 syspatch.sh 

Log message:
Welcome syspatch(8), a binary patch management utility for the base system.

This is currently a POC, maybe it will become something, maybe not.
Therefore it will not be hooked to the build before we are happy with it.

Workflow would be something like:
- fetch and verify signed tarballs containing the patched binaries from a mirror
- create a rollback tarball of the files we are about to replace
- extract and install the patched files

*** BIG FAT RED DISCLAIMER ***
This is very much WIP, it does *NOT* work, don't bikeshed, don't use it!

"get it in" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/05 05:17:24

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

Log message:
correct wording; from rob@2keys.ca


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/09/05 05:20:19

Modified files:
	driver/xf86-video-intel/src/uxa: intel.h intel_driver.c 

Log message:
Define an empty inline intel_sync_close() in a header for dri2 to match
newer intel code instead of putting an ifdef around the call.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/05 05:26:18

Modified files:
	usr.sbin/syspatch: syspatch.8 syspatch.sh 

Log message:
No need to install the /var/syspatch/$REL directory, the binpatch does it for us.
Put /var/syspatch into a variable, it's used more than 10 times.

prodded by robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2016/09/05 05:29:34

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
use a for loop for mtree for the two spec files
and add a better comment

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/09/05 05:29:55

Modified files:
	sys/arch/armv7/imx: imxesdhc.c 

Log message:
Remove some unused bits.

ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/05 05:32:28

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Missing local.
Shorter var name.


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 05:36:23

Log message:
    Import libcompiler_rt 3.9.0, LLVM's replacement for libgcc.
    
    This is the lib/builtin directory of the compiler-rt source tarball.
    
    comments/ok patrick@, ok kettenis@
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LIBCOMPILER_RT_3_9_0
    
    N src/lib/libcompiler_rt/CMakeLists.txt
    N src/lib/libcompiler_rt/LICENSE.TXT
    N src/lib/libcompiler_rt/Makefile.mk
    N src/lib/libcompiler_rt/README.txt
    N src/lib/libcompiler_rt/absvdi2.c
    N src/lib/libcompiler_rt/absvsi2.c
    N src/lib/libcompiler_rt/absvti2.c
    N src/lib/libcompiler_rt/adddf3.c
    N src/lib/libcompiler_rt/addsf3.c
    N src/lib/libcompiler_rt/addtf3.c
    N src/lib/libcompiler_rt/addvdi3.c
    N src/lib/libcompiler_rt/addvsi3.c
    N src/lib/libcompiler_rt/addvti3.c
    N src/lib/libcompiler_rt/apple_versioning.c
    N src/lib/libcompiler_rt/ashldi3.c
    N src/lib/libcompiler_rt/ashlti3.c
    N src/lib/libcompiler_rt/ashrdi3.c
    N src/lib/libcompiler_rt/ashrti3.c
    N src/lib/libcompiler_rt/assembly.h
    N src/lib/libcompiler_rt/atomic.c
    N src/lib/libcompiler_rt/atomic_flag_clear.c
    N src/lib/libcompiler_rt/atomic_flag_test_and_set.c
    N src/lib/libcompiler_rt/atomic_flag_clear_explicit.c
    N src/lib/libcompiler_rt/atomic_flag_test_and_set_explicit.c
    N src/lib/libcompiler_rt/atomic_signal_fence.c
    N src/lib/libcompiler_rt/atomic_thread_fence.c
    N src/lib/libcompiler_rt/clear_cache.c
    N src/lib/libcompiler_rt/clzdi2.c
    N src/lib/libcompiler_rt/clzsi2.c
    N src/lib/libcompiler_rt/clzti2.c
    N src/lib/libcompiler_rt/cmpdi2.c
    N src/lib/libcompiler_rt/cmpti2.c
    N src/lib/libcompiler_rt/comparedf2.c
    N src/lib/libcompiler_rt/comparesf2.c
    N src/lib/libcompiler_rt/comparetf2.c
    N src/lib/libcompiler_rt/cpu_model.c
    N src/lib/libcompiler_rt/ctzdi2.c
    N src/lib/libcompiler_rt/ctzsi2.c
    N src/lib/libcompiler_rt/ctzti2.c
    N src/lib/libcompiler_rt/divdc3.c
    N src/lib/libcompiler_rt/divdf3.c
    N src/lib/libcompiler_rt/divdi3.c
    N src/lib/libcompiler_rt/divmoddi4.c
    N src/lib/libcompiler_rt/divmodsi4.c
    N src/lib/libcompiler_rt/divsc3.c
    N src/lib/libcompiler_rt/divsf3.c
    N src/lib/libcompiler_rt/divsi3.c
    N src/lib/libcompiler_rt/divtc3.c
    N src/lib/libcompiler_rt/divtf3.c
    N src/lib/libcompiler_rt/divti3.c
    N src/lib/libcompiler_rt/divxc3.c
    N src/lib/libcompiler_rt/emutls.c
    N src/lib/libcompiler_rt/enable_execute_stack.c
    N src/lib/libcompiler_rt/eprintf.c
    N src/lib/libcompiler_rt/extenddftf2.c
    N src/lib/libcompiler_rt/extendhfsf2.c
    N src/lib/libcompiler_rt/extendsfdf2.c
    N src/lib/libcompiler_rt/extendsftf2.c
    N src/lib/libcompiler_rt/ffsdi2.c
    N src/lib/libcompiler_rt/ffsti2.c
    N src/lib/libcompiler_rt/fixdfdi.c
    N src/lib/libcompiler_rt/fixdfsi.c
    N src/lib/libcompiler_rt/fixdfti.c
    N src/lib/libcompiler_rt/fixsfdi.c
    N src/lib/libcompiler_rt/fixsfsi.c
    N src/lib/libcompiler_rt/fixsfti.c
    N src/lib/libcompiler_rt/fixtfdi.c
    N src/lib/libcompiler_rt/fixtfsi.c
    N src/lib/libcompiler_rt/fixtfti.c
    N src/lib/libcompiler_rt/fixunsdfdi.c
    N src/lib/libcompiler_rt/fixunsdfsi.c
    N src/lib/libcompiler_rt/fixunsdfti.c
    N src/lib/libcompiler_rt/fixunssfdi.c
    N src/lib/libcompiler_rt/fixunssfsi.c
    N src/lib/libcompiler_rt/fixunssfti.c
    N src/lib/libcompiler_rt/fixunstfdi.c
    N src/lib/libcompiler_rt/fixunstfsi.c
    N src/lib/libcompiler_rt/fixunstfti.c
    N src/lib/libcompiler_rt/fixunsxfdi.c
    N src/lib/libcompiler_rt/fixunsxfsi.c
    N src/lib/libcompiler_rt/fixunsxfti.c
    N src/lib/libcompiler_rt/fixxfdi.c
    N src/lib/libcompiler_rt/fixxfti.c
    N src/lib/libcompiler_rt/floatdidf.c
    N src/lib/libcompiler_rt/floatdisf.c
    N src/lib/libcompiler_rt/floatditf.c
    N src/lib/libcompiler_rt/floatdixf.c
    N src/lib/libcompiler_rt/floatsidf.c
    N src/lib/libcompiler_rt/floatsisf.c
    N src/lib/libcompiler_rt/floatsitf.c
    N src/lib/libcompiler_rt/floattidf.c
    N src/lib/libcompiler_rt/floattisf.c
    N src/lib/libcompiler_rt/floattixf.c
    N src/lib/libcompiler_rt/floatundidf.c
    N src/lib/libcompiler_rt/floatundisf.c
    N src/lib/libcompiler_rt/floatunditf.c
    N src/lib/libcompiler_rt/floatundixf.c
    N src/lib/libcompiler_rt/floatunsidf.c
    N src/lib/libcompiler_rt/floatunsisf.c
    N src/lib/libcompiler_rt/floatunsitf.c
    N src/lib/libcompiler_rt/floatuntidf.c
    N src/lib/libcompiler_rt/floatuntisf.c
    N src/lib/libcompiler_rt/floatuntixf.c
    N src/lib/libcompiler_rt/fp_add_impl.inc
    N src/lib/libcompiler_rt/fp_extend.h
    N src/lib/libcompiler_rt/fp_extend_impl.inc
    N src/lib/libcompiler_rt/fp_fixint_impl.inc
    N src/lib/libcompiler_rt/fp_fixuint_impl.inc
    N src/lib/libcompiler_rt/fp_lib.h
    N src/lib/libcompiler_rt/fp_mul_impl.inc
    N src/lib/libcompiler_rt/fp_trunc.h
    N src/lib/libcompiler_rt/int_lib.h
    N src/lib/libcompiler_rt/fp_trunc_impl.inc
    N src/lib/libcompiler_rt/gcc_personality_v0.c
    N src/lib/libcompiler_rt/int_endianness.h
    N src/lib/libcompiler_rt/int_math.h
    N src/lib/libcompiler_rt/int_types.h
    N src/lib/libcompiler_rt/int_util.c
    N src/lib/libcompiler_rt/int_util.h
    N src/lib/libcompiler_rt/lshrdi3.c
    N src/lib/libcompiler_rt/lshrti3.c
    N src/lib/libcompiler_rt/moddi3.c
    N src/lib/libcompiler_rt/modsi3.c
    N src/lib/libcompiler_rt/modti3.c
    N src/lib/libcompiler_rt/muldc3.c
    N src/lib/libcompiler_rt/muldf3.c
    N src/lib/libcompiler_rt/muldi3.c
    N src/lib/libcompiler_rt/mulodi4.c
    N src/lib/libcompiler_rt/mulosi4.c
    N src/lib/libcompiler_rt/muloti4.c
    N src/lib/libcompiler_rt/mulsc3.c
    N src/lib/libcompiler_rt/mulsf3.c
    N src/lib/libcompiler_rt/multc3.c
    N src/lib/libcompiler_rt/multf3.c
    N src/lib/libcompiler_rt/multi3.c
    N src/lib/libcompiler_rt/mulvdi3.c
    N src/lib/libcompiler_rt/mulvsi3.c
    N src/lib/libcompiler_rt/mulvti3.c
    N src/lib/libcompiler_rt/mulxc3.c
    N src/lib/libcompiler_rt/negdf2.c
    N src/lib/libcompiler_rt/negdi2.c
    N src/lib/libcompiler_rt/negsf2.c
    N src/lib/libcompiler_rt/negti2.c
    N src/lib/libcompiler_rt/negvdi2.c
    N src/lib/libcompiler_rt/negvsi2.c
    N src/lib/libcompiler_rt/negvti2.c
    N src/lib/libcompiler_rt/paritydi2.c
    N src/lib/libcompiler_rt/paritysi2.c
    N src/lib/libcompiler_rt/parityti2.c
    N src/lib/libcompiler_rt/popcountdi2.c
    N src/lib/libcompiler_rt/popcountsi2.c
    N src/lib/libcompiler_rt/popcountti2.c
    N src/lib/libcompiler_rt/powidf2.c
    N src/lib/libcompiler_rt/powisf2.c
    N src/lib/libcompiler_rt/powitf2.c
    N src/lib/libcompiler_rt/powixf2.c
    N src/lib/libcompiler_rt/subdf3.c
    N src/lib/libcompiler_rt/subsf3.c
    N src/lib/libcompiler_rt/subtf3.c
    N src/lib/libcompiler_rt/subvdi3.c
    N src/lib/libcompiler_rt/subvsi3.c
    N src/lib/libcompiler_rt/subvti3.c
    N src/lib/libcompiler_rt/trampoline_setup.c
    N src/lib/libcompiler_rt/truncdfhf2.c
    N src/lib/libcompiler_rt/truncdfsf2.c
    N src/lib/libcompiler_rt/truncsfhf2.c
    N src/lib/libcompiler_rt/trunctfdf2.c
    N src/lib/libcompiler_rt/trunctfsf2.c
    N src/lib/libcompiler_rt/ucmpdi2.c
    N src/lib/libcompiler_rt/ucmpti2.c
    N src/lib/libcompiler_rt/udivdi3.c
    N src/lib/libcompiler_rt/udivmoddi4.c
    N src/lib/libcompiler_rt/udivmodsi4.c
    N src/lib/libcompiler_rt/udivmodti4.c
    N src/lib/libcompiler_rt/udivsi3.c
    N src/lib/libcompiler_rt/udivti3.c
    N src/lib/libcompiler_rt/umoddi3.c
    N src/lib/libcompiler_rt/umodsi3.c
    N src/lib/libcompiler_rt/umodti3.c
    N src/lib/libcompiler_rt/Darwin-excludes/osx-i386.txt
    N src/lib/libcompiler_rt/Darwin-excludes/ios7-arm64.txt
    N src/lib/libcompiler_rt/Darwin-excludes/10.4.txt
    N src/lib/libcompiler_rt/Darwin-excludes/osx.txt
    N src/lib/libcompiler_rt/Darwin-excludes/iossim-i386.txt
    N src/lib/libcompiler_rt/Darwin-excludes/iossim.txt
    N src/lib/libcompiler_rt/Darwin-excludes/ios.txt
    N src/lib/libcompiler_rt/Darwin-excludes/ios6-armv7s.txt
    N src/lib/libcompiler_rt/Darwin-excludes/ios6-armv7.txt
    N src/lib/libcompiler_rt/Darwin-excludes/CMakeLists.txt
    N src/lib/libcompiler_rt/Darwin-excludes/iossim-x86_64.txt
    N src/lib/libcompiler_rt/Darwin-excludes/README.TXT
    N src/lib/libcompiler_rt/Darwin-excludes/ios-armv7s.txt
    N src/lib/libcompiler_rt/Darwin-excludes/ios-armv7.txt
    N src/lib/libcompiler_rt/arm/sync_fetch_and_and_4.S
    N src/lib/libcompiler_rt/arm/aeabi_ldivmod.S
    N src/lib/libcompiler_rt/arm/sync-ops.h
    N src/lib/libcompiler_rt/arm/aeabi_cdcmp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_umax_4.S
    N src/lib/libcompiler_rt/arm/bswapsi2.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_max_8.S
    N src/lib/libcompiler_rt/arm/aeabi_cfcmpeq_check_nan.c
    N src/lib/libcompiler_rt/arm/sync_fetch_and_nand_4.S
    N src/lib/libcompiler_rt/arm/addsf3vfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_xor_4.S
    N src/lib/libcompiler_rt/arm/udivsi3.S
    N src/lib/libcompiler_rt/arm/ltsf2vfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_umin_8.S
    N src/lib/libcompiler_rt/arm/truncdfsf2vfp.S
    N src/lib/libcompiler_rt/arm/gedf2vfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_xor_8.S
    N src/lib/libcompiler_rt/arm/aeabi_dcmp.S
    N src/lib/libcompiler_rt/arm/modsi3.S
    N src/lib/libcompiler_rt/arm/aeabi_memcpy.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_min_4.S
    N src/lib/libcompiler_rt/arm/ltdf2vfp.S
    N src/lib/libcompiler_rt/arm/umodsi3.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_add_4.S
    N src/lib/libcompiler_rt/arm/fixdfsivfp.S
    N src/lib/libcompiler_rt/arm/unorddf2vfp.S
    N src/lib/libcompiler_rt/arm/aeabi_div0.c
    N src/lib/libcompiler_rt/arm/floatsisfvfp.S
    N src/lib/libcompiler_rt/arm/aeabi_cdcmpeq_check_nan.c
    N src/lib/libcompiler_rt/arm/gtdf2vfp.S
    N src/lib/libcompiler_rt/arm/aeabi_uldivmod.S
    N src/lib/libcompiler_rt/arm/negsf2vfp.S
    N src/lib/libcompiler_rt/arm/aeabi_drsub.c
    N src/lib/libcompiler_rt/arm/ledf2vfp.S
    N src/lib/libcompiler_rt/arm/udivmodsi4.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_add_8.S
    N src/lib/libcompiler_rt/arm/adddf3vfp.S
    N src/lib/libcompiler_rt/arm/aeabi_idivmod.S
    N src/lib/libcompiler_rt/arm/switch32.S
    N src/lib/libcompiler_rt/arm/fixunssfsivfp.S
    N src/lib/libcompiler_rt/arm/aeabi_uidivmod.S
    N src/lib/libcompiler_rt/arm/divmodsi4.S
    N src/lib/libcompiler_rt/arm/floatunssisfvfp.S
    N src/lib/libcompiler_rt/arm/eqdf2vfp.S
    N src/lib/libcompiler_rt/arm/fixsfsivfp.S
    N src/lib/libcompiler_rt/arm/negdf2vfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_or_4.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_umin_4.S
    N src/lib/libcompiler_rt/arm/clzdi2.S
    N src/lib/libcompiler_rt/arm/aeabi_memcmp.S
    N src/lib/libcompiler_rt/arm/aeabi_cfcmp.S
    N src/lib/libcompiler_rt/arm/softfloat-alias.list
    N src/lib/libcompiler_rt/arm/nedf2vfp.S
    N src/lib/libcompiler_rt/arm/extendsfdf2vfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_nand_8.S
    N src/lib/libcompiler_rt/arm/nesf2vfp.S
    N src/lib/libcompiler_rt/arm/gtsf2vfp.S
    N src/lib/libcompiler_rt/arm/switch8.S
    N src/lib/libcompiler_rt/arm/sync_synchronize.S
    N src/lib/libcompiler_rt/arm/clzsi2.S
    N src/lib/libcompiler_rt/arm/switch16.S
    N src/lib/libcompiler_rt/arm/save_vfp_d8_d15_regs.S
    N src/lib/libcompiler_rt/arm/subdf3vfp.S
    N src/lib/libcompiler_rt/arm/gesf2vfp.S
    N src/lib/libcompiler_rt/arm/muldf3vfp.S
    N src/lib/libcompiler_rt/arm/fixunsdfsivfp.S
    N src/lib/libcompiler_rt/arm/unordsf2vfp.S
    N src/lib/libcompiler_rt/arm/bswapdi2.S
    N src/lib/libcompiler_rt/arm/divsi3.S
    N src/lib/libcompiler_rt/arm/lesf2vfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_and_8.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_sub_8.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_umax_8.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_sub_4.S
    N src/lib/libcompiler_rt/arm/aeabi_memmove.S
    N src/lib/libcompiler_rt/arm/restore_vfp_d8_d15_regs.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_or_8.S
    N src/lib/libcompiler_rt/arm/mulsf3vfp.S
    N src/lib/libcompiler_rt/arm/eqsf2vfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_min_8.S
    N src/lib/libcompiler_rt/arm/divsf3vfp.S
    N src/lib/libcompiler_rt/arm/floatunssidfvfp.S
    N src/lib/libcompiler_rt/arm/floatsidfvfp.S
    N src/lib/libcompiler_rt/arm/sync_fetch_and_max_4.S
    N src/lib/libcompiler_rt/arm/aeabi_memset.S
    N src/lib/libcompiler_rt/arm/comparesf2.S
    N src/lib/libcompiler_rt/arm/aeabi_fcmp.S
    N src/lib/libcompiler_rt/arm/switchu8.S
    N src/lib/libcompiler_rt/arm/Makefile.mk
    N src/lib/libcompiler_rt/arm/divdf3vfp.S
    N src/lib/libcompiler_rt/arm/subsf3vfp.S
    N src/lib/libcompiler_rt/arm/aeabi_frsub.c
    N src/lib/libcompiler_rt/arm64/Makefile.mk
    N src/lib/libcompiler_rt/armv6m/Makefile.mk
    N src/lib/libcompiler_rt/ppc/fixunstfdi.c
    N src/lib/libcompiler_rt/ppc/restFP.S
    N src/lib/libcompiler_rt/ppc/floatunditf.c
    N src/lib/libcompiler_rt/ppc/gcc_qdiv.c
    N src/lib/libcompiler_rt/ppc/saveFP.S
    N src/lib/libcompiler_rt/ppc/DD.h
    N src/lib/libcompiler_rt/ppc/gcc_qmul.c
    N src/lib/libcompiler_rt/ppc/floatditf.c
    N src/lib/libcompiler_rt/ppc/divtc3.c
    N src/lib/libcompiler_rt/ppc/gcc_qsub.c
    N src/lib/libcompiler_rt/ppc/multc3.c
    N src/lib/libcompiler_rt/ppc/fixtfdi.c
    N src/lib/libcompiler_rt/ppc/gcc_qadd.c
    N src/lib/libcompiler_rt/ppc/Makefile.mk
    N src/lib/libcompiler_rt/i386/floatdidf.S
    N src/lib/libcompiler_rt/i386/floatundisf.S
    N src/lib/libcompiler_rt/i386/floatdisf.S
    N src/lib/libcompiler_rt/i386/lshrdi3.S
    N src/lib/libcompiler_rt/i386/floatundixf.S
    N src/lib/libcompiler_rt/i386/floatdixf.S
    N src/lib/libcompiler_rt/i386/divdi3.S
    N src/lib/libcompiler_rt/i386/chkstk2.S
    N src/lib/libcompiler_rt/i386/ashrdi3.S
    N src/lib/libcompiler_rt/i386/floatundidf.S
    N src/lib/libcompiler_rt/i386/udivdi3.S
    N src/lib/libcompiler_rt/i386/muldi3.S
    N src/lib/libcompiler_rt/i386/umoddi3.S
    N src/lib/libcompiler_rt/i386/chkstk.S
    N src/lib/libcompiler_rt/i386/moddi3.S
    N src/lib/libcompiler_rt/i386/ashldi3.S
    N src/lib/libcompiler_rt/i386/Makefile.mk
    N src/lib/libcompiler_rt/x86_64/floatundisf.S
    N src/lib/libcompiler_rt/x86_64/floatdidf.c
    N src/lib/libcompiler_rt/x86_64/floatdisf.c
    N src/lib/libcompiler_rt/x86_64/floatdixf.c
    N src/lib/libcompiler_rt/x86_64/floatundixf.S
    N src/lib/libcompiler_rt/x86_64/chkstk2.S
    N src/lib/libcompiler_rt/x86_64/floatundidf.S
    N src/lib/libcompiler_rt/x86_64/chkstk.S
    N src/lib/libcompiler_rt/x86_64/Makefile.mk
    N src/lib/libcompiler_rt/macho_embedded/arm.txt
    N src/lib/libcompiler_rt/macho_embedded/thumb2.txt
    N src/lib/libcompiler_rt/macho_embedded/thumb2-64.txt
    N src/lib/libcompiler_rt/macho_embedded/common.txt
    N src/lib/libcompiler_rt/macho_embedded/CMakeLists.txt
    N src/lib/libcompiler_rt/macho_embedded/i386.txt
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 05:38:16

Added files:
	lib/libcompiler_rt: Makefile 

Log message:
Add libcompiler_rt Makefile.


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 05:39:31

Modified files:
	gnu/llvm/tools/clang/lib/Driver: Tools.cpp 

Log message:
Link static PIEs with the correct C runtime (rcrt0.o).

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2016/09/05 05:55:06

Modified files:
	distrib/syspatch: bsd.syspatch.mk 

Log message:
use OSREV and OSrev instead of setting them in the makefile
and remove variables for MAKE, SIGNIFY, etc.

prodded by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 06:04:53

Modified files:
	gnu/llvm/tools/clang/lib/Driver: ToolChains.cpp ToolChains.h 
	gnu/llvm/tools/clang/lib/Frontend: InitHeaderSearch.cpp 

Log message:
Let clang use libc++/libc++abi and its header files per default.  You can still
use the old libstdc++ by specifying -stdlib=libstdc++.

with hints from/looks good to patrick@, ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/05 06:05:13

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Make sure the file exists before putting it in the rollback tarball.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/05 06:23:11

Modified files:
	share/man/man8 : rc.8 

Log message:
consistency fix; from rob pierce


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/09/05 06:24:24

Modified files:
	sys/arch/armv7/imx: imxesdhc.c 

Log message:
No point to jump to an empty return label in a void function.


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/09/05 06:45:44

Modified files:
	sys/arch/armv7/imx: imxesdhc.c 

Log message:
Some spacing/knf while here.  No functional changes.


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/05 06:48:25

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

Log message:
Fix "make depend".

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/05 06:58:17

Modified files:
	sbin/init      : init.8 
	share/man/man8 : afterboot.8 netstart.8 

Log message:
for consistency, hyphenate "single-user";
from rob pierce


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/05 07:09:32

Modified files:
	sys/net        : if.c 

Log message:
Rename if_linkstate() to if_linkstate_task() and make sure that all callers
pass the ifindex to that function and not the ifp. This fixes the missing
link state change messages on if_up and if_down. This is a fix for Rev 1.444
which introduced this problem.
OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/05 07:31:05

Removed files:
	usr.sbin/acme-client: ChangeLog 

Log message:
this file cannot be kept accurate


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/05 07:31:42

Modified files:
	usr.sbin/acme-client: Makefile 

Log message:
We do not compile things -g by default


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/05 07:57:31

Modified files:
	usr.bin/ssh    : monitor.c 

Log message:
enforce expected request flow for GSSAPI calls; thanks to Jakub Jelen
for testing; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/05 08:02:42

Modified files:
	usr.bin/ssh    : myproposal.h ssh_config.5 

Log message:
remove 3des-cbc from the client's default proposal; 64-bit block ciphers
are not safe in 2016 and we don't want to wait until attacks like sweet32
are extended to SSH.

As 3des-cbc was the only mandatory cipher in the SSH RFCs, this may
cause problems connecting to older devices using the defaults, but
it's highly likely that such devices already need explicit
configuration for KEX and hostkeys anyway.

ok deraadt, markus, dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/05 08:23:38

Modified files:
	sbin/route     : show.c 

Log message:
Print route labels in double quotes since they can contain spaces in the name.
OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/05 09:12:30

Modified files:
	sys/kern       : uipc_proto.c 
	sys/net        : pfkey.c raw_cb.h raw_usrreq.c rtsock.c 

Log message:
Kill raw_ctlinput() this function is INCOMPLETE since rev 1.1 and is not
needed. All callers using the protosw pr_ctlinput pointer do a NULL check
before so there is no need to provide the function.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/09/05 10:07:01

Modified files:
	sys/net        : raw_cb.c raw_usrreq.c 

Log message:
Remove code that was never enabled, it will not happen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2016/09/05 10:46:18

Modified files:
	devel/p5-IO-AIO: Makefile 

Log message:
Add missing build depend


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/05 12:45:08

Modified files:
	lib/libcxx/include: __config __locale cstdio 
	lib/libcxx/include/support/newlib: xlocale.h 
	lib/libunwind/src: AddressSpace.hpp 

Log message:
Implement OpenBSD support in libc++ and libunwind.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/05 12:49:19

Modified files:
	lib/libunwind/src: AddressSpace.hpp EHHeaderParser.hpp 

Log message:
In some cases, for instance for statically linked binaries, our binutils
does not produce the binary table which is used for optimization.
libunwind currently depends on having that table.  This changes
libunwind to fall back to the default search code when the binary table
is not available.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/05 12:54:14

Modified files:
	gnu/llvm/tools/clang/lib/Driver: Tools.cpp 

Log message:
libunwind relies on the EH frame header.  Our OpenBSD frontend code
does not tell our linker to produce that header for statically linked
binaries.  Just create that header for all binaries and we are fine.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/09/05 16:27:23

Modified files:
	sys/kern       : subr_hibernate.c 

Log message:
Fix hibernation - make stack protector writable during resume
Committing for guenther@ because he is on United and apparently
they break ssh (as well as guitars)

ok deraadt@ in the car from cambridge


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 17:40:38

Modified files:
	share/man/man9 : RBT_INIT.9 

Log message:
RBT_PREV goes to the element before the current one.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 17:43:13

Modified files:
	sys/sys        : tree.h 

Log message:
move the types for RBT out from under #ifdef _KERNEL

this lets userland understand kernel structures with RBT bits in them.

tested by a make build on amd64 and sparc64


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/05 18:04:15

Modified files:
	sys/netinet    : if_ether.c in_pcb.c ip_input.c ip_spd.c 
	                 tcp_subr.c 
	sys/netinet6   : nd6.c 

Log message:
pool_setipl for various netinet and netinet6 bits

thank you to everyone who helped reviewed these diffs

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/05 22:35:03

Modified files:
	regress/sys/dev: Makefile 
Removed files:
	regress/sys/dev/audio: Makefile adpcm.c adpcm.h autest.1 
	                       autest.c law.c law.h 
	regress/sys/dev/audio_info: Makefile audiotest_gsinfo.1 
	                            audiotest_gsinfo.c 
	regress/sys/dev/audio_rw: Makefile audiotest_rw.1 audiotest_rw.c 

Log message:
remove test programs for the audio driver, as we've better
converage with base tools and programs in regress/lib/libsndio

ok deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/06 00:15:58

Modified files:
	faq            : current.html 

Log message:
use [ports] label consistently


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/06 00:21:18

Modified files:
	build/mirrors  : anoncvs.html.end 

Log message:
this is going to need a lot more work; convert to faq style first


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/06 00:21:41

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/06 00:21:45

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
some indent; from michael reed


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/06 00:56:30

Modified files:
	sys/sys        : tree.h 

Log message:
store the offset of an rb_entry in a struct as an unsigned int.

this means users of the api dont need to know about size_t.

found by jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 01:50:43

Modified files:
	misc/shared-mime-info: Makefile distinfo 
	misc/shared-mime-info/pkg: PLIST 

Log message:
Update to shared-mime-info-1.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/06 02:13:23

Modified files:
	sys/kern       : tty_tty.c 

Log message:
it's not wrong, but it's not clear what the verauth check is for.
add a comment to this effect, and explain the intention.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/06 02:43:54

Modified files:
	devel/cmake    : Makefile 
	devel/cmake/patches: patch-Source_cmComputeLinkInformation_cxx 

Log message:
Hack cmake so that if webkit is in the list of shared libraries
that are passed to the linker, automatically add '-Wl,-z,wxneeded'
to the linker flags.
Works for libQt5WebKit, libQtWebKit, libwebkit2gtk, libwebkitgtk.

Requested by, and ok, ajacoutot@
Also ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/06 02:50:50

Modified files:
	mail/trojita   : Makefile 
	www/otter-browser: Makefile 

Log message:
Remove USE_WXNEEDED, it's handled by cmake now


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/06 02:58:27

Modified files:
	share/man/man7 : hier.7 

Log message:
remove the Xr macro to syspatch (since it doesn;t get installed yet)
but leave the syspatch entry (since the directory does exist);

discussed with ajacoutot;


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/06 03:00:19

Modified files:
	x11/qt4        : Makefile 
	x11/qt5        : Makefile 

Log message:
USE_WXNEEDED, add "-Wl,-z,wxneeded" to Qt5WebKit and QtWebKit
pkg-config files.

Similar commit to what was done to www/webkit, and www/webkitgtk4.

OK ajacoutot@, landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 03:04:48

Modified files:
	databases/ruby-hiera-eyaml: Makefile 
	databases/ruby-hiera-file: Makefile 
	databases/ruby-hiera: Makefile 
	databases/ruby-hiera3: Makefile 
	devel/ruby-rgen: Makefile 
	net/ruby-msgpack: Makefile 
	sysutils/ruby-augeas: Makefile 
	sysutils/ruby-shadow: Makefile 

Log message:
drop MODRUBY_REV on these ports; jeremy@ pointed out that with
'CONFIGURE_STYLE=ruby gem' it's not needed and dependant ports will require
the correct flavor/version


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/09/06 03:14:05

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
update ext_info_c every time we receive a kexinit msg; fixes sending of
ext_info if privsep is disabled; report Aris Adamantiadis & Mancha; ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/09/06 03:22:56

Modified files:
	usr.bin/ssh    : packet.c 

Log message:
ssh_set_newkeys: print correct block counters on rekeying; ok djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 03:50:24

Modified files:
	sysutils/ruby-puppet/4: Makefile 
	sysutils/ruby-puppet/4/pkg: PLIST 

Log message:
@sample /var/puppetlabs/, from semarie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/06 04:14:24

Modified files:
	lang/gcc/4.9   : Makefile distinfo 

Log message:
regen i386 bootstrap


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2016/09/06 04:31:12

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
dismantle SIGNING_PARAMETERS, no longer possible nor advisable to sign
stuff on the fly


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/06 04:32:51

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
byebye SIGNING_PARAMETERS


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/06 04:33:13

Modified files:
	regress/lib/libedit/readline: Makefile history.c 

Log message:
These tests didn't work without setting READLINE because we don't
install <editline/readline.h> by default; make them work by using
the copy from the source tree.
Issue reported by otto@.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/06 04:41:51

Modified files:
	usr.sbin/pkg_add: pkg_create.1 
	usr.sbin/pkg_add/OpenBSD: PkgCreate.pm PkgSign.pm Signer.pm 

Log message:
remove code that allows pkg_create to sign


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:02:00

Modified files:
	databases/ruby-hiera-eyaml: Makefile 
	databases/ruby-hiera-file: Makefile 

Log message:
puppet 4 will soon be the default puppet version, so switch these ports to the
matching hiera port.

discussed with and ok sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:04:58

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
Update to webkitgtk4-2.12.5.
- fixes several crashes and hangs


CVSROOT:	/cvs
Module name:	src
Changes by:	henning@cvs.openbsd.org	2016/09/06 05:06:41

Modified files:
	libexec/spamd  : spamd.c 

Log message:
must close our fd unconditionally and not just in the !TLS case; tls_close
doesn't do that for us. found, analyzed and patch supplied by Martin Proyer
<martin at proyer dot net>, many thanks! ok bcook
funny since I just discussed a somewhat mysterious spamd-TLS issue with bob
and brent over breakfast yesterday in cambridge - not sure it is this one,
if it is I've been intensively digging in the wrong corner, almost "missing
the obvious"


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:14:04

Modified files:
	www/webkitgtk4 : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
Update to webkitgtk4-2.12.5 (sync with their latest stable release).
- fixes several crashes and hangs


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:14:51

Modified files:
	sysutils/ruby-puppet: Makefile Makefile.inc 

Log message:
stop building puppet 3, effectively making puppet 4 the default on OpenBSD.
puppet 3 is scheduled to be removed from the tree after 6.1. for more information
on migrating to Puppet 4, please refer to [1] as a starting point.

however note we don't have a port for puppetserver yet, it's a work in progress,
see upstream SERVER-14 for more information. However the ruby puppetmaster
still works fine for us.

1: https://docs.puppet.com/puppet/latest/reference/upgrade_major_pre.html

as discussed with and OK sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:16:20

Modified files:
	databases      : Makefile 
	sysutils       : Makefile 

Log message:
unhook puppet3 ports (ruby-hiera, puppetdb and ruby-facter); this also resolves
conflicts with their puppet4 counterparts during dbp builds.
these unhooked ports are scheduled for removal when puppet 3 itself leaves the stage


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/06 05:18:18

Modified files:
	audio/pianobar : Makefile 
	audio/pianobar/files: cert.pem 

Log message:
Sync with src/lib/libcrypto/cert.pem


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:22:01

Modified files:
	productivity/tryton/tryton: Makefile distinfo 
	productivity/tryton/tryton/pkg: PLIST 

Log message:
Update to tryton-3.2.17.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:23:11

Modified files:
	productivity/tryton/account: Makefile distinfo 

Log message:
Update to trytond-module-account-3.2.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:25:58

Modified files:
	productivity/tryton/account_statement: Makefile distinfo 

Log message:
Update to trytond-module-account_statement-3.2.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:26:08

Modified files:
	sysutils/ruby-facter: Makefile 
	sysutils/ruby-puppet: Makefile.inc 
	sysutils/ruby-puppet/4: Makefile 
	databases/py-puppetdb: Makefile 
	net/ruby-msgpack: Makefile 
	net/ruby-stomp : Makefile 
	sysutils/mcollective: Makefile 
	sysutils/mcollective-plugins: Makefile.inc 
	sysutils/mcollective-plugins/filemgr-agent: Makefile 
	sysutils/mcollective-plugins/nrpe-agent: Makefile 
	sysutils/mcollective-plugins/package-agent: Makefile 
	sysutils/mcollective-plugins/puppet-agent: Makefile 
	sysutils/mcollective-plugins/service-agent: Makefile 
	sysutils/mcollective-plugins/sysctl-data: Makefile 
	databases/puppetdb4: Makefile 
	databases/ruby-hiera3: Makefile 

Log message:
sebastia@ is the new puppetmaster


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:27:00

Modified files:
	productivity/tryton/proteus: Makefile distinfo 

Log message:
Update to proteus-3.2.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:27:26

Modified files:
	databases/puppetdb: Makefile 
	databases/ruby-hiera: Makefile 

Log message:
sebastia@ takes over these too


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:27:50

Modified files:
	productivity/tryton/stock: Makefile distinfo 

Log message:
Update to trytond-module-stock-3.2.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 05:31:24

Modified files:
	x11/gtk2mm     : Makefile distinfo 
	x11/gtk2mm/pkg : PLIST 
Removed files:
	x11/gtk2mm/patches: patch-configure_ac patch-gdk_src_color_hg 
	                    patch-gdk_src_pixbuf_ccg 
	                    patch-gdk_src_pixbuf_hg 
	                    patch-gdk_src_pixbufanimationiter_hg 
	                    patch-gdk_src_pixbufformat_hg 
	                    patch-gdk_src_rectangle_hg 
	                    patch-gdk_src_rgbcmap_hg 
	                    patch-gdk_src_types_hg 
	                    patch-gtk_gtkmm_border_h 
	                    patch-gtk_src_entrycompletion_hg 
	                    patch-gtk_src_enums_hg patch-gtk_src_main_hg 
	                    patch-gtk_src_papersize_hg 
	                    patch-gtk_src_printunixdialog_hg 
	                    patch-gtk_src_textattributes_hg 
	                    patch-gtk_src_treemodel_hg 

Log message:
Update to gtk2mm-2.24.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/06 05:33:54

Modified files:
	www/syweb      : Makefile 
	www/syweb/pkg  : PLIST 
Removed files:
	www/syweb/pkg  : MESSAGE 

Log message:
Fix syweb's path to rrdtool and mention PHP's use of /bin/sh in
running programs. Prompted by a mail from thuban at yeuxdelibad.net
and an old diff from Ralf Horstmann that I probably missed
because it was sent to ports@ rather than the maintainer.
Convert MESSAGE to README while there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:34:11

Modified files:
	sysutils/mcollective-plugins/filemgr-agent: Makefile distinfo 
	sysutils/mcollective-plugins/service-agent: Makefile distinfo 
	sysutils/mcollective-plugins/sysctl-data: Makefile distinfo 

Log message:
use GH_COMMIT instead of a mirrored tarball; no actual file changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:40:22

Modified files:
	sysutils/ansible: Makefile 

Log message:
take maintainer

suggested by and ok rpe@ (previous MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/06 05:43:12

Modified files:
	security/libsodium: Makefile 

Log message:
WANTLIB+=pthread for libsodium, pointed out by nigel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/06 05:45:12

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

Log message:
update to libpng-1.6.25


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/06 05:50:52

Modified files:
	x11/xmobar     : Makefile distinfo 

Log message:
Update to xmobar-0.24.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 05:55:15

Modified files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_plugins_action_copy_py 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 06:07:42

Modified files:
	devel/ctftools : Makefile 
Added files:
	devel/ctftools/patches: 
	                        patch-contrib_opensolaris_tools_ctf_cvt_ctfmerge_c 

Log message:
Allow CTFMERGE_TERMINATE_NO_UNLINK=1 to keep the output file


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 06:08:18

Modified files:
	www/puppetboard: Makefile 

Log message:
another port sebastia@ takes over


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/06 06:10:05

Modified files:
	mail/courier-authlib: Makefile 

Log message:
fix REVISION-userdb in courier-authlib


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/06 06:27:41

Modified files:
	share/man/man7 : hier.7 

Log message:
document /etc/acme/
ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 06:32:14

Modified files:
	usr.sbin/sysmerge: sysmerge.8 

Log message:
Mention PAGER behavior when undefined/empty.

from Michael Reed
ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 06:37:11

Modified files:
	graphics/ffmpeg: Makefile distinfo 
	graphics/ffmpeg/patches: patch-configure 
	                         patch-libavcodec_aaccoder_c 
	                         patch-libavcodec_aacenc_c 

Log message:
Update to ffmpeg-20160903.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 06:37:52

Modified files:
	x11/mplayer    : Makefile 

Log message:
Sync FFMPEG_V.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 06:39:09

Modified files:
	net/ircd-hybrid: Makefile distinfo 

Log message:
Update to ircd-hybrid-8.2.19.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/06 06:41:23

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

Log message:
heck, have new signatures be -Dnewsign until we flip the switch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/06 07:18:42

Modified files:
	devel/libslang/patches: patch-autoconf_aclocal_m4 

Log message:
remove a sparc leftover


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 07:28:27

Removed files:
	x11/gnome/rygel: Makefile distinfo 
	x11/gnome/rygel/pkg: DESCR PLIST 
	x11/gnome/vino : Makefile distinfo 
	x11/gnome/vino/pkg: DESCR PLIST 

Log message:
Remove rygel and vino. Similarly to gnome-user-share, these will not
work without systemd in the next GNOME release which is just around the
corner.

discussed with/ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 07:29:02

Modified files:
	x11/gnome      : Makefile 

Log message:
-rygel
-vino


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 07:29:37

Modified files:
	x11/gnome/tracker: Makefile 

Log message:
x11/gnome/rygel is no more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 07:31:15

Modified files:
	meta/gnome     : Makefile 

Log message:
x11/gnome/vino and x11/gnome/rygel are gone.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 07:33:35

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register rygel and vino removal.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/09/06 07:41:29

Modified files:
	sys/arch/mips64/include: pte.h 
	sys/arch/mips64/mips64: context.S exception_tfp.S tlbhandler.S 

Log message:
Define PTE_* macros in one place. Use the lwu instruction for 32-bit PTE
loads on all systems as the TLB code does not need sign extension.


CVSROOT:	/cvs
Module name:	ports
Changes by:	okan@cvs.openbsd.org	2016/09/06 07:44:22

Modified files:
	mail/mailman   : Makefile distinfo 
	mail/mailman/patches: patch-Mailman_Defaults_py_in 
	                      patch-Mailman_htmlformat_py 
	mail/mailman/pkg: PLIST 

Log message:
Update to 2.1.23; includes CVE-2016-6893 fix.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 07:55:40

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Sort and set readonly global vars.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/06 07:56:09

Modified files:
	usr.sbin/unbound/iterator: iterator.c 
	usr.sbin/unbound/services: mesh.c 

Log message:
Backport unbound r3830/3831 from upstreadm, fixing an issue where it can
become unresponsive and need to be restarted following a connectivity outage.
From Brad, ok florian@

r3831 | wouter | 2016-08-23 04:49:01 -0400 (Tue, 23 Aug 2016) | 3 lines

- Fix #804: lower num_target_queries for iterator also for failed
lookups.

r3830 | wouter | 2016-08-23 04:30:12 -0400 (Tue, 23 Aug 2016) | 3 lines

- Fix #804: unbound stops responding after outage.  Fixes queries
that attempt to wait for an empty list of subqueries.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/06 07:56:52

Modified files:
	usr.sbin/unbound/iterator: Tag: OPENBSD_6_0 iterator.c 
	usr.sbin/unbound/services: Tag: OPENBSD_6_0 mesh.c 

Log message:
MFC: Backport unbound r3830/3831 from upstreadm, fixing an issue where it can
become unresponsive and need to be restarted following a connectivity outage.
From Brad, ok florian@

r3831 | wouter | 2016-08-23 04:49:01 -0400 (Tue, 23 Aug 2016) | 3 lines

- Fix #804: lower num_target_queries for iterator also for failed
lookups.

r3830 | wouter | 2016-08-23 04:30:12 -0400 (Tue, 23 Aug 2016) | 3 lines

- Fix #804: unbound stops responding after outage.  Fixes queries
that attempt to wait for an empty list of subqueries.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 08:32:06

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Greatly simplify patch type detection and make things more generic.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 08:33:42

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Drop useless variable and check.


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/06 08:51:06

Modified files:
	gnu/llvm/tools/clang/lib/Driver: Tools.cpp 

Log message:
Link to -lcompiler_rt instead of -lgcc.

looks good to stefan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/06 09:23:26

Modified files:
	lang/ruby      : ruby.port.mk 

Log message:
Make ruby 2.3 the default ruby version.

Also, remove code allowing the building of ruby ports using ruby 2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/06 09:37:54

Modified files:
	devel/gitsh    : Makefile 
	mail/mew       : Makefile 
	misc/tpp       : Makefile 
	net/rrdtool    : Makefile 
	net/weechat    : Makefile 
	net/whatweb    : Makefile 
	x11/gnome/code-assistance: Makefile 
	x11/kde4/korundum: Makefile 
	x11/kde4/kross-interpreters: Makefile 
	x11/kde4/ruby-qt: Makefile 
	x11/kde4/webdev: Makefile 
	x11/kde4/workspace: Makefile 

Log message:
Bump ruby dependent ports after default ruby version switch from ruby
2.2 to ruby 2.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/06 09:38:41

Modified files:
	lang/ruby      : Makefile 

Log message:
Unhook ruby 2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jeremy@cvs.openbsd.org	2016/09/06 09:48:22

Modified files:
	share/man/man5 : ruby-module.5 

Log message:
Update documentation to reflect change in default ruby version


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/06 10:12:57

Modified files:
	net/bro        : Makefile 
	net/bro/patches: patch-aux_broctl_BroControl_options_py 
	                 patch-src_broxygen_Manager_cc 
Added files:
	net/bro/patches: patch-aux_broccoli_test_broccoli-v6addrs_c 
	                 patch-cmake_FindBIND_cmake 

Log message:
Add a couple of build patches from Michael Shirk.
While here, fix a warning.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/06 10:20:29

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/06 10:23:15

Removed files:
	editors/libreoffice/patches: 
	                             patch-external_libpagemaker_UnpackedTarball_libpagemaker_mk 
	                             patch-external_libpagemaker_patch-ldflags 

Log message:
unbreak build


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2016/09/06 10:25:47

Modified files:
	usr.bin/mg     : paragraph.c 

Log message:
If you have a paragraph:

123
456

With the cursor on either the 4, 5 or 6 and no newline after the '6',
and then execute forward-paragraph (M-}), the cursor sits still and
does not move to the end of the second line (after the 6), which is in
effect the end of parapraph. This diff fixes that behaviour.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/06 10:34:29

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

Log message:
use closefrom() before reexec to make sure the new process only gets
the imsg socket.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/06 12:33:35

Modified files:
	lib/libc/arch/amd64: SYS.h 

Log message:
Remove branch prediction hints from conditional branch instructions.  These
hints are not recognized by clang's builtin assembler and the opcode prefixes
they generate have been no-ops for all CPUs after the Pentium 4.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/06 12:49:34

Modified files:
	lib/libc/dlfcn : dlfcn_stubs.c init.c 
Added files:
	lib/libc/dlfcn : init.h 

Log message:
Implement dl_iterate_phdr() for static PIE executables using info extracted
from the aux vector.

ok patrick@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/06 13:48:44

Modified files:
	sys/conf       : files 

Log message:
zap bha, hiding outside dev/ tree


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/06 13:56:36

Modified files:
	lib/libc/hidden: ctype.h float.h signal.h stdio.h 

Log message:
Make sure attributes are applied to function declarations before they're
used or defined, as clang isn't as forgiving as gcc.  Also, declare
__flt_rounds() so that libc can build it despire clang providing its own
<float.h>

ok stefan@ kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/06 18:51:16

Modified files:
	.              : mail.html 

Log message:
remove sparc mention.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/06 20:21:43

Modified files:
	build/mirrors  : anoncvs.html.end 

Log message:
don't tell people to send mail to a bouncing address, millert confirms
that sup@openbsd.org is no longer active.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/06 20:22:03

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dcoppa@cvs.openbsd.org	2016/09/06 22:42:31

Modified files:
	bin/ksh        : edit.c 

Log message:
remove unused variable 'last'

ok nicm@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/06 23:12:02

Modified files:
	share/man/man5 : elf.5 

Log message:
Add missing word

from Tim Kuijsten (info (at) netsend.nl)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/06 23:54:10

Modified files:
	share/man/man5 : elf.5 

Log message:
Describe the PT_GNU_{EH_FRAME,RELRO} and PT_OPENBSD_{RANDOMIZE,WXNEEDED}
segment types.  Tighten up the description of the PT_PHDR type and
elaborate the descriptions of the PT_DYNAMIC and PT_TLS types.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/07 00:37:17

Modified files:
	geo/libchamplain: Makefile distinfo 

Log message:
- update to libchamplain-0.12.14
- drop gettext module


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/07 00:40:02

Modified files:
	geo/geoclue2   : Makefile distinfo 
Removed files:
	geo/geoclue2/patches: patch-libgeoclue_Makefile_in 

Log message:
- update to geoclue-2.4.4
- drop gettext module
- remove our local patch yet again, this time because upstream applied it too.
neither antoine nor myself could remember why it was added, but it seems
upstream did figure it out in the end..


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/09/07 00:41:45

Modified files:
	devel/p5-Variable-Magic: Makefile distinfo 

Log message:
Update to p5-Variable-Magic-0.60.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/07 00:42:15

Modified files:
	devel/libgit2/libgit2-glib: Makefile distinfo 

Log message:
update to libgit-glib-0.24.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/09/07 01:06:35

Modified files:
	graphics/pngcrush: Makefile distinfo 
Added files:
	graphics/pngcrush/patches: patch-Makefile 

Log message:
Update to pngcrush-1.8.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/07 01:11:53

Modified files:
	share/man/man4 : Makefile 

Log message:
install switch.4


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/07 01:13:05

Modified files:
	share/man/man5 : elf.5 

Log message:
Clarify what it means when PT_OPENBSD_RANDOMIZE and PT_GNU_RELRO segments
overlap


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/07 01:14:50

Modified files:
	share/man/man5 : elf.5 

Log message:
Tweak wording on previous


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/07 01:21:02

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

Log message:
Fix about the default value of pptp-hostname.  It's an empty string.

Reported by Joe Holden.


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/09/07 01:44:07

Modified files:
	gnu/llvm/lib/CodeGen: StackProtector.cpp 

Log message:
Backport https://reviews.llvm.org/rL279449 from upstream

ok pascal@

Original commit message:

[SSP] Do not set __guard_local to hidden for OpenBSD SSP

guard_local is defined as long on OpenBSD. If the source file contains
a definition of guard_local, it mismatches with the int8 pointer type
used in LLVM. In that case, Module::getOrInsertGlobal() returns a
cast operation instead of a GlobalVariable. Trying to set the
visibility on the cast operation leads to random segfaults (seen when
compiling the OpenBSD kernel, which also runs with stack
protection).

In the kernel, the hidden attribute does not matter. For userspace code,
guard_local is defined as hidden in the startup code. If a program
re-defines guard_local, the definition from the startup code will
either win or the linker complains about multiple definitions
(depending on whether the re-defined __guard_local is placed in the
common segment or not).

It also matches what gcc on OpenBSD does.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/07 03:19:38

Modified files:
	sys/net        : route.c 

Log message:
Only free the old cached next hop route if the new one is valid.

Leaving a NULL pointer on a RTF_GATEWAY is no longer supported,
and a KASSERT() triggers.

Found the hardway by and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/07 03:21:33

Modified files:
	sys/net        : bfd.c bfd.h 

Log message:
Use C99 types.

ok claudio@, phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/07 03:23:07

Modified files:
	sys/net        : bfd.c 

Log message:
Do not check for NULL after calling an allocator with WAITOK.

All allocations are done during ioctl() so it is safe to sleep.

ok claudio@, phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/07 03:36:49

Modified files:
	sys/net        : if.c pf.c rtable.c rtable.h rtsock.c 
	sys/netinet    : if_ether.c 

Log message:
Rename rtable_mpath_next() into rtable_iterate() and make it do a proper
reference count.

rtable_iterate() frees the passed ``rt'' and returns the next one on the
multipath list or NULL if there's none.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/07 04:01:19

Modified files:
	devel/imake-cf : Makefile 
	devel/imake-cf/patches: patch-Imake_cf 

Log message:
remove zaurus bits


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/07 04:01:57

Modified files:
	x11/slim       : Makefile 
	x11/slim/pkg   : README 

Log message:
remove paragraph regarding zaurus


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/07 04:02:59

Modified files:
	lang/ocaml/patches: patch-configure 

Log message:
remove handling of zaurus


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/07 04:18:39

Modified files:
	.              : INDEX 

Log message:
post-g2k16 sync, 9590 (-5)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 04:56:02

Modified files:
	net/bro        : Makefile 
Removed files:
	net/bro/patches: patch-cmake_FindBIND_cmake 

Log message:
Drop cmake/FindBIND.cmake and use LDFLAGS until I understand what magic is
needed to handle RPATH.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/07 04:56:22

Modified files:
	sysutils/tmuxinator: Makefile 

Log message:
Bump ruby dependent ports after default ruby version switch from ruby
2.2 to ruby 2.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/07 04:58:25

Modified files:
	etc/mtree      : 4.4BSD.dist 

Log message:
restore commenting scheme:
before descending, after ascending, but not around single-subdir dirs


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2016/09/07 05:42:01

Modified files:
	usr.bin/mg     : buffer.c 

Log message:
Source Joachim Nilsson:

Found by Coverity Scan.  The popbuf() function iterated over a list to
find a wp pointer, then sent it to showbuffer() which immediately went
ahead and dereferenced it.  This patch simply adds a NULL pointer check
before calling showbuffer(), if NULL then just return NULL to callee.

ok awolk@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/07 05:59:39

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

Log message:
update to unifi-5.0.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 06:18:58

Modified files:
	x11/gnome/maps : Makefile distinfo 

Log message:
Update to gnome-maps-3.20.3.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 06:33:12

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.52.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 06:33:29

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.10.62.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 06:35:33

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.6.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 07:12:42

Modified files:
	etc/rc.d       : rc.subr 
	share/man/man8 : rc.subr.8 

Log message:
Introduce an _rc_check_name() function to check the input script name so that
we don't end up with cryptic error messages.
Regex help from rpe@
Issue reported by Anthony Coulter in rcctl(8), but better fix the root cause.

Also clarify the mage page that rc.d script name must follow ksh(1) variable
naming.

ok robert@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 07:13:13

Modified files:
	usr.sbin/rcctl : rcctl.sh 

Log message:
Validate service names with _rc_check_name() from rc.subr.

ok sthen@ robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 07:48:49

Modified files:
	sysutils/login_krb5: Makefile distinfo 

Log message:
Update to login_krb5-6.1.1.
- merge the readpassphrase() change from current


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/07 08:50:18

Modified files:
	net/bro        : Makefile 
Added files:
	net/bro/patches: patch-cmake_FindBIND_cmake 

Log message:
Use the right cmake lingo to set a non-standard RPATH.

ok aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 09:19:33

Modified files:
	usr.sbin/syspatch: syspatch.8 syspatch.sh 

Log message:
syspatch goal is not to act as a package manager but to sync the system to the
corresponding stable. So prevent rollbacking a specific binpatch but instead
always rollback the latest one. It's the only way we can know the system is
consistent.

discussed with halex@ jasper@ robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/07 09:30:45

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

Log message:
fix a wrong printf in a dump/debug function


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/07 09:31:41

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

Log message:
revert part of 1.18 which caused a regression with at least one ikbd
device

reported by Callum R. Davies


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/07 09:35:13

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

Log message:
dump some extra vcpu state if failure to launch is detected


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 09:41:23

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Don't put bsd.mp twice in the GENERIC.MP rollback tarball.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 10:01:48

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Don't fetch all patches at once but instead fetch+verify+patch one by one.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 10:17:12

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
Minimal man page.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/07 10:37:45

Modified files:
	x11/xfe        : Makefile 

Log message:
xfe needs intltool to build


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/07 10:54:56

Modified files:
	www/nginx      : Makefile 

Log message:
Fix building of passenger FLAVOR after default ruby version switch

Issued pointed out by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/07 10:56:36

Modified files:
	textproc/ruby-hyperestraier: Makefile 

Log message:
Remove ruby20 FLAVOR


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/07 11:06:23

Modified files:
	lib/libc/citrus: citrus_none.c citrus_utf8.c 

Log message:
trivial cleanup:
- delete unused headers
- add missing function prototype
- delete needless casts of return values
- KNF: return is not a function
- KNF: do not use a pointer as a boolean
- consistent wording in comments: s/octets/bytes/
OK gcc: no object change after strip -g


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/07 11:10:43

Modified files:
	lib/libc/citrus: citrus_none.c 

Log message:
trivial cleanup: delete inline attribute on static function,
leave that decision to the compiler; no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/07 11:15:06

Modified files:
	lib/libc/citrus: citrus_utf8.c 

Log message:
Trivial cleanup: Pass pointers of the correct types to the private
functions and delete a macro that is used in only one place;
no functional change.
This completes the audit of the citrus directory (only 3 files left).


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/07 11:30:13

Modified files:
	lib/libc/gen   : sysctl.3 
	sbin/sysctl    : sysctl.8 
	sys/isofs/cd9660: cd9660_vfsops.c 
	sys/isofs/udf  : udf_vfsops.c 
	sys/kern       : kern_sysctl.c vfs_syscalls.c 
	sys/msdosfs    : msdosfs_vfsops.c 
	sys/ntfs       : ntfs_vfsops.c 
	sys/sys        : sysctl.h 
	sys/ufs/ext2fs : ext2fs_vfsops.c 
	sys/ufs/ffs    : ffs_vfsops.c 

Log message:
Remove usermount remnants. ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/07 11:52:56

Modified files:
	sbin/ping      : ping.c 

Log message:
move arc4random down; reduces diff to ping6


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/07 11:53:35

Modified files:
	lib/libfuse    : fuse_ops.c fuse_private.h fuse_subr.c 
	sys/miscfs/fuse: fuse_lookup.c fuse_vfsops.c fuse_vnops.c 
	                 fusefs_node.h 

Log message:
Fix fuse node lookups. Currently fusefs nodes in the kernel remember the
parent inode number for ".." lookups. This only works until the kernel
starts to reuse vnodes and the parent's vnode is reclaimed and the ino
to path mapping is removed from the userland process by libfuse. Fix
this by using reference counting in libfuse, so that parent mapping are
retained as long as a child uses them. Also, don't free the root node.

This commit resolves following issue:

$ doas fuse-zip ~/Downloads/foo.zip /mnt
$ ls /mnt
openbsd-www
$ grep -IR foo /usr/src > /dev/null	# force vfs to reclaim vnodes
$ ls /mnt
ls: /mnt: No such file or directory
$

ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/07 11:53:53

Modified files:
	sbin/ping      : ping.c 

Log message:
move header printing down; reduces diff to ping6


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/07 11:55:14

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
normalize code to send preload packets


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/07 11:56:00

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/07 12:00:09

Added files:
	www/syweb/pkg  : README 

Log message:
missed 'cvs add' - didn't package -> no bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/07 12:09:57

Modified files:
	textproc/redland-bindings: Makefile 

Log message:
bump; ruby default version switched


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/07 12:29:52

Modified files:
	usr.sbin/config: util.c 

Log message:
Get rid of the static nomem() function and replace it with err(1, NULL);

Written with and ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/07 12:31:00

Modified files:
	etc/mtree      : 4.4BSD.dist 

Log message:
remove unused MD man5 dirs; ok schwarze
while here, remove the comment for man6, according to ingo's system...


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/07 12:36:52

Modified files:
	usr.sbin/config: util.c 

Log message:
strlen + emalloc + snprintf = asprintf

Written with and ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/07 12:39:25

Modified files:
	usr.bin/ssh    : sshd_config.5 

Log message:
sort; from matthew martin


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/07 12:42:01

Modified files:
	share/man/man5 : elf.5 

Log message:
minor tweak;


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/07 13:47:53

Modified files:
	usr.bin/spell  : look.c 

Log message:
Avoid using the obsolete _tolower() macro.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/07 13:55:01

Modified files:
	usr.bin/spell  : look.c 

Log message:
Remove other instance of _tolower


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/07 14:12:42

Modified files:
	sys/sys        : exec_elf.h 

Log message:
- point to binutils 2.17 version of elf/mips.h
- fix trailing whitespace


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/07 14:29:52

Modified files:
	x11/gtkglextmm : Makefile 
	x11/gtkglextmm/patches: patch-gtkglext_gtkmm_gl_widget_cc 
Added files:
	x11/gtkglextmm/patches: patch-gtkglext_gtkmm_gl_drawingarea_cc 

Log message:
Fix build with gtk2mm>=2.24.5.

breakage reported by sthen@ naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/09/07 14:53:34

Modified files:
	regress/sys/net/rtable/delete: Makefile 
	regress/sys/net/rtable/fullfeed: Makefile 

Log message:
add objdir to fix regress test


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/09/07 18:07:10

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

Log message:
Update net/corebird to 1.3.1

Upstream changelog:
- Fix muted and/or blocked tweets still showing up in timelines
- Fix accounts not getting saved when first created
- Fix retweets of the authenticating user not getting theiry correct
seen status
- Fix profiles descriptions containing ampersand characters and
links
- Fix profile banner fade-in transition
- Fix doubly-escaped ampersands in link tooltips
- Fix missing underlines in @screen_names in the profile popover
--

OK abieber@ for net/corebird


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2016/09/07 20:03:35

Modified files:
	share/misc     : Makefile 
Removed files:
	share/misc     : eqnchar 

Log message:
Remove eqnchar.

These weird eqn(7) macros are ugly source and produce ugly output. Anyone
doing mathematical typesetting will be better served by reading through
mandoc_char(7) or the Unicode Mathematical Operators block.

ok schwarze@ millert@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/07 21:41:47

Modified files:
	faq            : upgrade59.html upgrade60.html 

Log message:
zap remnants of the removed script hackery


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/09/07 21:52:24

Modified files:
	www/netsurf/libnsfb: Makefile 
	www/netsurf/libnsfb/patches: patch-src_plot_24bpp_c 
	                             patch-src_plot_32bpp-xbgr8888_c 
	                             patch-src_plot_32bpp-xrgb8888_c 
Added files:
	www/netsurf/libnsfb/patches: patch-src_plot_h 

Log message:
Sync patches with upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/07 23:18:20

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

Log message:
While /dev/audio is in use, /dev/audioctl has read-only access to
device variables.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/07 23:37:35

Modified files:
	regress/lib/libedit/read: test_getcmd.c 

Log message:
fix test after the errno reshuffle; ok swarsche@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/07 23:52:19

Modified files:
	bin/ls         : ls.1 

Log message:
it seems we hyphenate it set-group-id;
from daniel bolgheroni


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/08 01:18:40

Modified files:
	sysutils/salt-testing: Makefile distinfo 

Log message:
Update to salt-testing-2016.9.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/08 01:19:58

Modified files:
	devel/harfbuzz : Makefile distinfo 
	devel/harfbuzz/pkg: PLIST-main 

Log message:
Update to harfbuzz-1.3.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/08 01:39:19

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_updater_local_state_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-125.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2016/09/08 01:50:09

Modified files:
	usr.bin/mg     : region.c 

Log message:
Source Joachim Nilsson:

Collect forked off children from M-| command

Mg left zombies from commands executed when piping a region of text to
an external command.  This patch makes sure to collect for the child
before returning.

ok sunil@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/08 01:53:32

Modified files:
	devel/cmake    : Makefile distinfo 

Log message:
Maintenance update to cmake-3.6.2.
Nothing worth of interest for us.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/08 02:16:12

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : README 

Log message:
512 openfiles seems to be enough.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 02:29:05

Modified files:
	graphics/clutter/clutter-gst: Makefile distinfo 

Log message:
update to clutter-gst-3.0.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 02:49:10

Modified files:
	graphics/clutter/clutter-gst: Makefile 
	graphics/clutter/clutter-gtk: Makefile 
	graphics/clutter/cogl: Makefile 
	graphics/clutter/core: Makefile 

Log message:
regen and re-order WANTLIB


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/08 03:02:42

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
If the same address is offered via NA, update the existing ``ifa''
instead of creating a new one.

Having two addresses mean that the old, deprecated one, would be
selected instead of the new one.  The issue could be triggered by
reducing the pltime/vltime values sent by a router advertisement
daemon.

Problem reported and fix tested by Jens Sauer on bugs@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/08 03:11:43

Modified files:
	sys/net        : route.c 

Log message:
Call bfd_rtfree() when the route entry has been removed from the table,
not before.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/08 03:13:10

Modified files:
	sys/net        : if.c 

Log message:
Replace two if/do/while dances by while loops.

Requested by and ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/08 03:51:15

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

Log message:
new sign only when new sign


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 04:14:35

Modified files:
	news/slrn      : Makefile 
	news/tin       : Makefile 

Log message:
drop gettext module


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 04:14:55

Modified files:
	archivers/gcab : Makefile 

Log message:
drop gettext module

ok aja@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 04:17:26

Modified files:
	astro/celestia : Makefile 
	astro/gcal     : Makefile 

Log message:
drop gettext module


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 04:36:48

Modified files:
	japanese/gwaei : Makefile 
	japanese/kanatest: Makefile 
	japanese/kanjipad: Makefile 
	japanese/kasumi: Makefile 

Log message:
- drop gettext module
- regen WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/08 05:22:50

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	www            : Makefile 
Removed files:
	www/gecko-mediaplayer: Makefile distinfo 
	www/gecko-mediaplayer/patches: patch-configure_in 
	                               patch-src_Makefile_in 
	www/gecko-mediaplayer/pkg: DESCR PLIST 

Log message:
gecko-mediaplayer can rest in peace:

- Last commit on the upstream repo is dated Jun 23, 2014

- We now have working HTML5 support in browsers

- Mozilla intends to remove support for NPAPI plugins in Firefox
by the end of 2016


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/08 06:06:43

Modified files:
	usr.sbin/smtpd : ca.c control.c lka.c mproc.c pony.c queue.c 
	                 scheduler.c smtpd.c 

Log message:
Streamline the daemon shutdown sequence.

Only the parent process handles SIGTERM and SIGINT.  Upon receiving one
of those, it closes all imsg sockets and waitpid() for the children. It
fatal()s if one of the sockets is closed unexpectedly.  Other processes
exit() "normally" when one of the imsg sockets is closed.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/08 06:12:40

Modified files:
	bin/ksh        : edit.c 

Log message:
Don't try to look up array names for complete_* that aren't
alphanumeric, spotted by and ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/08 06:54:14

Modified files:
	www/tomcat     : Makefile.inc 
	www/tomcat/v6  : Makefile 
	www/tomcat/v7  : Makefile 
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/patches: patch-conf_server_xml 
	www/tomcat/v8/pkg: PLIST-examples PLIST-main 

Log message:
Update v8 to Tomcat 8.5.5.

While here, ensure that the shell scripts under ${PREFIX}/tomcat/bin/
have the right permissions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/08 07:00:34

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: 
	                      patch-chrome_browser_chrome_browser_main_linux_cc 
	                      patch-ui_gl_BUILD_gn 
Added files:
	www/chromium/patches: patch-components_os_crypt_os_crypt_h 

Log message:
update to 53.0.2785.101


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/08 07:03:36

Log message:
    Import stumpwm-0.9.9
    
    Port from Solène Rapenne, cluebat & ok dcoppa@
    
    StumpWM is a tiling, keyboard driven Window Manager written
    entirely in Common Lisp.
    
    Status:
    
    Vendor Tag:	jca
    Release Tags:	jca_20160908
    
    N ports/x11/stumpwm/Makefile
    N ports/x11/stumpwm/distinfo
    N ports/x11/stumpwm/patches/patch-bootstrap-depends_lisp
    N ports/x11/stumpwm/patches/patch-Makefile_in
    N ports/x11/stumpwm/pkg/PLIST
    N ports/x11/stumpwm/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/08 07:05:02

Modified files:
	x11            : Makefile 

Log message:
+stumpwm


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/08 07:58:15

Modified files:
	sbin/ping      : ping.c 

Log message:
We need this for struct iovec; reduces diff to ping6(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/08 07:59:33

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
normalize option defines; reduces diff between ping(8) and ping6(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/08 09:11:30

Modified files:
	bin/ps         : extern.h keyword.c print.c ps.1 

Log message:
etime isn't just an alias for start. the output format is different.
diff from Carlin Bingham. ok millert.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/08 09:47:16

Modified files:
	bin/ksh        : var.c 

Log message:
Allow "typeset -ir FOO" if FOO is not already marked read-only.  OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/08 09:50:50

Modified files:
	bin/ksh        : sh.h var.c 

Log message:
Add KSH_IGNORE_RDONLY flag and use it in var.c instead of the 0x4
magic number.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/08 09:51:54

Modified files:
	bin/ksh        : main.c 

Log message:
Mark PPID read-only as per the manual.  From Anthony Coulter.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/08 09:54:36

Modified files:
	bin/ps         : ps.1 

Log message:
The bug about not displaying exact information because ps can't run
faster than the system is more of a caveat than a bug. The comment also
dates back to ye olden times when the information was collected via
multiple kvm reads. The sysctl interface provides a much more consistent
snapshot, albeit one that may be outdated by the time it's printed.
Reword accordingly.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/08 10:04:01

Modified files:
	usr.bin/signify: zsig.c 

Log message:
simplify the extra buffer size copy


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/08 10:44:46

Modified files:
	sys/ufs/mfs    : mfs_vfsops.c mfs_vnops.c 

Log message:
delete useless comments, such as how KVA is mapped on HP


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/08 10:47:21

Modified files:
	editors/libreoffice: Makefile distinfo 

Log message:
update to 5.2.1.2


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/08 10:47:47

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

Log message:
as with ps, update bug to caveat and clarify


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/08 10:57:30

Modified files:
	sys/ufs/mfs    : mfs_vfsops.c 

Log message:
move mfs_pri into tsleep so it's easy to see and it doesn't change


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 11:12:01

Log message:
    import fleetctl-0.11.8
    
    fleetctl is a command-line interface to fleet, the cluster-wide CoreOS
    init system.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20160809
    
    N ports/sysutils/fleetctl/Makefile
    N ports/sysutils/fleetctl/distinfo
    N ports/sysutils/fleetctl/pkg/PLIST
    N ports/sysutils/fleetctl/pkg/DESCR
    N ports/sysutils/fleetctl/patches/patch-build
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 11:12:35

Modified files:
	sysutils       : Makefile 

Log message:
+fleetctl


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 11:29:00

Modified files:
	fonts/zh-wqy-bitmapfont: Makefile 
	fonts/zh-wqy-zenhei-ttf: Makefile 

Log message:
switch to font.port.mk


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 11:32:45

Modified files:
	infrastructure/mk: font.port.mk 

Log message:
set NO_TEST?=yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 11:32:58

Modified files:
	fonts/abyssinica: Makefile 
	fonts/andika   : Makefile 
	fonts/arabeyes-ttf: Makefile 
	fonts/blockzone: Makefile 
	fonts/charis   : Makefile 
	fonts/comic-neue: Makefile 
	fonts/doulos   : Makefile 
	fonts/ecoliercourt-fonts: Makefile 
	fonts/farsi-bfonts-ttf: Makefile 
	fonts/farsifonts-ttf: Makefile 
	fonts/gentium  : Makefile 
	fonts/hermit-font: Makefile 
	fonts/inconsolata-font: Makefile 
	fonts/spranq-ecofont-ttf: Makefile 
	fonts/zh-wqy-bitmapfont: Makefile 
	fonts/zh-wqy-zenhei-ttf: Makefile 

Log message:
drop NO_TEST


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/08 11:39:08

Modified files:
	sys/dev        : softraid_crypto.c 

Log message:
When changing the mask key, copy the new KDF hint to the metadata, if it
has been supplied. This allows for passphrase changes to use different
KDF configurations to what was used when the volume was created.

Similar diffs from djm@ and halex@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/08 11:51:02

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
When changing a passphrase, use bio_kdf_generate() so that we generate a
new salt and respect the specified number of rounds.

Before changing your softraid crypto passphrase ensure that you are running
a kernel with r1.131 of softraid_crypto.c, otherwise the volume will become
unusable.

Same diff also from djm@ and halex@


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/09/08 11:56:58

Modified files:
	www/otter-browser: Makefile distinfo 
Removed files:
	www/otter-browser/patches: patch-src_main_cpp 

Log message:
Update otter-browser to 0.9.11 weekly 140

- remove patch for (null) fprintf (applied upstream)

OK dcoppa@


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/08 12:05:30

Modified files:
	gnu/usr.bin/clang/include/clang/AST: Makefile 
	gnu/usr.bin/clang/include/clang/Basic: Makefile 
	gnu/usr.bin/clang/include/clang/Driver: Makefile 
	gnu/usr.bin/clang/include/clang/Parse: Makefile 
	gnu/usr.bin/clang/include/clang/Sema: Makefile 
	gnu/usr.bin/clang/include/clang/Serialization: Makefile 
	gnu/usr.bin/clang/include/clang/intrin: Makefile 
	gnu/usr.bin/clang/include/llvm/Config: Makefile 
	gnu/usr.bin/clang/include/llvm/IR: Makefile 
	gnu/usr.bin/clang/include/llvm/Sparc: Makefile 
	gnu/usr.bin/clang/include/llvm/X86: Makefile 

Log message:
Have "make cleandir" work everywhere in the clang tree.

noticed by and ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/08 12:24:08

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

Log message:
shorten smime;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/08 12:41:04

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
Shuffle some code to make futher changes easier - pass the KDF type into
derive_key_pkcs(), check the type and rounds in one place, unify the rounds
too small error.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/08 12:56:58

Modified files:
	libexec/ld.so/arm: archdep.h 
	lib/csu/arm    : md_init.h 

Log message:
Implement self-relocation for -static -pie on arm.  Also removes some
unecessary code from the normal startup code and do some general cleanup to
make the code more readable.

ok guenther@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/08 12:58:52

Modified files:
	gnu/gcc/gcc/config/arm: openbsd.h 

Log message:
Use rcrt0.o instead of crt0.o for -static -pie executables.

ok guenther@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/08 12:59:49

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

Log message:
Enable -static -pie on arm.

ok guenther@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/08 13:08:15

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
When changing the passphrase, keep the previous number of rounds, unless
specified otherwise.

Part of a diff from halex@


CVSROOT:	/cvs
Module name:	www
Changes by:	kettenis@cvs.openbsd.org	2016/09/08 13:11:45

Modified files:
	faq            : current.html 

Log message:
armv7 now has static PIE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/08 14:11:55

Removed files:
	databases/mariadb/patches: Tag: OPENBSD_6_0 
	                           patch-storage_innobase_include_os0sync_h 

Log message:
unbreak, patch not needed and does not apply
diff from Ian McWilliam, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/08 14:12:48

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/08 14:28:18

Log message:
    Import emulators/advancemess
    
    AdvanceMESS is an unofficial MESS (Multi Emulator Super System) version
    with advanced video support. It is an emulator for the hardware of many
    different games consoles (e.g. Sega, NES, SNES, etc.) as well as many
    different old games-oriented home computers (e.g. C64, C128, ZX80, etc.)
    
    AdvanceMESS supports many special video effects to improve image quality
    when it's stretched. The most advanced effects add missing pixels trying
    to match the image patterns.
    
    OK bentley@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20160908
    
    N ports/emulators/advancemess/Makefile
    N ports/emulators/advancemess/distinfo
    N ports/emulators/advancemess/pkg/PLIST
    N ports/emulators/advancemess/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/08 14:31:21

Modified files:
	emulators      : Makefile 

Log message:
Add advancemess


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/08 14:39:28

Modified files:
	etc            : MAKEDEV.common 

Log message:
Remove /dev/sound* as they are not used and they are identical
to /dev/audio*. No port is using them (thanks to sthen@ for checking).

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/08 14:41:30

Modified files:
	etc/etc.alpha  : MAKEDEV 
	etc/etc.amd64  : 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.socppc : MAKEDEV 
	etc/etc.sparc64: MAKEDEV 

Log message:
sync after /dev/sound* removal


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/08 14:42:58

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

Log message:
Remove reference to /dev/sound*. With tweaks from jmc@, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/08 15:56:26

Modified files:
	devel/ctftools : Makefile 

Log message:
fix WANTLIB


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/08 18:03:22

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

Log message:
back out calls to EVP_CIPHER_CTX_cleanup() in EVP_Cipher/Encrypt/DecryptFinal

Software that refers to ctx after calling Final breaks with these changes.
revert parts of 1.31 and 1.32


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/08 20:00:14

Modified files:
	sys/sys        : tree.h 

Log message:
quick fix for (more) userland breakage.

netstat includes a bunch of stuff with _KERNEL defined around it, which
i used here to scope the kernel api. the kernel api needs NULL, which
the kernel gets from sys/param.h, which then pulls in a bunch of machine
stuff and then it all goes horribly wrong on sparc64.

found by deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/08 21:22:02

Modified files:
	faq            : current.html 

Log message:
fix date and some other copy paste errors.
general style clean up of recenet entries.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/08 21:24:03

Modified files:
	faq            : current.html 

Log message:
one more <tt>


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/08 22:48:26

Modified files:
	sys/net        : if_pppx.c 

Log message:
back out RBT for now


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/08 22:50:54

Modified files:
	sys/conf       : files 
	sys/sys        : tree.h 

Log message:
disable subr_tree code for now


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/09/08 23:31:39

Modified files:
	security/burpsuite: Makefile distinfo 

Log message:
small update to 1.7.06


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/08 23:53:16

Modified files:
	gnu/llvm/tools/clang/include/clang/Driver: Options.td 

Log message:
Handle -p as an alias of -pg.  From the ports patch.
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2016/09/09 00:05:51

Modified files:
	usr.bin/mg     : region.c 

Log message:
Source Joachim Nilsson:

Coverity Scan found this interesting buglet.  If read() fails the code,
before this patch, would trigger a "Negative array index write".

ok florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/09 00:41:25

Modified files:
	misc/portroach : Makefile 
Added files:
	misc/portroach/patches: patch-Portroach_SiteHandler_GitHub_pm 

Log message:
apply patch from upstream "try harder to make sense of github"

reminded by juanfra@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/09 00:59:41

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
fix pasto

ok yasuoka@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/09 01:24:48

Modified files:
	security/gnutls: Makefile distinfo 

Log message:
SECURITY update to gnutls-3.4.15.
- GnuTLS-SA-2016-3
- http://lists.gnutls.org/pipermail/gnutls-devel/2016-September/008146.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/09 01:25:51

Modified files:
	security/gnutls: Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
SECURITY update to gnutls-3.4.15.
- GnuTLS-SA-2016-3
- http://lists.gnutls.org/pipermail/gnutls-devel/2016-September/008146.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/09 01:30:28

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.53.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/09 01:30:44

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.63.


CVSROOT:	/cvs
Module name:	www
Changes by:	ratchov@cvs.openbsd.org	2016/09/09 02:24:04

Modified files:
	faq            : current.html 

Log message:
remind to remove /dev/sound*


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/09 03:47:43

Modified files:
	x11/kde-applications/gpgmepp: Makefile 

Log message:
Add missing rdep on devel/boost to unbreak bulk builds.

From Caspar Schutijser


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:27:46

Modified files:
	devel/ruby-locale: Makefile distinfo 
	devel/ruby-locale/pkg: DESCR PLIST 

Log message:
Update to 2.1.2, soon be needed by r10k update

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:30:20

Log message:
    Import ruby-text:
    
    A collection of text algorithms: Levenshtein, Soundex, Metaphone, Double
    Metaphone, Porter Stemming.
    
    needed by the ruby-gettext update.
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20160909
    
    N ports/textproc/ruby-text/Makefile
    N ports/textproc/ruby-text/distinfo
    N ports/textproc/ruby-text/pkg/DESCR
    N ports/textproc/ruby-text/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:31:50

Modified files:
	textproc       : Makefile 

Log message:
+ ruby-text


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:32:40

Modified files:
	devel/ruby-gettext: Makefile distinfo 
	devel/ruby-gettext/pkg: PLIST 

Log message:
Update to 3.2.2, soon be needed by r10k update

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:35:50

Log message:
    import ruby-fast_gettext
    
    A simple, fast, memory-efficient and threadsafe implementation of
    GetText.
    
    soon needed by r10k update
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20160909
    
    N ports/devel/ruby-fast_gettext/distinfo
    N ports/devel/ruby-fast_gettext/Makefile
    N ports/devel/ruby-fast_gettext/pkg/PLIST
    N ports/devel/ruby-fast_gettext/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:37:00

Log message:
    import ruby-gettext-setup
    
    A Ruby gem that configures gettext for internationalization.
    
    soon needed by r10k update.
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20160909
    
    N ports/devel/ruby-gettext-setup/distinfo
    N ports/devel/ruby-gettext-setup/Makefile
    N ports/devel/ruby-gettext-setup/pkg/PLIST
    N ports/devel/ruby-gettext-setup/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:40:41

Modified files:
	devel          : Makefile 

Log message:
+ ruby-fast_gettext
+ ruby-gettext-setup


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:42:13

Modified files:
	devel/ruby-safe_yaml: Makefile distinfo 
	devel/ruby-safe_yaml/pkg: PLIST 

Log message:
Update to 1.0.4

soon be used by r10k

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:43:21

Modified files:
	devel/ruby-puppet_forge: Makefile distinfo 
	devel/ruby-puppet_forge/pkg: PLIST 

Log message:
Update to 2.2.2

now needs to freshly imported ruby-gettext-setup

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:44:18

Modified files:
	devel/ruby-semantic_puppet: Makefile distinfo 
	devel/ruby-semantic_puppet/pkg: PLIST 

Log message:
Update to 0.1.4

now needs the freshly installed ruby-gettext-setup

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/09 04:46:15

Modified files:
	sysutils/ruby-r10k: Makefile distinfo 
	sysutils/ruby-r10k/pkg: PLIST 

Log message:
Update to 2.4.3, now with gettext/locale support.

OK jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/09 05:39:11

Modified files:
	lib/libcrypto/rsa: rsa_eay.c 

Log message:
missing space after comma
(this was apparently lost during the repo surgery)

ok bcook


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/09 06:20:14

Modified files:
	devel/libdwarf : Makefile 
Added files:
	devel/libdwarf/patches: patch-libdwarf_configure 
	                        patch-libdwarf_dwarf_elf_access_c 

Log message:
fix some subtle breakage which manifested itself in a various ways of
ctfconvert (libdwarf) being unable to determine the relocation size
and not recognizing Elf64. this also unbreaks dwarfdump.

the 6th stage of debugging is strong with this one


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/09 06:24:45

Modified files:
	devel/ctftools : Makefile 

Log message:
force LDEP on the fixed libdwarf


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/09 06:25:07

Modified files:
	devel/libdwarf : Makefile 

Log message:
might as well take maintainership


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2016/09/09 08:11:43

Log message:
    Import keybase client, a command line tool for working with keybase.io!
    
    OK awolk@, suggestions from edd@
    
    Status:
    
    Vendor Tag:	abieber
    Release Tags:	abieber_20160909
    
    N ports/security/keybase/Makefile
    N ports/security/keybase/distinfo
    N ports/security/keybase/pkg/PLIST
    N ports/security/keybase/pkg/DESCR
    N ports/security/keybase/patches/patch-go_vendor_github_com_keybase_go-ps_process_openbsd_go
    N ports/security/keybase/patches/patch-go_vendor_vendor_json
    N ports/security/keybase/patches/patch-go_logger_redirect_stderr_nix_go
    N ports/security/keybase/patches/patch-go_install_install_unix_go
    N ports/security/keybase/patches/patch-go_client_cmd_update_go
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/09 08:31:06

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

Log message:
clarify that the user must belong to group wsrc for this to work
without root permissions


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/09 08:31:26

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/09 08:32:44

Modified files:
	faq            : faq5.html 

Log message:
clarify that the usermod -G change only takes effect after the next
login.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/09 08:44:09

Modified files:
	faq            : faq5.html 

Log message:
add a <p>


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/09 08:52:28

Modified files:
	distrib/miniroot: dot.profile 

Log message:
There were 3 ways of using shell at the initial prompt of the installer.
One is enough.

OK halex


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/09 08:57:33

Modified files:
	security/opensc: Makefile 
	security/opensc/patches: patch-src_tools_pkcs15-tool_c 

Log message:
Make pkcs15-tool --dump object formatting consistent
(upstream git commit 678f2bb1a65e5848dffc995f63e81d1f8092352f)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/09 09:06:30

Modified files:
	faq            : faq5.html 

Log message:
tweak wording of previous; prodded by Raf Czlonka


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/09 09:32:28

Modified files:
	games/hack     : hack.6 
	games/phantasia: phantasia.6tbl 
	games/sail     : sail.6 

Log message:
These games have been broken for the better part of a year, ever since
their setgid bits got removed.  Mark them as such in their manuals.

ok deraadt, help with wording jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/09 09:37:15

Modified files:
	sbin/fsdb      : fsdb.c 
	sbin/fsck_ffs  : extern.h main.c setup.c 

Log message:
Tighten pledge for fsdb and eliminate a strcmp("fsdb", getprogname())
by passing a flag to setup().

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/09 10:11:12

Modified files:
	etc            : ksh.kshrc 

Log message:
Resurrect the detection of the console device that got lost a long time ago.

OK tb


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/09 10:25:37

Modified files:
	etc            : ksh.kshrc 

Log message:
Convert [] to ksh style [[]] tests.
Based on a diff from Anthony Coulter.

OK krw, halex


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/09 11:09:05

Modified files:
	faq            : faq6.html 

Log message:
trim down the openntpd section and adapt the example config file to its
current version.

from benjamin baier <programmer at netzbasis.de>
ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2016/09/09 11:37:51

Modified files:
	net/dnscrypt-proxy: Makefile 
	net/dnscrypt-proxy/pkg: README-main 

Log message:
expand on the instructions for running dnscrypt-proxy with unbound.
couple minor grammar tweaks while here.

ok sthen


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/09 11:39:04

Modified files:
	faq/pf         : example1.html 

Log message:
remove (most of) the dnscrypt instructions now that the pkg readme has them.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/09 12:12:37

Modified files:
	include        : dirent.h locale.h stddef.h stdio.h stdlib.h 
	                 string.h time.h unistd.h wchar.h 
	sys/sys        : param.h 
Added files:
	sys/sys        : _null.h 

Log message:
Move the 10 (!) defintions of NULL to their own mini header file and
update the NULL definition for C++11.  OK deraadt@ guenther@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/09 12:12:43

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/09 12:27:39

Modified files:
	faq/pf         : example1.html 

Log message:
don't mention the port category when referring to a package; req by sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/09 12:28:11

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
fix atu device ID. kettenis found recent changes meant that atu was
attaching to his hub, which works poorly...
ok jsg kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/09 12:28:37

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/09 13:42:30

Modified files:
	sys/arch/powerpc/ddb: db_trace.c 
	sys/arch/amd64/amd64: db_trace.c 
	sys/arch/i386/i386: db_trace.c 

Log message:
don't hardcode the filename in an error message; use the function name instead

ok jsg@ (who spotted the powerpc straggler too) millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/09 13:48:16

Modified files:
	etc            : netstart 

Log message:
print a clear error message when not ran as root instead of just falling
through and try whatever it can do with the invoking user's perms

feedback/ok aja@ rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/09 14:31:46

Modified files:
	sys/sys        : queue.h tree.h 

Log message:
Include sys/_null.h for the NULL definition.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/09 14:35:19

Modified files:
	x11/gtk+2      : Makefile distinfo 
	x11/gtk+2/patches: patch-gtk_Makefile_in 
	x11/gtk+2/pkg  : PLIST-main 

Log message:
Update to gtk+2-2.24.31.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/09 14:51:03

Modified files:
	lang/gcc/6     : Makefile 
	lang/gcc/6/patches: patch-gcc_config_arm_openbsd_h 
	                    patch-gcc_config_gcc 
	                    patch-libgcc_config_host 
	lang/gcc/6/pkg : PFRAG.arm-main PLIST-java PLIST-main 
Added files:
	lang/gcc/6/patches: patch-gcc_common_config_arm_arm-common_c 
	                    patch-gcc_config_arm_openbsd1_h 
	                    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 

Log message:
ONLY_FOR_ARCHS+=arm


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/09 16:07:58

Modified files:
	sys/sys        : _null.h 

Log message:
Remove duplicated contents, either a patch bug or PEBKAC.


CVSROOT:	/cvs
Module name:	www
Changes by:	ratchov@cvs.openbsd.org	2016/09/09 17:17:46

Modified files:
	faq            : current.html 

Log message:
Fix order by moving /dev/sound* removal to the bottom. Thanks
to Raf Czlonka <rczlonka at gmail.com> for pointing this.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/09 23:16:06

Modified files:
	gnu/usr.bin/binutils-2.17/ld/emultempl: elf32.em 

Log message:
use an unused attribute on a function argument to avoid -Wself-assign
with clang

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/09 23:39:38

Modified files:
	sys/net        : bfd.c 

Log message:
Remove a semicolon after an if statement that resulted in
bfd_senddown() always returning before the rest of the function
could run.  Found with clang.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/09 23:42:12

Modified files:
	usr.sbin/iscsid: control.c 

Log message:
fix an fd leak in an error path


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/09 23:48:18

Modified files:
	usr.sbin/kvm_mkdb: nlist.c 

Log message:
missing fclose() in an error path


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/10 00:36:26

Modified files:
	sys/arch/amd64/amd64: db_trace.c 
	sys/arch/powerpc/ddb: db_trace.c 
	sys/arch/i386/i386: db_trace.c 

Log message:
take it one step further and bring the message inline with arm/sparc64

pointed out by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/09/10 00:45:35

Modified files:
	regress/usr.sbin/ldapd: Makefile 

Log message:
Improve Makefile by using ${.OBJDIR} and stop creating files in
${.CURDIR}. Don't start the server in .BEGIN - make obj should only
create the symlink. Add CLEANFILES for proper cleaning.


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/09/10 01:26:30

Modified files:
	regress/usr.sbin/ldapd: run-tests.pl 

Log message:
Cleanup commented lines, and only print the DN of entries


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:31:43

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
reorder function declaration to reduce diff between ping and ping6; no
object change


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/10 01:38:24

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmreg.h 

Log message:
Move IWM_NVM_* macro definitions from if_iwm.c to if_iwmreg.h.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:39:49

Modified files:
	sbin/ping      : ping.c 

Log message:
packet is actually u_char, pass it around as one


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:40:58

Modified files:
	sbin/ping      : ping.c 

Log message:
reorder main variables; no obj change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:41:36

Modified files:
	sbin/ping6     : ping6.c 

Log message:
reorder main variables; no obj change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:42:20

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
reorder main variables, reduces diff


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:43:03

Modified files:
	sbin/ping6     : ping6.c 

Log message:
move IPv6 specific structs up; no obj change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:43:49

Modified files:
	sbin/ping6     : ping6.c 

Log message:
according to netinet6/in6.h IPV6_MULTICAST_LOOP setsockopt takes a
u_char argument


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:46:20

Modified files:
	sbin/ping      : ping.c 

Log message:
reorder main variables, no object change, reduces diff to ping6


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/10 01:47:00

Modified files:
	sbin/ping      : ping.c 

Log message:
The getopt while loop is very long, put the body in {}.
Removes a "Huh, that's weird" diff to ping6. No object change.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 02:00:12

Modified files:
	etc            : ksh.kshrc 

Log message:
Identation

OK halex, krw


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 02:10:19

Modified files:
	distrib/miniroot: install.sub 

Log message:
Fix detection if default route was set by dhclient in v4_defroute().
Route labels are now enclosed in double quotes (see r1.107 of
src/sbin/route/show.c).

OK claudio, krw
no objections halex


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 02:42:07

Modified files:
	etc            : ksh.kshrc 

Log message:
Remove remnants of rlogin, it's long gone (2002).

OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/10 03:12:11

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

Log message:
Rename iwm_mvm_sta_send_to_fw() to iwm_mvm_sta_cmd(). Get rid of pointless
wrapper functions iwm_mvm_add_sta() and iwm_mvm_update_sta().


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/10 03:13:10

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

Log message:
Fix formatting in iwm such that

break; }

becomes:

break;
}


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/10 03:32:33

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmreg.h if_iwmvar.h 

Log message:
iwm(4) inherited the 'MVM' prefix in many of its symbol names from iwlwifi.
Linux iwlwifi implements support for iwn(4) chips in the 'DVM' driver,
and support for iwm(4) chips in the 'MVM' driver.

In OpenBSD the 'MVM' prefix is redundant, so we can remove it to shorten
many lines and reduce noise: s/iwm_mvm_/iwm_/g


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/10 03:40:24

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

Log message:
Rename the global nvm_to_read const int array to iwm_nvm_to_read.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 03:44:50

Modified files:
	etc            : ksh.kshrc 

Log message:
Simplify setting the USER and UID variables.
While here, convert `` to $().

OK halex


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 03:55:34

Modified files:
	audio/rhythmbox: Makefile distinfo 
	audio/rhythmbox/pkg: PLIST 

Log message:
Update to rhythmbox-3.4.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/10 04:00:42

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

Log message:
Use consistent indentation for multi-line function prototypes in iwm.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/10 06:23:16

Modified files:
	usr.bin/signify: signify.c zsig.c 

Log message:
spaces found during re-read


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 06:46:03

ports/net/bgpq3/patches

Update of /cvs/ports/net/bgpq3/patches
In directory cvs.openbsd.org:/tmp/cvs-serv53390/net/bgpq3/patches

Log Message:
Directory /cvs/ports/net/bgpq3/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 06:46:03

ports/sysutils/beats/hwsensorsbeat/patches

Update of /cvs/ports/sysutils/beats/hwsensorsbeat/patches
In directory cvs.openbsd.org:/tmp/cvs-serv53390/sysutils/beats/hwsensorsbeat/patches

Log Message:
Directory /cvs/ports/sysutils/beats/hwsensorsbeat/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 06:50:21

Modified files:
	etc            : ksh.kshrc 

Log message:
Unbreak ksh.kshrc by using a MI way of finding out the console device name.

Found by landry
OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 06:53:25

ports/net/libcares/patches

Update of /cvs/ports/net/libcares/patches
In directory cvs.openbsd.org:/tmp/cvs-serv42855/patches

Log Message:
Directory /cvs/ports/net/libcares/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 07:03:44

Modified files:
	devel/libusb1  : Makefile 
	net/libcares   : Makefile 
	audio/musepack : Makefile 
	audio/opennap  : Makefile 
	audio/opennap/patches: patch-opennap_h 
	databases/postgresql: Makefile 
	devel/libnfs   : Makefile 
	devel/sdcc     : Makefile 
	editors/nvi    : Makefile 
	emulators/fs-uae: Makefile 
	games/xbattle  : Makefile 
	graphics/geomview: Makefile 
	lang/jruby     : Makefile 
	lang/node      : Makefile 
	lang/squeak/vm : Makefile 
	lang/swi-prolog: Makefile 
	mail/akpop3d   : Makefile 
	mail/akpop3d/patches: patch-tcp_listen_c 
	net/bgpq3      : Makefile 
	net/bird       : Makefile 
	net/kismet     : Makefile 
	net/libgadu    : Makefile 
	net/miniupnp/miniupnpd: Makefile 
	net/nfdump     : Makefile 
	net/putty      : Makefile 
	net/sic        : Makefile 
	net/sic/patches: patch-sic_c 
	net/ucspi-tools: Makefile 
	net/udns       : Makefile 
	net/udns/patches: patch-Makefile_in 
	net/wide-dhcpv6: Makefile 
	print/hplip    : Makefile 
	security/aircrack-ng: Makefile 
	security/aircrack-ng/patches: patch-src_osdep_openbsd_c 
	shells/nsh     : Makefile 
	sysutils/beats/hwsensorsbeat: Makefile 
	sysutils/conky : Makefile 
	sysutils/e2fsprogs: Makefile 
	sysutils/symon : Makefile 
	sysutils/symon/patches: patch-platform_OpenBSD_platform_h 
	textproc/wkhtmltopdf: Makefile 
	www/phantomjs  : Makefile 
	x11/enlightenment: Makefile 
	x11/evilwm     : Makefile 
	x11/i3status   : Makefile 
	x11/i3status/patches: patch-src_print_wireless_info_c 
Added files:
	devel/libusb1/patches: patch-libusb_libusb_h 
	net/libcares/patches: patch-ares_h 
	audio/musepack/patches: patch-mpcenc_keyboard_c 
	databases/postgresql/patches: patch-src_bin_scripts_vacuumdb_c 
	devel/libnfs/patches: patch-include_nfsc_libnfs_h 
	devel/sdcc/patches: patch-sim_ucsim_cmd_src_newcmdposixcl_h 
	editors/nvi/patches: patch-common_exf_h 
	emulators/fs-uae/patches: 
	                          patch-libfsemu_src_ml_manymouse_x11_xinput2_c 
	games/xbattle/patches: patch-command_c patch-draw_c patch-edit_c 
	                       patch-error_c patch-extern_h patch-init_c 
	                       patch-main_c patch-replay_c patch-shape_c 
	                       patch-utils_c patch-window_c 
	graphics/geomview/patches: patch-include_streampool_h 
	lang/jruby/patches: patch-jruby-launcher_ng_c 
	lang/node/patches: patch-deps_cares_include_ares_h 
	lang/squeak/vm/patches: 
	                        patch-platforms_unix_plugins_AsynchFilePlugin_sqUnixAsynchFile_c 
	lang/swi-prolog/patches: patch-packages_clib_nonblockio_h 
	net/bgpq3/patches: patch-bgpq_expander_c 
	net/bird/patches: patch-client_client_c 
	net/kismet/patches: patch-gpsd_h 
	net/libgadu/patches: patch-examples_conn-async_c 
	net/miniupnp/miniupnpd/patches: patch-asyncsendto_c 
	                                patch-minissdp_c patch-natpmp_c 
	                                patch-portinuse_c 
	                                patch-upnpevents_c 
	                                patch-upnppinhole_c 
	                                patch-upnpredirect_c 
	net/nfdump/patches: patch-bin_util_c 
	net/putty/patches: patch-unix_uxcons_c 
	net/ucspi-tools/patches: patch-tlss_c 
	net/udns/patches: patch-rblcheck_c 
	net/wide-dhcpv6/patches: patch-config_c 
	print/hplip/patches: patch-protocol_discovery_mdns_c 
	shells/nsh/patches: patch-ieee80211_c 
	sysutils/beats/hwsensorsbeat/patches: 
	                                      patch-beater_hwsensorsbeat_go 
	sysutils/conky/patches: patch-src_read_tcp_c 
	sysutils/e2fsprogs/patches: patch-lib_ext2fs_blkmap64_rb_c 
	textproc/wkhtmltopdf/patches: 
	                              patch-qt_src_corelib_concurrent_qtconcurrentiteratekernel_cpp 
	www/phantomjs/patches: 
	                       patch-src_qt_src_corelib_concurrent_qtconcurrentiteratekernel_cpp 
	x11/enlightenment/patches: patch-eesh_main_c 
	x11/evilwm/patches: patch-events_c 

Log message:
First pass at pre-entively fixing ports that would break once guenther's header
pollution diff is in.

lang/squeak/vm does not build but it's due to the recent audio changes
games/xbattle: also fixes some conflicting implicit decl
print/hplip: also fixes some conflicting implicit decl


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 07:29:00

Modified files:
	x11/dbus-glib  : Makefile distinfo 
	x11/dbus-glib/pkg: PLIST 

Log message:
Update to dbus-glib-0.108.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/10 08:02:32

Modified files:
	gnu/usr.bin/binutils-2.17/binutils: readelf.c 
	gnu/usr.bin/binutils-2.17/gas: symbols.c 
	gnu/usr.bin/binutils-2.17/gas/config: atof-ieee.c tc-i386.c 
	gnu/usr.bin/binutils-2.17/opcodes: i386-dis.c 

Log message:
Bring in FreeBSD changes to prevent clang triggering
-Wstring-plus-int -Wempty-body and -Wshift-negative-value warnings
as binutils is built with -Werror.

ok guenther@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 09:14:52

Modified files:
	distrib/miniroot: install.sub 

Log message:
Ensure that install_files() returns successful if the _tmpsrc
directory does not exist. Otherwise, INSTALL_METHOD is not set
and this information is not sent to the cgi server.

OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 09:55:56

Modified files:
	sys/lib/libsa  : pbkdf2.c pbkdf2.h 

Log message:
Sync libsa pkcs5_pbkdf2() with libutil.


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/09/10 10:00:18

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Moving the host reset after setting the clock in the attach path makes
the host reset succeed on the allwinner,sun5i-r8.

ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 10:07:33

Modified files:
	usr.sbin/syspatch: syspatch.8 syspatch.sh 

Log message:
apply_patches should not take any arguments.
Few tweaks while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/10 10:19:14

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Drop syspatch_trap, it's simple enough for trap no needing its own function.
Introduce sp_err() which will get used for error messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 10:38:16

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/libsa: softraid.c 
	sys/arch/amd64/stand/pxeboot: Makefile 
	sys/arch/i386/stand/boot: Makefile 
	sys/arch/i386/stand/cdboot: Makefile 
	sys/arch/i386/stand/libsa: softraid.c 
	sys/arch/i386/stand/pxeboot: Makefile 
	sys/arch/sparc64/stand/ofwboot: Makefile softraid.c 
Added files:
	sys/lib/libsa  : pkcs5_pbkdf2.c pkcs5_pbkdf2.h 
Removed files:
	sys/lib/libsa  : pbkdf2.c pbkdf2.h 

Log message:
Rename libsa pbkdf2.c to pkcs5_pbkdf2.c so that we match libutil.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 10:53:22

Modified files:
	sys/dev        : softraidvar.h 
	sbin/bioctl    : bioctl.c 
	sys/arch/i386/stand/libsa: softraid.c 
	sys/arch/amd64/stand/libsa: softraid.c 
	sys/arch/sparc64/stand/ofwboot: softraid.c 

Log message:
Clean up some softraid crypto code - rename struct sr_crypto_kdf_pbkdf2 to
sr_crypto_pbkdf (since it is useable for more than just pkcs5_pbkdf2) and
embed a struct sr_crypto_genkdf within it, rather than redeclaring the same
fields. Rename SR_CRYPTOKDFT_PBKDF2 to SR_CRYPTOKDFT_PCKS5_PBKDF2 and add
SR_CRYPTOKDFT_BCRYPT_PBKDF for upcoming changes.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/10 10:53:30

Modified files:
	sbin/mount     : mntopts.h mount.8 mount.c 
	sbin/mount_ffs : mount_ffs.c 
	sys/kern       : vfs_syscalls.c 
	sys/sys        : mount.h 
	sys/ufs/ffs    : ffs_vnops.c 
	sys/ufs/ufs    : ufs_lookup.c ufs_vnops.c 

Log message:
Add a noperm mount flag for FFS to be used for building release sets
without root privileges. This is only the kernel/mount flag; additional
work in the build Makefile's will be necessary such that the files in
$DESTDIR are created with correct permissions.

tedu couldn't find anything wrong with it in a quick review
idea & ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 11:06:11

Modified files:
	sbin/bioctl    : bioctl.c 
	sys/dev        : softraidvar.h 

Log message:
Ugh, too many initialisms...


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 11:08:44

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
Teach bioctl derive_key() how to handle bcrypt_pbkdf.

Part of a diff from djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/10 11:15:44

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: specialreg.h 

Log message:
Enable VMM debug and add a few new controls


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 11:18:30

Modified files:
	distrib/miniroot: install.sub 

Log message:
Ensure that previous installer choices are available during upgrades
by moving waitcgiinfo() from install_http() to before install_sets()
in do_upgrade().

OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/10 11:59:53

Modified files:
	sys/arch/sparc64/sparc64: db_trace.c 

Log message:
Delete support for 32bit frame backtracing
Convert function definitions from K&R to Standard C
Delete superfluous casts and fix some whitespace

ok jasper@ mpi@ kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/10 12:02:15

Modified files:
	sys/arch/sparc64/sparc64: trap.c 

Log message:
If syscall() gets a 32bit trapframe, just kill the process; delete the
other code for 32bit processes, which collapses SYS_syscall and SYS___syscall
into the same behavior

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 12:22:34

Added files:
	sys/lib/libsa  : sha2.c sha2.h 

Log message:
Add sha2 to libsa, taken from libc - needed for bcrypt_pbkdf.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 12:24:16

Added files:
	sys/lib/libsa  : blowfish.c blowfish.h 

Log message:
Add blowfish to libsa, taken from libc - needed for bcrypt_pbkdf.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/10 12:26:28

Added files:
	sys/lib/libsa  : bcrypt_pbkdf.c bcrypt_pbkdf.h 

Log message:
Add bcrypt_pbkdf to libsa, from libutil. This will soon allow the boot
loader to support softraid crypto volumes using bcrypt pbkdf.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/10 12:31:15

Modified files:
	sys/arch/sparc64/sparc64: trap.c 

Log message:
Simplify comments to reflect that we don't do 32bit compat processes

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/10 12:33:01

Modified files:
	sys/arch/armv7/imx: imxiomuxc.c 

Log message:
Correct the path to the iomuxc fdt node so pinctrl setup will run.
Noticed when looking into a regression on sabre lite with fec(4)
bisected by matthieu@.  This fixes the sabre lite problems with fec and
also recent problems with the i2c rtc on cubox.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/10 12:33:28

Modified files:
	sbin/mount     : mount.8 

Log message:
sort the options list; also, the full stop in (FFS only.) wasn;t
doing much, so i zapped it;


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/10 13:33:38

Modified files:
	sys/arch/sparc64/sparc64: trap.c 

Log message:
Convert function definitions from K&R to standard-style

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/10 14:39:22

Modified files:
	lib/libc/arch/amd64/sys: brk.S sbrk.S 

Log message:
Clang ignores a .weak directive before a function is actually defined.  So
move it from before ENTRY() to after END().  Keeps brk(2) and sbrk(2) weak
when comping libc with clang.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/10 16:34:17

Modified files:
	distrib/miniroot: install.sub 

Log message:
Ensure that a previous cdrom install method is passed through
to install_sets() and that it is presented as default answer.

- fix pattern in waitcgiinfo() to match method=cd0.
- use a separate variable _im to set INSTALL_METHOD
resp might get overwritten in install_cdrom()

OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/10 17:09:03

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Use PLL6 as a parent clock for the SDx clocks for frequencies > 400 kHz.
This makes sximmc(4) much faster since we can actually provide the appropriate
clock rates for the modern SD cards.  This uncovered a bug in the code that
calculated the PLL6 output frequencies, which this commit also fixes.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/10 17:29:37

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Advertise high-speed support.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/10 17:39:42

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

Log message:
Skip printing a debug message when an external interrupt is received


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/10 18:08:42

Added files:
	games/warzone2100/patches: patch-src_scripttabs_cpp 

Log message:
cannot cast nullptr_t to enum type


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/10 21:06:31

Modified files:
	etc            : MAKEDEV.common MAKEDEV.mi 

Log message:
extra spaces


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/10 21:09:31

Modified files:
	etc/etc.alpha  : MAKEDEV 
	etc/etc.amd64  : 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.socppc : MAKEDEV 
	etc/etc.sparc64: MAKEDEV 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/10 21:14:04

Modified files:
	sys/arch/sparc64/sparc64: db_interface.c db_trace.c trap.c 

Log message:
Remove trailing whitespace

noted by jasper's emacs


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/10 21:16:52

Modified files:
	distrib/miniroot: install.sub 

Log message:
a lonely little space


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/10 21:21:31

Modified files:
	distrib/special/signify: Makefile 

Log message:
even though zsig.c is knocked out, it should be in this Makefile to
match the one up top


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 00:40:57

Modified files:
	usr.bin/calendar: Makefile 

Log message:
Install the /usr/share/calendar/$lang directories with root as owner.
This will be important as soon as we start building release sets without
root privileges.

ok deraadt guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 00:51:17

Modified files:
	etc            : Makefile 

Log message:
The /etc/{localtime,rmt}, /var/tmp and /sys symlinks and the etc tarball
should be owned by root.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 01:06:30

Modified files:
	sbin/sysctl    : Makefile 
	bin/chmod      : Makefile 
	usr.sbin/mailwrapper: Makefile 

Log message:
Symlinks to binaries should belong to root:bin.
tweaks and ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/11 01:42:02

Modified files:
	gnu/usr.bin/binutils-2.17: Makefile.bsd-wrapper 
	gnu/usr.bin/binutils: Makefile.bsd-wrapper 

Log message:
Install programs with ${INSTALL_STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
Install info and data files with -o ${DOCOWN} -g ${DOCGRP} -m ${NONBINMODE}

Prompted by natano@
Tweaks and oks deraadt@ natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/11 01:43:48

Modified files:
	lang/gcc/6     : Makefile distinfo 
	lang/gcc/6/pkg : PLIST-main 
Added files:
	lang/gcc/6/patches: 
	                    patch-gcc_common_config_rs6000_rs6000-common_c 

Log message:
+powerpc


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/11 03:32:47

Modified files:
	games/hangman  : getword.c 

Log message:
KNF: Break an overlong line. No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	mglocker@cvs.openbsd.org	2016/09/11 04:22:16

Modified files:
	sys/dev/sdmmc  : sdmmc_io.c 

Log message:
Get SDIO reset working.

Tested and ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/11 04:45:13

Added files:
	emulators/mupen64plus/video-glide64mk2/patches: 
	                                                patch-src_Glide64_Main_cpp 

Log message:
replace (int)NULL with 0 to avoid casting nullptr; ok bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/11 04:46:26

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Remove #ifdef'ed out clock setting code, as we handle setting the clock using
the gneric clock API.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2016/09/11 04:52:51

Modified files:
	devel/cvsweb   : Makefile 
	devel/cvsweb/pkg: README 

Log message:
Refer to httpd instead of Apache.

ok naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/09/11 04:56:45

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

Log message:
remove documentation for filters, we'll document when it's ready


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 05:16:07

Modified files:
	sbin/ping6     : ping6.c 

Log message:
safeputc is unused ever since we nuked RFC 4620 support


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 05:17:15

Modified files:
	sbin/ping6     : ping6.c 

Log message:
remove useless comment; reduces diff to ping; no obj change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 05:18:11

Modified files:
	sbin/ping      : ping.c 

Log message:
Correctly initialize source address for multicast pings. This got
broken 9 months ago in 1.136, sorry about that!


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 05:19:27

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
normalize seq handling in pinger; little step to make this AF
independent


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/11 05:40:47

Added files:
	graphics/geomview/patches: 
	                           patch-src_lib_oogl_refcomm_streampool_h 
Removed files:
	graphics/geomview/patches: patch-include_streampool_h 

Log message:
First pass at pre-entively fixing ports that would break once guenther's header
pollution diff is in.
(Patch correct file.)


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/11 05:50:34

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Indent cleanup.
Fix apply_patches return code while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/11 06:09:54

Added files:
	graphics/tesseract/tesseract/patches: patch-ccstruct_matrix_h 

Log message:
From upstream: Fix incompatibility with some C++11 implementations


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/11 07:10:59

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
First compute the variables, then set them readonly. So that we can catch
errors (e.g. mktemp(1) failing).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/11 07:11:57

Modified files:
	x11/gnome/grilo: Makefile distinfo 
	x11/gnome/grilo/pkg: PLIST 

Log message:
update to grilo-0.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/11 07:12:06

Modified files:
	x11/gnome/grilo-plugins: Makefile distinfo 
	x11/gnome/grilo-plugins/pkg: PLIST 

Log message:
update to grilo-plugins-0.3.3


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/11 07:30:33

Modified files:
	distrib/miniroot: master.passwd 

Log message:
ramdisk does not need a passwd entry for uucp.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/11 07:31:12

Modified files:
	distrib/miniroot: services 

Log message:
ramdisk ftp(1) client never probes for ftp & ftp-data services, because
only http is used.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 07:51:30

Modified files:
	usr.bin/skey   : Makefile 

Log message:
Set the usual owner for /usr/bin/skeyprune. ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/11 07:57:57

Modified files:
	sys/net        : bpf.h 

Log message:
Remove #ifdef's for architectures of the past around SIZEOF_BPF_HDR
This is still a mess.  Why don't we just clean this up?


CVSROOT:	/cvs
Module name:	src
Changes by:	matthieu@cvs.openbsd.org	2016/09/11 08:05:04

Modified files:
	etc/mtree      : BSD.x11.dist 

Log message:
Add a few directories missed in the past


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 08:17:04

Modified files:
	gnu/usr.bin/texinfo: Makefile.bsd-wrapper 

Log message:
Install binaries, scripts and documentation with the usual owner/group/mode.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/11 08:21:18

Modified files:
	games/arithmetic: arithmetic.c 
	games/atc      : log.c main.c 
	games/battlestar: com6.c 
	games/boggle/boggle: mach.c 
	games/canfield/canfield: canfield.c 
	games/hack     : hack.unix.c 
	games/mille    : save.c 
	games/monop    : execute.c 
	games/pom      : pom.c 
	games/sail     : sync.c 
	games/snake    : snake.c 

Log message:
Callers of time(3) should #include <time.h>.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 08:31:02

Modified files:
	lib/libcrypto  : Makefile 
	usr.sbin/ikectl: Makefile 

Log message:
Files in /etc/ssl belong to root. ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 08:53:00

Modified files:
	lib/libsqlite3 : Makefile 

Log message:
Install sqlite3 header files with correct ownership. "Morituri te
salutant."

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 09:03:33

Modified files:
	usr.bin/mg     : Makefile 

Log message:
Install mg tutorial with correct permissions. ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/11 09:54:12

Modified files:
	sys/arch/i386/stand/boot: Makefile 
	sys/arch/i386/stand/cdboot: Makefile 
	sys/arch/i386/stand/libsa: biosdev.c dev_i386.c diskprobe.c 
	                           exec_i386.c 
	sys/arch/i386/stand/pxeboot: Makefile 
	sys/arch/amd64/stand/boot: Makefile 
	sys/arch/amd64/stand/cdboot: Makefile 
	sys/arch/amd64/stand/efiboot: Makefile.common efidev.c 
	sys/arch/amd64/stand/libsa: biosdev.c dev_i386.c diskprobe.c 
	                            exec_i386.c 
	sys/arch/amd64/stand/pxeboot: Makefile 
	sys/arch/sparc64/stand/ofwboot: Makefile boot.c elf64_exec.c 
Added files:
	sys/arch/i386/stand/libsa: softraid_i386.c softraid_i386.h 
	sys/arch/amd64/stand/libsa: softraid_amd64.c softraid_amd64.h 
	sys/arch/sparc64/stand/ofwboot: softraid_sparc64.c 
	                                softraid_sparc64.h 
Removed files:
	sys/arch/i386/stand/libsa: softraid.c softraid.h 
	sys/arch/amd64/stand/libsa: softraid.c softraid.h 
	sys/arch/sparc64/stand/ofwboot: softraid.c softraid.h 

Log message:
Rename softraid boot files, which are currently in an MD location. This
will allow us to bring in a MI softraid.{c,h} in lib/libsa.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/11 10:02:04

Modified files:
	sys/arch/amd64/stand/libsa: softraid_amd64.h 
	sys/arch/i386/stand/libsa: softraid_i386.h 
	sys/arch/sparc64/stand/ofwboot: softraid_sparc64.h 

Log message:
Update header guards.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ratchov@cvs.openbsd.org	2016/09/11 10:30:12

Modified files:
	lang/squeak/vm : Makefile 
	lang/squeak/vm/patches: patch-platforms_unix_vm_sqUnixMain_c 
	lang/squeak/vm/pkg: PLIST 
Removed files:
	lang/squeak/vm/patches: 
	                        patch-platforms_unix_vm-sound-OpenBSD_acinclude_m4 
	                        patch-platforms_unix_vm-sound-OpenBSD_sqUnixSoundOpenBSD_c 

Log message:
Disable audio; unbreaks the build. Audio is not fixable as there are
LP64 problems preventing from implementing proper audio backend.

suggested by and ok naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/09/11 11:11:17

Modified files:
	opensmtpd      : index.html 
Added files:
	opensmtpd/announces: release-6.0.0.txt 

Log message:
opensmtpd 6.0.0 released


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/11 11:49:36

Added files:
	sys/lib/libsa  : softraid.c softraid.h 

Log message:
Provide initial libsa softraid - this is currently just the data structures
and softraid crypto key handling code.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 11:50:57

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Remove destination IP from mac, it's not helping anything.
Next step in making these functions AF independent. Note that before
rev 1.147 of ping6(8) it did not put the destination IP into the mac,
only ping(8) did.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/11 11:51:21

Modified files:
	sys/arch/amd64/stand/boot: Makefile 
	sys/arch/amd64/stand/cdboot: Makefile 
	sys/arch/amd64/stand/efiboot: Makefile.common efidev.c 
	sys/arch/amd64/stand/libsa: biosdev.c dev_i386.c exec_i386.c 
	                            softraid_amd64.c softraid_amd64.h 
	sys/arch/amd64/stand/pxeboot: Makefile 

Log message:
Switch amd64 to libsa MI softraid.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/11 11:52:47

Modified files:
	sys/arch/i386/stand/boot: Makefile 
	sys/arch/i386/stand/cdboot: Makefile 
	sys/arch/i386/stand/libsa: biosdev.c dev_i386.c exec_i386.c 
	                           softraid_i386.c softraid_i386.h 
	sys/arch/i386/stand/pxeboot: Makefile 

Log message:
Switch i386 boot code to libsa MI softraid.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 11:53:16

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Shuffle pinger() initialization around to reduce diff to ping(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/11 11:53:27

Modified files:
	sys/arch/sparc64/stand/ofwboot: Locore.c Makefile boot.c 
	                                softraid_sparc64.c 
	                                softraid_sparc64.h 

Log message:
Switch sparc64 boot code to libsa MI softraid.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 11:55:05

Modified files:
	sbin/ping      : ping.c 

Log message:
pinger() is no longer called in a sighandler since some time, just
printf(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 11:56:13

Modified files:
	sbin/ping6     : ping6.c 

Log message:
sync to ping(8), no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 11:58:21

Modified files:
	sbin/ping      : ping.c 

Log message:
Switch to sendmsg like ping6(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 11:59:12

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Remove useless comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:01:24

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Move smsghdr initialization into main, another step towards AF
independent pinger().


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:02:06

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:03:12

Modified files:
	sbin/ping      : ping.c 

Log message:
Get rid of check_icmph(), it's just a convoluted way of saying: Is
this an ICMP echo reply. But we want to print things if it's not an
echo reply!


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:04:07

Modified files:
	sbin/ping      : ping.c 

Log message:
Pass from around as struct sockaddr.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:16:12

Modified files:
	sbin/ping6     : ping6.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:18:25

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Hoist fill() up, it's AF independent; no obj change.

Diff between ping and ping6 is easier to read if all identical
or as close as possible to being identical functions are in one place.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:19:32

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Hoist summary() up, it's AF independent; no obj change.

Diff between ping and ping6 is easier to read if all identical
or as close as possible to being identical functions are in one place.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:21:10

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Hoist pr_addr() up, it's AF independent; no obj change.

Diff between ping and ping6 is easier to read if all identical
or as close as possible to being identical functions are in one place.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:24:44

Modified files:
	sbin/ping      : ping.c 

Log message:
Introduce pr_ipopt() to remove IPv4 specifics from pr_pack(); small
step to make this AF independent.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:25:29

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Sync to ping: ring bell later.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:27:44

Modified files:
	sbin/ping      : ping.c 

Log message:
use fputc to put in sync with ping6


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:28:31

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Normalize variable declarations in pr_pack. While here introduce seq
variable in ping and normalize it's usage.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 12:29:10

Modified files:
	sbin/ping6     : ping6.c 

Log message:
adapt output to ping


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/11 12:48:38

Modified files:
	.              : mail.html 

Log message:
minor style cleanup, based on a diff from tj


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/11 13:22:56

Modified files:
	app/xterm      : Makefile 

Log message:
Fix installation modes and ownership.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/11 13:44:32

Modified files:
	etc            : Makefile 

Log message:
Set owner for /etc/{passwd,pwd.db,spwd.db} and /var/sysmerge/etcsum.
from rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:44:43

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
The canonical way to find out if we can have timing stats is timinginfo.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:46:10

Modified files:
	sbin/ping6     : ping6.c 

Log message:
In this day and age use tcpdump to figure out to whom an ICMP echo
reply was sent. We already print the source IP for the echo request in
verbose mode. The destination IP should be the same in the replies.
Gets rid of 37 LOC and makes unification with ping easier.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:47:12

Modified files:
	sbin/ping6     : ping6.c 

Log message:
With the if a few lines above, this can never be true.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:48:12

Modified files:
	sbin/ping6     : ping6.c 

Log message:
style; no obj change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:49:20

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Do not pretend that we can send more than IPV6_MAXPACKET bytes
payload. Sprinkle in some whitespace fixes.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:49:51

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:52:47

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Crank default packetsize to ping(8) levels.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:53:33

Modified files:
	sbin/ping6     : ping6.c 

Log message:
The lenght of an icmp echo packet is AF independent;
s/ICMP6ECHOLEN/ECHOLEN/
no obj change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:55:10

Modified files:
	sbin/ping6     : ping6.c 

Log message:
The lenght of our payload is AF independent;
s/ICMP6ECHOTMLEN/ECHOTMLEN/
no obj change


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:58:36

Modified files:
	sbin/ping6     : ping6.c 

Log message:
use ECHOLEN to define DEFDATALEN


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/11 13:59:26

Modified files:
	sbin/ping      : ping.c 

Log message:
bring over LEN defines from ping6(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/11 13:59:54

Modified files:
	etc            : MAKEDEV.common 
	etc/etc.alpha  : MAKEDEV.md 
	etc/etc.amd64  : MAKEDEV.md 
	etc/etc.i386   : MAKEDEV.md 
	etc/etc.landisk: MAKEDEV.md 
	etc/etc.luna88k: MAKEDEV.md 
	etc/etc.macppc : MAKEDEV.md 
	etc/etc.sgi    : MAKEDEV.md 
	etc/etc.sparc64: MAKEDEV.md 

Log message:
cua/tty nodes only need group dialer, the initial uid does not
matter much -- and "uucp" is just stupid in 2016.
ok rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/11 13:59:58

Modified files:
	etc/etc.alpha  : MAKEDEV 
	etc/etc.amd64  : 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.socppc : MAKEDEV 
	etc/etc.sparc64: MAKEDEV 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/11 14:54:13

Modified files:
	databases/pg_statsinfo: Makefile 
	databases/pg_statsinfo/patches: patch-agent_common_h 
	devel/gwenhywfar: Makefile 
	editors/TeXmacs: Makefile 
	editors/TeXmacs/patches: 
	                         patch-src_System_Link_socket_notifier_cpp 
	mail/dovecot   : Makefile 
	mail/dovecot-pigeonhole: Makefile 
	telephony/kamailio: Makefile 
Added files:
	devel/gwenhywfar/patches: patch-src_os_posix_inetsocket_p_h 
	mail/dovecot/patches: patch-src_imap_imap-client_h 
	mail/dovecot-pigeonhole/patches: 
	                                 patch-src_lib-sieve_sieve-common_h 
	telephony/kamailio/patches: patch-modules_ldap_ld_session_h 
	                            patch-modules_seas_ha_c 

Log message:
Second and last pass at pre-entively fixing ports that would break once
guenther's header pollution cleanup diff is in.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/11 15:44:30

Modified files:
	sys/arch/armv7/sunxi: sxie.c 

Log message:
Properly keep track of which of the two tx FIFOs is in use.  Fixes the

sxie0: watchdog tx timeout

issue that appears when doing anything that tries to transmit a significant
number of packets.

ok mglocker@


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2016/09/11 17:59:02

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
Use the proper HTML escape for double quote ("): &quot; not &quote;.

ok schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/11 18:35:54

Modified files:
	sys/kern       : exec_elf.c 

Log message:
When trying to run an ELF binary marked PT_OPENBSD_WXNEEDED from a
file system mounted without MNT_WXALLOWED, fail with EACCES rather
than with ENOEXEC, to discourage the shell from trying to run the
file as a shell script.
OK deraadt@ millert@; tedu@ and halex@ agreed with the general direction.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/11 18:54:30

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

Log message:
document that running a W^X violating binary from file system mounted
without wxallowed causes EACCES


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/11 19:22:38

Modified files:
	usr.bin/ssh    : channels.c clientloop.c dh.c gss-genr.c kex.c 
	                 kexgexc.c kexgexs.c krl.c misc.h moduli.c 
	                 packet.c sandbox-rlimit.c scp.c serverloop.c 
	                 sftp-client.c sftp-common.c sftp-server.c 
	                 sftp.c ssh-agent.c sshbuf.c sshconnect.c 
	                 sshkey.c 

Log message:
Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then use those definitions
rather than pulling <sys/param.h> and unknown namespace pollution.
ok djm markus dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/09/11 20:25:46

Modified files:
	regress/usr.bin/ssh: Makefile 
Added files:
	regress/usr.bin/ssh: moduli.in keygen-moduli.sh 

Log message:
Add testcase for ssh-keygen -j, -J and -K options for moduli screening.
Does not currently test generation as that is extremely slow.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/09/11 21:25:20

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

Log message:
Style whitespace fix.  Also happens to remove a no-op diff with portable.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/09/11 21:29:16

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

Log message:
Spaces->tabs.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/11 22:28:41

Modified files:
	lib/libm/src   : e_sqrtl.c 

Log message:
Use fe*() routines from <fenv.h> instead of fp*() routines from <ieeefp.h>

ok tb@ martynas@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/11 22:39:47

Modified files:
	lib/libm/noieee_src: n_atan2.c n_erf.c n_exp.c n_expm1.c 
	                     n_floor.c n_fmod.c n_hypot.c n_j0.c n_j1.c 
	                     n_jn.c n_lgamma.c n_log.c n_log1p.c n_pow.c 
	                     n_sincos.c n_support.c n_tan.c n_tanh.c 
	                     n_tgamma.c 
	lib/libm/src   : b_exp__D.c b_tgamma.c e_scalb.c e_scalbf.c 
	                 s_roundf.c 
	lib/libm/src/ld128: e_lgammal.c 

Log message:
Per fpclassify(3): isinff(), isnanf(), finite(), and finitef() are deprecated
in favor of isinf(), isnan(), and isfinite().

ok tb@ martynas@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/12 00:01:58

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Use ECHOLEN/ECHOTMLEN defines.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/12 00:02:43

Modified files:
	sbin/ping      : ping.c 

Log message:
No need for have this unsigned, reduces diff to ping6(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/12 00:20:18

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
less markup; from rob pierce


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/12 01:33:00

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
listener configuration cleanup:

- have all listener creation functions take listen_opts as param,
and call config_listener() when done, which adds the listener(s)
to the current config list of listeners.
- make the fallback chain between interface(), host_v4() host_v6()
and host_dns() obvious when creating an if_listener.
- fix a bug where the specified family was ignored if the listener
is given as a hostname.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/12 01:43:10

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Split usbd_fill_iface_data() in two and introduce usbd_parse_idesc() a
function for parsing and checking endpoint descriptors.

More checks will be added later to prevent malformed descriptors of
being used.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/12 01:55:33

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
Wacom Intuos Draw, from Frank Groeneveld.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/12 01:56:29

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/12 02:12:06

Modified files:
	sys/dev/usb    : files.usb 
	share/man/man4 : Makefile uhidev.4 usb.4 
Added files:
	sys/dev/usb    : uwacom.c 
	share/man/man4 : uwacom.4 

Log message:
Wacom USB tablet driver from Frank Groeneveld.

Currently attaches as a single child of uhidev(4) and offers basic
pointer functionalities.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/12 02:28:44

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/arch/armv7/conf: GENERIC 
	sys/arch/i386/conf: GENERIC 
	sys/arch/macppc/conf: GENERIC 

Log message:
Enable uwacom(4) where uts(4) is already present.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/12 03:10:05

Modified files:
	sys/dev/hid    : hid.h 

Log message:
Define for HUP_WACOM, missed in previous.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/12 03:37:09

Modified files:
	lang/gcc/4.9   : Makefile distinfo 

Log message:
regen ppc adastrap


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/12 03:48:37

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

Log message:
Update to rspamd-1.3.5.

Also use the robot test suite, now that all of the dependencies are ported.

Thanks to upstream for working with us to get this working smoothly on OpenBSD.

Input from sthen@ and giovanni@, tested by giovanni@ and gilles@.

OK giovanni@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/12 04:18:26

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmvar.h 

Log message:
Simplify handling of the AUX STA in iwm(4). There is no good reason for
storing AUX STA data in the softc. Also, simplify error handling around
iwm_send_cmd_pdu_status(), and inline its iwm_add_int_sta_common() helper
along with fixing an uninitialized 'status' output parameter.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/12 04:39:06

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

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/12 05:28:59

Modified files:
	devel/proj     : Makefile 
	devel/geotiff  : Makefile 

Log message:
Remove ftp.remotesensing.org from MASTER_SITES, it's dead now - and
download.osgeo.org works and is supposed to be the canonical source.

See http://www.asmail.be/msg0054885794.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 05:45:58

Modified files:
	audio/cmus     : Makefile 
	databases/mdbtools: Makefile 
	games/hedgewars: Makefile 
	mail/dovecot   : Makefile 
	mail/dovecot-pigeonhole: Makefile 
	math/plplot    : Makefile 
	net/pfstat     : Makefile 
	net/zabbix     : Makefile 
	security/oath-toolkit: Makefile 
	www/sope       : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 05:52:42

Modified files:
	converters/libiconv: libiconv.port.mk 
	infrastructure/templates: mk.conf.template 

Log message:
another step towards extinction: remove and poison the MODLIBICONV variables


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 06:44:05

Modified files:
	distrib/sets/lists/xserv: md.alpha md.hppa 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/12 07:24:49

Modified files:
	net            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	net/ttcp       : Makefile distinfo 
	net/ttcp/pkg   : DESCR PLIST 

Log message:
Remove net/ttcp.

ttcp relied on AF_UNSPEC, inspection of the code showed its age.  We
have better alternatives anyway that support additional options and IPv6
support (tcpbench, net/iperf).

ok ajacoutot@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/12 07:34:12

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

Log message:
shorten speed;
help/ok guenther bcook


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/09/12 07:43:40

Modified files:
	print/texinfo  : Makefile distinfo 
	print/texinfo/pkg: PLIST 

Log message:
Update to Texinfo 6.3

- Drop the gettext MODULE.

ok jca@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/12 07:47:00

Modified files:
	app/cwm        : conf.c cwmrc.5 

Log message:
change 'sticky' to 'stick' to toggle client stickiness (seems the
default binding worked for everyone for a long time!); conflict with
group sticky found by Ali Farzanrad - thanks!


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/12 07:48:41

Modified files:
	app/cwm        : client.c 

Log message:
Switch to just malloc since we need initialize most everything anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/12 08:05:40

Modified files:
	sys/net        : bpf_filter.c 

Log message:
Kill some unsightly whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	akfaew@cvs.openbsd.org	2016/09/12 08:33:12

Modified files:
	usr.sbin/config: main.c 

Log message:
strlen + emalloc + snprintf = asprintf

ok deraadt@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/12 08:38:58

Modified files:
	games/boggle/boggle: bog.c 

Log message:
fix init, from randy hartman; ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/12 08:48:19

Modified files:
	x11/gtk+2      : Tag: OPENBSD_6_0 Makefile 
Added files:
	x11/gtk+2/patches: Tag: OPENBSD_6_0 patch-gdk_gdkcairo_c 

Log message:
SECURITY fix for CVE-2013-7447: Memory allocation integer overflow in gdk_cairo_set_source_pixbuf on large pixbufs.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/12 09:04:15

Modified files:
	sys/arch/sparc64/sparc64: trap.c 

Log message:
spelling fix


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/12 09:21:17

Modified files:
	net            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	net/aget       : Makefile distinfo 
	net/aget/patches: patch-Makefile 
	net/aget/pkg   : DESCR PLIST 

Log message:
Remove net/aget.

Unmaintained upstream, doesn't support IPv6 and HTTPS, and shows LP64
problems.

ok maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/12 09:24:51

Modified files:
	sys/net        : bfd.c bfd.h 

Log message:
Add data about how long the session has been in the current state, and
the previous state.

Shuffle some headers so they can be used outside of our own engine.

While here, correct the spelling of the two modes for BFD.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 09:28:03

Modified files:
	distrib/sets/lists/xserv: md.armv7 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/12 09:28:30

Modified files:
	net/libnice    : Makefile 
	net/avahi      : Makefile 
	textproc/gtkspell3: Makefile 

Log message:
Set PORTHOME to avoid junk directories in /

from Solene Rapenne.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/12 09:38:22

Modified files:
	net/samba      : Makefile 

Log message:
Repair samba-tool domain provision --use-ntvfs

The situation is a mess.  Upstream says that s3fs (the original smb code
from samba3) requires filesystem ACLs, which we don't have.  The ntvfs
code (new in samba4, but now deprecated) fit the job, but
adding --with-ntvfs-fileserver doesn't actually provide a working 'smb'
service (see "server services" in smb.conf(5)).

So right now it seems that the workaround is to provision
using --use-ntvfs, but then to strip 'smb' from the 'server services'
line.

Reports welcome...


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/12 09:40:58

Modified files:
	usr.bin/tmux   : cmd-bind-key.c cmd-list-keys.c mode-key.c 
	                 status.c tmux.1 tmux.h window-choose.c 
	                 window-copy.c 

Log message:
Allow repeat count to be specified in mode key tables with bind-key -R,
and set the default repeat count to 5 for WheelUp and WheelDown in
copy-mode.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/12 09:47:58

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Bring over KAME copyright, there is now code from ping in ping6. While
here nuke NetBSD, KAME and BSDI ids. With this the beginning of
ping.c and ping6.c are in sync.
prodding deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 10:09:52

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/12 10:24:37

Modified files:
	sys/net        : bpf.c bpf.h 
	share/man/man9 : bpf_mtap.9 

Log message:
bpf_tap() is long dead! Long live bpf_mtap() & friends.

ok natano@ deraadt@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 10:39:35

Modified files:
	distrib/sets/lists/xserv: md.loongson 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/12 11:15:53

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

Log message:
Skip empty mbuf fragments like bus_dmamap_load_mbuf does


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/12 11:17:12

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

Log message:
Record mbuf chain head rather than individual fragments


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/12 11:22:45

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Bring back the code that cached DMA fragment offset.

It's required to handle mbuf fragments spanning multiple pages.
Original commit message said:

Memorize the DMA segment's data offset within the page

Grant table references don't convey the information about an actual
offset of the data within the page, however Xen needs to know it.
We (ab)use bus_dma_segment's _ds_boundary member to store it and can
get away with not restoring it's original value atm because neither
i386 nor amd64 bus_dmamap_unload(9) code needs it.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/12 11:28:47

Modified files:
	bin/date       : date.1 

Log message:
Remove mention of "remote time" in description for the -a flag.

timed(8) support for date(1) was removed years ago.
ok millert@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/12 11:32:00

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

Log message:
Add support for packets spanning multiple pages.

The size of TX fragment DMA maps is increased to fit a contiguous
buffer of up to MTU size bytes spanning several pages, e.g. 2 for
4000, 4 for 9000 and so on.

This change also changes the function that calculates an mbuf
chain length so that it tells the driver exactly how many
descriptors will be required in order to provide references to
all buffers within the mbuf chain.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 11:50:40

Modified files:
	geo/mapserver  : Makefile 

Log message:
remove unused libiconv module


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 11:51:07

Modified files:
	devel/cpphs    : Makefile 
	devel/libplist : Makefile 
	mail/exim      : Makefile 
	www/c-icap/modules: Makefile 
	x11/xmonad     : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/12 12:32:54

Modified files:
	usr.bin/mg     : dir.c 

Log message:
If we can't get the CWD, use relative paths.  Fixes editing files
in a directory without read permission.  OK lum@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/12 12:55:18

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

Log message:
Correctly account for fragments larger than a page size

Fix a subtle calculation bug that prevented larger fragments from
being properly broken down into pages and overflowing the counter
value.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/12 13:35:31

Modified files:
	include        : resolv.h 

Log message:
Change the (unused) restimespec member of __res_state from a timespec
to a local equivalent to eliminate a dependency on <sys/time.h> being
included

ok deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/12 13:36:26

Modified files:
	include        : unistd.h 
	lib/libc/hidden: unistd.h 

Log message:
Don't declare select() in <unistd.h>

ok deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/12 13:41:21

Modified files:
	sys/sys        : types.h select.h time.h socket.h 

Log message:
More #include cleanup per POSIX:
- <sys/types.h>: don't pull in <sys/select.h>
- <sys/select.h>: don't pull in <sys/time.h>, but rather declare timeval
and timespec locally
- <sys/time.h>: *do* always pull in <sys/select.h>
- <sys/socket.h>: declare timeval if __BSD_VISIBLE for struct splice

Ports testing and fixed by ajacoutot@
ok deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/12 13:45:13

src/lib/libm/hidden

Update of /cvs/src/lib/libm/hidden
In directory cvs.openbsd.org:/tmp/cvs-serv30660/hidden

Log Message:
Directory /cvs/src/lib/libm/hidden added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/12 13:47:03

Modified files:
	lib/libm       : Makefile shlib_version 
	lib/libm/arch/alpha: fenv.c 
	lib/libm/arch/amd64: abi.h e_acos.S e_asin.S e_atan2.S 
	                     e_atan2f.S e_exp.S e_fmod.S e_log.S 
	                     e_log10.S e_remainder.S e_remainderf.S 
	                     e_scalb.S e_sqrt.S e_sqrtf.S e_sqrtl.S 
	                     fenv.c s_atan.S s_atanf.S s_ceil.S 
	                     s_ceilf.S s_copysign.S s_copysignf.S 
	                     s_cos.S s_cosf.S s_floor.S s_floorf.S 
	                     s_ilogb.S s_ilogbf.S s_llrint.S s_llrintf.S 
	                     s_log1p.S s_log1pf.S s_logb.S s_logbf.S 
	                     s_lrint.S s_lrintf.S s_rint.S s_rintf.S 
	                     s_scalbnf.S s_significand.S 
	                     s_significandf.S s_sin.S s_sinf.S s_tan.S 
	                     s_tanf.S 
	lib/libm/arch/arm: fenv.c 
	lib/libm/arch/hppa: e_remainder.c e_remainderf.c e_sqrt.c 
	                    e_sqrtf.c fenv.c s_ceil.c s_ceilf.c 
	                    s_floor.c s_floorf.c s_rint.c s_rintf.c 
	                    s_round.c s_trunc.c 
	lib/libm/arch/i387: e_acos.S e_asin.S e_atan2.S e_atan2f.S 
	                    e_exp.S e_fmod.S e_log.S e_log10.S 
	                    e_remainder.S e_remainderf.S e_scalb.S 
	                    e_sqrt.S e_sqrtf.S e_sqrtl.S fenv.c s_atan.S 
	                    s_atanf.S s_ceil.S s_ceilf.S s_copysign.S 
	                    s_copysignf.S s_cos.S s_cosf.S s_floor.S 
	                    s_floorf.S s_ilogb.S s_ilogbf.S s_llrint.S 
	                    s_llrintf.S s_log1p.S s_log1pf.S s_logb.S 
	                    s_logbf.S s_lrint.S s_lrintf.S s_rint.S 
	                    s_rintf.S s_scalbnf.S s_significand.S 
	                    s_significandf.S s_sin.S s_sinf.S s_tan.S 
	                    s_tanf.S 
	lib/libm/arch/m88k: fenv.c 
	lib/libm/arch/mips64: fenv.c 
	lib/libm/arch/powerpc: fenv.c 
	lib/libm/arch/sh: e_sqrt.c e_sqrtf.c fenv.c 
	lib/libm/arch/sparc64: e_sqrtl.c fenv.c 
	lib/libm/noieee_src: n_asincos.c n_atan.c n_atan2.c n_erf.c 
	                     n_exp.c n_floor.c n_hypot.c n_log.c 
	                     n_lrint.c n_sincos.c n_support.c n_tan.c 
	lib/libm/src   : b_tgamma.c e_acos.c e_acosh.c e_asin.c 
	                 e_asinf.c e_asinl.c e_atan2.c e_atan2f.c 
	                 e_atan2l.c e_atanh.c e_cosh.c e_coshf.c e_exp.c 
	                 e_expf.c e_fmod.c e_fmodf.c e_hypot.c 
	                 e_hypotf.c e_j0.c e_j0f.c e_j1.c e_j1f.c 
	                 e_lgamma_r.c e_lgammaf_r.c e_log.c e_log10.c 
	                 e_log2.c e_logf.c e_pow.c e_powf.c 
	                 e_remainder.c e_remainderf.c e_scalb.c 
	                 e_scalbf.c e_sinh.c e_sinhf.c e_sqrt.c 
	                 e_sqrtf.c e_sqrtl.c math_private.h s_asinh.c 
	                 s_atan.c s_atanf.c s_atanl.c s_cabs.c s_cabsf.c 
	                 s_cabsl.c s_cacos.c s_cacosh.c s_carg.c 
	                 s_cargf.c s_cargl.c s_casin.c s_casinf.c 
	                 s_casinh.c s_casinl.c s_catan.c s_catanf.c 
	                 s_catanh.c s_catanl.c s_cbrt.c s_ccos.c 
	                 s_ccosh.c s_ceil.c s_ceilf.c s_cexp.c s_cimag.c 
	                 s_cimagf.c s_cimagl.c s_clog.c s_clogf.c 
	                 s_clogl.c s_conj.c s_copysign.c s_copysignf.c 
	                 s_copysignl.c s_cos.c s_cosf.c s_cosl.c 
	                 s_cpow.c s_cproj.c s_creal.c s_crealf.c 
	                 s_creall.c s_csin.c s_csinh.c s_csqrt.c 
	                 s_csqrtf.c s_csqrtl.c s_ctan.c s_ctanh.c 
	                 s_erf.c s_exp2.c s_expm1.c s_expm1f.c s_fabsf.c 
	                 s_floor.c s_floorf.c s_fma.c s_fmax.c s_fmin.c 
	                 s_frexpl.c s_ilogb.c s_ilogbf.c s_ilogbl.c 
	                 s_llrint.c s_llround.c s_log1p.c s_log1pf.c 
	                 s_logb.c s_logbf.c s_lrint.c s_lrintf.c 
	                 s_lround.c s_nan.c s_nextafter.c s_remquo.c 
	                 s_rint.c s_rintf.c s_rintl.c s_round.c 
	                 s_roundl.c s_scalbn.c s_scalbnf.c s_scalbnl.c 
	                 s_signgam.c s_sin.c s_sinf.c s_sinl.c s_tan.c 
	                 s_tanh.c s_trunc.c w_lgamma.c 
	lib/libm/src/ld128: e_coshl.c e_expl.c e_hypotl.c e_lgammal.c 
	                    e_logl.c e_powl.c e_sinhl.c invtrig.h 
	                    s_erfl.c s_expm1l.c s_floorl.c s_log1pl.c 
	                    s_nextafterl.c s_remquol.c 
	lib/libm/src/ld80: e_coshl.c e_expl.c e_hypotl.c e_lgammal.c 
	                   e_logl.c e_powl.c e_sinhl.c invtrig.h 
	                   s_erfl.c s_expm1l.c s_floorl.c s_log1pl.c 
	                   s_nextafterl.c s_remquol.c 
Added files:
	lib/libm       : Symbols.map 
	lib/libm/arch/i387: DEFS.h 
	lib/libm/hidden: complex.h fenv.h math.h namespace.h 

Log message:
Reduce libm's exports and make internal calls go direct.
All dependencies on libc are now via reserved/standardized names.

ok kettenis@ millert@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/12 14:11:10

Modified files:
	games/boggle/boggle: bog.c 

Log message:
If boardspec doesn't consist entirely of lower case letters, there will be
out of bound accesses of arrays, leading to sefaults or bus errors.  Verify
that at most one boardspec with lower case letters is given, or error out.

ok millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 14:58:39

Modified files:
	databases/strigi: Makefile 
	editors/calligra: Makefile 
	games/pokerth  : Makefile 
	net/valknut    : Makefile 
	security/fwbuilder: Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 15:14:09

Modified files:
	www/opengroupware: Makefile 
	x11/mplayer    : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/12 15:44:30

Modified files:
	xserver/config : wscons.c 

Log message:
Fix build after headers cleanup.
include wscons headers after sys/ioct.h and sys/select.h
with deraadt@ and kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/12 15:46:25

Modified files:
	xserver/config : wscons.c 

Log message:
sys/select.h -> sys/time.h


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/12 15:57:14

Modified files:
	xserver/config : wscons.c 

Log message:
Fix a bunch of gcc warnings.
- constify name field
- rename devname -> devnam
- replace deprecated Xprintf() with asprintf()


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/12 16:10:19

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

Log message:
move maxrtc.4 from baseXX.tgz to manXX.tgz.

confirmed by kettenis and deraadt


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/12 16:12:44

Modified files:
	driver/xf86-input-synaptics/src: wsconscomm.c 

Log message:
include <sys/time.h> before wsconsio.h


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 16:20:36

Modified files:
	audio/sox      : Makefile 
	games/0ad/base : Makefile 
	games/pingus   : Makefile 
	games/supertux : Makefile 
	sysutils/logstalgia: Makefile 
	textproc/pdftk : Makefile 
	x11/cegui      : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 16:21:53

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/12 16:44:09

Modified files:
	archivers/innoextract: Makefile 
	converters/wv2 : Makefile 
	editors/nvi    : Makefile 
	games/easyrpg  : Makefile 
	games/instead  : Makefile 
	graphics/zxing : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/12 17:31:28

Modified files:
	usr.bin/ssh    : sshkey.c sshkey.h ssh.c key.h kex.c 

Log message:
list all supported signature algorithms in the server-sig-algs
Reported by mb AT smartftp.com in bz#2547 and (independantly)
Ron Frederick; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/12 17:39:34

Modified files:
	usr.bin/ssh    : ssh-rsa.c 

Log message:
handle certs in rsa_hash_alg_from_ident(), saving an unnecessary
special case elsewhere.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 21:10:05

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
chroot is not the reason this is run as root


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 21:36:27

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

Log message:
as a general rule we want directories to be created by the base set.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/12 23:17:33

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 01:11:56

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
timinginfo is a global flag that we got at least one packet back with
timing information for the summary line. Here we need to know if the
current echo reply was long enough to carry timing information.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 01:13:07

Modified files:
	sbin/ping6     : ping6.c 

Log message:
These functions are fundamentally AF dependent.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 01:14:24

Modified files:
	sbin/ping      : ping.c 

Log message:
No need to have this global.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 01:15:03

Modified files:
	sbin/ping      : ping.c 

Log message:
No need to have the destination global.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 01:15:56

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Like in ping(8) there is no need to have the destination global. In
ping6(8) we have to pass the destination down to get_pathmtu.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 01:16:49

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Make the raw socket non-global and pass it to retransmit()/pinger().


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 01:17:40

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Rearange option handling to reduce diff between ping(8) and ping6(8).
While here be explicit that timing and timinginfo are initialized to
0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/13 01:45:04

Modified files:
	net/netatalk3  : Makefile distinfo 
Removed files:
	net/netatalk3/patches: patch-etc_afpd_volume_c 

Log message:
Update to netatalk-3.1.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/13 01:47:41

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Driver_Tools_cpp 
Added files:
	devel/llvm/patches: patch-lib_CodeGen_StackProtector_cpp 
Removed files:
	devel/llvm/patches: patch-Makefile_config_in 

Log message:
- Remove an obsolete patch that was for the GNU make build infrastructure
- Merge in the stack protector and EH frame header patches

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/13 01:48:45

Modified files:
	sys/net        : if_gif.c 

Log message:
Retire bridge(4) support.

ok claudio@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/13 01:50:36

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Do not raise splsoftnet() recursively in soaccept().

This is not an issue right now, but it will become one when an non
recursive lock will be used.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/13 01:56:05

Modified files:
	sys/net        : bfd.c 

Log message:
we no longer reach around and call DDB specific functions, so always
define bfd_debug() especially since we use it in a lot of places right now


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/13 02:11:39

Modified files:
	sys/net        : route.c 

Log message:
Stop creating a BFD descriptor when the route is created.

Since our BFD implementation relies on the existence of routes, it is much
easier to set the BFD parameters with RTM_CHANGE, especially if something
bad happen.

Discussed with and ok phessler@, claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/13 02:13:49

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.23.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/13 02:15:01

Modified files:
	sys/net        : if.c 

Log message:
Split if_linkstate_task() in two to avoid SPL recursion when the
linkstate is changed from if_up() & if_down().

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/09/13 02:21:36

Modified files:
	graphics/nomacs: Makefile distinfo 
	graphics/nomacs/patches: patch-cmake_UnixBuildTarget_cmake 
	graphics/nomacs/pkg: PLIST 

Log message:
update to nomacs-3.4
from maintainer Rafael Sadowski, thanks!
with some input from sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/13 02:32:44

Modified files:
	sys/kern       : kern_synch.c 
	sys/sys        : systm.h 
	share/man/man9 : tsleep.9 

Log message:
Introduce rwsleep(9), an equivalent to msleep(9) but for code protected
by a write lock.

ok guenther@, vgross@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/13 02:48:12

Modified files:
	audio/deadbeef : Makefile distinfo 
	audio/deadbeef/files: Makefile.am 
	audio/deadbeef/patches: patch-Makefile_am patch-configure_ac 
	                        patch-junklib_c 
	                        patch-plugins_aac_Makefile_am 
	                        patch-plugins_alac_Makefile_am 
	                        patch-plugins_ao_Makefile_am 
	                        patch-plugins_artwork_artwork_c 
	                        patch-plugins_c 
	                        patch-plugins_flac_Makefile_am 
	                        patch-plugins_gtkui_Makefile_am 
	                        patch-plugins_gtkui_prefwin_c 
	                        patch-plugins_mms_Makefile_am 
	                        patch-plugins_vorbis_Makefile_am 
	audio/deadbeef/pkg: PLIST 
Added files:
	audio/deadbeef/patches: patch-plugins_artwork_artwork_h 
	                        patch-plugins_artwork_artwork_internal_c 
	                        patch-plugins_dumb_Makefile_am 
	                        patch-plugins_flac_flac_c 
	                        patch-plugins_gtkui_coverart_c 
	                        patch-plugins_mp3_mp3_h 
	                        patch-plugins_notify_notify_c 
Removed files:
	audio/deadbeef/patches: patch-playlist_c 
	                        patch-plugins_cdda_cdda_c 
	                        patch-plugins_converter_converter_c 
	                        patch-plugins_ffmpeg_ffmpeg_c 
	                        patch-plugins_gtkui_ddblistview_c 
	                        patch-plugins_gtkui_ddblistview_h 
	                        patch-plugins_lastfm_lastfm_c 
	                        patch-plugins_vfs_zip_vfs_zip_c 
	                        patch-plugins_wavpack_wavpack_c 
	                        patch-streamer_c patch-utf8_c 

Log message:
Update to deadbeef-0.7.2

Most of the work done by Timo Myyra, thanks!
Some tweaks by me.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/13 04:16:22

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

Log message:
Raise maximum supported MTU value to 9000; discussed with reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/13 04:49:52

Modified files:
	sbin/iked      : timer.c 

Log message:
Disable the timer event before attempting to change it

Report and fix by Nikolay Edigaryev <edigaryev at gmail ! com>,
thanks!  OK reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2016/09/13 05:17:21

Modified files:
	textproc/groff/patches: patch-Makefile_in 

Log message:
Make sure all directories used as targets during the fake install
stage are marked as .PHONY, or make(1) might consider some of them
up to date, skipping the fake install for them and causing later
packaging to fail.
Also regenerate the patch with make update-patches.
No package change (as far as it built at all), no bump.
Issue observed by Jerome Ibanes <jibanes at gmail dot com> on sparc64.
OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 05:33:28

Modified files:
	audio/gsm      : Makefile distinfo 
	audio/gsm/pkg  : DESCR 

Log message:
update to gsm-1.0.15 (minor change only, to remove an .orig file) and
update COMMENT/DESCR, from Jan Stary.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/13 05:40:38

Modified files:
	devel/pango    : Makefile distinfo 

Log message:
Update to pango-1.40.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 05:44:07

Modified files:
	archivers/unzip: Makefile 
	audio/cmu-sphinx3: Makefile 
	audio/cmu-sphinxbase: Makefile 
	audio/libcdio  : Makefile 
	audio/mpc      : Makefile 
	audio/ruby-id3lib: Makefile 
	cad/tkgate     : Makefile 
	comms/smstools : Makefile 
	converters/p5-Text-Iconv: Makefile 
	converters/py-iconvcodec: Makefile 
	databases/freetds: Makefile 
	databases/sqsh : Makefile 
	databases/virtuoso: Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/13 06:09:53

Modified files:
	sys/net        : bpf_filter.c 

Log message:
Don't waste time zero'ing memory until there is some chance it might
be used.

Also noted by dlg@.

ok phessler@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 06:13:03

Modified files:
	telephony/asterisk: Makefile distinfo 

Log message:
update to asterisk-13.11.2

res_pjsip: Do not crash on ACKs from unknown endpoints
chan_sip: Don't allocate new RTP instances on top of old ones


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 06:27:15

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-2.0.6, fixing the following reported as security
bugs, plus various others including protocol dissection errors and crashes

wnpa-sec-2016-50: QNX6 QNET dissector crash.
wnpa-sec-2016-51: H.225 dissector crash.
wnpa-sec-2016-52: Catapult DCT2000 dissector crash.
wnpa-sec-2016-53: UMTS FP dissector crash.
wnpa-sec-2016-54: Catapult DCT2000 dissector crash.
wnpa-sec-2016-55: IPMI trace dissector crash.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 07:20:24

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 07:24:25

Modified files:
	devel/cvs-fast-export: Makefile distinfo 
	devel/cvs-fast-export/patches: patch-Makefile 
Removed files:
	devel/cvs-fast-export/patches: patch-lex_l 

Log message:
update to cvs-fast-export-1.40


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 07:24:37

Modified files:
	www/trac       : Makefile distinfo 

Log message:
bugfix update to Trac-1.0.13


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/13 07:40:58

Modified files:
	lib/libtls     : tls.h tls_init.3 

Log message:
add a little more typing to the first callback argument.
it's always a tls context.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/13 07:42:28

Modified files:
	app/cwm        : mousefunc.c 

Log message:
Limit mouse resize to hints within the client; matches kbd resize
behaviour.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/13 07:50:59

Modified files:
	devel/cryptopp : Makefile distinfo 
	devel/cryptopp/patches: patch-GNUmakefile 
	devel/cryptopp/pkg: PLIST 
Added files:
	devel/cryptopp/patches: patch-config_h 

Log message:
Update to cryptopp-5.6.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/13 08:10:13

Modified files:
	x11/xclip      : Makefile distinfo 

Log message:
update to xclip-0.13

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 08:40:30

Modified files:
	devel/alex     : Makefile 
	devel/apr-util : Makefile 
	devel/boost    : Makefile 
	devel/cabal-install: Makefile 
	devel/cvsgraph : Makefile 
	devel/ddd      : Makefile 
	devel/droplet  : Makefile 
	devel/flatzebra: Makefile 
	devel/gmc4cc   : Makefile 
	devel/guilib   : Makefile 
	devel/happy    : Makefile 
	devel/hasktags : Makefile 
	devel/hscolour : Makefile 
	devel/lazarus  : Makefile 
	devel/libslang : Makefile 
	devel/lua-lgi  : Makefile 
	devel/ocaml-lambda-term: Makefile 
	devel/py-silc  : Makefile 
	devel/sdlmm    : Makefile 
	devel/smpeg    : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 09:08:06

Modified files:
	distrib/sets/lists/xserv: md.sgi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/13 09:27:47

Modified files:
	usr.bin/look   : look.c 

Log message:
Eliminate the FOLD and DICT macros.  There's no need to check for
isascii() with ANSI ctype macros/functions.  Eliminating the macros
makes the code clearer.  OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 09:29:02

Modified files:
	editors/nedit  : Makefile 
	emulators/bochs: Makefile 
	emulators/openmsx: Makefile 
	games/abuse    : Makefile 
	games/armagetronad: Makefile 
	games/burgerspace: Makefile 
	games/cosmosmash: Makefile 
	games/love     : Makefile 
	games/quadrupleback: Makefile 
	games/residualvm: Makefile 
	graphics/DevIL : Makefile 
	graphics/GraphicsMagick: Makefile 
	graphics/ImageMagick: Makefile 
	graphics/agg   : Makefile 
	graphics/delaboratory: Makefile 
	graphics/djvulibre: Makefile 
	graphics/dmtx-utils: Makefile 
	graphics/gd    : Makefile 
	graphics/geomview: Makefile 
	graphics/luagd : Makefile 
	graphics/mscgen: Makefile 
	graphics/p5-GD : Makefile 
	graphics/pecl-imagick: Makefile 
	java/tanukiwrapper: Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/13 09:29:25

Modified files:
	usr.bin/spell  : look.c 

Log message:
Eliminate unnecessary isupper() check before tolower().


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 09:35:10

Modified files:
	mail/abook     : Makefile 

Log message:
replace libiconv and gettext modules


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 09:38:17

Modified files:
	etc            : group master.passwd 
	etc/mail       : aliases 

Log message:
proxy uid/gid was split up for seperate purposes; it can go away now.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 10:00:26

Modified files:
	usr.sbin/acme-client: chngproc.c 

Log message:
use reallocarray()


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 10:01:37

Modified files:
	usr.sbin/acme-client: acctproc.c keyproc.c 

Log message:
RAND_status() and RAND_seed() are not needed, this is 2016.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 10:04:51

Modified files:
	usr.sbin/acme-client: acctproc.c json.c main.c 

Log message:
Inconsistant use of case (value): idiom drives me nuts, I have no idea
what purpose it was intended to serve.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 10:12:14

Modified files:
	mail/bogofilter: Makefile 
	mail/mailest   : Makefile 
	mail/nmh       : Makefile 
	mail/s-nail    : Makefile 
	misc/openbabel : Makefile 
	misc/srcpd     : Makefile 
	multimedia/ffmpeg2theora: Makefile 
	multimedia/libass: Makefile 
	multimedia/mpv : Makefile 
	net/dclib      : Makefile 
	net/ejabberd   : Makefile 
	net/ezstream   : Makefile 
	net/hpodder    : Makefile 
	net/ices       : Makefile 
	net/ices2      : Makefile 
	net/isc-bind   : Makefile 
	net/pure-ftpd  : Makefile 
	net/rtg        : Makefile 
	net/serf       : Makefile 
	net/si         : Makefile 
	net/winexe     : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 10:24:37

Log message:
    import ports/lang/lucee, to replace railo.  ok daniel@ jca@
    
    Lucee is a light-weight dynamic scripting language for the JVM that
    enables the rapid development of simple to highly sophisticated web
    applications. Lucee is fully compatible with the CFML Script and Tag
    Language.
    
    Lucee is a JVM language and runs on the JVM as a servlet and will work
    with any servlet container (e.g. Apache Tomcat, Eclipse Jetty) or
    application server (e.g. JBoss AS, GlassFish). This package is setup
    to run Lucee under Tomcat.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20160913
    
    N ports/lang/lucee/distinfo
    N ports/lang/lucee/Makefile
    N ports/lang/lucee/patches/patch-WEB-INF_web_xml
    N ports/lang/lucee/pkg/DESCR
    N ports/lang/lucee/pkg/PLIST
    N ports/lang/lucee/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 10:26:03

Modified files:
	lang           : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	lang/railo     : Makefile distinfo 
	lang/railo/patches: patch-WEB-INF_web_xml 
	lang/railo/pkg : DESCR PLIST README 

Log message:
switch railo to lucee


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/09/13 10:37:45

Modified files:
	faq            : current.html 

Log message:
railo->lucee


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 10:49:28

Modified files:
	usr.sbin/acme-client: acctproc.c certproc.c chngproc.c dnsproc.c 
	                      fileproc.c keyproc.c main.c netproc.c 
	                      revokeproc.c rsa.c util.c 

Log message:
hoist local variable initialization directly into the definitions,
rather than doing it right afterwards.
ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 11:02:12

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

Log message:
spelling; from Frank Schoep


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/13 11:13:37

Modified files:
	usr.sbin/acme-client: acctproc.c certproc.c chngproc.c dbg.c 
	                      dnsproc.c fileproc.c http.c json.c 
	                      keyproc.c main.c netproc.c revokeproc.c 
	                      util.c 

Log message:
A small amount more KNF to make this easier on our eyes.  Not going further
than this.
ok florian


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/13 11:42:58

Modified files:
	app/cwm        : client.c 

Log message:
init label


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/13 12:09:14

Modified files:
	sys/lib/libsa  : loadfile_elf.c 

Log message:
when loading the kernel binary, also load the .SUNW_ctf section when present,
which holds the CTF data.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/13 12:27:49

Modified files:
	sys/arch/amd64/stand/boot: conf.c 
	sys/arch/amd64/stand/cdboot: conf.c 
	sys/arch/amd64/stand/efiboot: conf.c 
	sys/arch/amd64/stand/pxeboot: 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/octeon/stand/boot: conf.c 
	sys/arch/sgi/stand/boot: version 
	sys/arch/socppc/stand/boot: conf.c 
	sys/arch/sparc64/stand/ofwboot: vers.c 

Log message:
crank bootloader version after .SUNW_ctf change

as discussed with jsing@ it's easier this way to ensure people have
bootblocks capable of loading the section


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 12:52:06

Modified files:
	lang/ghc       : Makefile 
	print/foomatic-db-engine: Makefile 
	print/ghostscript/gnu: Makefile 
	print/gv       : Makefile 
	print/texlive/base: Makefile 
	security/opendnssec: Makefile 
	security/rarcrack: Makefile 
	sysutils/augeas: Makefile 
	sysutils/cfengine: Makefile 
	sysutils/testdisk: Makefile 
	textproc/TclXML: Makefile 
	textproc/apertium: Makefile 
	textproc/clo++ : Makefile 
	textproc/docbook2x: Makefile 
	textproc/hs-HaXml: Makefile 
	textproc/hyperestraier: Makefile 
	textproc/lttoolbox: Makefile 
	textproc/ocaml-text: Makefile 
	textproc/p5-XML-LibXML: Makefile 
	textproc/ruby-nokogiri: Makefile 
	textproc/sphinx: Makefile 
	textproc/swish-e: Makefile 
	textproc/wkhtmltopdf: Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 12:52:45

src/regress/usr.sbin/acme-client

Update of /cvs/src/regress/usr.sbin/acme-client
In directory cvs.openbsd.org:/tmp/cvs-serv18620/acme-client

Log Message:
Directory /cvs/src/regress/usr.sbin/acme-client added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/13 12:54:08

Added files:
	regress/usr.sbin/acme-client: Makefile create-httpd-env.sh 

Log message:
First stab at acme-client regress test.
Someone who actually knows how this works please improve it :)


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/13 13:07:47

Modified files:
	usr.sbin/vmd   : loadfile_elf.c 

Log message:
sync with sys/lib/libsa/loadfile_elf.c -r1.12 and load the .SUNW_ctf section

pointed out by mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 13:15:03

Modified files:
	www/analog     : Makefile 
	www/ap2-mod_perl: Makefile 
	www/dillo      : Makefile 
	www/elinks     : Makefile 
	www/netsurf/hubbub: Makefile 
	www/netsurf/libcss: Makefile 
	www/netsurf/libdom: Makefile 
	www/p5-libapreq2: Makefile 
	x11/compiz/libcompizconfig: Makefile 
	x11/e17/eet    : Makefile 
	x11/e17/embryo : Makefile 
	x11/eterm      : Makefile 
	x11/fluxbox    : Makefile 
	x11/xmobar     : Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/13 13:15:50

Modified files:
	share/man/man5 : pf.conf.5 

Log message:
make it clearer that log options require ();
requested by janne johansson

ok henning


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/13 13:27:11

Modified files:
	www/squid      : Makefile distinfo 

Log message:
update to squid-3.5.21


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 13:29:01

Modified files:
	textproc/html-xml-utils: Makefile 

Log message:
replace libiconv module


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/13 13:44:35

Modified files:
	infrastructure/templates: mk.conf.template 
Removed files:
	converters/libiconv: libiconv.port.mk 

Log message:
Remove the converters/libiconv module.  No longer useful after the removal
of static architectures.  Ports now use a normal LIB_DEPENDS.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/13 13:45:35

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Do not mention the libiconv module; it has been removed.


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/09/13 13:56:55

Modified files:
	sys/kern       : uipc_mbuf.c 
	sys/netinet    : ip_ah.c ip_esp.c ip_ipcomp.c ipsec_output.c 
	sys/sys        : mbuf.h 
	share/man/man9 : mbuf.9 

Log message:
avoid extensive mbuf allocation for IPsec by replacing m_inject(4)
with m_makespace(4) from freebsd; ok mpi@, bluhm@, mikeb@, dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/13 14:09:55

Modified files:
	usr.sbin/acme-client: base64.c json.c 

Log message:
convert some ifs to switches. ok millert tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/13 14:13:38

Modified files:
	x11/xclip      : Makefile 

Log message:
Forgot to set bdeps for autoconf and automake


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/09/13 15:25:29

Modified files:
	distrib/miniroot: install.sub 

Log message:
"Make disk selection dumb again", or at least make the change less
intrusive. Default to the first available disk, skipping to the next
(and so on), should the selected one be determined unsuitable for the
install or upgrade taking place.

"please commit" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2016/09/13 15:36:48

Modified files:
	net/dnscrypt-proxy: Makefile 
	net/dnscrypt-proxy/pkg: DESCR-main README-main 

Log message:
add information on running multiple instances to the readme file, clean up
pkg description, switch homepage and master_sites to https.

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/13 16:27:51

Modified files:
	distrib/alpha/common: list 
	distrib/amd64/common: list 
	distrib/armv7/ramdisk: list 
	distrib/hppa   : list 
	distrib/i386/common: list 
	distrib/landisk/ramdisk: list 
	distrib/loongson/ramdisk: list 
	distrib/luna88k/ramdisk: list 
	distrib/macppc/ramdisk: list 
	distrib/miniroot: list 
	distrib/octeon/ramdisk: list 
	distrib/ramdisk: list 
	distrib/sgi/ramdisk: list 
	distrib/socppc/ramdisk: list 
	distrib/sparc64/bsd.rd: list 
	distrib/sparc64/ramdisk: list 
	distrib/sparc64/ramdiskB: list 
Added files:
	distrib/miniroot: group 

Log message:
Provide a stripped down group file for the install media.
Saves precious 896 bytes as a side effect.

OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/09/13 16:38:14

Modified files:
	editors/vim    : Makefile 
	editors/vim/patches: patch-runtime_syntax_fstab_vim 

Log message:
Add the new 'noperm' mount option to the fstab syntax file.

OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/09/13 18:45:31

Modified files:
	regress/usr.bin/ssh: keygen-moduli.sh 

Log message:
Improve test coverage of ssh-keygen -T a bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2016/09/13 18:57:17

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add LSI/Avago SAS3 devices


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2016/09/13 18:58:27

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2016/09/13 19:14:54

Modified files:
	sys/dev/pci    : mpii.c mpiireg.h 

Log message:
add support for SAS3 devices, which have a different sgl layout to previous
generations.

tested on a Lenovo N2215 (SAS3008)
ok dlg@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/13 21:25:51

Modified files:
	sys/dev/wscons : wsconsio.h 
	sys/dev/wsfont : wsfont.c 

Log message:
limit the number of fonts that can be loaded

ok millert mlarkin deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/13 23:42:25

Modified files:
	usr.bin/ssh    : auth2-pubkey.c sshd_config.5 

Log message:
add %-escapes to AuthorizedPrincipalsCommand to match those supported
for AuthorizedKeysCommand (key, key type, fingerprint, etc) and a
few more to provide access to the certificate's CA key;
'looks ok' dtucker@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/09/13 23:52:25

Modified files:
	sysutils/u-boot: Makefile distinfo 
Removed files:
	sysutils/u-boot/patches: patch-board_kosagi_novena_novena_c 
	                         patch-board_solidrun_mx6cuboxi_mx6cuboxi_c 
	                         patch-common_image-fit_c 
	                         patch-include_compiler_h 
	                         patch-include_configs_cm_fx6_h 

Log message:
update to U-Boot 2016.09

Remove patches to set board ids on novena and cubox/hummingboard we no
longer require.  Also remove some OpenBSD build fix patches that were
accepted upstream and the cm-fx6/utilite distro_bootcmd patch which
no longer cleanly applies.

Tested on CuBox-i4Pro, BeagleBone Black and PandaBoard ES.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/14 00:12:20

Modified files:
	share/man/man9 : audio.9 
	sys/arch/hppa/gsc: harmony.c 
	sys/arch/luna88k/cbus: nec86.c nec86hw.c nec86hwvar.h 
	sys/arch/macppc/dev: aoa.c awacs.c daca.c i2s.c i2svar.h onyx.c 
	                     snapper.c tumbler.c 
	sys/arch/sgi/dev: mavb.c 
	sys/arch/sparc64/dev: ce4231.c 
	sys/dev        : audio.c audio_if.h 
	sys/dev/ic     : ac97.c ac97.h am7930.c am7930var.h arcofi.c 
	sys/dev/isa    : ad1848.c ad1848var.h ess.c gus.c gusvar.h pas.c 
	                 sb.c sbdsp.c sbdspvar.h 
	sys/dev/pci    : auacer.c auglx.c auich.c auixp.c autri.c 
	                 auvia.c azalia.c azalia.h cmpci.c cs4280.c 
	                 cs4281.c eap.c emuxki.c envy.c esa.c eso.c 
	                 fms.c maestro.c neo.c sv.c yds.c 
	sys/dev/sbus   : cs4231.c 
	sys/dev/tc     : bba.c 
	sys/dev/usb    : uaudio.c utvfu.c 
	sys/sys        : audioio.h 

Log message:
Remove drain(), query_encoding(), mappage() and get_default_params()
methods from all audio drivers and from the audio_if structure as they
are never called.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/14 00:26:00

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

Log message:
Update to py-botocore-1.4.54.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/14 00:26:03

Modified files:
	lib/libcrypto  : Makefile 
	lib/libexpat   : Makefile 
	lib/libfuse    : Makefile 
	lib/libssl     : Makefile 
	lib/libz       : Makefile 

Log message:
Generate pkg-config files at build time like everything else. This
avoids permission problems due to the build and install stages being run
by different users.

ok deraadt jasper


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/14 00:26:28

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/14 00:26:57

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.64.


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/09/14 00:32:57

Modified files:
	.              : innovations.html 

Log message:
Mention the original PLT/GOT protection work and its multiple followups


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 00:43:49

www/build/openssh

Update of /cvs/www/build/openssh
In directory cvs.openbsd.org:/tmp/cvs-serv55081/openssh

Log Message:
Directory /cvs/www/build/openssh added to the repository


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/09/14 00:48:02

Modified files:
	.              : innovations.html 

Log message:
tweak previous


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2016/09/14 01:07:10

Modified files:
	.              : innovations.html 

Log message:
Call out the .openbsd.randomdata and __guard_local features by
their functionality


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/14 02:24:08

Modified files:
	usr.sbin/ntpd  : util.c 

Log message:
Fix copyright disclaimer in util.c.

OK from the original author Alexander Guy


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/14 02:31:47

Modified files:
	etc            : config.site 
	app            : Makefile.inc 

Log message:
Make shure that all autotools generated install commands specify a
user and a group.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/14 02:38:22

Modified files:
	devel/jsoncpp  : Makefile distinfo 
	devel/jsoncpp/patches: patch-SConstruct 

Log message:
Update to jsoncpp-1.7.5


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/09/14 02:59:56

Modified files:
	usr.sbin/smtpd : mproc.c 

Log message:
remove useless #ifndef

ok sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/14 03:26:10

Modified files:
	usr.sbin/ntpd  : constraint.c 

Log message:
Add clarifications ("comments") to three places where it wasn't
obvious why it is implemented this way.  The whole idea of constraints
is to isolate them as much as possible, in a semi-paranoid way.

OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/14 05:10:53

Modified files:
	plan9/u9fs     : Makefile 

Log message:
New email for MAINTAINER


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/14 05:15:43

Log message:
    Deskew, or auto straighten, is the automatic rotation of an image such that the
    text is vertically aligned. This is great for cleaning up scanned documents.
    
    Plugin is accessible via Layer => Transform => Deskew.
    
    Fixes and OK giovanni@
    
    Status:
    
    Vendor Tag:	czarkoff
    Release Tags:	czarkoff_20160914
    
    N ports/graphics/gimp/deskew/Makefile
    N ports/graphics/gimp/deskew/distinfo
    N ports/graphics/gimp/deskew/patches/patch-src_Makefile_am
    N ports/graphics/gimp/deskew/patches/patch-src_Makefile_in
    N ports/graphics/gimp/deskew/patches/patch-configure_in
    N ports/graphics/gimp/deskew/patches/patch-src_deskew_h
    N ports/graphics/gimp/deskew/pkg/DESCR
    N ports/graphics/gimp/deskew/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/14 05:18:06

Modified files:
	graphics/gimp  : Makefile 

Log message:
+deskew


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/14 05:24:03

Modified files:
	.              : innovations.html 

Log message:
consistently write lazy-binding with hyphen


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/14 05:26:56

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Allow callback read/write functions to set TLS_WANT_POLLOUT/POLLIN.

from Tobias Pape


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/14 05:30:41

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Handle the FLUSH BIO cntl, that happens at the end of SSL handshakes.

from Tobias Pape


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/14 05:34:37

Modified files:
	lib/libtls     : tls_server.c 

Log message:
Set callbacks on the right tls ctx on accept.

From Tobias Pape


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/14 05:53:54

Modified files:
	faq            : upgrade60.html 

Log message:
compactify the short overview by plucking out a few unnecessary
sentences and getting rid of some extra vertical space.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/14 06:15:46

Modified files:
	graphics/scour : Makefile distinfo 

Log message:
update to scour-0.35

- New flags: --remove-titles, --remove-descriptions and
--remove-descriptive-elements.
- Automatically order all attributes.
- Allow elements to be found via Document.getElementById() in the minidom
document returned by scourXmlFile().
- Add new default values.
- Bugfixes.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/14 06:29:02

Modified files:
	faq            : faq8.html upgrade60.html 

Log message:
miod removed the code that fell back to (at least) obsd and bsd.old in the
boot loader almost a decade ago. it's about time we no longer document this
feature in the faq. while there, compress the section a little more.

thanks to jsg and krw for confirming


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/14 06:30:52

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

Log message:
gc last remnants of source:


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/14 06:35:40

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

Log message:
tidy running those commands


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/14 06:41:09

Modified files:
	sys/dev/usb    : if_axen.c if_axenreg.h 

Log message:
Always set the MAC address when initializing the chip.

Make "# ifconfig axen0 lladdr" work.

ok stsp@, dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/14 06:48:58

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

Log message:
gc pipe: support, makes less and less sense as time goes by


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/14 07:02:11

Modified files:
	graphics/scour : Makefile 

Log message:
add python3 FLAVOR


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/14 07:16:43

Modified files:
	graphics       : Makefile 

Log message:
+scour,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/14 07:20:16

Modified files:
	usr.sbin/ntpd  : control.c ntp.c ntp_dns.c ntpd.c ntpd.h util.c 

Log message:
Teach ntpd(8) how to fork+exec.

ok reyk@, bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/14 07:42:19

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 
	usr.sbin/pkg_add/OpenBSD/PackageRepository: Installed.pm 

Log message:
add an is_local-file method for later signature


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/14 07:46:51

Modified files:
	usr.sbin/switchd: control.c ofcconn.c ofp.c proc.c proc.h 
	                  switchd.c switchd.h types.h 

Log message:
Teach switchd(8) how to fork+exec.

Note: this daemon has the -Wcast-qual compilation flag which trigger a
warning that wasn't enable in httpd(8) or relayd(8). This will be fixed
in a next diff and then synchronized with other daemons.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/14 08:10:18

Modified files:
	usr.bin/calendar/calendars: calendar.history 

Log message:
some fixes from carson chittom;


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/14 08:14:22

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

Log message:
move the check up in state


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2016/09/14 08:29:35

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
move default file and directory locations to a new FILES section
and trim some extraneous text.

ok florian jmc deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2016/09/14 09:02:41

Modified files:
	infrastructure/bin: register-plist check-problems 

Log message:
prepare for new sigs


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2016/09/14 09:06:53

Modified files:
	infrastructure/bin: check-lib-depends check-manpages 

Log message:
do not check signatures in there


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/14 09:09:46

Modified files:
	usr.bin/calendar: day.c 

Log message:
Fix bug introduced in the fix for days outside the target month.
From Andy Bradford


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/14 09:16:25

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

Log message:
Disable --gc-sections on powerpc, for it is broken.

Some ports try to use it and fail, let's make Landry's life easier.
ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/14 09:26:05

Modified files:
	sys/netinet6   : ip6_output.c 

Log message:
Delete dead code and useless parameter.

ok vgross@ henning@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/14 09:53:09

Modified files:
	faq            : upgrade60.html 

Log message:
some more words can go


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/09/14 09:59:18

Modified files:
	.              : innovations.html 

Log message:
mention the application of fork+exec throughout the tree


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/14 10:03:20

src/regress/usr.bin/calendar

Update of /cvs/src/regress/usr.bin/calendar
In directory cvs.openbsd.org:/tmp/cvs-serv27606/calendar

Log Message:
Directory /cvs/src/regress/usr.bin/calendar added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/14 10:04:36

Modified files:
	regress/usr.bin: Makefile 
Added files:
	regress/usr.bin/calendar: 20160101.out 20160102.out 20160103.out 
	                          20160104.out 20160105.out 20160106.out 
	                          20160107.out 20160108.out 20160109.out 
	                          20160110.out 20160111.out 20160112.out 
	                          20160113.out 20160114.out 20160115.out 
	                          20160116.out 20160117.out 20160118.out 
	                          20160119.out 20160120.out 20160121.out 
	                          20160122.out 20160123.out 20160124.out 
	                          20160125.out 20160126.out 20160127.out 
	                          20160128.out 20160129.out 20160130.out 
	                          20160131.out 20160201.out 20160202.out 
	                          20160203.out 20160204.out 20160205.out 
	                          20160206.out 20160207.out 20160208.out 
	                          20160209.out 20160210.out 20160211.out 
	                          20160212.out 20160213.out 20160214.out 
	                          20160215.out 20160216.out 20160217.out 
	                          20160218.out 20160219.out 20160220.out 
	                          20160221.out 20160222.out 20160223.out 
	                          20160224.out 20160225.out 20160226.out 
	                          20160227.out 20160228.out 20160229.out 
	                          20160301.out 20160302.out 20160303.out 
	                          20160304.out 20160305.out 20160306.out 
	                          20160307.out 20160308.out 20160309.out 
	                          20160310.out 20160311.out 20160312.out 
	                          20160313.out 20160314.out 20160315.out 
	                          20160316.out 20160317.out 20160318.out 
	                          20160319.out 20160320.out 20160321.out 
	                          20160322.out 20160323.out 20160324.out 
	                          20160325.out 20160326.out 20160327.out 
	                          20160328.out 20160329.out 20160330.out 
	                          20160331.out 20160401.out 20160402.out 
	                          20160403.out 20160404.out 20160405.out 
	                          20160406.out 20160407.out 20160408.out 
	                          20160409.out 20160410.out 20160411.out 
	                          20160412.out 20160413.out 20160414.out 
	                          20160415.out 20160416.out 20160417.out 
	                          20160418.out 20160419.out 20160420.out 
	                          20160421.out 20160422.out 20160423.out 
	                          20160424.out 20160425.out 20160426.out 
	                          20160427.out 20160428.out 20160429.out 
	                          20160430.out 20160501.out 20160502.out 
	                          20160503.out 20160504.out 20160505.out 
	                          20160506.out 20160507.out 20160508.out 
	                          20160509.out 20160510.out 20160511.out 
	                          20160512.out 20160513.out 20160514.out 
	                          20160515.out 20160516.out 20160517.out 
	                          20160518.out 20160519.out 20160520.out 
	                          20160521.out 20160522.out 20160523.out 
	                          20160524.out 20160525.out 20160526.out 
	                          20160527.out 20160528.out 20160529.out 
	                          20160530.out 20160531.out 20160601.out 
	                          20160602.out 20160603.out 20160604.out 
	                          20160605.out 20160606.out 20160607.out 
	                          20160608.out 20160609.out 20160610.out 
	                          20160611.out 20160612.out 20160613.out 
	                          20160614.out 20160615.out 20160616.out 
	                          20160617.out 20160618.out 20160619.out 
	                          20160620.out 20160621.out 20160622.out 
	                          20160623.out 20160624.out 20160625.out 
	                          20160626.out 20160627.out 20160628.out 
	                          20160629.out 20160630.out 20160701.out 
	                          20160702.out 20160703.out 20160704.out 
	                          20160705.out 20160706.out 20160707.out 
	                          20160708.out 20160709.out 20160710.out 
	                          20160711.out 20160712.out 20160713.out 
	                          20160714.out 20160715.out 20160716.out 
	                          20160717.out 20160718.out 20160719.out 
	                          20160720.out 20160721.out 20160722.out 
	                          20160723.out 20160724.out 20160725.out 
	                          20160726.out 20160727.out 20160728.out 
	                          20160729.out 20160730.out 20160731.out 
	                          20160801.out 20160802.out 20160803.out 
	                          20160804.out 20160805.out 20160806.out 
	                          20160807.out 20160808.out 20160809.out 
	                          20160810.out 20160811.out 20160812.out 
	                          20160813.out 20160814.out 20160815.out 
	                          20160816.out 20160817.out 20160818.out 
	                          20160819.out 20160820.out 20160821.out 
	                          20160822.out 20160823.out 20160824.out 
	                          20160825.out 20160826.out 20160827.out 
	                          20160828.out 20160829.out 20160830.out 
	                          20160831.out 20160901.out 20160902.out 
	                          20160903.out 20160904.out 20160905.out 
	                          20160906.out 20160907.out 20160908.out 
	                          20160909.out 20160910.out 20160911.out 
	                          20160912.out 20160913.out 20160914.out 
	                          20160915.out 20160916.out 20160917.out 
	                          20160918.out 20160919.out 20160920.out 
	                          20160921.out 20160922.out 20160923.out 
	                          20160924.out 20160925.out 20160926.out 
	                          20160927.out 20160928.out 20160929.out 
	                          20160930.out 20161001.out 20161002.out 
	                          20161003.out 20161004.out 20161005.out 
	                          20161006.out 20161007.out 20161008.out 
	                          20161009.out 20161010.out 20161011.out 
	                          20161012.out 20161013.out 20161014.out 
	                          20161015.out 20161016.out 20161017.out 
	                          20161018.out 20161019.out 20161020.out 
	                          20161021.out 20161022.out 20161023.out 
	                          20161024.out 20161025.out 20161026.out 
	                          20161027.out 20161028.out 20161029.out 
	                          20161030.out 20161031.out 20161101.out 
	                          20161102.out 20161103.out 20161104.out 
	                          20161105.out 20161106.out 20161107.out 
	                          20161108.out 20161109.out 20161110.out 
	                          20161111.out 20161112.out 20161113.out 
	                          20161114.out 20161115.out 20161116.out 
	                          20161117.out 20161118.out 20161119.out 
	                          20161120.out 20161121.out 20161122.out 
	                          20161123.out 20161124.out 20161125.out 
	                          20161126.out 20161127.out 20161128.out 
	                          20161129.out 20161130.out 20161201.out 
	                          20161202.out 20161203.out 20161204.out 
	                          20161205.out 20161206.out 20161207.out 
	                          20161208.out 20161209.out 20161210.out 
	                          20161211.out 20161212.out 20161213.out 
	                          20161214.out 20161215.out 20161216.out 
	                          20161217.out 20161218.out 20161219.out 
	                          20161220.out 20161221.out 20161222.out 
	                          20161223.out 20161224.out 20161225.out 
	                          20161226.out 20161227.out 20161228.out 
	                          20161229.out 20161230.out 20161231.out 
	                          20170101.out 20170102.out 20170103.out 
	                          20170104.out 20170105.out 20170106.out 
	                          20170107.out 20170108.out 20170109.out 
	                          20170110.out 20170111.out 20170112.out 
	                          20170113.out 20170114.out 20170115.out 
	                          20170116.out 20170117.out 20170118.out 
	                          20170119.out 20170120.out 20170121.out 
	                          20170122.out 20170123.out 20170124.out 
	                          20170125.out 20170126.out 20170127.out 
	                          20170128.out 20170129.out 20170130.out 
	                          20170131.out 20170201.out 20170202.out 
	                          20170203.out 20170204.out 20170205.out 
	                          20170206.out 20170207.out 20170208.out 
	                          20170209.out 20170210.out 20170211.out 
	                          20170212.out 20170213.out 20170214.out 
	                          20170215.out 20170216.out 20170217.out 
	                          20170218.out 20170219.out 20170220.out 
	                          20170221.out 20170222.out 20170223.out 
	                          20170224.out 20170225.out 20170226.out 
	                          20170227.out 20170228.out 20170301.out 
	                          20170302.out 20170303.out 20170304.out 
	                          20170305.out 20170306.out 20170307.out 
	                          20170308.out 20170309.out 20170310.out 
	                          20170311.out 20170312.out 20170313.out 
	                          20170314.out 20170315.out 20170316.out 
	                          20170317.out 20170318.out 20170319.out 
	                          20170320.out 20170321.out 20170322.out 
	                          20170323.out 20170324.out 20170325.out 
	                          20170326.out 20170327.out 20170328.out 
	                          20170329.out 20170330.out 20170331.out 
	                          20170401.out 20170402.out 20170403.out 
	                          20170404.out 20170405.out 20170406.out 
	                          20170407.out 20170408.out 20170409.out 
	                          20170410.out 20170411.out 20170412.out 
	                          20170413.out 20170414.out 20170415.out 
	                          20170416.out 20170417.out 20170418.out 
	                          20170419.out 20170420.out 20170421.out 
	                          20170422.out 20170423.out 20170424.out 
	                          20170425.out 20170426.out 20170427.out 
	                          20170428.out 20170429.out 20170430.out 
	                          20170501.out 20170502.out 20170503.out 
	                          20170504.out 20170505.out 20170506.out 
	                          20170507.out 20170508.out 20170509.out 
	                          20170510.out 20170511.out 20170512.out 
	                          20170513.out 20170514.out 20170515.out 
	                          20170516.out 20170517.out 20170518.out 
	                          20170519.out 20170520.out 20170521.out 
	                          20170522.out 20170523.out 20170524.out 
	                          20170525.out 20170526.out 20170527.out 
	                          20170528.out 20170529.out 20170530.out 
	                          20170531.out 20170601.out 20170602.out 
	                          20170603.out 20170604.out 20170605.out 
	                          20170606.out 20170607.out 20170608.out 
	                          20170609.out 20170610.out 20170611.out 
	                          20170612.out 20170613.out 20170614.out 
	                          20170615.out 20170616.out 20170617.out 
	                          20170618.out 20170619.out 20170620.out 
	                          20170621.out 20170622.out 20170623.out 
	                          20170624.out 20170625.out 20170626.out 
	                          20170627.out 20170628.out 20170629.out 
	                          20170630.out 20170701.out 20170702.out 
	                          20170703.out 20170704.out 20170705.out 
	                          20170706.out 20170707.out 20170708.out 
	                          20170709.out 20170710.out 20170711.out 
	                          20170712.out 20170713.out 20170714.out 
	                          20170715.out 20170716.out 20170717.out 
	                          20170718.out 20170719.out 20170720.out 
	                          20170721.out 20170722.out 20170723.out 
	                          20170724.out 20170725.out 20170726.out 
	                          20170727.out 20170728.out 20170729.out 
	                          20170730.out 20170731.out 20170801.out 
	                          20170802.out 20170803.out 20170804.out 
	                          20170805.out 20170806.out 20170807.out 
	                          20170808.out 20170809.out 20170810.out 
	                          20170811.out 20170812.out 20170813.out 
	                          20170814.out 20170815.out 20170816.out 
	                          20170817.out 20170818.out 20170819.out 
	                          20170820.out 20170821.out 20170822.out 
	                          20170823.out 20170824.out 20170825.out 
	                          20170826.out 20170827.out 20170828.out 
	                          20170829.out 20170830.out 20170831.out 
	                          20170901.out 20170902.out 20170903.out 
	                          20170904.out 20170905.out 20170906.out 
	                          20170907.out 20170908.out 20170909.out 
	                          20170910.out 20170911.out 20170912.out 
	                          20170913.out 20170914.out 20170915.out 
	                          20170916.out 20170917.out 20170918.out 
	                          20170919.out 20170920.out 20170921.out 
	                          20170922.out 20170923.out 20170924.out 
	                          20170925.out 20170926.out 20170927.out 
	                          20170928.out 20170929.out 20170930.out 
	                          20171001.out 20171002.out 20171003.out 
	                          20171004.out 20171005.out 20171006.out 
	                          20171007.out 20171008.out 20171009.out 
	                          20171010.out 20171011.out 20171012.out 
	                          20171013.out 20171014.out 20171015.out 
	                          20171016.out 20171017.out 20171018.out 
	                          20171019.out 20171020.out 20171021.out 
	                          20171022.out 20171023.out 20171024.out 
	                          20171025.out 20171026.out 20171027.out 
	                          20171028.out 20171029.out 20171030.out 
	                          20171031.out 20171101.out 20171102.out 
	                          20171103.out 20171104.out 20171105.out 
	                          20171106.out 20171107.out 20171108.out 
	                          20171109.out 20171110.out 20171111.out 
	                          20171112.out 20171113.out 20171114.out 
	                          20171115.out 20171116.out 20171117.out 
	                          20171118.out 20171119.out 20171120.out 
	                          20171121.out 20171122.out 20171123.out 
	                          20171124.out 20171125.out 20171126.out 
	                          20171127.out 20171128.out 20171129.out 
	                          20171130.out 20171201.out 20171202.out 
	                          20171203.out 20171204.out 20171205.out 
	                          20171206.out 20171207.out 20171208.out 
	                          20171209.out 20171210.out 20171211.out 
	                          20171212.out 20171213.out 20171214.out 
	                          20171215.out 20171216.out 20171217.out 
	                          20171218.out 20171219.out 20171220.out 
	                          20171221.out 20171222.out 20171223.out 
	                          20171224.out 20171225.out 20171226.out 
	                          20171227.out 20171228.out 20171229.out 
	                          20171230.out 20171231.out Makefile in 

Log message:
calendar regress from Andy Bradford.
All tests pass with today's fix to calendar/day.c


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/14 10:11:54

Modified files:
	regress/usr.bin/calendar: Makefile 

Log message:
Use diff -u instead of diff.  It's a bit easier to see what's wrong.
no objection millert


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/14 10:59:28

Modified files:
	sys/netinet6   : ip6_output.c 

Log message:
Kill ip6_pcbopts, unused since the removal of IPV6_PKTOPTIONS

ok mikeb@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/14 11:48:28

Modified files:
	sys/dev/pv     : hypervreg.h hypervvar.h if_hvnreg.h rndisreg.h 
	                 xenreg.h xenvar.h 

Log message:
Name include guard macros consistently within sys/dev/pv


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/09/14 12:11:01

Modified files:
	www/py-django/stable: Makefile distinfo 
	www/py-django/stable/pkg: PLIST 

Log message:
update django to 1.10.1.
ok benoit@.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/14 12:23:06

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

Log message:
don't dump vcpu state on ept violations, these happen with sufficient
frequency that they cause a lot of dmesg spam and aren't errors to begin
with


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/14 12:34:52

Modified files:
	etc            : ksh.kshrc 

Log message:
Do the same with less code.

OK halex


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/14 12:46:24

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

Log message:
Remove contigious TX buffer, we're not going to use it


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/14 12:48:49

Modified files:
	sys/dev/pv     : rndisreg.h 

Log message:
Fixup Per Packet Info data structure size definitions


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/14 12:52:12

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

Log message:
Implement packet transmission through RNDIS scatter-gather interface


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/14 12:53:27

Modified files:
	sys/dev/pv     : hypervreg.h 

Log message:
Remove a useless shadow copy of the vmbus_chanpkt_prplist structure


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/14 12:54:27

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

Log message:
Cleanup dmesg output


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/14 13:04:54

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

Log message:
Declare the type instead of a on-stack variable for sizeof purposes

(Un?)surprisingly the compiler is smart enough to produce the same
code in both cases, but this conveys the intention better.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/14 13:45:33

Modified files:
	app/cwm        : client.c search.c xevents.c 

Log message:
Fix-up a few simple uses of client_current(): check CLIENT_ACTIVE flag
instead of relying on curcc.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/14 14:11:26

Modified files:
	usr.bin/ssh    : auth2-pubkey.c 

Log message:
take fingerprint of correct key for AuthorizedPrincipalsCommand


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/09/14 14:40:07

ports/security/yara/python/patches

Update of /cvs/ports/security/yara/python/patches
In directory cvs.openbsd.org:/tmp/cvs-serv29128/python/patches

Log Message:
Directory /cvs/ports/security/yara/python/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/09/14 14:40:53

Modified files:
	security/yara  : Makefile.inc 
	security/yara/main: Makefile distinfo 
	security/yara/main/pkg: PLIST 
	security/yara/python: Makefile distinfo 
	security/yara/python/pkg: PLIST 
Added files:
	security/yara/python/patches: patch-setup_py 

Log message:
update yara to 3.5.0.
ok benoit@.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/14 15:00:24

Modified files:
	app/cwm        : client.c 

Log message:
Some clients fail to setup hints at all, so initalize for them; fallout
from r1.218 switching to malloc - clearly missed this case.

found the hard way by brynet@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 16:44:12

Added files:
	build/openssh  : Makefile releasenotes.html.head 
	                 releasenotes.html.tail releases.pl 

Log message:
Add a script to build a web page containing all of the OpenSSH release notes
in reverse chronoligical order for easy searching.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 17:06:22

Modified files:
	build/openssh  : releasenotes.html.tail 

Log message:
Remove cruft from footer.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 17:07:45

Modified files:
	openssh        : index.html 
Added files:
	openssh        : releasenotes.html 

Log message:
Add a "Release Notes" page containing all release notes in reverse
chronological order.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2016/09/14 17:47:01

Modified files:
	security       : Makefile 

Log message:
+ keybase


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 17:59:58

Modified files:
	build/openssh  : releases.pl 

Log message:
Add release dates for historic releases, generated with a shell one-liner
from the release tarballs.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 18:00:40

Modified files:
	share/man/man9 : mbuf.9 
	sys/kern       : uipc_mbuf.c 
	sys/sys        : mbuf.h 

Log message:
remove m_copym2 as its use has been replaced by m_dup_pkt

ok millert@ mpi@ henning@ claudio@ markus@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 18:00:48

Modified files:
	build/openssh  : releasenotes.html.head 

Log message:
Fix title.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 18:02:59

Modified files:
	openssh        : releasenotes.html 

Log message:
Updated release notes page: fixed title and additional release dates for
historic releases.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 18:20:19

Modified files:
	openssh        : releasenotes.html 
	build/openssh  : releases.pl 

Log message:
Remove extraneous dash from version identifiers.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 18:52:08

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
we dont need m_copym0 with m_copym as a single wrapper, so merge them.

cos m_copym only does shallow copies, we can make the code do them
unconditionally.

for millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/14 18:58:23

Modified files:
	usr.bin/doas   : doas.c doas.h env.c parse.y 

Log message:
use static in the right places to seperate modules better
ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 19:01:08

Modified files:
	usr.bin/netstat: route.c unix.c 

Log message:
dont #define _KERNEL around some #includes

the data structures are now readable without _KERNEL needing to be defined.

ok deraadt@

there's probably a lot more of these that can be cleaned up if
anyone is interested in looking into it.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 19:05:15

Modified files:
	sys/conf       : files 
	sys/sys        : tree.h 

Log message:
enable the subr_tree version of red-black trees again.

the problem with the .h file pulling in sys/param.h for NULL, which
in turn goes and pulls in a ton of MI insanity, has been fixed.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 19:24:08

Modified files:
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c 

Log message:
move pools to using the subr_tree version of rb trees

this is half way to recovering the space used by the subr_tree code.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 19:37:34

Modified files:
	sys/net        : if_pppx.c 

Log message:
bring back r1.53

move pppx red-black trees from tree.h code to subr_tree.c code

this change and the same one for pools should have us breaking even for
the "extra" code in subr_tree. after this we will get more space back
by converting RB_ to RBT_ code, and any new red-black trees using RBT_
are free.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 20:00:18

Modified files:
	share/man/man9 : pool.9 
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c dma_alloc.c kern_descrip.c 
	                 kern_event.c kern_proc.c kern_resource.c 
	                 kern_sig.c kern_srp.c subr_extent.c sys_pipe.c 
	                 sysv_msg.c sysv_shm.c uipc_mbuf.c uipc_socket.c 
	                 vfs_bio.c vfs_cache.c vfs_init.c vfs_lockf.c 
	                 vfs_subr.c 
	sys/arch/alpha/alpha: pmap.c 
	sys/arch/amd64/amd64: aesni.c pmap.c vmm.c 
	sys/arch/arm/arm: pmap.c pmap7.c 
	sys/arch/hppa/hppa: machdep.c pmap.c 
	sys/arch/i386/i386: pmap.c 
	sys/arch/m88k/m88k: pmap.c 
	sys/arch/macppc/macppc: machdep.c 
	sys/arch/mips64/mips64: pmap.c 
	sys/arch/powerpc/powerpc: pmap.c 
	sys/arch/sh/sh : pmap.c 
	sys/arch/sparc64/dev: vnet.c 
	sys/arch/sparc64/sparc64: pmap.c 
	sys/crypto     : crypto.c 
	sys/dev        : vscsi.c 
	sys/dev/cardbus: cardslot.c 
	sys/dev/ic     : ncr53c9x.c wd33c93.c wdc.c 
	sys/dev/pci    : if_myx.c if_nep.c if_oce.c 
	sys/dev/pci/drm: drm_drv.c drm_linux.c 
	sys/dev/usb    : ehci.c ohci.c uhci.c xhci.c 
	sys/dev/usb/dwc2: dwc2.c 
	sys/isofs/udf  : udf_vfsops.c 
	sys/net        : art.c hfsc.c if_pfsync.c if_pppx.c pf_if.c 
	                 pf_ioctl.c pf_norm.c pf_osfp.c pf_table.c 
	                 pfkeyv2.c pipex.c ppp_tty.c radix.c route.c 
	sys/netinet    : if_ether.c in_pcb.c ip_input.c ip_spd.c 
	                 tcp_input.c tcp_subr.c 
	sys/netinet6   : nd6.c 
	sys/nfs        : nfs_subs.c nfs_syscalls.c 
	sys/scsi       : scsi_base.c 
	sys/tmpfs      : tmpfs_vfsops.c 
	sys/ufs/ext2fs : ext2fs_vfsops.c 
	sys/ufs/ffs    : ffs_softdep.c ffs_vfsops.c 
	sys/ufs/ufs    : ufs_dirhash.c 
	sys/uvm        : uvm_addr.c uvm_amap.c uvm_anon.c uvm_aobj.c 
	                 uvm_map.c uvm_swap.c 

Log message:
all pools have their ipl set via pool_setipl, so fold it into pool_init.

the ioff argument to pool_init() is unused and has been for many
years, so this replaces it with an ipl argument. because the ipl
will be set on init we no longer need pool_setipl.

most of these changes have been done with coccinelle using the spatch
below. cocci sucks at formatting code though, so i fixed that by hand.

the manpage and subr_pool.c bits i did myself.

ok tedu@ jmatthew@

@ipl@
expression pp;
expression ipl;
expression s, a, o, f, m, p;
@@
-pool_init(pp, s, a, o, f, m, p);
-pool_setipl(pp, ipl);
+pool_init(pp, s, a, ipl, f, m, p);


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 20:16:18

Modified files:
	openssh        : releasenotes.html 
	build/openssh  : releasenotes.html.head 

Log message:
Capitalization; from tj@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 20:48:28

Modified files:
	openssh        : releasenotes.html 
	build/openssh  : releases.pl 

Log message:
The 3.8.1 file does not correspond to a real release so suppress date for
that entry.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/14 20:55:21

Modified files:
	openssh        : releasenotes.html 
	build/openssh  : releases.pl 

Log message:
Correct date for a couple of historic releases.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 21:32:48

Modified files:
	sys/net80211   : ieee80211_ioctl.c ieee80211_node.c 
	                 ieee80211_node.h ieee80211_proto.c 

Log message:
move from RB macros to the RBT functions.

shaves about 5k off an amd64 GENERIC.MP kernel


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 21:37:09

Modified files:
	sys/netinet    : ip_ipsp.c ip_ipsp.h 

Log message:
move from RB macros to RBT functions

shaves a bunch of bytes off kernels


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 22:55:18

Modified files:
	share/man/man9 : RBT_INIT.9 

Log message:
RBT_NEXT, PREV, LEFT, RIGHT, and PARENT take an element, not a tree.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 23:21:09

Modified files:
	sys/sys        : tree.h 
	sys/kern       : subr_tree.c 

Log message:
rename the members of rb_entry so they dont keep working with RB macros


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/14 23:31:24

Modified files:
	sys/kern       : subr_tree.c 

Log message:
fix $OpenBSD$ tag


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 00:07:22

Modified files:
	share/man/man9 : RBT_INIT.9 
	sys/sys        : tree.h 
	sys/kern       : subr_tree.c 

Log message:
add RBT_POISON and RBT_CHECK so you can poison the pointers in RBT_ENTRYs

this seems like a better way forward than simply removing the
poisoning that uvm does.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 00:11:14

Modified files:
	share/man/man9 : dma_alloc.9 pool.9 

Log message:
some pool_setipl mop up; ok dlg


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/15 00:50:06

Modified files:
	net/dnscrypt-proxy: Makefile 
	audio/mpd      : Makefile 

Log message:
Now that --gc-sections has been disabled on powerpc (thanks jca@!),
remove the hacks in ports to disable it locally. Those should build ootb
in the next-next bulk...


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/15 01:47:00

Modified files:
	sys/net        : bfd.c 

Log message:
chase dlg@'s change of merging pool_setipl into pool_init


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/15 02:39:44

Modified files:
	sys/net        : bfd.c 

Log message:
print local and remote discr as decimal, easier to compare with remote systems

while here, play with whitespace for pool_init.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/15 04:22:10

Modified files:
	lang/gcc/4.9   : Makefile 
	lang/gcc/4.9/patches: patch-gcc_config_arm_openbsd_h 
	                      patch-gcc_config_gcc 
	                      patch-libgcc_config_host 
	lang/gcc/4.9/pkg: PFRAG.arm-main 
Added files:
	lang/gcc/4.9/patches: patch-gcc_common_config_arm_arm-common_c 
	                      patch-gcc_config_arm_openbsd1_h 
	                      patch-libgcc_config_arm_unwind-arm_h 

Log message:
Convert to arm EABI.  Drop ada support for now until someone re-bootstraps it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/15 04:37:03

Modified files:
	lang/gcc/6     : Makefile distinfo 
	lang/gcc/6/patches: patch-gcc_ada_gcc-interface_Makefile_in 
	                    patch-gcc_config_pa_pa_c 
	lang/gcc/6/pkg : PLIST-main 

Log message:
hppa


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/15 06:34:48

Modified files:
	sys/net        : bfd.h 

Log message:
protect a kernel only structure with _KERNEL, means userland doesn't
need extra includes


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/15 06:51:20

Modified files:
	sbin/route     : route.c 

Log message:
Add RTM_INVALIDATE as a route message, to keep the kernel and userland
lists in sync.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/15 06:53:08

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 
	usr.sbin/pkg_add/OpenBSD/PackageRepository: Installed.pm 

Log message:
move the error saving code slightly around
still not perfect


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/15 07:09:44

Modified files:
	sys/net        : bfd.h 

Log message:
adjust whitespace and remove an unused struct


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/15 07:14:03

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgSign.pm Signer.pm 

Log message:
actual signify2 code, a bit refactoring


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/15 09:22:19

Added files:
	share/man/man4 : hyperv.4 

Log message:
hyper-v guest nexus device man page


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/15 09:52:22

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

Log message:
Teach switchd(8) how to shutdown using close() instead of kill().

This commit mostly removes the parent SIGCHLD handler, the rest of the
code is already in proc.c.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/15 09:58:46

Added files:
	share/man/man4 : hvn.4 

Log message:
hyper-v networking interface man page


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/15 10:01:20

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

Log message:
Add Hyper-V devices


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/15 10:14:08

Modified files:
	mail           : Makefile 

Log message:
build gpgme,sasl and gpgme,sasl,slang flavours of mutt. todd@ requested
gpgme,sasl,slang and if we're having that we should have the ncurses version
too.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/15 10:16:03

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 
	usr.sbin/ftp-proxy: ftp-proxy.c 
	usr.sbin/rtadvd: rtadvd.c 

Log message:
Go in the background later, using rdaemon().

rdaemon() works like daemon(3) but requires its caller to pre-open
/dev/null.  This makes it possible to go in the background after
a chroot(2), allowing for more error checking.  The pattern is basically
- open /dev/null
- chroot
- privdrop
- rdaemon

"design" initialy discussed with semarie@ a while ago, ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/15 10:19:04

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Use rdaemon() in dhclient too.

dhclient already has code to pre-open /dev/null, in order to properly go
to the background after chroot(2).  Use rdaemon() like in tftpd,
ftp-proxy, dhcrelay and rtadvd.

No objection krw@, ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 11:18:35

Modified files:
	share/man/man4 : hvn.4 hyperv.4 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 11:34:16

Modified files:
	lib/libcurses  : curses.3tbl 

Log message:
we do not build the curses _memleaks and _trace stuff apparently,
so remove mentions of them;

from anthony coulter
nicm thinks it's worth making the changes, even though these pages
are 3rd party;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 11:49:03

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

Log message:
shorten ts;


CVSROOT:	/cvs
Module name:	src
Changes by:	awolk@cvs.openbsd.org	2016/09/15 11:53:38

Modified files:
	share/man/man9 : Makefile 
Added files:
	share/man/man9 : usb_add_task.9 

Log message:
Document the USB task API

OK mpi@

change post OK:
- long lines in the source file wrapped
- added note about USB_TASK_TYPE_ABORT from mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 12:26:22

Modified files:
	share/man/man9 : usb_add_task.9 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/15 12:27:27

Modified files:
	share/man/man4 : hyperv.4 hvn.4 

Log message:
Drop references to FreeBSD driver names; I've got one wrong already...


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 14:44:24

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
more fat trimming;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 14:54:28

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

Log message:
some spkac shortening; ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 14:57:07

Modified files:
	usr.bin/openssl: openssl.1 
	usr.sbin/httpd : httpd.8 

Log message:
add some Xr for acme-client(1);


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/15 15:55:51

Modified files:
	sys/arch/armv7/omap: files.omap 
	sys/arch/armv7/conf: GENERIC RAMDISK 
Added files:
	sys/arch/armv7/omap: omwugen.c 

Log message:
Add omwugen(4) a driver for the TI logic that generates wakeup events
and routes interrupts to the GIC/ampintc(4).

The code is derived from imxgpc(4) which has the same role on imx.

In the pandaboard device tree wugen is the default interrupt parent
and is used for the hsmmc nodes.  Adding this driver makes ommmc(4)
interrupts work again on pandaboard.

ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/15 15:57:16

Modified files:
	.              : plus60.html 

Log message:
add a missing bracket and fix canonical href link; from rob pierce


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/15 16:00:55

Modified files:
	share/man/man4/man4.armv7: Makefile 
Added files:
	share/man/man4/man4.armv7: omwugen.4 

Log message:
add a manual page for omwugen


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/09/15 16:03:36

Modified files:
	security/p5-Module-Signature: Makefile distinfo 

Log message:
update p5-Module-Signature to 0.81


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/09/15 16:15:33

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

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


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/15 16:38:17

Modified files:
	share/man/man4/man4.armv7: omwugen.4 

Log message:
life is not a newspaper headline, and Nd follows suit...


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/15 17:43:44

Modified files:
	openssh        : releasenotes.html 
	openssh/txt    : release-2.1.0p1 release-2.1.1p1 release-2.1.1p2 
	                 release-2.1.1p3 release-2.1.1p4 release-2.2.0p1 
	                 release-2.3.0p1 release-2.5.1p2 release-2.5.2p2 
	                 release-2.9p2 

Log message:
Remove Damien's very historic email footers from the historic release notes.
ok djm@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/09/15 18:27:48

Modified files:
	distrib/sets/lists/xserv: md.alpha md.amd64 md.armv7 md.hppa 
	                          md.i386 md.loongson md.macppc md.sgi 
	                          md.sparc64 mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/09/15 19:00:50

Modified files:
	openssh        : releasenotes.html 
	openssh/txt    : release-1.2.2p1 release-1.2.3p1 

Log message:
Remove a couple more of Damien's historic email footers.  ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/15 19:01:41

Modified files:
	regress/usr.bin/ssh/misc/kexfuzz: kexfuzz.c 

Log message:
fix for newer modp DH groups (diffie-hellman-group14-sha256 etc)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 19:05:34

Modified files:
	sys/kern       : subr_tree.c 

Log message:
remove a trailing \

i mustnt have cleaned this up properly when i copied the tree.h code

from Ilya Kaliman


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 19:09:54

Modified files:
	sys/uvm        : uvm_addr.c uvm_fault.c uvm_map.c uvm_map.h 
	                 uvm_mmap.c uvm_unix.c 
	sys/arch/i386/i386: pmap.c 

Log message:
move the uvm_map_addr RB tree from RB macros to the RBT functions

this tree is interesting because it uses all the red black tree
features, specifically the augment callback thats called on tree
topology changes, and it poisons and checks entries as theyre removed
from and inserted back into the tree respectively.

ok stefan@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/15 19:33:48

Modified files:
	faq            : faq15.html 

Log message:
speed up example "find" command by doing less forking.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/15 19:37:17

Modified files:
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 19:51:40

Modified files:
	sys/uvm        : uvm_addr.c uvm_addr.h uvm_map.h 

Log message:
move uaddr_free_rbtree from RB macros to RBT functions


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/15 20:17:57

Modified files:
	libexec/ld.so/m88k: rtld_machine.c 

Log message:
Remove the fallback to the __plt_{start,end} symbols, as the dynamic tags
with the same info (DT_88K_PLT{START,END} have been around since 5.4

testing by aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/15 20:20:08

Modified files:
	libexec/ld.so/m88k: rtld_machine.c 

Log message:
Implement the DT_RELACOUNT optimization.  Missed previously because I
didn't recognize that RELOC_BBASED_32 was the m88k name for a pure-relative
relocation

testing by aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 20:35:42

Modified files:
	sys/arch/amd64/amd64: pmap.c 
	sys/arch/hppa/hppa: pmap.c 
	sys/arch/i386/i386: pmap.c pmapae.c 
	sys/kern       : subr_hibernate.c 
	sys/uvm        : uvm_aobj.c uvm_device.c uvm_map.c uvm_object.c 
	                 uvm_object.h uvm_page.c uvm_page.h 
	                 uvm_pmemrange.c uvm_pmemrange.h uvm_vnode.c 

Log message:
move the vm_page struct from being stored in RB macro trees to RBT functions

vm_page structs go into three trees, uvm_objtree, uvm_pmr_addr, and
uvm_pmr_size. all these have been moved to RBT code.

this should give us a decent chunk of code space back.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 20:47:09

Modified files:
	sys/uvm        : uvm_pmemrange.c uvm_pmemrange.h 

Log message:
move uvm_pmemrange_addr from RB macros to RBT functions


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 20:50:54

Modified files:
	sys/uvm        : uvm_addr.c 

Log message:
fix spelling of RBT_NEXT in a comment


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 20:52:24

Modified files:
	sys/uvm        : uvm_pmemrange.c 

Log message:
fix some DEBUG code so its using the right rb tree code


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 20:54:51

Modified files:
	sys/kern       : vfs_bio.c vfs_subr.c 
	sys/sys        : buf.h vnode.h 

Log message:
move buf_rb_bufs from RB macros to RBT functions

i had to shuffle the order of some header bits cos RBT_PROTOTYPE
needs to see what RBT_HEAD produces.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 21:21:16

Modified files:
	sys/sys        : namei.h vnode.h 
	sys/kern       : vfs_cache.c vfs_subr.c 

Log message:
move the namecache_rb_tree from RB macros to RBT functions.

i had to shuffle the includes a bit. all the knowledge of the RB
tree is now inside vfs_cache.c, and all accesses are via cache_*
functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 21:39:25

Modified files:
	sys/uvm        : uvm_map.h 

Log message:
put RBT_PROTOTYPE inside #ifdef _KERNEL


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 21:40:28

Modified files:
	sys/sys        : vnode.h 

Log message:
move RBT_PROTOTYPE under #ifdef _KERNEL


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/15 22:03:04

Removed files:
	distrib/i386/ramdiskB: Makefile list.local 
	distrib/i386/ramdiskC: Makefile list.local 

Log message:
these build directories were left around after we moved to 1 floppy.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 22:03:27

Modified files:
	lib/libkvm     : kvm_proc.c 

Log message:
handle fallout of moving the address maps to RBT code.

because userland doesnt have subr_tree, and the tree traversal in
this file is simple, this inlines the logic that the functions in
the kernel do.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/15 22:04:52

Removed files:
	distrib/i386/ramdiskA: Makefile list.local 

Log message:
oh, this directory can also go


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/15 22:45:35

Modified files:
	usr.sbin/procmap: Makefile procmap.c 

Log message:
procmap fumbles with uvm_map_addr structures, which are now in RBTs

it also does proper traversal of the tree (ie, it does FOREACH)
which in turn uses MIN and NEXT operations to iterate over the whole
tree. theyre complicated and need code.

so for now this pulls in subr_tree.c from the kernel and builds it
as part of procmap. that allows for traversal of the RBT using the
same code that the kernel uses.

it is a bit ugly though because procmap updates the pointers between
items in the tree so they point at local copies instead of kernel
addresses. its made worse because RBT code has pointers between
rb_entry structs, not between the nodes.

im putting this in now to unbreak the tree. it can be polished after
coffee/naps.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/16 00:09:31

Modified files:
	regress/usr.bin/ssh/misc/kexfuzz: README 

Log message:
add a note on kexfuzz' limitations


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/09/16 01:53:44

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

Log message:
update to 20160910 version
ok sthen@ (Maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/16 02:33:13

Modified files:
	gnu/usr.bin/perl: installperl 

Log message:
Don't check if target directory is writeable. This gets in the way of
noperm builds.

ok deraadt some time ago


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/16 02:35:52

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/pkg: PLIST-main 

Log message:
Update to link-grammar-5.3.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/16 02:37:14

Modified files:
	audio/libmikmod: Makefile distinfo 

Log message:
Update to libmikmod 3.3.10

OK juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/16 02:41:43

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.11.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/16 02:52:50

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version

OK sthen@, juanfra@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/16 02:54:57

Modified files:
	graphics/scour : Makefile 
	graphics/scour/pkg: PLIST 

Log message:
switch to python3-only

Suggested by sthen@, OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/16 03:19:39

Modified files:
	graphics       : Makefile 

Log message:
-scour,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/09/16 03:25:23

Modified files:
	usr.bin/wc     : wc.c 

Log message:
- Removed unnecessary string.h include
- Changed 'format_and_print' argument type to int64_t and casting
inside the function
- Declaring 'print_counts', 'format_and_print', and 'cnt' as static
- Remove unnecessary cast for NULL, and (void) casts from printfs,
'mbtowc' and 'format_and_print' calls
- In 'cnt', change bufsz type from ssize_t to size_t to avoid
converting between pointers to integer types with different sign
when calling getline (catched when compiling with Clang)
- Use return instead of exit in main

OK jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/16 03:42:57

Modified files:
	plan9/drawterm : Makefile distinfo 
Removed files:
	plan9/drawterm/patches: patch-Make_unix 
	                        patch-posix-mips_getcallerpc_c 
	                        patch-posix-sun4u_getcallerpc_c 

Log message:
update to drawterm-20160914

Port switched to the fork that is currently maintained against 9front source.
User-visible changes:

- fixes a glitch in graphics rendering, primarily noticed when viewing images in
the web browser mothra(1).
- defaults to new dp9ik authentication and rcpu(1) connection method, devolving
to the old p9sk1 and cpu(1).
- adds new cryptographic support from 9front libmp and libsec libraries.
- audio now works and is enabled.
- keyboard/mouse input is now much more responsive over high-latency
connections.
- new flag, -G, starts the session without the GUI.

from MAINTAINER stanley lieber


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/16 03:51:21

Modified files:
	sys/net        : if_trunk.c 

Log message:
Reconfigure interface capabilities after switching trunkproto; ok mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/16 04:06:53

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
Enable Hyper-V guest drivers


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/16 04:09:03

Modified files:
	share/man/man4 : Makefile 

Log message:
Hook up Hyper-V man pages


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/16 04:32:40

Added files:
	sys/dev        : rndis.h 

Log message:
Introduce a common header files for RNDIS protocol definitions
that both urndis(4) and hvn(4) can use.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/16 04:47:22

Modified files:
	mail/mutt      : Makefile 

Log message:
use SEPARATE_BUILD


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/16 04:54:56

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

Log message:
backout to 20160827; the newer code is crashing:
https://github.com/neomutt/neomutt/issues/147


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/16 05:13:37

Modified files:
	sys/dev/usb    : if_urndis.c if_urndisreg.h 

Log message:
Switch urndis(4) over to the generic RNDIS header


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 06:46:12

Modified files:
	faq            : faq6.html 

Log message:
zap some <p>'s


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/16 07:28:20

Modified files:
	distrib/miniroot: install.sub 

Log message:
Use 'umount -f' so failing to umount root does not blow up install/upgrade
while root (sic) causes are probed.

Problem reported by RD Thrush via bugs@ and reproduced locally.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/16 07:43:41

Modified files:
	usr.bin/tmux   : tmux.h window.c 

Log message:
Swap watermarks from high (4096) to low (128) when we get full buffers
into the read callback several times in succession; swap back when we
see empty buffers several times. This hopefully limits how much programs
that print a lot for a long period can monopolize tmux (like large, fast
compiling), without penalizing programs that print a lot briefly (like
most curses applications). Helps a lot for me, the actual numbers may
need tweaking later.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/16 08:32:02

Modified files:
	app/cwm        : calmwm.h client.c screen.c xevents.c xutil.c 

Log message:
During init, query screen for _NET_ACTIVE_WINDOW and set that client as
active; while we already look at what's under the pointer, use this
information first, then look under the pointer (saving that round-trip).
This restores the active state to a client after restart even if the
pointer is not above it (and of course the pointer is not above another
client).


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/16 08:54:37

Modified files:
	sys/dev/wscons : Tag: OPENBSD_6_0 wsconsio.h 
	sys/dev/wsfont : Tag: OPENBSD_6_0 wsfont.c 

Log message:
MFC: limit the number of fonts that can be loaded

ok millert mlarkin deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2016/09/16 09:01:05

Modified files:
	sys/dev/wscons : Tag: OPENBSD_5_9 wsconsio.h 
	sys/dev/wsfont : Tag: OPENBSD_5_9 wsfont.c 

Log message:
MFC: limit the number of fonts that can be loaded

ok millert mlarkin deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 09:14:08

Modified files:
	faq            : faq6.html 

Log message:
compress the first part of the networking faq a little:
remove some strange sentences and superfluous explanations.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/16 09:35:05

Modified files:
	distrib/miniroot: install.sub 

Log message:
Revert last. -f is a bad bad idea here.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/16 09:50:11

Modified files:
	sys/lib/libsa  : cread.c 

Log message:
unifdef SAVE_MEMORY which is no longer set nor used

ok deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/16 09:58:15

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/09/16 10:18:19

Modified files:
	sysutils/duplicity/patches: 
	                            patch-testing_functional_test_restart_py 

Log message:
Patch committed upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/16 11:17:40

Modified files:
	usr.bin/mg     : Makefile main.c 
Removed files:
	usr.bin/mg     : theo.c 

Log message:
like the sparc port, ancient wisdom is ancient. consign to the archives.
ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/16 11:24:20

Modified files:
	lib/libcurses  : Makefile 
Added files:
	lib/libcurses  : legacy_coding.3 

Log message:
Include the legacy_coding(3) page which documents use_legacy_coding(),
probably missed at one update or another. Reported by Anthony Coulter,
discussed with jmc.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/16 12:41:20

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix the data storage size check. When we exceed the amount of available
storage within an mbuf packet header we have to allocate a cluster.

Pointed out by mikeb@

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/16 12:52:25

Modified files:
	sys/arch/arm/include: exec.h 

Log message:
Define PT_ARM_EXIDX.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/16 12:56:43

Modified files:
	x11/gnome/calendar: Makefile distinfo 

Log message:
update to gnome-calendar-3.20.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/16 13:00:25

Modified files:
	sys/ddb        : db_hangman.c 

Log message:
drop unneeded casting noise

pointed out by guenther@ in a separate diff


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/16 13:01:14

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 

Log message:
update to gnome-online-accounts-3.20.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/16 13:13:17

Modified files:
	sys/arch/amd64/amd64: db_trace.c 
	sys/conf       : GENERIC files 
	sys/ddb        : db_elf.c db_extern.h 
Added files:
	sys/ddb        : db_ctf.c db_ctf.h db_elf.h 

Log message:
teach ddb(4) about CTF. currently it only loads the CTF and uses it on amd64
to lookup the number of function parameters. however having this basic
facility allows us to expand it's usage.

currently hidden behind the (disabled) DDBCTF kernel option as some of the
required tools are not available in base yet. in addition to that one
also needs recent bootblocks that load the .SUNW_ctf kernel section.

discussed with mpi@ over many a cider and ale in cambridge
feedback and ok guenther@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/16 14:16:06

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

Log message:
Suppress debugging output about CSD entries that say nothing we care about
and improve the output for those we might.

output examples from mikeb@
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/16 14:16:50

Modified files:
	gnu/usr.bin/binutils-2.17: ltconfig 

Log message:
Hardcode STRIP=/usr/bin/strip so that install -s works

ok natano@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jca@cvs.openbsd.org	2016/09/16 14:29:03

Modified files:
	app/video      : video.c 

Log message:
Make video -i work ootb.

video(1) uses mmap and ioctls by default, those ioctls only work on
video(4) devices.  If -i is passed, use read(2) instead of the mmap(2)
routines, instead of requiring the user to pass also pass the -g flag.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/16 16:44:32

Modified files:
	sys/dev/pv     : if_hvn.c rndisreg.h 

Log message:
Switch over to the generic RNDIS header


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/16 17:35:45

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Revert use of rdaemon() until it doesn't break install/upgrade.

Problem cause deduced by kili@, reproduced by & ok rpe@.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 18:04:03

Modified files:
	faq            : faq6.html 

Log message:
sync ifconfig example output with reality:
also display interface index and llprio instead of just priority


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/16 18:38:43

Modified files:
	sys/sys        : mbuf.h 

Log message:
clean old cruft out of mbstat
ok henning bluhm claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/16 18:42:35

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
NPF > 0 is a better test than SMALL for presence of pf.
ok deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 18:50:42

Modified files:
	faq            : faq6.html 

Log message:
merge description of mygate(5) and myname(5) into a single brief section
that explains their purpose and refer to the manual for details


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/16 19:01:42

Modified files:
	lib/libc/sys   : poll.2 select.2 

Log message:
Restore warnings about multiple process waiting on same fd

requested by mpf@
ok deraadt tedu@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 19:37:04

Modified files:
	faq            : faq6.html 

Log message:
move the example hostname.fxp0 file right after the example ifconfig
output so the two can be compared easily. lose some repetition of
hostname.if(5) and some unexplained examples. discussed with tj


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/16 19:48:35

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 20:03:51

Modified files:
	faq            : faq6.html 

Log message:
trim some fat from the resolv.conf(5) section


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 21:04:48

Modified files:
	faq            : faq6.html 

Log message:
slightly rework the netstart(8) section: remove sample error output and
corresponding sentences, wording tweaks from tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/16 22:58:44

Modified files:
	faq            : faq6.html 

Log message:
clean up whitespace to match the rest of the faq. will make future
diffs smaller


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/17 00:09:08

Modified files:
	sys/sys        : core.h 

Log message:
Document why <sys/core.h> is still needed


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/17 00:43:39

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

Log message:
remove duplicated CPUIDECX_PDCM use
ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/17 01:29:04

Modified files:
	sys/dev/ic     : arcofi.c 

Log message:
remove unused arcofi_drain() routine


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/17 01:35:05

Modified files:
	sys/net        : bfd.c bfd.h route.c rtsock.c 

Log message:



CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/17 01:37:57

Modified files:
	sys/arch/amd64/amd64: pmap.c 
	sys/arch/i386/i386: pmap.c pmapae.c 

Log message:
remove unused pmap_dump functions

ok kettenis, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:14:30

Modified files:
	sbin/ping      : ping.c 

Log message:
If no source address is specified and we are running in verbose mode
try to find it with getsockname(2) like ping6(8). Disable printing
for now though because scripts might depend on ping(8)'s output.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:15:38

Modified files:
	sbin/ping6     : ping6.c 

Log message:
does not need to be global


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:16:32

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Bring over includes, we will need them in a merge anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:17:55

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
ping(8): The IPv6 header has a payload length field while IPv4 has a
length field for the whole packet. Make some room for IPv6 payload.
ping6(8): Sync to ping(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:18:43

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Move some more option handling around to reduce diff to ping(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:19:44

Modified files:
	sbin/ping      : ping.c 

Log message:
Use ECHOTMLEN define.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:20:39

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Sync PINGFILLED handling to ping(8); fixes bug by using the correct
length.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:21:16

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Normalize receive packet allocation.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:21:59

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Move more AF independent initialization around to reduce diff.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:22:31

Modified files:
	sbin/ping      : ping.c 

Log message:
style


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:23:04

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Set SO_RCVBUF like ping; the buffer will be bigger than before so this
should be ok.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:23:42

Modified files:
	sbin/ping6     : ping6.c 

Log message:
This style hurt my eyes long enough.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:24:51

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Merge socket options that are set only when -v is given.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:25:36

Modified files:
	sbin/ping6     : ping6.c 

Log message:
We have different filters depending on the verbose flag. Merge filter
construction into existing verbose handling block.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:26:07

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Reduce diff in pinger().


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:26:49

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
We will need the variable name "from" soon, so free it up by renaming
to peer. While here move declaration down to where it's needed. No
functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:29:27

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Blindly s/dst/dst4/ or s/dst/dst6/, AF independent dst will be
introduced next.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:30:00

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Use AF independent dst where possible.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:30:26

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Introduce AF independent from.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:31:04

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Make source address selection more AF independent.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:32:54

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
If -I was not given hoist getting source address up.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:33:32

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Make getting source address more AF independent.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:34:03

Modified files:
	sbin/ping      : ping.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:34:28

Modified files:
	sbin/ping6     : ping6.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:34:57

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
malloc sets errno; use err not errx


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:35:27

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
Just use AF_INET like everywhere else.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:36:12

Modified files:
	sbin/ping6     : ping6.c 

Log message:
dead store


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:36:42

Modified files:
	sbin/ping      : ping.c 
	sbin/ping6     : ping6.c 

Log message:
MAXPAYLOAD is different between ping and ping6.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:37:19

Modified files:
	sbin/ping      : ping.c 

Log message:
iov_base is already set in this case; reduce diff to ping6(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:37:56

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Only print that data is truncated like ping(8) does.  While here get
rid of the MINIMUM macro, it wasn't doing anything, anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:38:26

Modified files:
	sbin/ping      : ping.c 

Log message:
Use ECHOTMLEN define; no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 03:39:09

Modified files:
	sbin/ping6     : ping6.c 

Log message:
Sync printing of wrong additional data to ping version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/17 03:52:37

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

Log message:
update to GraphicsMagick 1.3.25, from Brad - CVE-2016-2317 and a few other
security-related fixes noted in changelog.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 04:29:55

Modified files:
	faq            : faq6.html 

Log message:
add a forgotten <p> and re-wrap a line


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/17 06:00:50

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.55.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/17 06:01:07

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.10.65.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/17 06:02:36

Modified files:
	security/py-libnacl: Makefile distinfo 

Log message:
Update to py-libnacl-1.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/17 06:05:59

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-126.0.0.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 06:56:19

Modified files:
	faq            : faq6.html 

Log message:
adjust outputs of netstat -rn and route show to reality:
over the past 17 years since ericj copy-pasted the output from
his box, some columns were added and some other stuff changed.
issue noted by phessler during g2k16


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/17 08:42:13

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : PLIST 

Log message:
Properly @sample local site files so that they can be modified by the admin.
Noticed by and input from semarie


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/17 08:53:50

Modified files:
	.              : errata59.html errata60.html 

Log message:
release wsfont errata.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 08:53:59

Modified files:
	faq            : faq6.html 

Log message:
zap a useless sentence


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/17 08:56:12

Modified files:
	sys/sys        : systm.h 

Log message:
garbage collect dead prototype

ok kettenis@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 08:58:42

Modified files:
	sbin/ping      : ping.c 

Log message:
The final merge ping6 into ping.
"why slow down?" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 09:03:40

Modified files:
	distrib/amd64/common: list 
	distrib/amd64/ramdisk_cd: list.local 
	distrib/armv7/ramdisk: list 
	distrib/hppa   : list 
	distrib/i386/common: list 
	distrib/i386/ramdisk_cd: list.local 
	distrib/landisk/ramdisk: list 
	distrib/loongson/ramdisk: list 
	distrib/luna88k/ramdisk: list 
	distrib/macppc/ramdisk: list 
	distrib/miniroot: list 
	distrib/octeon/ramdisk: list 
	distrib/ramdisk: list 
	distrib/sgi/ramdisk: list 
	distrib/socppc/ramdisk: list 
	distrib/sparc64/bsd.rd: list 
	distrib/sparc64/ramdisk: list 
	distrib/sparc64/ramdiskB: list 
	distrib/special: Makefile 
	sbin/ping      : Makefile 
	sbin/ping6     : Makefile 
	usr.bin/bgplg  : Makefile 
	usr.bin/bgplg/ping: Makefile 
Removed files:
	distrib/special/ping6: Makefile 

Log message:
ping6(8) is now a hardlink to ping(8).
The instbin stuff looks good to deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2016/09/17 09:04:15

Modified files:
	etc/examples   : httpd.conf 

Log message:
add example certificate and key files generated with acme-client.

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/17 09:06:41

Modified files:
	usr.bin/less   : ch.c charset.c cmdbuf.c command.c cvt.c 
	                 decode.c edit.c filename.c ifile.c jump.c 
	                 lesskey.c line.c linenum.c main.c mark.c 
	                 optfunc.c option.c option.h opttbl.c output.c 
	                 position.c prompt.c search.c signal.c tags.c 

Log message:
little bit more KNF


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/17 09:10:50

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

Log message:
remove comment about CMS; ok jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/09/17 09:33:39

Modified files:
	databases/py-peewee: Makefile distinfo 
	databases/py-peewee/patches: patch-setup_py 
	databases/py-peewee/pkg: PLIST 

Log message:
maintenance update to py-peewee-2.8.3
while there:
- add a test target
- disable the use of cython


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/17 09:56:58

Modified files:
	sys/arch/sparc64/include: tcb.h 

Log message:
Use the asm global register extension for the TCB pointer in userspace
as it's simpler to understand and generates better code.

ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 10:36:38

Modified files:
	faq            : faq6.html 

Log message:
rework setting aliases a bit. tweaks & ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:39:06

src/gnu/usr.bin/clang/libLLVMARMCodeGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMARMCodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv27376/libLLVMARMCodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMARMCodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:39:26

src/gnu/usr.bin/clang/libLLVMARMAsmParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMARMAsmParser
In directory cvs.openbsd.org:/tmp/cvs-serv18494/libLLVMARMAsmParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMARMAsmParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:39:38

src/gnu/usr.bin/clang/libLLVMARMAsmPrinter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMARMAsmPrinter
In directory cvs.openbsd.org:/tmp/cvs-serv26238/libLLVMARMAsmPrinter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMARMAsmPrinter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:39:48

src/gnu/usr.bin/clang/libLLVMARMDesc

Update of /cvs/src/gnu/usr.bin/clang/libLLVMARMDesc
In directory cvs.openbsd.org:/tmp/cvs-serv31441/libLLVMARMDesc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMARMDesc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:39:56

src/gnu/usr.bin/clang/libLLVMARMDisassembler

Update of /cvs/src/gnu/usr.bin/clang/libLLVMARMDisassembler
In directory cvs.openbsd.org:/tmp/cvs-serv12345/libLLVMARMDisassembler

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMARMDisassembler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:40:06

src/gnu/usr.bin/clang/libLLVMARMInfo

Update of /cvs/src/gnu/usr.bin/clang/libLLVMARMInfo
In directory cvs.openbsd.org:/tmp/cvs-serv97416/libLLVMARMInfo

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMARMInfo added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:40:37

src/gnu/usr.bin/clang/include/llvm/ARM

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/ARM
In directory cvs.openbsd.org:/tmp/cvs-serv17082/ARM

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/ARM added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:43:52

Added files:
	gnu/usr.bin/clang/include/llvm/ARM: Makefile 
	gnu/usr.bin/clang/libLLVMARMAsmParser: Makefile 
	gnu/usr.bin/clang/libLLVMARMAsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMARMCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMARMDesc: Makefile 
	gnu/usr.bin/clang/libLLVMARMDisassembler: Makefile 
	gnu/usr.bin/clang/libLLVMARMInfo: Makefile 

Log message:
Add missing build infrastructure for arm.

ok patrick@, jsg@, pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 10:59:35

Modified files:
	gnu/llvm/tools/clang/lib/Basic: Targets.cpp 

Log message:
Fix types for OpenBSD/arm.

ok stefan@, jsg@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/17 11:39:34

Modified files:
	sys/sys        : exec_elf.h 
	sys/ddb        : db_ctf.c 
	sys/lib/libsa  : loadfile_elf.c 
	share/man/man5 : elf.5 
	usr.sbin/vmd   : loadfile_elf.c 

Log message:
move the .SUNW_ctf section name definition to exec_elf.h and document it in elf(5)

feedback from guenther@
ok guenther@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/17 11:45:37

Modified files:
	sys/ddb        : db_ctf.c 
Added files:
	sys/sys        : ctf.h 
Removed files:
	sys/ddb        : db_ctf.h 

Log message:
rename ddb/db_ctf.h to sys/ctf.h which is the expected location for the public
CTF bits.

ok kettenis@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/17 12:00:27

Modified files:
	usr.bin/ssh    : clientloop.c hostfile.c 

Log message:
replace two arc4random loops with arc4random_buf
ok deraadt natano


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 12:36:15

Modified files:
	sbin/ping      : ping.8 

Log message:
Merge ping6(8) manual into ping(8).
Tweak & OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 12:37:01

Modified files:
	sbin           : Makefile 

Log message:
unhook ping6 from the build


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 12:42:10

Removed files:
	sbin/ping6     : Makefile ping6.8 ping6.c 

Log message:
... and we have unification.
"Das tritt nach meiner Kenntnis... ist das sofort... unverzueglich..."


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/17 13:33:59

Modified files:
	sys/kern       : vfs_biomem.c 

Log message:
Make the flag tests consistent in buf_realloc_pages() and explain what's
going on more clearly

ok beck@ tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/17 13:34:35

Modified files:
	net/curl       : Makefile distinfo 

Log message:
Security update to 7.50.3:
CVE-2016-7167: curl escape and unescape integer overflows


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2016/09/17 14:05:59

Modified files:
	etc/examples   : httpd.conf 

Log message:
pathnames for cert and key files need to be quoted.

reported by brynet


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 14:06:39

src/lib/libc/arch/arm/dlfcn

Update of /cvs/src/lib/libc/arch/arm/dlfcn
In directory cvs.openbsd.org:/tmp/cvs-serv95736/dlfcn

Log Message:
Directory /cvs/src/lib/libc/arch/arm/dlfcn added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 14:13:48

Modified files:
	lib/libc       : shlib_version 
	lib/libc/arch/arm: Makefile.inc Symbols.list 
Added files:
	lib/libc/arch/arm/dlfcn: Makefile.inc exidx.c 

Log message:
Add an interface to find the ARM.exidx table for use by the ARM EHABI unwinder.
Makes exceptions work in C++ code work again om armv7.

ok guenther@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 14:15:41

Modified files:
	faq            : faq6.html 

Log message:
mention early on that many hostname.if lines correspond to ifconfig
commands.  this allows us to avoid giving two versions of later
sections, one using config files and one using interactive commands.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/17 14:20:25

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

Log message:
Report a LAPIC address override entry in the dmesg if it doesn't match
the normal one

ok kettenis@ mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/17 14:22:41

Modified files:
	www/lighttpd   : Makefile distinfo 
	www/lighttpd/patches: patch-doc_lighttpd_8 
Added files:
	www/lighttpd/patches: patch-src_connections_c 
	                      patch-src_fdevent_c patch-src_fdevent_h 
	                      patch-src_http_auth_c patch-src_mod_cgi_c 
	                      patch-src_mod_fastcgi_c 
	                      patch-src_mod_proxy_c patch-src_mod_scgi_c 
	                      patch-src_server_c 
Removed files:
	www/lighttpd/patches: patch-src_chunk_c 

Log message:
Update to lighttpd-1.4.41.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/17 14:36:34

Modified files:
	sbin/iked      : Tag: OPENBSD_6_0 parse.y 

Log message:
During parsing of the iked(8) configuration, a variable is set to 0 by
mistake, disabling Pre-Shared key authentication.
MFC v 1.57 sbin/iked/parse.y from pascal@
ok florian@ pascal@ tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/17 15:30:02

Modified files:
	sbin/ping      : ping.c 

Log message:
backwards if(v6flag); pointed out by naddy


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2016/09/17 15:37:44

Modified files:
	.              : errata60.html 

Log message:
OpenBSD 6.0 errata 6, Sept 17, 2016:
During parsing of the iked(8) configuration, a variable is set to 0 by
mistake, disabling Pre-Shared Key authentication.
Thx tj@ and tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/17 15:39:05

Modified files:
	net/curl       : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/curl/patches: Tag: OPENBSD_6_0 patch-lib_escape_c 

Log message:
Security fix:
CVE-2016-7167: curl escape and unescape integer overflows


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/17 15:39:18

Modified files:
	net/curl       : Tag: OPENBSD_5_9 Makefile 
Added files:
	net/curl/patches: Tag: OPENBSD_5_9 patch-lib_escape_c 

Log message:
Security fix:
CVE-2016-7167: curl escape and unescape integer overflows


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/17 16:01:08

Modified files:
	gnu/llvm/tools/clang/lib/Driver: Tools.cpp 

Log message:
For now, force soft-float; our kernel doesn't support saving the FPU state yet.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/17 17:14:04

Added files:
	www/p5-WWW-Curl/patches: patch-Makefile_PL 

Log message:
fix build with curl >=7.50.2 as suggested by ppisar@redhat.com


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 17:26:49

Modified files:
	faq            : faq6.html index.html 

Log message:
remove the firewalling sectoin. this was just a paragraph pointing
to the pf user's guide. add this pointer to the intro part of the page

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/17 18:19:37

Modified files:
	lib/libc/arch/arm/dlfcn: exidx.c 

Log message:
unbreak the build by including stddef.h for the definition of NULL
fix suggested by and ok guenther@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 18:26:00

Modified files:
	faq            : faq6.html 

Log message:
rework the DHCP section: update some outdated references, make it
more concise, shuffle the text a bit and and tweak some wording

with & ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 18:29:55

Modified files:
	faq            : faq6.html 

Log message:
replace a stale reference to #PF with a reference to pf/index.html


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 19:14:51

Modified files:
	faq            : faq6.html 

Log message:
rework the first two parts of the wireless sections (without trunk)
reword some awkward sentences and shuffle some things around to make
things clearer.

with & ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 19:46:12

Modified files:
	faq            : faq6.html 

Log message:
rework the trunk section, mostly markup fixes.

with & ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 20:07:15

Modified files:
	faq            : faq6.html index.html 

Log message:
shuffle the sections around so that the long long sections that still
need a lot of work (NFS, Bridge, Equal-cost multipath routing) are at
the end of the page.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 20:27:43

Modified files:
	faq            : faq6.html faq8.html index.html 

Log message:
move the openntpd section to the other system time questions in faq8

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 20:29:23

Modified files:
	.              : armv7.html 

Log message:
openntpd is now in faq8.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 20:46:22

Modified files:
	faq            : faq6.html 

Log message:
the mac address in the dmesg and in the example ifconfig output
should be the same


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 20:55:52

Modified files:
	faq            : faq6.html 

Log message:
mention that the netstart script is used for configuring interfaces

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/17 21:04:23

Modified files:
	faq            : faq6.html 

Log message:
don't show the Encap: line in the netstat -rn output


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/18 01:03:37

Modified files:
	share/man/man4/man4.armv7: Makefile 
Added files:
	share/man/man4/man4.armv7: agtimer.4 ampintc.4 amptimer.4 
	                           armliicc.4 cortex.4 

Log message:
add some barebones manual pages


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/18 01:46:32

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Driver_Tools_cpp 
Added files:
	devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp 

Log message:
Merge in the fix clang types force soft-float on arm patches.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/18 01:47:48

Modified files:
	multimedia/mkvtoolnix: Makefile distinfo 

Log message:
Update to mkvtoolnix-9.4.2.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/18 02:20:12

Modified files:
	productivity/gnucash: Makefile distinfo 
	productivity/gnucash/pkg: PLIST 

Log message:
Update to gnucash-2.6.14.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/18 02:58:13

Modified files:
	gnu/usr.bin/binutils: Makefile.bsd-wrapper 
	gnu/usr.bin/binutils-2.17: Makefile.bsd-wrapper 

Log message:
Use ${INSTALL} instead of install, like in all the other Makefile's.
ok guenther


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/18 03:46:39

Modified files:
	faq            : faq6.html index.html 

Log message:
relegate the "adding and replacing NICs" section to the end of
the page for now, at least until it is cleaned up a little.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/18 03:51:24

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Ensure that the device descriptor ``bMaxPacketSize'' value is usable
before using it as the ``wMaxPacketSize'' of the default endpoint.

This prevents host controller drivers from using incorrect value, in
particular 0, that makes ehci(4) crash.

While here do the 0xff -> 512 conversion for super speed devices.

Crash found with a facedancer21.

ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/18 04:09:52

Modified files:
	faq            : faq6.html 

Log message:
mark up ip addresses and ranges consistently


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/18 04:10:49

Modified files:
	faq            : faq6.html 

Log message:
sysctl(8), not (3); add link to manual


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/18 04:15:30

Modified files:
	faq            : faq6.html 

Log message:
unify markup of hostname.if (remove italics in a few places)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/18 04:20:21

Modified files:
	sbin/ping      : ping.8 

Log message:
minor tweaks;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/18 04:22:10

Modified files:
	lib/libc/arch/arm/string: ffs.S 

Log message:
Use unified syntax such that this compiles with both gcc and clang.

ok jsg@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/18 04:56:34

Modified files:
	faq            : faq6.html 

Log message:
some initial NFS pruning. save some vertical space by inlining some
lists, reorder some stuff that got badly converted to rcctl and do the
usual amount of rephrasing and deleting repetitions.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/18 05:04:42

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix compilation by replacing old m_copym2() usage with the newer
m_dup_pkt(). While at it: fix comment and use m_dup_pkt() to align
packets instead of swofp_mbuf_align().

ok mikeb@, yasuoka@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/18 05:13:18

Modified files:
	faq            : faq6.html 

Log message:
clean up the nfs mount section. this is not the place to explain
mount options, just use them in the example, the link to fstab(5) is
right there. also do some markup fixes.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/18 05:18:28

Modified files:
	lib/libunwind/src: AddressSpace.hpp 

Log message:
Go down the right path in the _LIBUNWIND_ARM_EHABI case.

ok patrick@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/18 05:22:37

Modified files:
	faq            : faq6.html 

Log message:
in the nfs statistics section, the rpcinfo example is good, but we don't
need to show and explain the output of showmount -a.


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/18 06:36:28

Modified files:
	sys/kern       : init_main.c 

Log message:
add missing call to db_ctf_init().

this was part of the larger diff that was ok guenther@ mpi@, somehow I forgot
to commit this particular piece.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/18 07:17:40

Modified files:
	usr.sbin/switchd: proc.c proc.h switch.c 

Log message:
Kill p_env from proc.c. The p_env variable was not being used seriously and
it was always a copy of ps->ps_env.

You might access the env variable now with: p->p_ps->ps_env.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/18 07:31:12

Modified files:
	sys/ddb        : db_ctf.c 

Log message:
- inline db_ctf_nsyms() into it's only caller. the value remains cached and
won't change, so there's no reason to call it again.
- remove explicit return from void function

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/18 07:38:01

Modified files:
	sys/arch/i386/i386: db_trace.c 

Log message:
as is done on amd64, allow using CTF to lookup the function parameters.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/18 07:46:28

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
move page junking tp unmap(), right before we stick the region in the cache;
ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/18 07:54:58

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
merge form libc malloc:
move page junking tp unmap(), right before we stick the region in the cache;
ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/18 07:56:16

Modified files:
	sbin/ping      : ping.c 

Log message:
Do not print 'ping6' in reporting output, just 'ping'.
OK tom@, natano@, claudio@, sthen@, millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/18 07:59:51

Modified files:
	sbin/ping      : ping.c 

Log message:
If running in verbose mode and no source address has been specified
with -I find the kernel selected address and print it even for v4
addresses.
OK phessler@, natano@, mpi@, claudio@, benno@, sthen@, millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 08:28:05

Modified files:
	sys/arch/alpha/alpha: machdep.c 
	share/man/man4 : options.4 
	share/man/man7 : securelevel.7 
	sys/conf       : GENERIC 

Log message:
option INSECURE is obsolete


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 08:28:25

Modified files:
	sys/arch/amd64/amd64: machdep.c 
	sys/arch/i386/i386: machdep.c 
	sys/arch/macppc/macppc: machdep.c 
	sys/arch/socppc/socppc: machdep.c 
	sys/arch/sparc64/sparc64: machdep.c 

Log message:
option INSECURE is obsolete


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 08:30:28

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.socppc md.sparc64 mi 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 08:32:54

Modified files:
	sys/arch/arm/arm: arm32_machdep.c 
	sys/kern       : kern_sysctl.c 

Log message:
option INSECURE is obsolete


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 08:52:14

Modified files:
	sbin/ping      : ping.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/18 09:05:02

Modified files:
	share/man/man7 : securelevel.7 

Log message:
there's no reason to point readers to options(4) now;


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/18 09:05:15

Modified files:
	lang/gcc/4.9   : Makefile 
	lang/gcc/4.9/patches: patch-gcc_config_arm_openbsd_h 
Added files:
	lang/gcc/4.9/patches: patch-gcc_config_arm_arm_opt 

Log message:
Bump default -march for ARM to pcore (armv6k), but disallow unaligned access.
Required to build clang.

prompted by patrick@/kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/18 09:13:10

Modified files:
	sys/arch/i386/stand/libsa: biosdev.c 
	sys/arch/amd64/stand/libsa: biosdev.c 

Log message:
Fix a bug in the bounce buffer handling of BIOS disk I/O.

Currently, if a buffer crosses a 64KB boundary, a bounce buffer is
allocated, however it is assumed that this new buffer does not cross the
64KB boundary. In the case of i386 fdboot, it just so happens that (due to
the size of fdboot and heap allocations) UFS gets allocated a 4KB buffer
that crosses a 64KB boundary, then biosd_io() allocates a bounce buffer,
which also crosses a 64KB boundary. At this point the BIOS gets grumpy and
refuses to read from the disk.

Further clean up to come from tom@.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 09:14:08

Modified files:
	sbin/ping      : ping.c 

Log message:
simplify startup, since we know earlier which type of socket we need
ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/18 09:14:52

Modified files:
	sys/lib/libsa  : cread.c 

Log message:
Correctly handle short read()s in the libsa gzip handling lseek(). Also
avoid masking the errno from a failed read().

ok guenther@ tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/18 09:21:00

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Make sure an output device is allocated before calling terminal_sepline(),
fixing a NULL pointer access that happened when the first of multiple pages
shown was preformatted, as in "man -a groff troff".
Crash reported by <jmates at ee dot washington dot edu> on bugs@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/18 09:23:42

Modified files:
	distrib/i386/common: Makefile.inc 
	distrib/i386/ramdisk: Makefile 

Log message:
Switch the i386 floppy ramdisk to fdboot(8), now that it works correctly.
This will avoid overflow caused by upcoming changes to boot(8).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/18 09:45:50

Modified files:
	usr.bin/mandoc : main.c 

Log message:
We cannot use fputs(3) in passthrough() because the stdout stream
might be in stdio wide orientation due to prior formatting of an
unformatted manual in man -aTutf8 mode.  So for now, use fflush(3)
followed by unbuffered write(2) instead.  Fixes output corruption
on glibc discovered on Linux while testing a diff to fix a loosely
related bug reported by <jmates at ee dot washington dot edu>.

I detest the concept of stdio stream orientation.  One day, i will
rewrite term_ascii.c to always use narrow streams, even in UTF-8
output mode.  But that's too much work for today.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 10:32:54

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/18 10:34:59

Modified files:
	sys/lib/libsa  : softraid.c 
	sys/arch/i386/stand/boot: Makefile 
	sys/arch/i386/stand/cdboot: Makefile 
	sys/arch/i386/stand/pxeboot: Makefile 
	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/sparc64/stand/ofwboot: Makefile 

Log message:
Add bcrypt pbkdf support to the softraid crypto boot loader code.

Based on a diff from djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/18 10:36:09

Modified files:
	sys/arch/i386/stand/boot: conf.c 
	sys/arch/i386/stand/cdboot: conf.c 
	sys/arch/i386/stand/pxeboot: conf.c 
	sys/arch/amd64/stand/boot: conf.c 
	sys/arch/amd64/stand/cdboot: conf.c 
	sys/arch/amd64/stand/efiboot: conf.c 
	sys/arch/amd64/stand/pxeboot: conf.c 
	sys/arch/sparc64/stand/ofwboot: vers.c 

Log message:
Bump boot loader versions due to bcrypt pbkdf support.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/18 11:27:25

Modified files:
	sbin/ping      : ping.c 

Log message:
unbreak IPv6 source selection


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/18 11:50:26

Modified files:
	sys/arch/arm/conf: files.arm 
	sys/arch/arm/simplebus: simplebus.c 

Log message:
Use a locator (named "early") to let designated drivers attach before others.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/18 12:16:00

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/imx: files.imx imx.c imxccm.c imxiomuxc.c 

Log message:
Convert imxccm(4) and imxiomuxc(4) to attach using the fdt.  Use the "early"
locator to attach them before other drivers that might need their services.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/18 14:18:25

Modified files:
	etc            : Makefile 
	usr.sbin/acme-client: Makefile main.c 
Added files:
	etc            : acme-client.conf 
	usr.sbin/acme-client: acme-client.conf.5 parse.h parse.y 

Log message:
add a config file parser to acme-client (unused at the moment, so that
it can be worked on in the tree).
ok florian@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/18 15:00:15

Modified files:
	regress/usr.sbin/ldapd: Makefile 

Log message:
Test should print SKIPPED if a package is missing.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/18 15:00:55

Modified files:
	sys/net        : bfd.c 

Log message:
apply the canary to the correct variable


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/18 15:06:46

Modified files:
	regress/lib/libedit/chared: Makefile 
	regress/lib/libedit/keymacro: Makefile 
	regress/lib/libedit/read: Makefile 

Log message:
The libedit regress tests require header files generated during the
build.  Add a dependency to run make depend in /usr/src/lib/libedit.
Problem found by otto@; OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/18 15:20:42

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: octuctl.4 

Log message:
Add manual for octuctl(4); from Rafael Neves <rafael at diskless dot io>.
Tweaked by jmc@ and by me.
OK visa@ (on a previous version) and OK jmc@ and Rafael Neves (author).
MikeB@ supported the general direction.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 15:47:19

Modified files:
	etc            : Makefile 

Log message:
fix build


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/18 15:53:41

Modified files:
	usr.sbin/acme-client: acme-client.conf.5 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2016/09/18 16:09:12

Modified files:
	infrastructure/man/man1: check-lib-depends.1 dpb.1 
	infrastructure/man/man8: bulk.8 

Log message:
Diff from Michael Reed <m dot reed at mykolab dot com>:
Minor cleanup of some issues found with mandoc -Tlint and igor(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/18 16:26:03

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

Log message:
On arm, set the "triple" to armv7-unknown-openbsdX.Y-gnueabi.  This makes the
compiler generate code for armv7 by default (giving us proper atomic
operations) and selects the right default ABI.

ok patrick@, tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/18 17:56:45

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

Log message:
If the APIC table (MADT) isn't present then ci_acpi_proc_id won't be set
when acpicpu tries to attach, leading to a NULL dereference.  The ACPI
processor object on the Dells where this was reported is bogus and useless
anyway so apply the same test when deciding whether to attach to processor
objects as acpicpu would when matching them to cpus.

Problem reported by Eivind Eide (xenofil (at) gmail.com) and
Johan Huldtgren (johan+openbsd-bugs (at) huldtgren.com).
Testing by Eivind Eide.
ok kettenis@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/18 18:35:49

Modified files:
	distrib/sets/lists/etc: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/18 21:25:22

Modified files:
	lib/libssl     : Makefile 
	lib/libtls     : Makefile 

Log message:
Update ld search path for libssl/libcrypto, fixes cross-build after source moved.

from Patrick Wildt


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/19 00:46:44

Modified files:
	share/man/man9 : audio.9 
	sys/arch/hppa/gsc: harmony.c harmonyvar.h 
	sys/arch/luna88k/cbus: nec86.c nec86hwvar.h 
	sys/arch/macppc/dev: aoa.c awacs.c daca.c onyx.c snapper.c 
	                     tumbler.c 
	sys/arch/sgi/dev: mavb.c 
	sys/arch/sparc64/dev: ce4231.c 
	sys/dev        : audio.c audio_if.h 
	sys/dev/ic     : am7930var.h arcofi.c arcofivar.h 
	sys/dev/isa    : ess.c gus.c gusvar.h pas.c sb.c 
	sys/dev/pci    : auacer.c auglx.c auich.c auixp.c auixpvar.h 
	                 autri.c auvia.c azalia.c cmpci.c cs4280.c 
	                 cs4281.c eap.c emuxki.c emuxkivar.h envy.c 
	                 esa.c eso.c fms.c maestro.c neo.c sv.c yds.c 
	sys/dev/sbus   : cs4231.c 
	sys/dev/tc     : bba.c 
	sys/dev/usb    : uaudio.c utvfu.c 

Log message:
Remove unused getdev() audio driver functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/19 01:08:01

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

Log message:
Only allow standard dot notation for IPv4 addresses as target.
We can get rid of inet_aton(3) and use the AF independent getaddrinfo(3).
OK natano@, krw@, millert@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/19 01:08:30

Modified files:
	sbin/ping      : ping.c 

Log message:
Only allow standard dot notation for IPv4 addresses.
We can get rid of inet_aton(3) and use the AF independent getaddrinfo(3).
OK natano@, krw@, millert@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/19 01:28:41

Modified files:
	sys/net        : bfd.c bfd.h 

Log message:
once again, fix the bfd state-machine.  this time, tested against a
juniper which rolled through several states during testing
(up->admindown->up->timeout->up)


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/19 01:52:42

Modified files:
	usr.bin/ssh    : channels.c sshconnect1.c 

Log message:
Replace two more arc4random() loops with arc4random_buf().

tweaks and ok dtucker
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/19 01:58:57

Modified files:
	sys/net        : bfd.c 

Log message:
remove a bunch of noisy implementation-helper printfs


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/19 02:23:57

Modified files:
	audio/gsm      : Makefile distinfo 

Log message:
minor update to gsm-1.0.16


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/19 02:24:28

Modified files:
	mail/mutt      : Makefile distinfo 
	mail/mutt/patches: patch-main_c 
	mail/mutt/pkg  : PLIST 

Log message:
update to neomutt-20160916


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/19 03:03:41

Modified files:
	sys/net        : bfd.c 

Log message:
send a nice diagnostic reason when we destroy all bfd interfaces (reboot)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/19 03:14:38

Modified files:
	usr.sbin/switchd: proc.c 

Log message:
Fix 'const char *' qualifier removal warning by casting it out with
uintptr_t. It is safe here to pass a 'const' to exec*().

improved by and ok millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/19 03:16:51

Modified files:
	print/cups     : Makefile distinfo 
	print/cups/patches: patch-Makedefs_in patch-backend_ipp_c 
	                    patch-cgi-bin_Makefile 
	                    patch-config-scripts_cups-common_m4 
	                    patch-config-scripts_cups-sharedlibs_m4 
	                    patch-cups-config_in patch-cups_Makefile 
	                    patch-filter_Makefile 
	                    patch-notifier_Makefile patch-ppdc_Makefile 
	                    patch-scheduler_Makefile 
	                    patch-scheduler_auth_c patch-scheduler_ipp_c 
	                    patch-test_run-stp-tests_sh 
	print/cups/pkg : PLIST-libs PLIST-main 
Removed files:
	print/cups/patches: patch-config-scripts_cups-compiler_m4 

Log message:
Update to cups-2.2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/19 03:17:45

Modified files:
	print/hplip/patches: patch-prnt_hpcups_CommonDefinitions_h 
	                     patch-prnt_hpijs_hpcupsfax_cpp 
Added files:
	print/ghostscript/gnu/patches: patch-cups_colord_h 
	                               patch-cups_gstoraster_c 
	www/iridium/patches: 
	                     patch-printing_backend_print_backend_cups_cc 
	www/chromium/patches: 
	                      patch-printing_backend_print_backend_cups_h 
	x11/kde4/print-manager/patches: patch-libkcups_KCupsConnection_h 

Log message:
Unbreak with cups>=2.2.0.
Hopefully catched all breakage since a few ports aren't building currently
(ligtop2...).


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/19 04:03:40

Modified files:
	sys/net        : bfd.c 

Log message:
do a better job of setting "last state"


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/19 04:14:07

Modified files:
	lang/gcc/6     : Makefile distinfo 
	lang/gcc/6/patches: patch-gcc_config_mips_mips_h 
	lang/gcc/6/pkg : PLIST-main 

Log message:
Add mips64 support; optimistically enable mips64el too.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/19 04:20:17

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
``bMaxPacketSize'' is reported as a power of 2 for super speed devices
as per section 4.8.2.1 of xHCI specification.

Note that we never got this correctly.

Spotted by and ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/19 04:54:18

Modified files:
	sys/net        : bfd.c 

Log message:
sigh, correct typo


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/19 05:22:39

Modified files:
	lib/libcxx     : Makefile 

Log message:
Add -nostdinc++ like the original CMakeLists.txt does.  Fixes bulding with
clang++.

ok pascal@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/19 05:23:16

Modified files:
	lib/libcxxabi  : Makefile 

Log message:
Add -nostdinc++ like the original CMakeLists.txt does.  Fixes bulding with
clang++.

ok pascal@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/19 05:26:43

Modified files:
	lib/libcompiler_rt: Makefile 

Log message:
Add non-VFP arm-specific code.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:37:02

src/gnu/usr.bin/clang/include/llvm/PowerPC

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/PowerPC
In directory cvs.openbsd.org:/tmp/cvs-serv14671/include/llvm/PowerPC

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/PowerPC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:37:30

src/gnu/usr.bin/clang/libLLVMPowerPCAsmParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCAsmParser
In directory cvs.openbsd.org:/tmp/cvs-serv40182/libLLVMPowerPCAsmParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCAsmParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:37:30

src/gnu/usr.bin/clang/libLLVMPowerPCAsmPrinter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCAsmPrinter
In directory cvs.openbsd.org:/tmp/cvs-serv40182/libLLVMPowerPCAsmPrinter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCAsmPrinter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:37:30

src/gnu/usr.bin/clang/libLLVMPowerPCCodeGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCCodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv40182/libLLVMPowerPCCodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCCodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:37:30

src/gnu/usr.bin/clang/libLLVMPowerPCDesc

Update of /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCDesc
In directory cvs.openbsd.org:/tmp/cvs-serv40182/libLLVMPowerPCDesc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCDesc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:37:30

src/gnu/usr.bin/clang/libLLVMPowerPCDisassembler

Update of /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCDisassembler
In directory cvs.openbsd.org:/tmp/cvs-serv40182/libLLVMPowerPCDisassembler

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCDisassembler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:37:30

src/gnu/usr.bin/clang/libLLVMPowerPCInfo

Update of /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCInfo
In directory cvs.openbsd.org:/tmp/cvs-serv40182/libLLVMPowerPCInfo

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMPowerPCInfo added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 05:39:05

Added files:
	gnu/usr.bin/clang/include/llvm/PowerPC: Makefile 
	gnu/usr.bin/clang/libLLVMPowerPCAsmParser: Makefile 
	gnu/usr.bin/clang/libLLVMPowerPCAsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMPowerPCCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMPowerPCDesc: Makefile 
	gnu/usr.bin/clang/libLLVMPowerPCDisassembler: Makefile 
	gnu/usr.bin/clang/libLLVMPowerPCInfo: Makefile 

Log message:
Add PowerPC backend build infrastructure.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/19 06:19:34

Modified files:
	lib/libcompiler_rt: Makefile 

Log message:
Don't build saveFP/restFP for powerpc.  Not needed on OpenBSD.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/19 06:48:21

Modified files:
	lib/libc/time  : localtime.c 

Log message:
gmtime_r() should return NULL on failure, not the struct tm * result
parameter that was passed in.  From Carlin Bingham.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/19 06:52:14

Modified files:
	usr.sbin/tftp-proxy: tftp-proxy.8 

Log message:
the pf.conf sample should refer to group _tftp_proxy, not proxy;
from joel knight


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/19 06:55:04

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

Log message:
shorten verify;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/19 06:57:45

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

Log message:
put the spkac section in the right place;


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/19 08:06:53

Modified files:
	net/amule      : Makefile distinfo 
	net/amule/patches: patch-acinclude_m4 patch-configure_in 
	                   patch-src_Preferences_cpp patch-src_amule_cpp 
	                   patch-src_utils_cas_configfile_c 
	                   patch-src_webserver_src_Makefile_in 
	net/amule/pkg  : PLIST-daemon PLIST-main PLIST-web 
Added files:
	net/amule/patches: patch-docs_man_Makefile_in patch-m4_bfd_m4 
	                   patch-src_libs_ec_cpp_ECSocket_cpp 
	                   patch-src_utils_aLinkCreator_docs_Makefile_in 
	                   patch-src_utils_cas_docs_Makefile_in 
	                   patch-src_utils_wxCas_docs_Makefile_in 
Removed files:
	net/amule/patches: patch-m4_libpng_m4 patch-src_BaseClient_cpp 
	                   patch-src_ChatSelector_cpp 
	                   patch-src_DownloadQueue_cpp 
	                   patch-src_ED2KLinkParser_cpp 
	                   patch-src_EncryptedStreamSocket_cpp 
	                   patch-src_GuiEvents_cpp 
	                   patch-src_ListenSocket_cpp 
	                   patch-src_MD4Hash_h 
	                   patch-src_MuleCollection_cpp 
	                   patch-src_MuleUDPSocket_cpp 
	                   patch-src_OScopeCtrl_cpp 
	                   patch-src_ObservableQueue_h 
	                   patch-src_OtherFunctions_cpp 
	                   patch-src_PartFileConvertDlg_cpp 
	                   patch-src_PartFileConvert_cpp 
	                   patch-src_PartFile_cpp patch-src_PartFile_h 
	                   patch-src_PlatformSpecific_h 
	                   patch-src_PrefsUnifiedDlg_cpp 
	                   patch-src_SHAHashSet_cpp 
	                   patch-src_Scanner_cpp 
	                   patch-src_ServerList_cpp 
	                   patch-src_ServerList_h 
	                   patch-src_SharedFileList_cpp 
	                   patch-src_Statistics_cpp 
	                   patch-src_ThreadTasks_cpp 
	                   patch-src_UPnPBase_cpp patch-src_amuleDlg_cpp 
	                   patch-src_amuleDlg_h 
	                   patch-src_include_common_Constants_h 
	                   patch-src_kademlia_net_KademliaUDPListener_cpp 
	                   patch-src_kademlia_routing_RoutingZone_cpp 
	                   patch-src_libs_common_FileFunctions_cpp 
	                   patch-src_libs_ec_cpp_ECTag_cpp 
	                   patch-src_utils_aLinkCreator_src_md4_cpp 
	                   patch-src_utils_scripts_denoiser_rules 
	                   patch-src_utils_scripts_mldonkey_importer_pl 
	                   patch-src_webserver_default_login_php 
	                   patch-src_webserver_src_WebServer_cpp 
	                   patch-src_webserver_src_WebServer_h 
	                   patch-src_webserver_src_php_lexer_c 
	                   patch-src_webserver_src_php_parser_y 

Log message:
Finally a new release!
Update to amule-2.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/09/19 08:17:56

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
update to afl-2.34b; OK jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2016/09/19 08:39:36

Modified files:
	security/keybase: Makefile 
	security/keybase/patches: 
	                          patch-go_vendor_github_com_keybase_go-ps_process_openbsd_go 

Log message:
Fix build on i386 (found by sthen@). I will push upstream as well.

OK jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/19 08:43:22

Modified files:
	sys/net        : switchofp.c 

Log message:
Replace duplicated VLAN injection code with the standard vlan_inject()
function.

ok goda@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/09/19 09:30:27

Removed files:
	distrib/sets/lists/etc: md.mvmeppc 
	distrib/sets/lists/game: md.mvmeppc 
	distrib/sets/lists/man: md.mvmeppc 

Log message:
Remove some mvmeppc leftovers.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/19 10:06:26

Modified files:
	sys/netinet    : tcp_input.c 

Log message:
For incomming connections keep the TF_NOPUSH flag if TCP_NOPUSH was
set on the listen socket.
From David Hill; OK vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/19 10:46:11

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Correctly check for valid maximum packet size.

from jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/19 11:02:15

Modified files:
	security/libassuan: Makefile distinfo 
	security/libassuan/patches: patch-configure 

Log message:
Update libassuan to 2.4.3.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/19 11:04:55

Modified files:
	security/libksba: Makefile distinfo 
Removed files:
	security/libksba/patches: patch-src_ber-help_c patch-src_cert_c 
	                          patch-src_dn_c patch-src_name_c 
	                          patch-src_ocsp_c 

Log message:
Update libksba to 1.3.5.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/19 11:09:37

Modified files:
	security/gnupg2: Makefile distinfo 
	security/gnupg2/pkg: PLIST 

Log message:
Update gnupg2 to 2.1.15.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/19 11:13:55

Modified files:
	security/gpgme : Makefile distinfo 
	security/gpgme/pkg: PLIST 
Added files:
	security/gpgme/patches: patch-tests_gpg_pinentry 

Log message:
Update gpgme to 1.6.0.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/19 11:16:32

Modified files:
	security/pinentry: Makefile distinfo 

Log message:
Update pinentry to 0.9.7.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/09/19 11:20:05

Modified files:
	security/gpa   : Makefile distinfo 
	security/gpa/pkg: PLIST 
Removed files:
	security/gpa/patches: patch-src_gpa_c 

Log message:
Update gpa to 0.9.9.

OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/19 11:46:53

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
Switch softraid crypto from PKCS5 PBKDF2 to bcrypt PBKDF.

New volumes will be created with bcrypt PBKDF, however existing volumes
will continue to use PKCS5 PBKDF2 until a passphrase change is made.

If you're booting from softraid crypto, ensure that your boot loader has
been upgraded to a version that supports bcrypt prior to changing your
passphrase. Also be aware that once the passphrase has been changed, an
older version of bioctl(8) (one that does not support bcrypt PBKDF) will
not be able to "unlock" the volume.

Partly based on a diff from djm@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/19 11:55:09

Modified files:
	devel/autoconf-archive: Makefile distinfo 
	devel/autoconf-archive/pkg: PLIST 

Log message:
update to autoconf-archive-2016.09.16


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/19 11:59:19

Modified files:
	sys/arch/alpha/alpha: db_trace.c 
	sys/arch/arm/arm: db_trace.c 
	sys/arch/mips64/mips64: db_machdep.c 

Log message:
fix whitespace at EOL


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/19 12:02:20

Modified files:
	sbin/bioctl    : bioctl.8 

Log message:
Update for bcrypt pbkdf.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/19 12:09:09

Modified files:
	sys/netinet6   : ip6_output.c raw_ip6.c 

Log message:
convert bcopy to memcpy. from david hill. ok jca


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/19 12:09:22

Modified files:
	sys/netinet    : ip_ah.c ip_esp.c ip_ipsp.c 

Log message:
convert bcopy to memcpy. from david hill.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/19 12:09:40

Modified files:
	sys/crypto     : crypto.c gmac.c hmac.c xform.c 

Log message:
convert bcopy to memcpy. from david hill


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/19 12:58:39

Modified files:
	usr.bin/tcpbench: tcpbench.c 

Log message:
Add OpenBSD RCS id.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/19 12:59:59

Modified files:
	faq            : current.html 

Log message:
Add an entry for the switch of softraid crypto to bcrypt PBKDF

Original commit message:

Switch softraid crypto from PKCS5 PBKDF2 to bcrypt PBKDF.

New volumes will be created with bcrypt PBKDF, however existing volumes
will continue to use PKCS5 PBKDF2 until a passphrase change is made.

If you're booting from softraid crypto, ensure that your boot loader has
been upgraded to a version that supports bcrypt prior to changing your
passphrase. Also be aware that once the passphrase has been changed, an
older version of bioctl(8) (one that does not support bcrypt PBKDF) will
not be able to "unlock" the volume.


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/09/19 13:02:19

Modified files:
	usr.bin/ssh    : kex.c packet.c 

Log message:
move inbound NEWKEYS handling to kex layer; otherwise early NEWKEYS causes
NULL deref; found by Robert Swiecki/honggfuzz; fixed with & ok djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/19 13:15:48

Modified files:
	net/amule      : Makefile 

Log message:
Remove unnecessary line; no pkg changes


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/19 14:08:12

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

Log message:
Fix pstat -ft.  In presence of the -f flag, a logic error in ttymode()
leads to entering codepaths that try to work with only partially
initialized kvm structures -- with unsurprising outcomes.

Problem found by Rob Pierce, ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/19 14:10:54

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

Log message:
Add pledge support to pstat

The filemode(), ttymode() and vnodemode() functions can be split into two
pieces. The *_prep() piece must be hoisted to before pledge and the rest
can run under pledge "stdio rpath vminfo". The magic block that decides
which ones of the *_prep() pieces must be run with which combination of
command line switches is quite impressive.

Patch from Rob Pierce, thanks!

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/19 14:20:38

Modified files:
	usr.bin/renice : renice.c 

Log message:
Replace an exit(3) call in main() with a return to enable the stack
protector.
From Rafael Neves


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/19 15:13:25

Modified files:
	mail/mutt      : Makefile 
	mail/mutt/pkg  : PLIST 

Log message:
Fix packaging.

It looks README.notmuch isn't installed anymore, maybe a change in the
handling of --disable-notmuch.  Quick fix for now.

Spotted by Markus Lude, PLIST diff from Rafael Sadowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/19 15:15:58

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

Log message:
use a shell glob wildcard, that's clearer than an out of scope variable


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/19 15:18:35

Modified files:
	sys/arch/alpha/alpha: db_trace.c 
	sys/arch/arm/arm: db_trace.c 
	sys/arch/hppa/hppa: db_interface.c 
	sys/arch/m88k/m88k: db_trace.c 

Log message:
ansify function definitions

ok guenther@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/09/19 15:24:21

Modified files:
	net/ucspi-tools: Makefile distinfo 
Removed files:
	net/ucspi-tools/patches: patch-tlss_c 

Log message:
update ucspi-tools to 1.5
OK Jan Klemkow (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/19 15:38:39

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

Log message:
Update to JRuby 9.1.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/19 16:08:35

Modified files:
	net/ruby-eventmachine: Makefile 
	net/ruby-eventmachine/pkg: PLIST 

Log message:
Remove files in gem extensions directory that snuck back into PLIST


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/19 16:12:26

Modified files:
	www/ruby-thin  : Makefile 
	www/ruby-thin/pkg: PLIST 

Log message:
Remove files in gem extensions directory that snuck back into PLIST


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/19 16:17:22

Modified files:
	lib/libcxx/include: __config 

Log message:
We definitely want to use arc4random() on OpenBSD.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/19 16:21:09

Modified files:
	sys/dev/ic     : arcofi.c 

Log message:
Make this build again.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/19 16:33:53

Modified files:
	mail           : Makefile 
	mail/mutt      : Makefile distinfo 
	mail/mutt/patches: patch-main_c patch-mutt_sasl_c 
	mail/mutt/pkg  : DESCR PLIST 

Log message:
backout to mutt-1.6.2 again.

people who reported crashes: please get backtraces.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/19 16:37:23

Modified files:
	lib/libcxxabi  : Makefile 

Log message:
We don't need cross-unwinding support,

ok patrick@, tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/19 16:38:50

Modified files:
	graphics/simgear: Makefile distinfo 
	graphics/simgear/patches: patch-simgear_compiler_h 
	                          patch-simgear_misc_sg_path_cxx 
	                          patch-simgear_misc_strutils_cxx 
	graphics/simgear/pkg: PLIST 

Log message:
Update to SimGear 2016.3.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/19 16:39:23

Modified files:
	games/flightgear: Makefile.inc 
	games/flightgear/base: Makefile distinfo 
	games/flightgear/base/pkg: PLIST 
	games/flightgear/data: distinfo 
	games/flightgear/data/pkg: PLIST 

Log message:
Update to FlightGear 2016.3.1.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/19 17:31:30

Modified files:
	faq            : faq15.html 

Log message:
remove "why is my top-favorite-software not part of the base system?"
faq1 covers this already.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/19 17:44:47

Modified files:
	faq/pf         : anchors.html authpf.html config.html 
	                 filter.html ftp.html logging.html options.html 
	                 pools.html rdr.html shortcuts.html tagging.html 

Log message:
less "$ext_if" and more egress to simplify example rulesets.
zap some stray <p> tags while here.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/19 17:57:52

Modified files:
	faq/pf         : carp.html filter.html shortcuts.html 

Log message:
"keep state" is the default so we don't need to specify it so many times.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/19 18:14:33

Modified files:
	faq/pf         : filter.html 

Log message:
i think we can stop talking about openbsd 4.1 now.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/19 18:26:25

Modified files:
	faq            : upgrade60.html 

Log message:
suggest checking out errata.html and stable.html.  prompted by a
patch by simon ruderich.  help with wording from tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/19 19:00:58

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

Log message:
add some intermediate headers and shuffle some things around to help
readers find what they need more easily when they want to get or update
a source tree.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/19 19:01:12

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/19 19:11:27

Modified files:
	sys/kern       : subr_tree.c 

Log message:
whitespace fixes, no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/19 22:23:33

Added files:
	lib            : check_sym 

Log message:
Add check_sym, a utility for checking shared libraries for symbol changes
that may require version bumps...or fixing.  Details in comments at the
top of the script.

ok mpi@ millert@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/19 22:25:09

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
Avoid selecting weak digests for (EC)DH when using SNI.

from OpenSSL:

SSL_set_SSL_CTX is normally called for SNI after ClientHello has
received and the digest to use for each certificate has been decided.
The original ssl->cert contains the negotiated digests and is now
copied to the new ssl->cert.

noted by David Benjamin and Kinichiro Inoguchi


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/19 22:27:27

Modified files:
	lib            : check_sym 

Log message:
Add $OpenBSD tag


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2016/09/20 01:16:16

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

Log message:
mention SAS3 devices


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/09/20 01:38:37

Modified files:
	net/p5-Net-Domain-TLD: Makefile distinfo 

Log message:
Update to p5-Net-Domain-TLD-1.75.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/20 01:41:34

Modified files:
	www/tomcat/v7  : Makefile distinfo 
	www/tomcat/v7/pkg: PLIST-examples 

Log message:
Update to tomcat-7.0.72


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/20 02:03:50

Modified files:
	www/owncloud   : Makefile distinfo 
	www/owncloud/patches: patch-version_php 
	www/owncloud/pkg: PLIST 

Log message:
Update to owncloud-9.1.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/09/20 02:35:25

Modified files:
	sys/arch/arm/arm: db_trace.c 

Log message:
one too many close parentheses

spotted by Markus Hennecke


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/20 03:16:37

Modified files:
	usr.sbin/radiusd: radiusd.8 

Log message:
some fixes from rob pierce; ok yasuoka


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/20 03:42:12

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

Log message:
sort;


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/20 04:04:07

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

Log message:
Rewrite awkward phrase, pointed out by Bryan Vyhmeister, wording tweak
from me, ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/20 04:06:39

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: bfd-in2.h elf32-arm.c libbfd.h 
	                               reloc.c 

Log message:
Support a few more relocations, most notably R_ARM_MOVW_ABS_NC and
R_ARM_MOVT_ABS that clang creates in its default configuration.

From FreeBSD.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/20 04:16:27

Modified files:
	audio/sox      : Makefile 

Log message:
disable libmagic in sox, from maintainer Jan Stary


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 04:27:14

Modified files:
	sys/dev/pv     : hyperv.c hypervvar.h 

Log message:
Add an API to hook up event counters


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 04:28:19

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

Log message:
Attach event counter


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 04:34:41

Modified files:
	sys/dev        : rndis.h 

Log message:
Add a missing status define


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 04:35:29

Added files:
	sys/dev/pv     : ndis.h 

Log message:
Add a new NDIS header


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 04:36:00

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

Log message:
Switch to the new NDIS header


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 04:36:34

Removed files:
	sys/dev/pv     : rndisreg.h 

Log message:
Not needed anymore


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/20 04:39:18

Modified files:
	distrib/special/route: Makefile 

Log message:
build the ramdisk version of route(8) with SMALL

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/20 04:41:43

Modified files:
	sys/net        : bfd.h 

Log message:
we will also want the echo timing paramater


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 04:50:51

Modified files:
	faq            : current.html 

Log message:
fix markup and a typo


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/20 05:11:44

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Add some spl softnet assertions that will help us to find the right
places for the upcoming network lock.  This might trigger some
asserts, but we have to find the missing code paths.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/20 05:46:09

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

Log message:
Mostly cosmetic tweaks to macros involved in iwm(4) power-saving features.
Remove the unused struct iwm_powertable_cmd. Fix typos in comments.
Add macros for default power-save Tx/Rx timeout values (from iwlwifi).


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/20 06:14:42

Modified files:
	bin/md5        : md5.1 

Log message:
sync the description of -q with that of cksum.1;
from bytevolcano

ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/20 06:14:49

Modified files:
	sys/net        : bridgestp.c 

Log message:
Use splsoftassert() together with IPL_SOFTNET.  On alpha and m88k
it is defined differently than splassert(IPL_SOFTNET).  No binary
change on amd64.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/20 06:32:35

Modified files:
	sbin/ping      : ping.8 

Log message:
various cleanup; ok florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/20 06:43:43

Removed files:
	mail/mutt/patches: patch-contrib_Makefile_in 
	                   patch-doc_Makefile_in 

Log message:
Missed "cvs rm"s, found by naddy.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/20 06:56:15

Modified files:
	security/opensc: Makefile 
	security/opensc/patches: patch-src_libopensc_libopensc_pc_in 

Log message:
Fix the pkg-config file


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/20 07:24:42

Modified files:
	sys/net80211   : ieee80211_input.c ieee80211_node.h 

Log message:
Parse the DTIM count and period advertised in beacons and store them
in the node structure. This should be useful for iwm(4) in the future.
ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 08:01:04

Modified files:
	sys/netinet    : ip_ipsp.c 

Log message:
Sprinkle splsoftnets in TDB timeout callbacks; ok bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/20 08:04:37

Modified files:
	sys/miscfs/fifofs: fifo_vnops.c 

Log message:
Fifo did work around the socket layer.  Better call soconnect2()
instead of unp_connect2().  This adds the missing splsoftnet().
Require that socantsendmore() and socantrcvmore() in uipc_socket2.c
should be called with splsoftnet().
Found by David Hill; OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/20 08:27:43

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Protect soshutdown() with splsoftnet() to define one layer where
we enter networking code.  Fixes an splassert() found by David Hill.
OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/20 09:21:34

Modified files:
	sbin/ping      : ping.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/20 09:44:57

Modified files:
	databases/mongodb: Makefile 

Log message:
add USE_WXNEEDED to unbreak server


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/20 10:14:43

Modified files:
	sys/net        : if.c 

Log message:
Create and destroy cloneable interfaces under splsoftnet

With and ok mpi, tested by David Hill and tb@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/20 10:31:56

Modified files:
	sys/arch/arm/arm: bus_dma.c 

Log message:
Complete bus_dmamap_load_raw(9) implementation for ARM.  My initial
commit did not copy the vaddr information to the map's segments.  This
means non-coherent bus dma raw mappings could not be synced.

As only agp(4) and radeondrm(4) seem to make use of non-coherent raw
mappings at the moment, this bug did not cause any visible effects.

From Marius Strobl.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/20 10:40:05

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

Log message:
shorten the verify error list;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/20 10:43:30

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

Log message:
update to unifi-5.2.7


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/20 10:45:09

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

Log message:
Unbreak logging for children process in switchd(8). log_init/verbose()
must be called before proc_init() otherwise child process won't have this
configured.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/20 10:45:38

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

Log message:
shorten version;


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/20 11:04:35

Modified files:
	regress/lib/libpthread/cancel: Makefile cancel.c 
	regress/lib/libpthread/poll: Makefile poll.c 

Log message:
don't depend on /dev/tty, in bluhm's framework there is no such thing
use openpty(3) instead


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 11:17:56

Modified files:
	build          : mirrors.dat 

Log message:
the mirror at hostserver.de is now maintained by benno and phessler

ok phessler


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 11:18:32

Modified files:
	.              : anoncvs.html cvsync.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/20 11:25:06

Modified files:
	regress/lib/libpthread/cancel: cancel.c 
	regress/lib/libpthread/poll: poll.c 

Log message:
switch master & slave; prompted by bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/20 12:18:52

Modified files:
	games/speeddreams: Makefile distinfo 
	games/speeddreams/patches: patch-src_libs_learning_policy_cpp 
	                           patch-src_libs_robottools_rthumandriver_cpp 
	                           patch-src_libs_tgf_linuxspec_cpp 
	                           patch-src_libs_tgfclient_CMakeLists_txt 
	                           patch-src_modules_graphic_ssggraph_CMakeLists_txt 
	                           patch-src_modules_simu_simuv3_car_cpp 
	                           patch-src_modules_userinterface_legacymenu_CMakeLists_txt 
	                           patch-src_tools_trackgen_CMakeLists_txt 
	                           patch-src_tools_xmlversion_CMakeLists_txt 
	games/speeddreams/pkg: PLIST-data PLIST-main 

Log message:
Update to Speeddreams 2.2.1.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/20 12:21:32

Modified files:
	app/cwm        : Makefile client.c 

Log message:
Get rid of curcc, instead cycle through the queue; removes the need for
client_none().


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/20 12:23:12

Modified files:
	app/cwm        : Makefile 

Log message:
remove debug that accidentally snuck in


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/20 12:24:55

Modified files:
	include        : link_elf.h 

Log message:
Add dl_unwind_find_exidx prototype.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/20 12:28:00

Modified files:
	lib/libunwind/src: AddressSpace.hpp 

Log message:
When _LIBUNWIND_ARM_EHABI is defined, include <link.h> to get the
dl_unwind_find_exidx prototype.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/20 12:29:12

Modified files:
	gnu/usr.bin/cvs: Makefile.bsd-wrapper mkinstalldirs 
	gnu/usr.bin/cvs/contrib: Makefile.in 
	gnu/usr.bin/perl: Makefile.bsd-wrapper install_lib.pl 
	                  installperl 

Log message:
Set correct owner for installed files. One step closer to noperm
builds.

initial diff and ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/20 12:36:57

Modified files:
	gnu/usr.bin/cvs: Makefile.bsd-wrapper mkinstalldirs 
	gnu/usr.bin/cvs/contrib: Makefile.in 

Log message:
Revert previous, I didn't intend to commit this (yet).


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 12:53:45

Modified files:
	build/mirrors  : ftp.html.end ftp.html.head ftp.html.mid1 
	                 ftp.html.mid2 openbgpd-ftp.html.head 
	                 openntpd-ftp.html.head openntpd-ftp.html.mid2 
	                 openssh-ftp.html.head 
	                 openntpd-portable.html.head 
	                 openssh-portable.html.head 
	                 openssh-portable.html.mid1 

Log message:
remove installation instructions from ftp.html and refer to the
installation guide instead. use a little bit of css instead of
setting colors manually.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 12:54:07

Modified files:
	.              : ftp.html 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 13:02:06

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

Log message:
css instead of manual colors


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 13:02:21

Modified files:
	.              : cvsync.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/20 13:11:19

Modified files:
	app/cwm        : calmwm.h client.c 

Log message:
de-static client_inbound()


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/20 13:16:32

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
reoorder includes,
noticed by & ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/20 13:38:16

Modified files:
	sys/net        : bfd.c 

Log message:
sprinkle some splsoftnet around sosocket and our soon-to-be-rtmsg locations


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/20 13:40:53

Modified files:
	sys/net        : bfd.c 

Log message:
little bit of whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/20 13:43:56

Modified files:
	sys/net        : bfd.c 

Log message:
properly set our state to down when we initially create the session.

while here, fix the diag code for route-down


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/20 13:58:54

Modified files:
	app/cwm        : menu.c 

Log message:
Allow ctrl-[ for abort (esc); from Benjamin Scher Purcell


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/09/20 15:10:22

Modified files:
	include        : stdlib.h 
	sys/sys        : termios.h 

Log message:
Remove duplicated includes in stdlib.h and termios.h

OK guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/20 15:51:54

Modified files:
	lang/gcc/6/patches: patch-gcc_config_arm_openbsd_h 

Log message:
Switch ARM default CPU to pcore, but disallow unaligned access.

not hooked up to the build, no bump.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 16:07:41

Modified files:
	build/mirrors  : openntpd-ftp.html.head 
	                 openntpd-portable.html.head 
	                 openssh-portable.html.head 

Log message:
fix an oversight and a mistake from the previous commit and replace
a few empty  <a name="blah"></a> constructs by nicer variants


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 16:07:55

Modified files:
	openssh        : portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/20 17:05:27

Modified files:
	regress/sys/kern/kqueue: Makefile kqueue-fdpass.c kqueue-flock.c 
	                         kqueue-fork.c kqueue-pipe.c 
	                         kqueue-process.c kqueue-pty.c 
	                         kqueue-random.c kqueue-signal.c 
	                         kqueue-timer.c kqueue-tun.c main.c 
Added files:
	regress/sys/kern/kqueue: main.h 

Log message:
To make debugging the kqueue test easier, always print the assertion
failure before returning.


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2016/09/20 19:12:57

Log message:
    Import net/iperf3, a rewritten version of iperf.
    
    iperf is a tool for active measurements of the maximum achievable bandwidth on
    IP networks.  It supports tuning of various parameters related to timing,
    protocols, and buffers.  For each test it reports the bandwidth, loss, and other
    parameters.
    
    This version, sometimes referred to as iperf3, is a redesign of an original
    version developed at NLANR / DAST.  iperf3 is a new implementation from scratch,
    with the goal of a smaller, simpler code base, and a library version of the
    functionality that can be used in other programs. iperf3 also incorporates a
    number of features found in other tools such as nuttcp and netperf, but were
    missing from the original iperf.  Note that iperf3 is not backwards compatible
    with the original iperf.
    
    prodding & patches from jca@, thanks!
    feedback & ok jca@ sthen@
    
    Status:
    
    Vendor Tag:	lteo
    Release Tags:	lteo_20160918
    
    N ports/net/iperf3/Makefile
    N ports/net/iperf3/distinfo
    N ports/net/iperf3/pkg/DESCR
    N ports/net/iperf3/pkg/PLIST
    N ports/net/iperf3/patches/patch-src_iperf_udp_c
    N ports/net/iperf3/patches/patch-src_portable_endian_h
    N ports/net/iperf3/patches/patch-src_iperf_api_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2016/09/20 19:14:35

Modified files:
	net            : Makefile 

Log message:
+iperf3


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/20 19:34:45

Modified files:
	usr.bin/ssh    : auth2-pubkey.c sshd_config.5 

Log message:
add a way for principals command to get see key ID and serial too


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/20 19:35:12

Modified files:
	regress/usr.bin/ssh: principals-command.sh 

Log message:
test all the AuthorizedPrincipalsCommand % expansions


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/20 20:22:08

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 21:49:10

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

Log message:
do some polishing and add a few labels for the reworked stable.html


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 21:49:20

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/20 22:01:18

Modified files:
	.              : stable.html 

Log message:
stable.html goes on a diet.  it was mostly just repeating other pages
and explained a lot of things irrelevant for -stable and did generally
a pretty good job at hiding the important things in a lot of text.
add links to the relevant documentation and remove the duplicated info.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/20 22:38:57

Modified files:
	lib/libc/db/hash: hash.c 
	lib/libc/db/recno: rec_close.c rec_open.c 
	lib/libc/gdtoa : misc.c 
	lib/libc/gen   : fts.c getcap.c nlist.c opendir.c 
	lib/libc/gmon  : gmon.c 
	lib/libc/net   : ethers.c freeaddrinfo.c inet_ntop.c rthdr.c 
	lib/libc/nls   : catopen.c 
	lib/libc/regex : engine.c regcomp.c 
	lib/libc/rpc   : xdr_rec.c 
	lib/libc/stdio : fgetln.c fgets.c fopen.c fread.c freopen.c 
	                 fsetpos.c fvwrite.c getdelim.c getw.c 
	                 setbuffer.c setvbuf.c stdio.c ungetc.c 
	                 vfscanf.c 
	lib/libc/stdlib: malloc.c setenv.c 
	lib/libc/time  : strftime.c 
	lib/libc/hash  : helper.c 

Log message:
Delete casts to off_t and size_t that are implied by assignments
or prototypes.  Ditto for some of the char* and void* casts too.

verified no change to instructions on ILP32 (i386) and LP64 (amd64)
ok natano@ abluhm@ deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/20 22:45:23

Modified files:
	usr.sbin/npppd/common: radish.h 

Log message:
Remove the use of cast.  It is unnecessary and potentially problematic.

input semarie
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/20 23:57:32

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

Log message:
fix the signposting for -EeFf by partially rewriting the descriptions;
diff from guenther, tweaked by me;

ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/21 00:02:03

Modified files:
	regress/lib/libpthread/pcap: pcap.c 

Log message:
set BIOCIMMEDIATE, makes the test work for lo0, which does more buffering
than regular interfaces


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 01:13:02

Modified files:
	regress/sys/net/rtable: Makefile.inc kern_compat.h 

Log message:
Test ART implementation by default.

RADIX code can be tested by doing "make RADIX=1"


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 01:41:49

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

Log message:
Remove recursive splsoftnet() calls, from David Hill.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 01:44:36

Modified files:
	sys/sys        : rwlock.h 

Log message:
Sprinkle some #ifdef _KERNEL, autumn is here.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 01:56:22

Modified files:
	sys/dev/usb    : xhci.c 

Log message:
Remove a hack now that the USB stack correctly set the maximum packet
size based on the device speed.

Tested by and ok jsg@, mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 02:55:21

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
SierraWireless MC7455

from Yannick Gravel, ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 02:56:17

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 02:57:17

Modified files:
	sys/dev/usb    : umsm.c 

Log message:
SierraWireless MC7455.

From Yannick Gravel, ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/21 03:22:07

Modified files:
	databases/hs-HDBC-mysql: Makefile distinfo 
Added files:
	databases/hs-HDBC-mysql/patches: patch-HDBC-mysql_cabal 
	                                 patch-Setup_lhs 

Log message:
Update to HDBC-mysql-0.7.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/21 03:35:00

Modified files:
	devel/ruby-gettext-setup: Makefile distinfo 
	devel/ruby-gettext-setup/pkg: PLIST 

Log message:
Minor update to 0.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/21 04:06:27

Modified files:
	security/dropbear: Makefile distinfo 

Log message:
update to dropbear-2016.74, fixes include a format string vulnerability
(CVE-2016-7406) and a problem importing malicious OpenSSH keys (CVE-2016-7407)
both of which could result in arbitrary code running as root in some conditions
(though the worst one requires usernames including '%' which is uncommon with
OpenBSD as adduser and useradd reject this, however it is possible by editing
the password file directly). See https://matt.ucc.asn.au/dropbear/CHANGES for
more details.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/21 04:19:13

Modified files:
	sys/sys        : rwlock.h 

Log message:
straighten the chairs


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/21 04:28:47

Modified files:
	sys/arch/armv7/imx: if_fec.c 

Log message:
Remove some dead code and only enable tx and rx interrupts.

ok patrick@, tom@, mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/21 04:40:39

Modified files:
	regress/sys/net: Makefile 

Log message:
Enter rtable


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/21 04:52:51

Modified files:
	net/transmission: Makefile 

Log message:
Update MASTER_SITES, based on one from Josh Grosse (maintainer), ok josh


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 04:56:01

Modified files:
	faq            : faq5.html 

Log message:
do not attempt to go from one release to another by compiling from source


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 05:24:29

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

Log message:
some more polishing: unify markup in 'get src', 'update src' and
'get ports'. use present tense instead of conditional in one
sentence and remove an explanation of the -q flag that was inserted
at some random place.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 05:24:45

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 05:27:04

Removed files:
	build/mirrors  : openntpd-ftp.html.head openntpd-ftp.html.mid2 

Log message:
remove unused skeleton files

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/21 05:33:05

Modified files:
	sys/arch/arm/arm: bcopyinout.S bus_space_notimpl.S copystr.S 
	                  cpufunc_asm.S exception.S irq_dispatch.S 
	                  locore.S sigcode.S vectors.S 
	sys/arch/arm/include: asm.h profile.h 

Log message:
Modernize arm assembly in the kernel for clang.
Based on a similar diff in bitrig.
No binary change when compiled with gcc.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ratchov@cvs.openbsd.org	2016/09/21 05:40:14

Modified files:
	audio/sox      : Makefile 
Added files:
	audio/sox/patches: patch-src_sndio_c 

Log message:
Take into account encoding's bits_per_sample. Fixes recording
of 24-bit files. Tested by many.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 05:49:42

Modified files:
	faq            : faq7.html 

Log message:
minor polishing of the scrollback buffer section


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/21 05:54:57

Modified files:
	usr.sbin/syslogd: syslogd.8 syslogd.c 

Log message:
Add an option to give syslogd a server CA that is used to validate
client certificates.  This prevent that malicious clients can send
fake messages.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/21 06:01:17

Modified files:
	regress/usr.sbin/syslogd: Client.pm Server.pm 
	                          args-server-tls-client-cert.pl 
	                          args-server-tls-client-fake.pl 
Added files:
	regress/usr.sbin/syslogd: args-client-tls-cert.pl 
	                          args-client-tls-fake.pl 
	                          args-client-tls-verify.pl 

Log message:
Test syslogd TLS client certificate validation.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 06:02:24

Modified files:
	faq            : faq7.html 

Log message:
better wording; refer also to the faq on the rc system


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 06:21:27

Modified files:
	sys/net80211   : ieee80211_input.c ieee80211_node.h 
	                 ieee80211_proto.h 

Log message:
When processing an ADDBA request, iwm(4) runs a task which sends a
command to the firmware and waits for confirmation. This command can
fail and there was no way we could recover from such an error.

Allow drivers to return EBUSY from their ic_ampdu_rx_start() handler to
tell the stack not to send a confirmation just yet. The stack provides
functions which the driver can call to accept or refuse the request.

There is no functional change yet. This just shuffles code around so
drivers may insert themselves into the process.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	millert@cvs.openbsd.org	2016/09/21 06:31:34

Modified files:
	security/sudo  : Makefile distinfo 

Log message:
Update to sudo 1.8.18


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 06:33:42

Modified files:
	faq            : faq7.html index.html 

Log message:
move the 'blanking the console' section up to the other wscons* stuff


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 06:41:53

Modified files:
	faq            : faq7.html 

Log message:
the rest of the page uses [key], not "key"


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 06:56:43

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

Log message:
Add the BSS's basic rates to iwm's LQ command, not all the rates.
Makes the firmware use appropriate Tx rates for ACKs.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 06:56:45

Modified files:
	faq            : faq7.html 

Log message:
mention wsconsctl.conf(5)


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 07:08:34

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

Log message:
Copy the AP's actual EDCA parameters into iwm's mac context command
rather than some fixed values present in this file since r1.1.
Allows the firmware to properly time its transmissions in 11n networks.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/21 07:18:03

Modified files:
	etc            : acme-client.conf 

Log message:
the account key(s) live in /etc/acme; OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 07:22:40

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

Log message:
For the keep-alive period in iwm's power command, use the DTIM period
specified by the AP, rather than the default DTIM period of our wireless
stack (which is not applicable when running as a client anyway).
And tell the firmware to disable power-saving.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/21 07:22:44

Modified files:
	sys/nfs        : nfs_serv.c 

Log message:
Fix nfsrv_symlink() indentation.  No binary change.
ok mpi@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 07:29:11

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

Log message:
Make iwm return EBUSY from its ic_ampdu_rx_start() handler and
call the functions provided by the wireless stack to accept or
refuse BA agreements depending on the status returned by firmware.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 07:53:18

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmvar.h 

Log message:
Properly support the mac context command in iwm. This was wrong in many ways.
This commit includes style fixes as well as actual bug fixes.

Remove the global in_assoc flag from the softc. We can just pass a fixed
argument to functions to indicate whether we're already associated.

Remove in_tfsid from the softc as well. It was implicitly set to zero
and never changed. A corresponding macro already exists so use it instead.

Always copy the BSSID into the mac context command, as the Linux driver does.
This helps the firmware during association.

Set the firmware state to 'associated' once we've moved to RUN state
and our assoc ID is known. Earlier versions of iwm used to set the
firmware to 'associated' but this was disabled in r1.91 since it
didn't work correctly due to bugs which are now fixed.

Use live DTIM information obtained from the AP, rather than using the
default DTIM period of our wireless stack.

Check return values of functions called after moving to RUN state.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 07:57:35

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

Log message:
Make iwm protect the session during association more like Linux does it.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/21 08:02:33

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

Log message:
Always set the bit which allows RTS in iwm's LQ command.
This bit was only set in 11n mode previously.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/21 08:06:50

Modified files:
	sbin/sysctl    : sysctl.c 
	sys/sys        : sysctl.h 
	sys/kern       : kern_sysctl.c 

Log message:
sysctl KERN_ARND is no longer used (in ports, it only occurs in fallback
paths of libevent).  This interface was the first generation of what
eventually became getentropy(2) and arc4random(3) -- june 1997!
Ports scan by sthen, general agreement guenther


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 09:13:21

Modified files:
	faq            : index.html faq8.html 

Log message:
remove ksh doesn't read my .profile. since 2009 we install a .Xdefaults
with XTerm*loginShell: true, so most of this item is quite outdated.
pointed out by andras farkas.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/21 09:26:54

Modified files:
	regress/sys/kern/kqueue: kqueue-pty.c 

Log message:
Use /dev/console as a template for the pseudo tty, stdin may be not
a terminal.  Check wether tcgetattr() can read the values.  Do not
only verify that kqueue does not report unwanted events but also
that expected events exist.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/21 09:53:56

ports/games/choria/files

Update of /cvs/ports/games/choria/files
In directory cvs.openbsd.org:/tmp/cvs-serv16538/files

Log Message:
Directory /cvs/ports/games/choria/files added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/21 10:00:01

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

Log message:
If not set, set hw_vendor to the name of the first pvbus.
This sets hw.vendor to "OpenBSD" if running on vmm(4) because it
doesn't provide an SMBIOS.

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/21 10:26:30

Modified files:
	usr.bin/yacc   : output.c 

Log message:
Fix bad indentation. One already existed in 1.20, one introduced in 1.21;
ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/21 10:42:09

Modified files:
	usr.sbin/syslogd: syslogd.8 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/21 10:43:17

Modified files:
	lib/libc/gen   : sysctl.3 

Log message:
no more KERN_ARND; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/21 10:55:42

Modified files:
	usr.bin/ssh    : match.c addrmatch.c 

Log message:
Revert two recent changes to negated address matching. The new
behaviour offers unintuitive surprises. We'll find a better way
to deal with single negated matches.

match.c 1.31:
> fix matching for pattern lists that contain a single negated match,
> e.g. "Host !example"
>
> report and patch from Robin Becker. bz#1918 ok dtucker@

addrmatch.c 1.11:
> fix negated address matching where the address list consists of a
> single negated match, e.g. "Match addr !192.20.0.1"
>
> Report and patch from Jakub Jelen. bz#2397 ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/21 11:03:54

Modified files:
	regress/usr.bin/ssh/unittests/match: tests.c 

Log message:
disable tests for affirmative negated match after backout of
match change


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/21 11:08:04

Modified files:
	sbin/bioctl    : bioctl.8 

Log message:
Be clearer with the description of bioctl(8)'s -r option.

ok jmc@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 11:17:21

Modified files:
	.              : stable.html 

Log message:
some more polishing and compressing


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/21 11:44:20

Modified files:
	usr.bin/ssh    : auth2-pubkey.c 

Log message:
cast uint64_t for printf


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/21 11:50:05

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
Add support for automatically selecting the number of rounds to use with
bcrypt pbkdf, based on system performance. This is based on the bcrypt
autorounds code we have in libc.

Discussed with djm@ and tedu@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/21 11:57:33

Modified files:
	sbin/bioctl    : bioctl.8 

Log message:
Document auto rounds.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/21 12:27:55

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

Log message:
Loadable kernel modules are gone.
ok millert, deraadt and tb, who sent the same diff to tech@ some time ago


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/21 12:31:06

Modified files:
	regress/bin/ps : command.sh 

Log message:
Fix a race in test.  Wait until the process shown by ps is really
up and running.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/21 12:51:05

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

Log message:
Use the correct local variable to get address & prefixlen in routing messages

This currently has no effect because route sockets are datagram
(PR_ATOMIC) sockets, so we only get one message at a time.  This means
that the parsing code could be simplified.  route(4) sockets cluebat
from claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/21 12:54:24

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

Log message:
Use a properly aligned buffer (malloc'd, not on stack) to get routing messages.

This fixes rtadvd on (at least) armv7.  Problem reported and fix tested
by Martin Brandenburg.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/21 13:03:04

ports/databases/sqlite3-tcl

Update of /cvs/ports/databases/sqlite3-tcl
In directory cvs.openbsd.org:/tmp/cvs-serv78561/sqlite3-tcl

Log Message:
Directory /cvs/ports/databases/sqlite3-tcl added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/21 13:03:13

ports/databases/sqlite3-tcl/pkg

Update of /cvs/ports/databases/sqlite3-tcl/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv90996/pkg

Log Message:
Directory /cvs/ports/databases/sqlite3-tcl/pkg added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/21 13:53:12

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
correctly return errors from kex_send_ext_info(). Fix from Sami Farin
via https://github.com/openssh/openssh-portable/pull/50


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2016/09/21 14:02:21

Modified files:
	.              : amd64.html 

Log message:
Remove caveat about rare early Intel CPUs without NX.  This is more
confusing than helpful nowadays.  ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/09/21 14:12:27

Modified files:
	sbin/disklabel : Makefile 

Log message:
Remove reference to zaurus

OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 14:19:38

Modified files:
	faq            : faq7.html 

Log message:
some markup fixes and reformatting in the first part of the
serial console section


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/21 14:26:24

Modified files:
	sysutils/mcollective: Makefile 

Log message:
Do not nail mcollective to ruby 2.2, works well with ruby 2.3

feedback/OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/21 14:27:40

Modified files:
	sysutils/mcollective: Makefile 
	sysutils/mcollective/pkg: mcollectived.rc 

Log message:
mcollectived needs --pid parameter in order to properly daemonize

feedback/OK jasper@, ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/21 14:28:38

Modified files:
	sysutils/facter: Makefile 

Log message:
Do not nail facter to ruby 2.2, works well with 2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/21 14:29:31

Modified files:
	sysutils/ruby-puppet: Makefile.inc 
	sysutils/ruby-puppet/4: Makefile 

Log message:
Do not nail puppet to ruby 2.2, works well with ruby 2.3

feedback/OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/21 14:31:28

Modified files:
	databases/puppetdb4: Makefile 

Log message:
Do not nail the plugin subpackage to ruby 2.2, works well with 2.3

feedback/OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/21 14:33:35

Modified files:
	databases/puppetdb4: Makefile 
	databases/puppetdb4/pkg: puppetdb.rc 

Log message:
Actually let the puppetdb run as the _puppetdb user instead of root.

in case of system upgrades, you may chown logfiles/cache/tempdir
to the _puppetdb user.

feedback/OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/09/21 17:16:42

Modified files:
	net/ucspi-tools: Makefile distinfo 
	net/ucspi-tools/pkg: PLIST 

Log message:
update ucspi-tools to 1.6
From Jan Klemkow (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/21 18:09:47

Modified files:
	usr.sbin/ypserv/mkalias: mkalias.c 

Log message:
include time.h for time()


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/21 18:47:19

Modified files:
	sys/dev        : radio.c 

Log message:
Fix indentation of a break statement.  No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/21 19:16:29

Modified files:
	regress/usr.sbin/relayd: Client.pm Server.pm 

Log message:
Call setsockopt(2) before listen(2) in relayd tests and adjust some
error messages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2016/09/21 20:13:18

Modified files:
	net/iperf3     : Makefile 
	net/iperf3/patches: patch-src_iperf_api_c 

Log message:
Default to IPv4; suggested by sthen@

Remove unnecessary DISTNAME; pointed out by jca@

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/09/21 20:29:57

Modified files:
	usr.bin/ssh    : sshconnect2.c 

Log message:
If ssh receives a PACKET_DISCONNECT during userauth it will cause
ssh_dispatch_run(DISPATCH_BLOCK, ...) to return without the session
being authenticated.  Check for this and exit if necessary.  ok djm@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 20:56:45

Modified files:
	faq            : faq14.html 

Log message:
change random offset in softraid RAID1 to 64 and there was an sd0
that should have been sd2 due to a softraid on wd0 -> sd0 conversion.
spotted by daniel ouellet

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/21 22:28:25

Modified files:
	lib/libcrypto/doc: EVP_EncryptInit.pod 

Log message:
revert documentation update for the clearning behavior we already reverted


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/21 22:50:19

Modified files:
	lib/libssl/src/crypto/evp: Tag: OPENBSD_6_0 evp_enc.c 

Log message:
back out calls to EVP_CIPHER_CTX_cleanup() in EVP_Encrypt/DecryptFinal

Software that refers to ctx after calling Final breaks with these changes.
revert parts of 1.31. ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/21 23:06:06

Modified files:
	lib/libssl/src/crypto: Tag: OPENBSD_6_0 opensslv.h 

Log message:
bump version for 2.4.3


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/09/21 23:06:58

Modified files:
	lib/libssl/src/crypto: Tag: OPENBSD_5_9 opensslv.h 

Log message:
bump version for 2.3.8


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 23:12:20

Modified files:
	faq            : faq7.html 

Log message:
reorganize and compress the scrollback buffer and switching consoles
sections a bit.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 23:19:36

Modified files:
	faq            : faq7.html 

Log message:
zap a few more words


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 23:41:58

Modified files:
	faq            : faq7.html 

Log message:
screen blanking goes on a diet: remove repetitions and lengthy
explanations; add display.msact instead.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 23:48:24

Modified files:
	faq            : faq7.html index.html 

Log message:
move the two wsconscfg(8) sections next to each other


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 23:50:49

Modified files:
	faq            : faq7.html index.html 

Log message:
move the three sections that depend on vga(4) features together


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/21 23:58:51

Modified files:
	faq            : faq7.html index.html 

Log message:
changed my mind: move blanking consoles further down


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/22 00:15:56

Modified files:
	faq            : faq7.html 

Log message:
zap a "sparc64 notes" header that is no longer needed now that
sparc is in the attic


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/22 00:18:58

Modified files:
	usr.sbin/relayd: relay.c 

Log message:
correct invalid use of sizeof
ok krw@ millert@ claudio@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/22 00:24:55

Modified files:
	faq            : faq7.html 

Log message:
mention the kbd(8) utility instead of the wscons(4) driver in the
remapping the keyboard section.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 00:57:40

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Improve ticket validity checking when tlsext_ticket_key_cb() callback
chooses a different HMAC algorithm.
Avert memory leaks if the callback preps the HMAC in some way.

Based on openssl commit 1bbe48ab149893a78bf99c8eb8895c928900a16f
but retaining a pre-callback length check to guarantee the callback
is provided the buffer that the API claims.

ok bcook@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 01:17:41

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Check for packet with truncated DTLS cookie.
Flip pointer comparison logic to avoid beyond-end-of-buffer pointers
to make it less likely a compiler will decide to screw you.

Based on parts of openssl commits
6f35f6deb5ca7daebe289f86477e061ce3ee5f46 and
89c2720298f875ac80777da2da88a64859775898

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/22 01:56:48

Modified files:
	usr.sbin/relayd: relay.c 

Log message:
Change function arguments from "unsigned char keyname[16]" to
"unsigned char *keyname" to make it clear that an array size can not
be inferred.  Suggested by millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/22 02:27:56

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

Log message:
Simplify assignment of sgi_ok variable in iwm_setrates(). No functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/22 02:28:38

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

Log message:
Remove some unused cruft from iwm, including a local namespace-polluting
definition of an ieee80211_tu_to_usec() macro...


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/22 04:12:25

Modified files:
	sys/netinet    : ip_input.c 

Log message:
Fix indentation.  No binary change.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/22 04:23:27

Modified files:
	sys/tmpfs      : tmpfs_subr.c 

Log message:
Fix indentation.  No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/22 04:25:34

Modified files:
	sys/arch/i386/isa: isa_machdep.c 

Log message:
Fix indentation.  No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/22 04:50:19

Modified files:
	sys/net        : pf.c 

Log message:
Fix indentation.  No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/22 06:33:50

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Avoid unbounded memory growth, which can be triggered by a client
repeatedly renegotiating and sending OCSP Status Request TLS extensions.

Fix based on OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/22 06:34:59

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
Improve on code from the previous commit.

ok bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/22 06:43:23

Modified files:
	sys/arch/armv7/imx: if_fec.c 

Log message:
Periodically call mii_tick() like all our other ethernet drivers that use
mii(4).  Should fix the link negotiation issues that people have been seeing.

ok jsg@, mikeb@, guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/22 06:55:24

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

Log message:
Introduce a new 'softclock' thread that will be used to execute timeout
callbacks needing a process context.

The function timeout_set_proc(9) has to be used instead of timeout_set(9)
when a timeout callback needs a process context.

Note that if such a timeout is waiting, understand sleeping, for a non
negligible amount of time it might delay other timeouts needing a process
context.

dlg@ agrees with this as a temporary solution.

Manpage tweaks from jmc@

ok kettenis@, bluhm@, mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/22 06:57:18

Modified files:
	archivers/snappy: Makefile 
	astro/ansiweather: Makefile 
	audio/goattracker: Makefile 
	audio/mikmod   : Makefile 
	audio/schismtracker: Makefile 
	devel/keystone : Makefile 
	devel/tig      : Makefile 
	editors/tweak  : Makefile 
	emulators/advancemame: Makefile 
	emulators/hatari: Makefile 
	emulators/virtualjaguar: Makefile 
	fonts/amigafonts: Makefile 
	fonts/blockzone: Makefile 
	games/asciiquarium: Makefile 
	graphics/ansilove: Makefile 
	misc/nyancat   : Makefile 
	net/cgterm     : Makefile 
	news/multimail : Makefile 
	textproc/jo    : Makefile 
	textproc/lua-lustache: Makefile 
	textproc/lua-markdown: Makefile 
	www/logswan    : Makefile 
	www/lynx       : Makefile 
	www/vimb       : Makefile 

Log message:
Update my mail address


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/22 07:08:20

Modified files:
	usr.sbin/sysmerge: sysmerge.sh 

Log message:
Make sure we don't have conflicting UIDs/GIDs when adding user/group.

reported by florian@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/22 07:13:31

Modified files:
	faq            : faq1.html 

Log message:
remove useless pair of parens


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/22 07:30:49

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

Log message:
shorten x509;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/22 07:44:02

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

Log message:
some minor cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/09/22 08:05:48

Modified files:
	x11/smplayer   : Makefile distinfo 
	x11/smplayer/patches: patch-src_prefgeneral_h 

Log message:
Update SMPlayer to 16.9.0

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/22 08:27:23

Modified files:
	graphics/mapnik: Makefile 

Log message:
Mark as BROKEN again.  The problem refuses to go away on its own.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/22 08:36:03

Modified files:
	app/cwm        : calmwm.h conf.c kbfunc.c mousefunc.c 

Log message:
Continue merging kb and mouse functions: fold
mousefunc_menu_{client,cmd,group} into the respective
kbfunc_menu_{client,cmd,group} functions; simply pass a flag down from
config denoting mouse action behaviour.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/22 08:48:23

Modified files:
	faq            : faq13.html 

Log message:
the dvd+rw-mediainfo package is called dvd+rw-tools now.

from ian sutton


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/09/22 08:50:11

Modified files:
	sys/net        : if.c 

Log message:
Raise spl level to IPL_SOFTNET before calling rt_ifmsg().

From dhill@, found the hardway by semarie@


CVSROOT:	/cvs
Module name:	www
Changes by:	sobrado@cvs.openbsd.org	2016/09/22 09:15:04

Modified files:
	.              : donations.html 

Log message:
Andreas Jasser has sent me a Sharp Zaurus SL-C3100.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/22 11:10:55

Modified files:
	faq            : faq6.html 

Log message:
link was missing a #. spotted by wuy13 () rpi edu


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/09/22 11:52:46

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

Log message:
update to irssi-0.8.20, fixes CVE-2016-7044 and CVE-2016-7045

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/22 11:52:53

Modified files:
	usr.bin/ssh    : kex.c myproposal.h 

Log message:
support plain curve25519-sha256 KEX algorithm now that it is
approaching standardisation (same algorithm is currently supported
as curve25519-sha256@libssh.org)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/09/22 11:54:36

Modified files:
	net/irssi      : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/irssi/patches: Tag: OPENBSD_6_0 
	                   patch-src_fe-common_core_formats_c 

Log message:
backport the diff to fix CVE-2016-7044 and CVE-2016-7045

ok sthen@ tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/22 11:55:13

Modified files:
	usr.bin/ssh    : sshd_config.5 ssh_config.5 

Log message:
mention curve25519-sha256 KEX


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 12:19:59

Modified files:
	lib/libc/arch/m88k: DEFS.h SYS.h 
	lib/libc/arch/m88k/sys: cerror.S 

Log message:
Simplify __cerror now that %r27 is always the TCB pointer.
Don't need a PLT relocation for __cerror.
Move macros for doing internal aliases in ASM from SYS.h to DEFS.h

__cerror tweaks by Miod Vallat, testing by aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 12:20:55

Modified files:
	lib/libc/arch/m88k: Symbols.list 

Log message:
m88k switched to RELRO


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 12:23:58

Modified files:
	lib/libc/arch/m88k/gen: _setjmp.S setjmp.S sigsetjmp.S 

Log message:
Switch from calling obsolete sig{block,setmask} to directly using the
sigprocmask syscall.
abort() can't return, so simplify the call, and use the internal name to
avoid the PLT.

no-return observation by Miod Vallat, testing by aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/22 12:32:58

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_5_9 t1_lib.c 

Log message:
MFC: Avoid unbounded memory growth in libssl, which can be triggered by a
TLS client repeatedly renegotiating and sending OCSP Status Request TLS
extensions.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/22 12:34:16

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_5_9 ssl_lib.c 

Log message:
MFC: Avoid falling back to a weak digest for (EC)DH when using SNI with
libssl.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/22 12:36:57

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_6_0 t1_lib.c 

Log message:
MFC: Avoid unbounded memory growth in libssl, which can be triggered by a
TLS client repeatedly renegotiating and sending OCSP Status Request TLS
extensions.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/22 12:37:36

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_6_0 ssl_lib.c 

Log message:
MFC: Avoid falling back to a weak digest for (EC)DH when using SNI with
libssl.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/22 12:57:02

Modified files:
	.              : errata59.html errata60.html 

Log message:
release libressl errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/22 13:17:17

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

Log message:
trim STANDARDS; ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/22 13:19:01

Modified files:
	usr.bin/ssh    : sshd_config.5 

Log message:
organise the token stuff into a separate section;
ok markus for an earlier version of the diff
ok/tweaks djm


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/09/22 13:38:13

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

Log message:
update python-nmap to 0.6.1.
ok benoit@.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/22 13:43:25

Modified files:
	sys/lib/libkern/arch/arm: divsi3.S 

Log message:
Add aeabi aliases.

ok guenther@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/22 13:58:22

Modified files:
	audio/sox      : Makefile 
Added files:
	audio/sox/patches: patch-src_sox_h 

Log message:
__attribute__ ((cdecl)) only makes sense for i386, change the ifdef to avoid
a bunch of very noisy warnings during build. ok Jan Stary (who also tested
armv7 and macppc).


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/22 14:45:23

Modified files:
	distrib/miniroot: install.sub 

Log message:
vi is not available on the install media.
Besides ... real men use ed!

OK krw halex deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/22 14:48:37

Modified files:
	distrib/miniroot: install.sub 

Log message:
The tape install method is gone for a while already.
Remove leftovers.

OK krw halex deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/22 15:15:41

Modified files:
	usr.bin/ssh    : kex.h 

Log message:
missing bit from previous commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/22 15:18:06

Modified files:
	security/openssl: Makefile distinfo 
	security/openssl/patches: patch-Makefile_org 
	security/openssl/pkg: PLIST 

Log message:
security update to OpenSSL 1.0.2i
major library bump because dtls1_clear_record_buffer() was removed


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/22 15:30:17

Modified files:
	multimedia/imagination: Makefile 

Log message:
- regen WANTLIB to unbreak after sox libmagic removal, found by naddy
- remove MODULES=devel/gettext, from giovanni@
- correct audio/sox deps, it's currently listed as BUILD+RUN_DEPENDS when
it should be LIB_DEPENDS.

ok giovanni (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 15:35:25

Modified files:
	lib            : check_sym 

Log message:
Add copyright


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 15:37:02

Modified files:
	lib            : check_sym 

Log message:
Simplify mips64 GOTSYM bits to eliminate a couple temp files
Remove extra file truncation that the at-start bits rendered superfluous


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/22 16:04:02

Modified files:
	sys/dev        : rnd.c 

Log message:
Stop pushing version & cfdata into as entropy, since the contents are
known and we rely on the bootpath to prime us anyways.
This also solves the issue raised by kettenis, of version potentially
being non-word aligned
ok kettenis djm


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/22 20:37:26

Modified files:
	sys/dev        : rnd.c 
	sbin/sysctl    : sysctl.8 

Log message:
kern.arandom no longer exists
from rob pierce


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/22 20:53:46

Modified files:
	lib/libc/rpc   : svc_auth.c 

Log message:
s/alloctaed/allocated/ in comment


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/23 00:17:43

Modified files:
	bin/ed         : ed.1 

Log message:
remove the note about the list command (l) displaying a --More--
prompt for huge lines (according to otto this happens only when
BACKWARDS is not defined);

ok otto


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2016/09/23 00:28:08

Modified files:
	bin/ps         : ps.1 ps.c 

Log message:
Attempt to use stdout, stderr, or stdin terminal widths if they exist.

This behavior already existed but was unintentionally lost in revision
1.70 of ps.c.

ok millert@ tb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/23 01:15:30

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/23 01:29:24

Modified files:
	usr.bin/aucat  : dsp.c 

Log message:
Fix many typos, from Michael W. Bombardieri <mb at ii.net>, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/23 02:18:00

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
Add Yamaha UR22 audio interface.
From Michael W. Bombardieri <mb at ii.net>, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/23 02:19:24

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/23 02:21:22

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Add quirk to allow Yamaha UR22 to attach as uaudio(4). From
Michael W. Bombardieri <mb at ii.net>. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:00:11

Modified files:
	net/ocserv     : Makefile distinfo 
	net/ocserv/patches: patch-configure_ac patch-doc_sample_config 

Log message:
update to ocserv-0.11.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:13:39

Modified files:
	databases/sqlite3: Makefile distinfo 
Added files:
	databases/sqlite3/pkg: DESCR PLIST 
Removed files:
	databases/sqlite3/patches: patch-Makefile_in 
	                           patch-src_pthread_stub_c 
	                           patch-src_sqliteInt_h 
	                           patch-src_sqlite_h_in patch-src_utf_c 
	databases/sqlite3/pkg: DESCR-lemon DESCR-main DESCR-tcl 
	                       PLIST-lemon PLIST-main PLIST-tcl 

Log message:
Re-enable the main sqlite3 library/binary in ports and update to 3.14.2.
Tcl support will move to databases/sqlite3-tcl, other ports will be adjusted
in a set of upcoming commits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:14:53

Modified files:
	databases      : Makefile 
Added files:
	databases/sqlite3-tcl: Makefile distinfo 
	databases/sqlite3-tcl/pkg: DESCR PLIST 

Log message:
Readd sqlite3 Tcl bindings.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:15:18

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Remove sqlite3 quirks entry.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:16:58

Modified files:
	audio/glyr     : Makefile 
	audio/gogglesmm: Makefile 
	audio/libgpod  : Makefile 
	audio/mpd      : Makefile 
	audio/xmms2    : Makefile 
	databases/dbic++: Makefile 
	databases/ksql : Makefile 
	databases/libdbi-drivers: Makefile 
	databases/libzdb: Makefile 
	databases/luadbi: Makefile 
	databases/luasqlite3: Makefile 
	databases/ocaml-sqlite3: Makefile 
	databases/p5-DBD-SQLite: Makefile 
	databases/py-apsw: Makefile 
	databases/qt3-sqlite3-plugin: Makefile 
	databases/ruby-do_sqlite3: Makefile 
	databases/ruby-sqlite3: Makefile 
	databases/ruby-swift-db-mysql: Makefile 
	databases/ruby-swift-db-sqlite3: Makefile 
	databases/sqlitebrowser: Makefile 
	databases/sqlports: Makefile 
	databases/tdbc-sqlite3: Makefile 
	devel/cvstrac  : Makefile 
	devel/kyua-cli : Makefile 
	devel/libsoup  : Makefile 
	devel/monotone : Makefile 
	devel/qt-creator: Makefile 
	devel/rapidsvn : Makefile 
	devel/subversion: Makefile 
	devel/xulrunner/24: Makefile 
	games/choria   : Makefile 
	games/flightgear/base: Makefile 
	games/gcompris : Makefile 
	games/minetest : Makefile 
	games/pokerth  : Makefile 
	games/stone-soup: Makefile 
	games/xmoto    : Makefile 
	geo/foxtrotgps : Makefile 
	geo/gdal       : Makefile 
	geo/mapcache   : Makefile 
	geo/merkaartor : Makefile 
	geo/postgis    : Makefile 
	geo/qgis       : Makefile 
	geo/spatialite/gis: Makefile 
	geo/spatialite/gui: Makefile 
	geo/spatialite/librasterlite: Makefile 
	geo/spatialite/librasterlite2: Makefile 
	geo/spatialite/librewms: Makefile 
	geo/spatialite/libspatialite: Makefile 
	geo/spatialite/tools: Makefile 
	geo/viking     : Makefile 
	graphics/colord: Makefile 
	graphics/mapnik: Makefile 
	lang/io        : Makefile 
	lang/jimtcl    : Makefile 
	lang/pypy      : Makefile 
	lang/python    : Makefile.inc 
	lang/python/2.7: Makefile 
	lang/python/3.4: Makefile 
	lang/python/3.5: Makefile 
	lang/seed7     : Makefile 
	mail/bogofilter: Makefile 
	mail/courier-authlib: Makefile 
	mail/dovecot   : Makefile 
	mail/dspam     : Makefile 
	mail/mozilla-thunderbird: Makefile 
	mail/opensmtpd-extras: Makefile 
	mail/postfix   : Makefile.inc 
	mail/postfix/snapshot: Makefile 
	mail/postfix/stable: Makefile 
	mail/rspamd    : Makefile 
	multimedia/mediatomb: Makefile 
	multimedia/minidlna: Makefile 
	multimedia/motion: Makefile 
	net/filezilla  : Makefile 
	net/freeradius3: Makefile 
	net/hpodder    : Makefile 
	net/ircd-ratbox: Makefile 
	net/libaccounts-glib: Makefile 
	net/ntopng     : Makefile 
	net/owncloudclient: Makefile 
	net/pidgin-sipe: Makefile 
	net/pmacct     : Makefile 
	net/poco       : Makefile 
	net/powerdns   : Makefile 
	net/seafile/ccnet: Makefile 
	net/seafile/client: Makefile 
	net/seafile/seafile: Makefile 
	net/telepathy/telepathy-logger: Makefile 
	net/zabbix     : Makefile 
	productivity/akonadi: Makefile 
	security/aircrack-ng: Makefile 
	security/cvechecker: Makefile 
	security/cyrus-sasl2: Makefile 
	security/john-jumbo: Makefile 
	security/libfprint: Makefile 
	security/nss   : Makefile 
	security/opendnssec: Makefile 
	security/softhsm: Makefile 
	security/yubiserve: Makefile 
	shells/nsh     : Makefile 
	sysutils/bacula: Makefile 
	telephony/asterisk: Makefile 
	textproc/link-grammar: Makefile 
	textproc/redland: Makefile 
	textproc/zathura/core: Makefile 
	www/aria2      : Makefile 
	www/firefox-esr: Makefile 
	www/kcaldav    : Makefile 
	www/kcaldav/patches: patch-Makefile 
	www/mongrel2   : Makefile 
	www/mozilla    : mozilla.port.mk 
	www/newsbeuter : Makefile 
	www/seamonkey  : Makefile 
	x11/gnome/gedit-plugins: Makefile 
	x11/gnome/nautilus: Makefile 
	x11/gnustep/gworkspace: Makefile 
	x11/gnustep/sqlclient: Makefile 
	x11/pinot      : Makefile 
	x11/qt4        : Makefile 
	x11/qt5        : Makefile 
	x11/xfce4/thunar-vcs: Makefile 
Added files:
	games/choria/files: FindSqlite.cmake 
	games/choria/patches: patch-CMakeLists_txt 

Log message:
Cope with moving sqlite3 back to ports.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:18:05

Modified files:
	.              : Makefile.cross 
	usr.bin        : Makefile 
	include        : Makefile 
	lib            : Makefile 
	share/man/man3 : intro.3 

Log message:
Unhook sqlite3.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:18:38

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.socppc md.sparc64 mi 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:21:35

Removed files:
	usr.bin/sqlite3: Makefile shell.c sqlite3.1 

Log message:
remove usr.bin/sqlite3, it has moved back to ports


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:22:03

Removed files:
	lib/libsqlite3 : Makefile VERSION addopcodes.awk mkopcodec.awk 
	                 mkopcodeh.awk shlib_version sqlite3.pc 
	                 sqlite3.pc.in 
	lib/libsqlite3/ext: README.txt 
	lib/libsqlite3/ext/async: README.txt sqlite3async.c 
	                          sqlite3async.h 
	lib/libsqlite3/ext/fts1: README.txt ft_hash.c ft_hash.h fts1.c 
	                         fts1.h fts1_hash.c fts1_hash.h 
	                         fts1_porter.c fts1_tokenizer.h 
	                         fts1_tokenizer1.c fulltext.c fulltext.h 
	                         simple_tokenizer.c tokenizer.h 
	lib/libsqlite3/ext/fts2: README.tokenizers README.txt fts2.c 
	                         fts2.h fts2_hash.c fts2_hash.h 
	                         fts2_icu.c fts2_porter.c 
	                         fts2_tokenizer.c fts2_tokenizer.h 
	                         fts2_tokenizer1.c mkfts2amal.tcl 
	lib/libsqlite3/ext/fts3: README.content README.syntax 
	                         README.tokenizers README.txt fts3.c 
	                         fts3.h fts3Int.h fts3_aux.c fts3_expr.c 
	                         fts3_hash.c fts3_hash.h fts3_icu.c 
	                         fts3_porter.c fts3_snippet.c 
	                         fts3_term.c fts3_test.c 
	                         fts3_tokenize_vtab.c fts3_tokenizer.c 
	                         fts3_tokenizer.h fts3_tokenizer1.c 
	                         fts3_unicode.c fts3_unicode2.c 
	                         fts3_write.c fts3speed.tcl 
	                         mkfts3amal.tcl 
	lib/libsqlite3/ext/fts3/tool: fts3view.c 
	lib/libsqlite3/ext/fts3/unicode: CaseFolding.txt UnicodeData.txt 
	                                 mkunicode.tcl parseunicode.tcl 
	lib/libsqlite3/ext/icu: README.txt icu.c sqliteicu.h 
	lib/libsqlite3/ext/misc: amatch.c closure.c compress.c eval.c 
	                         fileio.c fuzzer.c ieee754.c nextchar.c 
	                         percentile.c regexp.c rot13.c 
	                         showauth.c spellfix.c totype.c vfslog.c 
	                         vtshim.c wholenumber.c 
	lib/libsqlite3/ext/rtree: README rtree.c rtree.h rtree1.test 
	                          rtree2.test rtree3.test rtree4.test 
	                          rtree5.test rtree6.test rtree7.test 
	                          rtree8.test rtree9.test rtreeA.test 
	                          rtreeB.test rtreeC.test rtreeD.test 
	                          rtreeE.test rtreeF.test rtree_perf.tcl 
	                          rtree_util.tcl sqlite3rtree.h 
	                          tkt3363.test viewrtree.tcl 
	lib/libsqlite3/ext/userauth: sqlite3userauth.h user-auth.txt 
	                             userauth.c 
	lib/libsqlite3/src: alter.c analyze.c attach.c auth.c backup.c 
	                    bitvec.c btmutex.c btree.c btree.h 
	                    btreeInt.h build.c callback.c complete.c 
	                    ctime.c date.c dbstat.c delete.c expr.c 
	                    fault.c fkey.c func.c global.c hash.c hash.h 
	                    hwtime.h insert.c journal.c legacy.c 
	                    lempar.c loadext.c main.c malloc.c mem0.c 
	                    mem1.c mem2.c mem3.c mem5.c memjournal.c 
	                    msvc.h mutex.c mutex.h mutex_noop.c 
	                    mutex_unix.c mutex_w32.c notify.c os.c os.h 
	                    os_common.h os_setup.h os_unix.c os_win.c 
	                    os_win.h pager.c pager.h parse.y pcache.c 
	                    pcache.h pcache1.c pragma.c pragma.h 
	                    prepare.c printf.c random.c resolve.c 
	                    rowset.c select.c sqlite.h.in sqlite3.h 
	                    sqlite3.rc sqlite3ext.h sqliteInt.h 
	                    sqliteLimit.h status.c table.c tclsqlite.c 
	                    test1.c test2.c test3.c test4.c test5.c 
	                    test6.c test7.c test8.c test9.c test_async.c 
	                    test_autoext.c test_backup.c test_blob.c 
	                    test_btree.c test_config.c test_demovfs.c 
	                    test_devsym.c test_fs.c test_func.c 
	                    test_hexio.c test_init.c test_intarray.c 
	                    test_intarray.h test_journal.c 
	                    test_loadext.c test_malloc.c 
	                    test_multiplex.c test_multiplex.h 
	                    test_mutex.c test_onefile.c test_osinst.c 
	                    test_pcache.c test_quota.c test_quota.h 
	                    test_rtree.c test_schema.c test_server.c 
	                    test_sqllog.c test_stat.c test_superlock.c 
	                    test_syscall.c test_tclvar.c test_thread.c 
	                    test_vfs.c test_vfstrace.c test_wsd.c 
	                    threads.c tokenize.c treeview.c trigger.c 
	                    update.c utf.c util.c vacuum.c vdbe.c vdbe.h 
	                    vdbeInt.h vdbeapi.c vdbeaux.c vdbeblob.c 
	                    vdbemem.c vdbesort.c vdbetrace.c vtab.c 
	                    vxworks.h wal.c wal.h walker.c where.c 
	                    whereInt.h wherecode.c whereexpr.c 
	lib/libsqlite3/tool: build-all-msvc.bat build-shell.sh 
	                     checkSpacing.c diffdb.c extract.c 
	                     fast_vacuum.c fragck.tcl fuzzershell.c 
	                     genfkey.README genfkey.test getlock.c 
	                     lemon.c lempar.c loadfts.c logest.c 
	                     mkautoconfamal.sh mkkeywordhash.c 
	                     mkopts.tcl mkpragmatab.tcl mkspeedsql.tcl 
	                     mksqlite3c-noext.tcl mksqlite3c.tcl 
	                     mksqlite3h.tcl mksqlite3internalh.tcl 
	                     mkvsix.tcl offsets.c omittest.tcl 
	                     opcodeDoc.awk pagesig.c restore_jrnl.tcl 
	                     rollback-test.c showdb.c showjournal.c 
	                     showlocks.c showstat4.c showwal.c soak1.tcl 
	                     space_used.tcl spaceanal.tcl speedtest.tcl 
	                     speedtest16.c speedtest2.tcl speedtest8.c 
	                     speedtest8inst1.c split-sqlite3c.tcl 
	                     sqldiff.c stack_usage.tcl symbols-mingw.sh 
	                     symbols.sh tostr.awk varint.c 
	                     vdbe-compress.tcl vdbe_profile.tcl 
	                     warnings-clang.sh warnings.sh 
	lib/libsqlite3/tool/win: sqlite.vsix 
	lib/libsqlite3/tsrc: header_regen pthread_stub.c 

Log message:
remove lib/libsqlite3, it has moved back to ports


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/09/23 03:47:42

Modified files:
	faq            : current.html 

Log message:
Add sqlite3 notes to current.html. Summary:

rm /usr/bin/sqlite3
rm /usr/include/sqlite3*.h
rm /usr/lib/pkgconfig/sqlite3.pc
rm /usr/libdata/perl5/site_perl/amd64-openbsd/sqlite3*.ph
rm /usr/share/man/man1/sqlite3.1

# For normal users: wait for new packages before removing old libs.
# For bulk builders: you MUST clean before building packages.

rm /usr/lib/libsqlite3*


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/23 04:09:07

Modified files:
	sys/net        : bfd.c 

Log message:
remove splsoftnet around the socket functions.  if they need it, they
will call it themselves.

also ensure that bfdclear is protected by softnet.

requested by claudio@ and mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/23 04:11:14

Modified files:
	lang/gcc/6/patches: patch-gcc_ada_gcc-interface_Makefile_in 
	lang/gcc/6/pkg : PLIST-ada 

Log message:
Do not install a dangling symlink to (non-existent) standard.ads.h.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/23 04:20:20

Modified files:
	sys/net        : bfd.c 

Log message:
only set the diag code when we we decide to fail it, not when the first
problem is seen


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/23 04:52:18

Modified files:
	devel/arm-none-eabi/gdb: Makefile 

Log message:
do not pick up guile2


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/23 04:52:30

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

Log message:
Specify a page size boundary for Tx segments


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/23 05:01:35

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

Log message:
Improve error handling when we fail to send the RNDIS message


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/23 05:32:13

Modified files:
	sys/dev/pv     : ndis.h 

Log message:
Fixup the NDIS_OFFLOAD_PARAMS_SIZE_6_1 definition


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/23 05:38:21

Modified files:
	sys/arch/arm/arm: arm32_machdep.c 

Log message:
Use "%s" to print the version string.  Avoids a "format string is not a
string literal" warning from clang and matches what we do on amd64.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 06:04:25

Modified files:
	usr.sbin/syslogd: syslogd.8 

Log message:
Improve syslogd(8) man page.
Written together with jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/23 06:06:15

Modified files:
	usr.sbin/relayd: relay.c 

Log message:
use sizeof instead of constant 16 in function calls
suggested by and ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/23 06:50:17

Modified files:
	sys/net        : bfd.c 

Log message:
based on a more careful reading of the spec, we're not allowed to make
decisions on what the "my discriminator" value is from our neighbor.  we
should only copy it and send it back.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 07:13:13

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

Log message:
With the new large socket buffer sizes, syslogd could use more mbufs
for TCP or TLS connections than before.  It makes no sense to buffer
messages in kernel, the dynamic limit there makes testing the dropped
message statistics unreliable.  Syslog has no high performance
requirements, so limit all TCP socket buffers to 64 KB.
OK henning@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/23 07:28:07

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

Log message:
Configure NDIS VLAN and MTU parameters for NVSP 2 and newer backends


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/23 07:43:36

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

Log message:
Setup checksum offloading instead of relying on the default configuraiton


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/23 07:56:08

Modified files:
	usr.sbin/switchd: imsg_util.c 

Log message:
It is ok to call free() on NULL pointers.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/23 08:06:29

Modified files:
	sys/net        : bfd.c 

Log message:
since the kernel ticks are every 10ms, bump our minimum up a little bit.
make it harder to overload the kernel


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 08:35:15

Modified files:
	regress/usr.sbin/syslogd: Client.pm Server.pm 
	                          args-dropped-sighup-tcp.pl 
	                          args-dropped-sighup-tls.pl 
	                          args-dropped-sigterm-tcp.pl 
	                          args-dropped-sigterm-tls.pl 
	                          args-dropped-tcp.pl 
	                          args-dropped-tls.pl args-sync-tcp.pl 

Log message:
The TCP socket buffer size for syslogd has changed.  Adapt tests
where we count the dropped messages.  A different number gets stuck
in the kernel buffers now which is not included in the syslogd
statistics.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/09/23 08:36:08

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

Log message:
Rework Per Packet Info handling

Per Packet Info is an NDIS meta information embedded in the RNDIS
message to communicate various offloading and scheduling operations
with the backend.  Due to various versions of NDIS supported by
Hyper-V some of the offloading features may or may not be available.

This commit brings support for IP and protocol checksum offloading
as well as initial code for hardware VLAN tagging and jumbo frames
where supported.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/09/23 08:40:10

Modified files:
	editors/ht     : Makefile distinfo 
	editors/ht/patches: patch-configure 
	editors/ht/pkg : DESCR 

Log message:
Update to HT 2.1.0

ok benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 09:08:10

Modified files:
	regress/usr.bin/mandoc/db/dbm_dump: Makefile 
	regress/usr.bin/mandoc/db/run: Makefile 

Log message:
Add dependencies to build the required test tools for mandoc on
demand.  This is necessary to run make regress without make all or
make build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/23 09:22:50

Modified files:
	x11/qt5        : Makefile 
Added files:
	x11/qt5/patches: 
	                 patch-qtbase_src_plugins_platforms_xcb_qxcbscreen_cpp 

Log message:
Fix SIGFPE when using Xvfb, backported from Qt 5.6

OK dcoppa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/23 09:25:23

Modified files:
	www/ruby-capybara-webkit: Makefile distinfo 
	www/ruby-capybara-webkit/pkg: PLIST 
Added files:
	www/ruby-capybara-webkit/patches: patch-src_webkit_server_pro 

Log message:
Update to capybara-webkit 1.11.1

Set USE_WXNEEDED, as the webkit_server executable uses W|X code.
Also set LDFLAGS to make sure wxneeded is set by the linker.
Add a patch to the qmake file so that LDFLAGS, CFLAGS, and
CXXFLAGS are respected.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/23 09:25:58

Modified files:
	www/ruby-capybara: Makefile distinfo 
	www/ruby-capybara/pkg: PLIST 

Log message:
Update to capybara 2.7.1


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 09:46:39

Modified files:
	usr.sbin/syslogd: syslogd.8 syslogd.c 

Log message:
Document certificate handling in syslogd(8) man page.
Written together with jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 10:29:28

Modified files:
	usr.sbin/syslogd: syslogd.8 

Log message:
Add some more improvements from jmc@ to syslogd(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/23 11:59:17

Modified files:
	sys/arch/armv7/imx: files.imx imx.c imxocotp.c imxtemp.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Attach imxocotp(4) using the fdt.  Since this means that imxtemp(4) attaches
before imxocotp(4), delay reading the temperature sensor calibration
information until after imxocotp(4) attaches.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 12:27:59

Modified files:
	devel/p5-Test-Portability-Files: Makefile distinfo 

Log message:
update p5-Test-Portability-Files to 0.07


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/23 12:39:54

Removed files:
	regress/sys/kern/mquery: Makefile mquery.c 

Log message:
Zap. Has been disabled for a long time and makes unholy assumptions about
the address pace layout. ok bluhhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/23 12:40:30

Modified files:
	regress/sys/kern: Makefile 

Log message:
Zap mquery test for good


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 12:41:14

Modified files:
	devel/p5-AnyEvent: Makefile distinfo 

Log message:
update AnyEvent to 7.13
enable the loop tests, they pass now


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 12:56:50

Modified files:
	regress/sys/kern/ptrace: Makefile 

Log message:
Making the regress target depends on building PROG.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 13:05:55

Modified files:
	usr.sbin/syslogd: syslogd.8 

Log message:
Revert a wording change.  Requested by jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/09/23 13:45:39

Modified files:
	devel/cmocka   : Makefile distinfo 
	devel/cmocka/patches: patch-include_cmocka_h 
Removed files:
	devel/cmocka/patches: patch-ConfigureChecks_cmake 

Log message:
update cmocka to 1.1.0.
ok benoit@, input from jca@ and ok@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 14:02:00

Modified files:
	regress/usr.sbin/httpd/tests: Makefile 

Log message:
Remove leftovers from relayd tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 14:04:21

Modified files:
	regress/usr.sbin/relayd: Makefile 

Log message:
Check wether sudo or doas is working once at the beginning of the
test.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/23 15:49:30

Modified files:
	lib/libcrypto  : Makefile 

Log message:
Append to CLEANFILES instead of replacing it, so libcrypto.pc is
deleted on make clean.

ok millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/23 17:08:36

Modified files:
	audio/cmus     : Makefile 
Added files:
	audio/cmus/patches: patch-sndio_c 

Log message:
Fix 24/32-bits output support. From MAINTAINER.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/23 17:13:37

Modified files:
	print/texinfo  : Makefile 

Log message:
PLIST requires mktexlsr but the dependency is not included in the
RUN_DEPENDS. OK MAINTAINER. Bug reported by Edgar Pettijohn.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/23 18:21:28

Modified files:
	lang/racket-minimal: Makefile 

Log message:
Add sqlite3 as dependency.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/23 18:43:25

Modified files:
	faq            : faq1.html 

Log message:
fix apropos/man -k output:
there is no space between man page and the section number in parens


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/23 18:45:45

Modified files:
	faq            : faq1.html 

Log message:
zap two unnecessary sentences and replace quotes with markup


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/23 19:01:38

Modified files:
	regress/gnu/egcs/gcc-bounds: Makefile getcwd-1.c.exp.gcc4 

Log message:
Format of warning messages has changed in binutils-2.17.  Remove
variable line number in text segment.  Adapt expected gcc linker
output in regress test.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/23 19:02:21

Modified files:
	faq            : faq1.html 

Log message:
swap order of two words.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/23 19:06:37

Modified files:
	faq            : faq1.html 

Log message:
remove "how do i get color man pages on xterm?" section.
this doesn't seem very useful.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/23 20:20:42

Modified files:
	faq            : faq1.html 

Log message:
shrink the reporting bugs section a bit. mention sendbug, dmesg and
bugs@ and refer to report.html for the details.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2016/09/23 20:27:14

Modified files:
	faq            : current.html 

Log message:
change the sqlite ph removal line to work on more archs


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/23 20:52:40

Modified files:
	faq            : faq1.html 

Log message:
some markup fixes in the 'get further information' section


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/23 21:22:12

Modified files:
	.              : ddb.html 
	faq            : faq1.html 

Log message:
move some ddb examples from the "getting to know openbsd" faq to ddb.html.
while there, tidy ddb.html up a little.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/24 01:26:15

Modified files:
	regress/sys/kern/noexec: noexec.c 

Log message:
recpect W^X, sparc64 still has a problem: non-exec mmap: execute
#1 is done, the others not. ok kettenis@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/24 01:32:32

Modified files:
	security/gnupg2: Makefile 

Log message:
gnupg2 needs a LIB_DEPENDS on databases/sqlite3, missed in previous run because
this didn't start pulling in sqlite until the 2.1.15 update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/24 02:12:11

Modified files:
	mail/dspam     : Makefile 

Log message:
Fix dspam's LIB_DEPENDS/WANTLIB to unbreak ldap flavour following sqlite3 move.
Stop using groff, there are now only unimportant whitespace/date format changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/24 02:15:16

Modified files:
	mail/dspam     : Makefile 

Log message:
use slightly more uniform Makefile formatting


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/24 04:07:44

Modified files:
	faq            : current.html 

Log message:
simplify: use a * instead of $(uname -p).  suggested by aja via sthen.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/24 04:10:59

Modified files:
	share/man/man5 : pf.conf.5 

Log message:
Specify "to" addresses in one of the examples that shows use of af-to for
inet6->inet. Without this, local network traffic (including neighbour
discovery etc) will also get translated. From Peter J. Philipp, with a
tweak to break long lines.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/24 04:21:45

Modified files:
	faq            : current.html 

Log message:
some markup tweaks


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/24 04:28:52

Modified files:
	faq            : current.html 

Log message:
typo: backed -> back


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/24 05:01:39

Modified files:
	textproc/p5-XML-DOM: Makefile distinfo 

Log message:
update to p5-XML-DOM-1.46


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/24 05:03:32

Modified files:
	net/telepathy/folks: Makefile distinfo 
	net/telepathy/folks/pkg: PLIST 

Log message:
update to folks-0.11.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/24 05:08:29

Modified files:
	.              : INDEX 

Log message:
post-sqlite-carnage sync: 9598


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/24 05:30:59

Modified files:
	usr.sbin/syslogd: syslogd.8 

Log message:
improve DESCRIPTION;
from bluhm and myself


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/24 05:32:25

Modified files:
	usr.sbin/syslogd: syslogd.8 

Log message:
sort FILES;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/24 06:11:54

Modified files:
	x11/gnome/gucharmap: Makefile distinfo 

Log message:
update to gucharmap-9.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/24 06:14:21

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 
	devel/ruby-rspec/specinfra/pkg: PLIST 

Log message:
update to specinfra-2.62.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/24 06:17:06

Modified files:
	devel/libgdata : Makefile distinfo 

Log message:
update to libgdata-0.17.6


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 06:32:30

Modified files:
	sys/arch/arm/conf: files.arm 
Added files:
	sys/lib/libkern/arch/arm: __aeabi_ldivmod.S __aeabi_uldivmod.S 

Log message:
Add an implementation of __aeabi_ldivmode() and __aeabi_uldivmod(); clang
generates calls to these functions when compiling an armv7 kernel.

Code from NetBSD's unified userland+kernel implementation, with lots of
irrelevant (for us) #ifdefs removed.

ok patrick@, guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/24 06:35:38

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_cpp 
	                    patch-tools_clang_lib_Driver_Tools_cpp 
Added files:
	devel/llvm/patches: patch-lib_Support_Triple_cpp 

Log message:
Adjust default CPU for OpenBSD/arm and set proper ABI.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/24 06:43:37

Modified files:
	lib/libc/gen   : getnetgrent.c 

Log message:
Fix matching when all of user, host and domain are specified.
OK guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/24 06:46:53

Modified files:
	x11/gnome/libgnomekbd: Makefile distinfo 
	x11/gnome/libgnomekbd/pkg: PLIST 

Log message:
Update to libgnomekbd-3.22.0.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/24 06:48:16

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.24.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/24 06:53:27

Modified files:
	www/seamonkey  : Makefile 

Log message:
seamonkey needs -I/usr/local/include as well, found by naddy (missed in my
earlier build because it's BROKEN-i386).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 06:59:42

Modified files:
	sys/dev/usb/dwc2: dwc2.c dwc2var.h 

Log message:
Remove unused functions.

ok jmatthew@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 07:03:47

Modified files:
	sys/arch/arm/arm: cpu.c pmap7.c 
	sys/arch/arm/cortex: agtimer.c 

Log message:
Remove a couple of unsused static inline functions.  Also remove a comparis
of an array to a null pointer that is always false.  Found with clang.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/24 07:15:07

Modified files:
	sysutils/beats/filebeat: Makefile distinfo 
	sysutils/beats/packetbeat: Makefile distinfo 
	sysutils/beats/topbeat: Makefile distinfo 

Log message:
update beats to 1.3.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 07:40:12

Modified files:
	sys/arch/armv7/stand/efiboot: conf.c exec.c 

Log message:
Pass esym to the kernel in r0.  Since u-boot passes 0 in this register, we
can easily determine that the value passed is valid and use it to initialize
the kernel symbol tableo.

ok tom@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 07:43:25

Modified files:
	sys/arch/arm/arm: locore.S 
	sys/arch/arm/include: machdep.h 
	sys/arch/armv7/armv7: armv7_machdep.c armv7_start.S 

Log message:
If the value of r0 upon entering the kernel is zero, interpret this as the
address of the end of the symbol table.  This will make it possible to get
rid of the code in the bootloader that patches up the kernel with the updated
esym value.

ok tom@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/24 08:41:47

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

Log message:
Update to firefox-esr 45.4.0.

See https://www.mozilla.org/en-US/firefox/45.4.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2016-86/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/09/24 08:46:45

Modified files:
	www/firefox-i18n: Makefile.inc distinfo 
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/files: all-openbsd.js 
	www/mozilla-firefox/pkg: PLIST README 
Removed files:
	www/mozilla-firefox/patches: patch-media_ffvpx_config_h 

Log message:
Update to firefox 49.0.1.

See https://www.mozilla.org/en-US/firefox/49.0/releasenotes/ (.1 is for
a windows-only fix) - not that 'loop' (ex-firefox hello) was removed
from the browser.
- Fixes MFSA 2016-85
- Remove media/ffvpx/config.h patch, merged upstream/fixed differently in
bug #1239550
- Set media.autoplay.enabled to false by default, i'm usually wary of
changing upstream defaults, but this one is unfuriating with "the
modern web and all this funky video ads".. this one got support from
many.
- Add a blurb to README explaining how to enable/test e10s/multi-process
support.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/24 08:51:37

Modified files:
	sys/netinet    : ip_ecn.c ip_ether.c ip_ipcomp.c tcp_subr.c 
	                 tcp_timer.c tcp_usrreq.c 

Log message:
ANSIfy netinet/; from David Hill


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/24 09:18:10

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
Remove more backwards compat for unsupported OpenBSD releases.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/24 09:19:33

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
Both tls_free() and tls_config_free() are safe to call with NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/09/24 09:24:48

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
The file descriptor needs to be closed in both the TLS and non-TLS case,
so make it a common/shared code path.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/24 09:50:36

Modified files:
	www/lynx       : Makefile 

Log message:
Remove the bzip2 dependency from Lynx. We were previously linking
against bzlib so the library would be used instead of the bzip2 binary.

We now disable bzip2 detection at the configure level (thanks to sthen@
for the pointers), which prevents accepting bzip2 compressed HTML and
thus avoid spawning processes.

OK tb@, sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/24 10:24:41

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 53.0.2785.116


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 11:03:37

Modified files:
	sys/dev/pci/drm/i915: intel_i2c.c 

Log message:
Assert that bus->force_bit >= 0 instead of force_bit.  Found by clang.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 12:32:18

Modified files:
	sys/dev/i2c    : iatp.c 

Log message:
Don't compare array against null pointer; found by clang.

ok jca@, jcs@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/24 12:35:52

Modified files:
	share/man/man9 : hashinit.9 
	sys/kern       : kern_subr.c 
	sys/sys        : systm.h 

Log message:
introduce hashfree() function to free hash tables, with sizes.
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/24 12:38:23

Modified files:
	sys/ntfs       : ntfs_ihash.c 
	sys/isofs/udf  : udf_vfsops.c 

Log message:
use hashfree in fs code. from Mathieu -
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/24 12:39:17

Modified files:
	sys/kern       : kern_descrip.c kern_event.c 
	sys/sys        : event.h 

Log message:
move knhash size to event.h, use it for hashfree. from Mathieu -
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/24 12:39:48

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
use hashfree. from Mathieu -
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/24 12:40:29

Modified files:
	sys/uvm        : uvm_aobj.c 

Log message:
use hashfree for aobj hashes. from Mathieu -
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/24 12:59:04

Modified files:
	share/man/man9 : hashinit.9 

Log message:
jmc noticed a chunk failed to apply. actually document hashfree.
from natano via Mathieu -


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/24 13:09:33

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 13:13:03

Modified files:
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	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/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 

Log message:
Add -Wno-pointer-sign to all our gcc4 architectures.

ok patrick@ (for armv7), deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/24 13:20:37

Modified files:
	regress/sys/kern/noexec: testfly.S 

Log message:
On sparc64 we need "retl" not "ret" to do an immediate return.

ok deraadt@, tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/24 13:27:10

Modified files:
	sys/net        : route.h rtsock.c 

Log message:
a route message for BFD, so we can notify userland about the status.
currently used on state-transitions.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/24 13:29:55

Modified files:
	sys/net        : bfd.c 

Log message:
a route message for BFD, so we can notify userland about the status.
currently used on state-transitions.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/09/24 13:36:49

Modified files:
	sbin/route     : route.c 

Log message:
print a BFD route message.

protected with #ifdef BFD while we still figure out some of the
mechanisms.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/09/24 13:47:37

Modified files:
	gnu/usr.bin/perl: configpm installperl 

Log message:
Build install Config_heavy.pl during build not install

Needed for noperm builds

OK natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/24 14:07:34

Modified files:
	www/firefox-i18n: distinfo 

Log message:
Update to firefox 49.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/09/24 15:02:31

Modified files:
	sys/arch/arm/arm: cpuswitch7.S genassym.cf 
	sys/arch/arm/include: pcb.h proc.h tcb.h 

Log message:
Stick the thread control block pointer into a CPU register on ARMv7.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/09/24 15:23:21

Modified files:
	net/tor        : Makefile distinfo 

Log message:
Update to tor 0.2.8.8.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/25 00:06:52

Modified files:
	distrib/miniroot: install.sub 

Log message:
Tweak addel(), rmel() and bsort() to not emit a leading/trailing blank.

OK tb krw


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/25 01:45:02

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

Log message:
remove an extraneous vmcs flush


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/25 02:20:40

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

Log message:
refactor vmcs flush and reload into one function, and remove another
flush that wasn't needed


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/09/25 04:31:16

Modified files:
	lib/pixman     : ChangeLog 

Log message:
pixman: upstreams tarballs contain an empty ChangeLog.

So remove what we have here. Less gratuitous local changes.


CVSROOT:	/cvs
Module name:	www
Changes by:	landry@cvs.openbsd.org	2016/09/25 04:44:50

Modified files:
	.              : events.html 

Log message:
Move EuroBSDcon to the past and add link to my slides


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/25 06:41:40

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

Log message:
word repetition


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/09/25 06:41:48

Modified files:
	.              : ftp.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/25 07:54:00

Modified files:
	usr.sbin/rtadvd: config.c rtadvd.h 

Log message:
Interval calculations are perfectly fine with ints.
OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/25 07:54:39

Modified files:
	usr.sbin/rtadvd: config.c rtadvd.h 

Log message:
consistently use MAX_ prefix
OK jca


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/09/25 08:58:00

Modified files:
	sys/arch/sparc64/include: asm.h 
	sys/dev/pci    : ixgbe.h 
	usr.sbin/snmpd : snmpd.h 

Log message:
Remove more duplicated includes

OK jca@, deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/09/25 09:23:32

Modified files:
	databases/ruby-pg: Makefile distinfo 

Log message:
Update to ruby-pg 0.19.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/25 09:23:37

Modified files:
	sys/arch/alpha/alpha: mem.c 
	sys/arch/amd64/amd64: mem.c 
	sys/arch/arm/arm: mem.c 
	sys/arch/hppa/hppa: mem.c 
	sys/arch/i386/i386: mem.c 
	sys/arch/m88k/m88k: mem.c 
	sys/arch/macppc/macppc: mem.c 
	sys/arch/mips64/mips64: mem.c 
	sys/arch/sh/sh : mem.c 
	sys/arch/socppc/socppc: mem.c 
	sys/arch/sparc64/sparc64: mem.c 
	sys/kern       : kern_sysctl.c 
	sys/sys        : sysctl.h 
	usr.sbin/acpidump: acpidump.8 
	usr.sbin/procmap: procmap.1 
	usr.sbin/pstat : pstat.8 

Log message:
Make a move towards ending 4 decades of kernel snooping.

Add sysctl kern.allowkmem (default 0) which controls the ability to open
/dev/mem or /dev/kmem at securelevel > 0.  Over 15 years we converted 99%
of utilities in the tree to operate on sysctl-nodes (either by themselves
or via code hiding in the guts of -lkvm).

pstat -d and -v & procmap are affected and continued use of them will
require kern.allowkmem=1 in /etc/sysctl.conf.  acpidump (and it's
buddy sendbug) are affected, but we'll work out a solution soon.

There will be some impact in ports.

ok kettenis guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/25 09:41:23

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2-1.15.0


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/25 09:42:40

Modified files:
	regress/usr.bin: Makefile 

Log message:
add ul


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/25 09:46:51

Modified files:
	archivers/deco : Makefile distinfo 
	archivers/deco/pkg: PLIST 

Log message:
update to deco-archive-1.6.4, from Rafael Sadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/25 09:48:15

Modified files:
	distrib/miniroot: install.sub 

Log message:
Tweak/add comments.

with input from and OK tb
OK halex krw


CVSROOT:	/cvs
Module name:	www
Changes by:	phessler@cvs.openbsd.org	2016/09/25 10:03:56

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2016-bfd.pdf 

Log message:
add my talk from the just concluded EuroBSDCon 2016


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2016/09/25 10:26:04

Modified files:
	databases/postgresql: Tag: OPENBSD_5_9 Makefile distinfo 
	databases/postgresql/pkg: Tag: OPENBSD_5_9 PLIST-docs 

Log message:
Security update to 9.4.9 ( CVE-2016-5423, CVE-2016-5424)
ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/25 10:46:01

Modified files:
	sysutils/lsof  : Makefile 
	sysutils/lsof/patches: patch-dialects_n+obsd_dlsof_h 
	                       patch-dialects_n+obsd_dproc_c 

Log message:
Disable "txt" support in lsof, it already wasn't working correctly, and was
causing build failures following kernel changes. From dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/25 11:32:22

Modified files:
	distrib/sets   : Makefile 

Log message:
Fix /usr/lib/locate/src.db owner for noperm release builds.
ok millert tb


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/25 11:43:11

Modified files:
	share/misc/pcvtfonts: Makefile 
	share/snmp     : Makefile 
	share/termtypes: Makefile 

Log message:
Some ownership fixes for /usr/share/.

feedback and tweaks rpe
ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/09/25 14:44:18

Modified files:
	share/man      : Makefile 

Log message:
Install the copyright notice as ${MANOWN}:${MANGRP} with ${MANMODE} and
use ${INSTALL_COPY}; chown root:wheel mandoc.db for noperm builds.

ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/25 15:35:12

Modified files:
	regress/gnu/egcs/gcc-builtins: Makefile sprintf-1.c.exp 
	                               sprintf-2.c.exp sprintf-3.c.exp 
	                               stpcpy-1.c.exp stpcpy-2.c.exp 
	                               strcat-1.c.exp strcat-2.c.exp 
	                               strcpy-1.c.exp strcpy-2.c.exp 
	                               vsprintf-1.c.exp vsprintf-2.c.exp 
	                               vsprintf-3.c.exp 
	regress/gnu/egcs/gcc-bounds: Makefile 

Log message:
Adapt more places where binutils-2.17 has changed the format of the
linker warning massages.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/25 17:05:29

Modified files:
	usr.sbin/switchd: switchd.8 switchd.c 

Log message:
Correct the flag listing for switchd(8) and add a files section for the
configuration file.  Sync usage() with the result.

With feedback from and ok jmc@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/25 17:18:57

Modified files:
	.              : events.html index.html 
	papers         : index.html 

Log message:
merge papers/index.html into events.html so there's only one page to
put presentations on.

requested by and ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/25 17:31:04

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl 2016.08.31.

New extractors:
- abcotvs
- bellmedia
- cctv
- curiositystream
- go
- iwara
- ketnet
- lci
- mangomolo
- miaopai
- movingimage
- rmcdecouverte
- telequebec
- tfo
- trutv
- tvnoe
- vyborymos
Removed:
- abc7news
- ctv
- exfm
- ssa
- thvideo
- trollvids

OK pirofti@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/25 17:31:50

Modified files:
	usr.sbin/trpt  : trpt.8 
	usr.sbin/kgmon : kgmon.8 
	usr.bin/tcpbench: tcpbench.1 

Log message:
Document the dependency on sysctl kern.allowkmem
ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/25 20:48:33

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update to offlineimap 7.0.7. From Remi Locherer (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/25 21:33:03

Modified files:
	sys/arch/i386/i386: pctr.c 

Log message:
Check cpuid_level before using CPUID().

Problem noted by Sami (sami.tikkanen (at) haxaa.net)
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/25 23:32:35

Modified files:
	usr.bin/ul     : ul.c 

Log message:
no overstrikes in -i mode; ok millert@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/09/25 23:57:58

Modified files:
	lib/libc/compat-43: sigcompat.c 
	lib/libc/hidden: signal.h 

Log message:
sigsetmask() and sigblock() are no longer used by any setjmp implementation
so the internal hidden names are unused; switch to PROTO_DEPRECATED()
and drop the DEF_WEAK()s


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/26 00:51:23

Modified files:
	etc            : changelist 
	etc/mtree      : special 

Log message:
Add /etc/acme-client.conf to mtree/special and changelist.

ok deraadt@ sthen@ florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/26 00:56:57

Log message:
    Import audio/ocp
    
    Open Cubic Player is a music player which plays a variety of sound formats.
    It is derived from Cubic Player 2.0 which was developed by Niklas Beisert
    of the legendary Cubic Team demogroup.
    
    The following file formats are supported: MOD/NST/WOW, XM, S3M, DMF, MTM,
    ULT, 669, OKT, PTM, AMS, MDL, IT, SID, YM, MPEG 1 audio layer 1/2/3, OGG,
    FLAC, WAV.
    
    OK juanfra@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20160926
    
    N ports/audio/ocp/Makefile
    N ports/audio/ocp/distinfo
    N ports/audio/ocp/pkg/PLIST
    N ports/audio/ocp/pkg/DESCR
    N ports/audio/ocp/patches/patch-stuff_poutput-sdl_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/26 00:58:36

Modified files:
	audio          : Makefile 

Log message:
Add ocp


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/09/26 01:05:58

Modified files:
	graphics/pngcrush: Makefile distinfo 
	graphics/pngcrush/patches: patch-Makefile 

Log message:
Update to pngcrush-1.8.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/09/26 01:09:32

Modified files:
	sys/dev/usb    : if_cdce.c 

Log message:
Move the net/bpf.h include within the #if NBPFILTER directive

OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/09/26 01:44:02

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/patches: patch-src_makefile 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.32.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/26 02:08:52

Modified files:
	sys/sys        : tree.h 

Log message:
Mark the static inline functions defined by RBT_PROTOTYPE as __unused.  The
way these functions are generated through a macro makes clang think they're
defined in the .c file.  Since some of these function may be unused, clang
issues a warning.  Marking them as __unused suppresses the macro.

ok visa@, deraadt@, dlg@


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/09/26 02:36:41

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2016-utf8.pdf 
	                 eurobsdcon2016-utf8.roff 

Log message:
my Beograd UTF-8 talk


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/26 02:46:00

Modified files:
	usr.sbin/switchd: ofp13.c ofp_map.h 

Log message:
Enable more debug messages to help developing flow modification messages.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/26 02:48:05

Modified files:
	usr.sbin/switchd: ofp.c 

Log message:
Fix a memory leak and a loop in the ofp_read() that happens every time a
message is received or a socket is closed.

This is just a temporary fix to avoid switchd(8) from hogging the cpu and
leaking memory while testing.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/26 02:55:43

Modified files:
	usr.sbin/switchd: packet.c 

Log message:
Set pkt_buf variable on incoming packet_in messages.

small style correction and ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/26 03:02:34

Modified files:
	usr.bin/tmux   : cmd-set-option.c options.c 

Log message:
Support set -a (append) with user options, suggested by Xandor Schiefer.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2016/09/26 04:44:44

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2016-openbsd-11n.pdf 

Log message:
add slides for my eurobsdcon 2016 talk


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/26 04:48:39

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/pkg: PFRAG.no-no_x11-main PLIST-main 

Log message:
update to vim-8.0.0004, from frantisek holop


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/26 05:11:42

Modified files:
	security/openssl: Makefile distinfo 

Log message:
update to OpenSSL 1.0.2j, "A bug fix which included a CRL sanity check
was added to OpenSSL 1.1.0 but was omitted from OpenSSL 1.0.2i. As a
result any attempt to use CRLs in OpenSSL 1.0.2i will crash with a null
pointer exception."

(not moved to 1.1.0 yet, so today's critical fix for CVE-2016-6309
doesn't apply).


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/26 06:33:04

Modified files:
	usr.sbin/switchd: ofp.h ofp13.c 

Log message:
Teach switchd(8) how to create flows for new connections using OpenFlow
1.3.5, implement the OXM filters to use with flow matching and Set-Action,
prepare code to receive group management and add dummy flow_removed handler
to avoid closing the connection on idle flows.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/09/26 06:38:54

Modified files:
	lang/seed7     : Makefile 

Log message:
Fix the build and don't bother with sqlite3 support now that it is no
longer included in base.  ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/26 07:10:39

Modified files:
	devel/git      : Makefile 

Log message:
In ports/devel/git, use an explicit -I${WRKSRC} before -I${LOCALBASE}/include
so that headers from git source are used in preference to /usr/local.
Fixes build with utfcpp installed. OK benoit@ dcoppa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/26 07:34:11

Modified files:
	sys/arch/arm/arm: cpu.c 

Log message:
Remove xscale support.  Properly distinguish between ARMv7 and ARMv8.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/26 08:00:05

Modified files:
	usr.sbin/snmpd : timer.c 

Log message:
Fix compilation warning by using the correct cast/format.

improved by sthen@
ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/26 09:43:26

Modified files:
	lib/csu        : crt0.c 

Log message:
Now that vax has been removed, nothing defined MD_NO_CLEANUP anymore.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/26 10:01:52

Modified files:
	www/youtube-dl/patches: patch-setup_py 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/26 10:22:34

Modified files:
	devel/py-certifi: Makefile distinfo 

Log message:
update to py-certifi 2016.9.26


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/26 10:25:16

Modified files:
	usr.sbin/relayd: control.c parse.y relay.c relay_http.c 

Log message:
spacing


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/26 10:39:51

Modified files:
	distrib/miniroot: group master.passwd 
	etc            : group master.passwd 

Log message:
Add _ping user/group.
OK natano on a previous diff which used a different uid/gid.
naddy@ pointed out that uid/gid was already taken on "important" systems.
Turns out we cannot easily recycle freed up uids/gids so settle on 51.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/26 10:42:34

Modified files:
	sys/kern       : makesyscalls.sh 

Log message:
unbalenced->unbalanced


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/26 10:42:46

Modified files:
	sbin/ping      : ping.c 

Log message:
Drop privileges to newly added _ping user/group.
It does not buy us much when called as a unpriv user. But if run as
root we can now lose privileges.
OK natano@, deraadt@ is happy


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/26 10:43:58

Modified files:
	sys/sys        : syscall.h syscallargs.h 
	sys/kern       : init_sysent.c syscalls.c 

Log message:
Regen


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/26 10:55:02

Modified files:
	usr.sbin/ntpd  : ntp.c ntp_dns.c ntpd.c 

Log message:
Teach ntpd(8) how to use socket status to shutdown the daemon. While at
it, remove some verbose shutdown messages that we had before with pipe
close.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/26 10:55:21

Modified files:
	sbin/iked      : util.c 

Log message:
Pass the flags argument of recvfromto down to the underlying recvmsg

Doesn't matter in iked as recvfromto is only called with flags = 0, but
this code tends to be copied.  ok sthen@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/26 11:15:19

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 
	usr.sbin/ftp-proxy: ftp-proxy.c 
	usr.sbin/rtadvd: rtadvd.c 
	usr.sbin/tftpd : tftpd.c 

Log message:
Exit early from rdaemon() is the passed fd is invalid.

fd == -1 check suggested by deraadt@, ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/26 11:17:01

Modified files:
	usr.sbin/ntpd  : constraint.c ntpd.c ntpd.h 

Log message:
Teach ntpd(8) constraint process to use exec*() instead of just forking,
with this change we get the pledge() ability back to the parent process.

some tweaks from and ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/26 11:42:09

Modified files:
	etc/mail       : aliases 

Log message:
+ _ping


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/26 11:49:52

Modified files:
	usr.bin/signify: signify.c 

Log message:
there's a hidden feature to infer the public key from the signature
comment, but it doesn't work well because it encodes the full path.
signature creaters don't usually keep the secret keys in /etc/signify,
but that's where we look for public keys.
switch to saving only the basename, and have the verifier add the path.
should make it easier to start using this feature.
anybody depending on the current behavior may have to adjust, but
there's a reason this was never officially documented.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/09/26 13:39:24

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
typo in comment


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/26 13:58:26

Modified files:
	usr.sbin/acpidump: acpidump.8 acpidump.c 

Log message:
If the argument of -o specifies a directory, dump the files without using a
prefix.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/26 14:25:34

Modified files:
	fonts/hack-fonts: Makefile distinfo 

Log message:
Update hack-fonts to 2.020. From maintainer Michael McConville.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/09/26 14:41:08

Modified files:
	sys/dev/rasops : rasops.c 

Log message:
Avoid calculating offset several times. This was done for a few functions already, but not all of them.

OK natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/26 15:16:11

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
Avoid a theoretical signed integer overflow should BN_num_bytes()
ever violate its manpage and return a negative value. Improve
order of tests to avoid confusing increasingly pedantic compilers.

Reported by Guido Vranken from stack (css.csail.mit.edu/stack)
unstable optimisation analyser output.  ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/26 15:19:02

Modified files:
	sbin/kbd       : Makefile kbd_wscons.c 

Log message:
Remove kvm groveling code.  To restore the lost functionality we need to
implement something like a WSKBDIO_GETENCODINGS ioctl that fetches a list
of possible encodings for the specified keyboard from the kernel.  Until
that happens, kbd -l will simple show the same harcoded list of possible
encodings as the installer does.

Prompted by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/26 15:34:38

Modified files:
	regress/usr.bin/ssh: agent-getpeereid.sh keys-command.sh 
	                     principals-command.sh sftp-chroot.sh 

Log message:
Allow to run ssh regression tests as root.  If the user is already
root, the test should not expect that SUDO is set.  If ssh needs
another user, use sudo or doas to switch from root if necessary.
OK dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/26 15:47:54

Modified files:
	usr.bin/signify: signify.c 

Log message:
have to advance pointer past the / to get basename.
noticed by naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/26 16:56:31

Modified files:
	regress/gnu/egcs: Makefile 
Removed files:
	regress/gnu/egcs: Makefile.inc 
	regress/gnu/egcs/gcc: Makefile 
	regress/gnu/egcs/libiberty: Makefile 

Log message:
The gcc and libiberty regression tests seem to be broken since the
gcc4 update.  Delete this test wrapper, it does not add anything
of value.
OK deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2016/09/26 17:21:59

Modified files:
	.              : want.html 

Log message:
Retire 'wants' for Sparc equipment. dlg@ agrees.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/26 19:37:38

Modified files:
	sys/nfs        : nfs_node.c nfs_var.h nfs_vfsops.c nfsmount.h 

Log message:
replace the use of RB macros with the RBT functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/26 20:02:47

Modified files:
	usr.bin/signify: signify.c 

Log message:
no need to copy keypath if we already have one


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/26 20:13:27

Modified files:
	usr.bin/signify: signify.c 

Log message:
the keytype checking is logically part of verify, and it's small, so
always include it. but it can be made a bit simpler with zero malloc.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/09/26 20:16:40

Modified files:
	usr.bin/signify: zsig.c 

Log message:
can make function static now that it's living in a separate file.
bye bye XXX!


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/26 20:51:12

Modified files:
	sys/net        : if_pfsync.c pf.c pf_if.c pf_ioctl.c pf_lb.c 
	                 pf_norm.c pf_ruleset.c pf_table.c pfvar.h 

Log message:
move pf from the RB macros to the RBT functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/26 20:53:49

Modified files:
	sys/sys        : hibernate.h 
	sys/kern       : subr_hibernate.c 

Log message:
move from RB macros to RBT functions


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/09/26 22:57:17

Modified files:
	sys/net        : if_pfsync.c pf.c pf_if.c pf_ioctl.c pf_lb.c 
	                 pf_norm.c pf_ruleset.c pf_table.c pfvar.h 

Log message:
roll back turning RB into RBT until i get better at this process.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/26 23:01:29

Modified files:
	sys/arch/alpha/alpha: mem.c 

Log message:
typo


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/26 23:31:37

Modified files:
	etc            : master.passwd group 
	etc/mail       : aliases 

Log message:
Add unprivileged user for traceroute.
Input deraadt@
OK benno@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/26 23:33:46

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

Log message:
Drop privileges to newly added _traceroute user/group.
It does not buy us much when called as a unpriv user. But if run as
root we can now lose privileges.
Input deraadt@
OK benno@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/27 00:52:50

Modified files:
	regress/libexec/ld.so: Makefile 
	regress/libexec/ld.so/constructor/libaa: aa.C 
	regress/libexec/ld.so/constructor/libab: Makefile ab.C 
	regress/libexec/ld.so/constructor/prog1: Makefile prog1.C 
	regress/libexec/ld.so/constructor/prog2: Makefile prog2.C 

Log message:
Modernize constructor test such that it builds again and enable it.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/27 01:02:28

Modified files:
	usr.bin/aucat  : aucat.c 

Log message:
Don't rely on the resampling code to calculate the number of samples
to process, as it may produce one extra sample (to handle accumulation
of fractional samples), which would cause access to one sample past
the end of the buffer and crash aucat. Fix this by limiting the number
of samples processed to a single block.

Found by and help from Michael W. Bombardieri <mb at ii.net>. Thanks.


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/09/27 01:50:42

Modified files:
	papers         : eurobsdcon2016-utf8.pdf 

Log message:
Add the missing images to the PDF version of my talk (testing the build
instruction in the source version accidentally overwrote the file i
intended to commit, stupid me).
Noticed by Martijn Rijkeboer <martijn at bunix dot org>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 01:58:00

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.56.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 01:58:27

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.10.66.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 01:58:53

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_updater_local_state_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-127.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 01:59:18

Modified files:
	net/py-libcloud: Makefile distinfo 

Log message:
Update to py-libcloud-1.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 02:00:03

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.11.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 02:00:27

Modified files:
	print/hplip    : Makefile distinfo 
	print/hplip/patches: patch-Makefile_in patch-configure 
	print/hplip/pkg: PLIST-hpijs 

Log message:
Update to hplip-3.16.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 02:03:30

Modified files:
	mail/mimedefang: Makefile distinfo 

Log message:
Update to mimedefang-2.79.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/27 02:04:49

Modified files:
	sys/arch/amd64/amd64: identcpu.c 
	sys/arch/amd64/include: cpu.h specialreg.h 

Log message:
read and cache VMFUNC capability during boot. for use in an upcoming diff


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/27 02:06:22

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

Log message:
clarify a comment whose text became out of date with the previous commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 02:47:11

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/patches: patch-bindings_python_Makefile_in 
	textproc/link-grammar/pkg: PLIST-main 

Log message:
Update to link-grammar-5.3.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 02:50:21

Modified files:
	textproc/meld  : Makefile distinfo 

Log message:
Update to meld-3.16.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/27 02:51:24

Modified files:
	audio/schismtracker: Makefile distinfo 
	audio/schismtracker/patches: patch-configure_ac 
Removed files:
	audio/schismtracker/patches: patch-Makefile_am 

Log message:
Update schismtracker to 20160913.

Among other things, this update fixes log2() function detection and
doesn't attempt to link against libdl, so we can shorten one of the
patches and drop the other.

OK juanfra@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/27 03:19:11

Modified files:
	etc            : netstart 

Log message:
Delay switch(4) interface start up so it can attach virtual interfaces
like vether(4).

nits from and ok benno@, phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/27 04:04:19

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

Log message:
Print the type of operation space that failed as there seem to be more of
these occurring recently.


CVSROOT:	/cvs
Module name:	www
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/27 04:57:14

Modified files:
	.              : events.html 
Removed files:
	papers         : asiabsdcon2016-rcd-paper.pdf 
	                 asiabsdcon2016-rcd-slides.pdf 
	                 bsdcan2016-rcd.pdf 

Log message:
Add my EuroBSDcon 2016 presentation.
While here, link to external PDFs instead of storing similar slides on cvs.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/27 05:08:32

Modified files:
	regress/bin/ksh/vi: Makefile 

Log message:
fix dependency, fixing regress if make regress is called with a clean obj
(like the parent does).
When make is called in the parent dir, both make regress and make all
are called for the vi subdir. Need to figure out how to avoid that.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/09/27 06:32:26

Modified files:
	sys/netinet    : ip_spd.c 
	usr.bin/ftp    : extern.h 

Log message:
Remove empty #ifdef and #ifndef blocks

OK natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/09/27 06:42:27

Modified files:
	audio/ocp      : Makefile 

Log message:
Add missing BUILD_DEPENDS on desktop-file-utils.

OK naddy@ (who spotted the issue, thanks!)


CVSROOT:	/cvs
Module name:	www
Changes by:	espie@cvs.openbsd.org	2016/09/27 07:13:01

Added files:
	papers         : eurobsdcon2016-privsep.pdf 

Log message:
add my presentation


CVSROOT:	/cvs
Module name:	www
Changes by:	espie@cvs.openbsd.org	2016/09/27 07:15:26

Modified files:
	.              : events.html 

Log message:
link my presentation


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/27 08:17:00

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

Log message:
update to img2pdf 0.2.1

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/27 08:21:42

Modified files:
	graphics/img2pdf: Makefile 

Log message:
whitespace change, for readability


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/27 08:38:26

Modified files:
	databases/redis: Makefile distinfo 
	databases/redis/patches: patch-sentinel_conf 

Log message:
Update to redis-3.2.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/27 09:17:58

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Reintroduce rdaemon() - working properly this time

Thanks Ken for fixing my initial implementation.  ok krw@


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2016/09/27 09:21:17

Modified files:
	.              : events.html 

Log message:
defcon 6 was in 98, 99 would have been defcon 7


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/27 09:35:34

Modified files:
	regress/bin/ksh: history.t integer.t regress.t unclass2.t 

Log message:
Adjusts some patterns, so that the warning messages ksh prints if
it has no controlliing tty is not causing the test to fail.
based on otto@'s work; OK otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/09/27 09:54:33

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

Log message:
Wait until the BSSID is known before adding the MAC context to iwm firmware.
Fixes iwm connectivity issues after first boot.
Tested by myself (8260 chip) and tb@ (7265 chip)
ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/27 10:02:57

Modified files:
	graphics/img2pdf: Makefile 

Log message:
Fix my email


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2016/09/27 10:09:26

Added files:
	devel/ocaml-extlib/patches: patch-Makefile 

Log message:
Oops. Missed patch file in previous update to 1.7.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/27 10:50:37

Modified files:
	gnu/llvm/tools/clang/lib/Driver: Tools.cpp 

Log message:
Disable -fstrict-aliasing per default on OpenBSD.

cluebat & ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/09/27 11:04:58

Modified files:
	net/haproxy    : Makefile 
Added files:
	net/haproxy/patches: patch-Makefile 

Log message:
Make use of the accept4() API on OpenBSD.

From Brad, ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/27 11:06:24

Modified files:
	share/man/man4 : hifn.4 
	share/man/man9 : hardclock.9 

Log message:
missing colon; from Rob Pierce <rob at 2keys dot ca>


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/27 12:13:27

Added files:
	share/man/man1 : clang-local.1 

Log message:
Add a clang-local(1) man page, similar to gcc-local(1).  This documents
OpenBSD-specific quirks for LLVM/clang.  To be expanded as we go along.

idea from kettenis@, ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/27 12:14:22

Modified files:
	regress/libexec/ld.so/constructor/libaa: Makefile 
	regress/libexec/ld.so/constructor/libab: Makefile 

Log message:
Make sure that the regress target builds the libraries.  Stop building a
profile library and add $OpenBSD$ markers.  Similar to what we do in other
regress tests that build libraries such as regress/lib/libc/cxa-exit.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/27 12:41:11

Modified files:
	sys/net        : rtsock.c 

Log message:
Protect sbappendaddr() and sorwakeup() with splsoftnet in
rt_senddesync().  This fixes a splassert warning seen by sthen@.
Problem found by David Hill; OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/27 13:30:01

Modified files:
	gnu/usr.bin/cc/cc: Makefile 

Log message:
Set owner for /usr/lib/gcc-lib and /usr/include/g++ on install.
initial diff and ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	pascal@cvs.openbsd.org	2016/09/27 13:33:57

Modified files:
	share/man/man1 : clang-local.1 

Log message:
Small nit from kettenis@: -fstrict-aliasing is turned on if -Ofast.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/27 13:40:43

Modified files:
	usr.sbin/switchd: ofp10.c ofp13.c 

Log message:
OpenFlow PACKET_IN can send truncated packets; this only makes sense
if the switch buffers packets, otherwise we might end up forwarding
truncated packets to the network with the PACKET_OUT response.  So,
for now, only close the connection if the packet is not buffered by
the switch but truncated.

OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/27 13:49:10

Modified files:
	net/isc-bind   : Makefile distinfo 

Log message:
update to BIND 9.10.4-P3, fixing
https://kb.isc.org/article/AA-01393/74/CVE-2016-2775 (lwres only)
https://kb.isc.org/article/AA-01419/74/CVE-2016-2776 ("all servers if
they can receive request packets from any source")


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/27 13:49:58

Modified files:
	net/isc-bind   : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
-stable update to BIND 9.10.4-P3, fixing
https://kb.isc.org/article/AA-01393/74/CVE-2016-2775 (lwres only)
https://kb.isc.org/article/AA-01419/74/CVE-2016-2776 ("all servers if
they can receive request packets from any source")


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/09/27 14:18:34

Modified files:
	etc            : rc 
	etc/mtree      : 4.4BSD.dist 

Log message:
Run acpidump(8) at system startup and store ACPI tables in the
/var/db/acpi directory. Later sendbug(1) will use this data in
bug reports. That directory is created by mtree.

idea from and OK deraadt
OK kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/09/27 15:31:20

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackingList.pm State.pm 

Log message:
switch to using the new package signature scheme (signify2) by default
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/27 15:39:27

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

Log message:
The fork+exec privsep commit broke the "block request method" http
config option.  Due to reordering of the code, the variable
http_methods was initialized to late.  Insert a relay_http() before
load_config().
Found by make run-regress-args-http-filter-method.pl; OK reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/27 16:03:49

Modified files:
	sbin/kbd       : kbd_wscons.c 
	distrib/special/kbd: Makefile 

Log message:
remove more kvm code


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/27 16:27:38

Modified files:
	usr.sbin/switchd: ofp10.c ofp13.c 

Log message:
Fix previous: don't attempt to write a NULL packet to the tap device.
Also print a debug message if the packet has been truncated by the switch.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/27 17:14:32

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

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2016/09/27 17:28:14

Modified files:
	libressl       : index.html releases.html 

Log message:
update for 2.5.0/2.4.3/2.3.8


CVSROOT:	/cvs
Module name:	src
Changes by:	czarkoff@cvs.openbsd.org	2016/09/27 17:58:38

Modified files:
	bin/ksh        : ksh.1 

Log message:
Move bug description to the BUGS section

OK natano@, jmc@

(I forgot to commit it back in mid-August when it was discussed.)


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/28 00:39:12

Modified files:
	sbin/ping      : ping.c 
	usr.sbin/traceroute: traceroute.c 

Log message:
Always do the setgroups, setresgid and setresuid even if if the
unprivileged user is not present instead of erroring out. This lets
ping and traceroute work in restricted enviornments like the bgplg
chroot.
Problem reported by sthen@
input & prodding deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 00:39:33

Modified files:
	sys/net        : switchofp.c 

Log message:
Do not truncate packets that are attached to PACKET_IN.

The switch should only truncate packets if it implements buffering -
which switch(4) doesn't - or the controller might end up sending
PACKET_OUT responses with truncated packets that will eventually end
up on the network.

OK goda@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/28 01:09:55

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-1.3.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/28 01:14:06

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.10.67.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/28 01:16:23

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Driver_Tools_cpp 

Log message:
Disable -fstrict-aliasing per default on OpenBSD.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 02:10:18

Modified files:
	regress/usr.sbin/switchd: run.pl 

Log message:
I wrote a perfect regress test: a test that never fails.  Correctly
populate the die() from code within eval to make failed tests fail.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 02:11:26

Modified files:
	regress/usr.sbin/switchd: run.pl 

Log message:
Bump buffer size to 64k, the max OFP packet size


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 02:14:51

Modified files:
	regress/usr.sbin/switchd: OFP.pm run.pl 

Log message:
Fix length calculation of PACKET_IN (I forget the 10 byte packet_in header).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/28 02:30:44

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

Log message:
Rate limit TIOCSWINSZ on a timer to avoid programs getting hammered with
SIGWINCH when the size changes rapidly. To help a problem reported by
Rui Pinheiro.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/28 02:31:42

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

Log message:
Fix a kernel panic that happened when destroying interfaces attached to
the switch(4) without prior removal.

ok reyk@, goda@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/28 02:55:12

Modified files:
	regress/sys/kern/siginfo-fault: siginfo-fault.c 

Log message:
If stdout is not line buffered, messages got lost when assert() was
called.  Print errors to stderr instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 03:13:30

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

Log message:
Adjust the mac_port format string since it got upgraded to 32bits
(following OpenFlow 1.3).


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 04:09:59

Modified files:
	regress/usr.sbin/switchd: run.pl 

Log message:
An unintened 65536 size change slipped in, revert to 65535


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/28 05:43:24

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.57.
I forgot to commit this earlier which broke sysutils/awscli -- thanks nigel@
for the heads up.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/28 05:46:45

Modified files:
	regress/usr.bin/ftp: dasho.sh redirect.sh 

Log message:
Do not close stdout when starting netcat, redirect to /dev/null
instead.  This prevents that the ftp test hangs in nc poll(2).  Add
OpenBSD RCS id while there.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 06:01:04

Modified files:
	usr.sbin/httpd : httpd.c httpd.h proc.c 

Log message:
sync proc.c from switchd, includes minor cast qual fix and removal of p_env.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 06:02:17

Modified files:
	usr.sbin/httpd : Makefile 

Log message:
Add -Wcast-qual after syncing proc.c fix


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 06:16:44

Modified files:
	usr.sbin/relayd: proc.c relayd.c relayd.h 

Log message:
sync proc.c incl. the p_env removal


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/09/28 06:32:13

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

Log message:
oops, forgot THAT hook. You have to start with unsigned to get signed


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/28 06:40:35

Modified files:
	regress/usr.sbin/ospfd: Client.pm Default.pm Makefile README 
	                        args-ifstate-pri-ism-ospfd.pl 
	                        args-ifstate-pri-ism.pl 
	                        args-ifstate-pri-ospfd-ism.pl 
	                        args-ifstate-pri-ospfd.pl 
Added files:
	regress/usr.sbin/ospfd: Tap.pm opentap.c tapdump.pl 
Removed files:
	regress/usr.sbin/ospfd: Tun.pm opentun.c tundump.pl 

Log message:
The tun interface has been renamed to tap(4).  Adapt ospfd test.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/09/28 08:03:19

Modified files:
	sys/arch/loongson/loongson: loongson2_machdep.c machdep.c 

Log message:
Add logic for figuring out CPU clock rate and usable memory areas
by using Loongson EFI.

Regression testing on Loongson 2F by fcambus@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/28 08:10:35

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Fix the way of checking the length of vxlan packet and made it strict.

ok reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/28 08:26:43

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Fix vxlan to use the destination address correctly.

Use the dst of the bridge_tunneltag for src on vxlan output and vice
versa.

ok reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/28 08:39:52

Modified files:
	usr.sbin/ldpd  : ldpd.c 
	usr.sbin/ospfd : ospfd.c rde.c 

Log message:
'unneded stuff' -> 'unneeded stuff' in comments.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/28 08:40:07

Modified files:
	usr.bin/tmux   : cmd-queue.c input.c 

Log message:
Couple of vasprintf -> xvasprintf.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/09/28 08:46:34

Modified files:
	sys/arch/loongson/loongson: pmon.c 

Log message:
Tweak video BIOS pointer check. Current Loongson EFI firmware images
seem to provide a video BIOS in kseg0.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/28 09:03:03

Modified files:
	usr.sbin/relayd: Makefile ca.c 

Log message:
Add -Wcast-qual and cast away one false positive where we use a const
u_char * variable for an iovec from within the libcrypto engine callback.

OK millert@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/28 09:54:54

Modified files:
	app/cwm        : mousefunc.c 

Log message:
Do not call sweep_draw() too early: don't yet have w/h dimensions; plus
we will get a MotionNotify event right away anyway, setting required
parameters.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/28 10:33:07

Modified files:
	usr.bin/ssh    : monitor.c monitor.h monitor_wrap.h myproposal.h 
	                 opacket.h packet.c packet.h servconf.c 
	                 sshconnect2.c sshd.c 
	usr.bin/ssh/sshd: Makefile 
Removed files:
	usr.bin/ssh    : monitor_mm.c monitor_mm.h 

Log message:
Remove support for pre-authentication compression. Doing compression
early in the protocol probably seemed reasonable in the 1990s, but
today it's clearly a bad idea in terms of both cryptography (cf.
multiple compression oracle attacks in TLS) and attack surface.

Moreover, to support it across privilege-separation zlib needed
the assistance of a complex shared-memory manager that made the
required attack surface considerably larger.

Prompted by Guido Vranken pointing out a compiler-elided security
check in the shared memory manager found by Stack
(http://css.csail.mit.edu/stack/); ok deraadt@ markus@

NB. pre-auth authentication has been disabled by default in sshd
for >10 years.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/28 11:06:34

Modified files:
	app/cwm        : calmwm.h menu.c mousefunc.c xutil.c 

Log message:
Inline Xft draw and extents wrappers; too much abstraction.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/09/28 11:46:35

Modified files:
	textproc/uncrustify: Makefile distinfo 

Log message:
update uncrustify to 0.63.
ok aja@ benoit@.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/28 11:48:35

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Always ask the switch to send the whole packet unbuffered so we can
analyze the content of the packet and not truncate it when sending
packet_out.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/28 11:48:58

Modified files:
	lib/libc/gen   : sysctl.3 
	sbin/sysctl    : sysctl.8 

Log message:
document kern.allowkmem; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/28 11:53:13

Modified files:
	lib/libc/gen   : sysctl.3 

Log message:
use the same template for describing securelevel interaction;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/28 11:54:01

Modified files:
	share/man/man7 : securelevel.7 

Log message:
document kern.allowkmem; reminded by deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/28 11:58:17

Modified files:
	share/man/man7 : securelevel.7 

Log message:
group the sysctls;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/28 11:59:22

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
use a separate TOKENS section, as we've done for sshd_config(5);
help/ok djm


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/28 12:00:01

Modified files:
	regress/usr.sbin/ldapd: Makefile 

Log message:
The ldap regression test should behave more like the other tests.
So use REGRESS_TARGETS provided by bsd.regress.mk.
OK landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/28 12:49:12

Modified files:
	sys/msdosfs    : msdosfs_vfsops.c 

Log message:
Kill empty ifdef; ok fcambus@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/28 12:50:20

Modified files:
	sys/sys        : socket.h 

Log message:
Hide RT_TABLEID_MAX behind __BSD_VISIBLE

Alternate define location suggested by deraadt@ and kettenis@, ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/28 13:26:13

Modified files:
	sysutils/consolekit: Makefile 
Added files:
	sysutils/consolekit/patches: patch-src_ck-sysdeps-openbsd_c 

Log message:
Unbreak ck_unix_pid_get_env_hash after recent kvm /dev/mem access restrictions.

from semarie


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/09/28 13:33:37

Modified files:
	security/gnupg : Makefile 
	security/gnupg2: Makefile 
	security/gpa   : Makefile 
	security/gpgme : Makefile 
	security/libassuan: Makefile 
	security/libksba: Makefile 

Log message:
Drop the gettext module from gnupg.org ports


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2016/09/28 13:34:54

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
Add a sentence about BUILD_DEPENDS automatically set with EXTRACT_SUFX

ok jmc@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/28 14:09:52

Modified files:
	regress/usr.bin/ssh/unittests: Makefile.inc 

Log message:
Add a makefile rule to create the ssh library when regress needs
it.  This allows to run the ssh regression tests without doing a
"make build" before.
Discussed with dtucker@ and djm@; OK djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/28 14:17:58

Modified files:
	usr.sbin/switchd: ofp.h 

Log message:
Use the packed attribute for every structure that is used in the wire
messages.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/28 14:32:42

Modified files:
	usr.bin/ssh    : kex.c kex.h packet.c sshconnect2.c 
	                 sshd_config.5 servconf.c 

Log message:
restore pre-auth compression support in the client -- the previous
commit was intended to remove it from the server only.

remove a few server-side pre-auth compression bits that escaped

adjust wording of Compression directive in sshd_config(5)

pointed out by naddy@ ok markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/09/28 15:10:13

Modified files:
	games/capitan-sevilla: Makefile 

Log message:
fix capitan-sevilla's master site URL


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/09/28 15:12:14

Modified files:
	share/zoneinfo/datfiles: africa antarctica asia australasia 
	                         backward etcetera europe factory 
	                         leapseconds northamerica southamerica 
	                         zone.tab zone1970.tab 

Log message:
Update to tzdata2016g from from ftp.iana.org.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/28 15:44:52

Modified files:
	usr.bin/ssh    : kex.c kex.h packet.c 

Log message:
put back some pre-auth zlib bits that I shouldn't have removed -
they are still used by the client. Spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/28 16:22:52

Modified files:
	sys/kern       : vfs_subr.c 

Log message:
Cast enum to u_int when doing a bounds check to avoid a clang warning that
the comparison is always true.

ok jca@, tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/09/28 18:09:05

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

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/28 18:21:55

Modified files:
	app/cwm        : calmwm.c calmwm.h conf.c menu.c mousefunc.c 

Log message:
Mechanical change: move screen menu bits to their own struct.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/28 18:30:40

Modified files:
	app/cwm        : calmwm.c 

Log message:
no need to unmap menu window again


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/28 18:40:08

Modified files:
	sbin/dhclient  : dispatch.c 

Log message:
'ifname' --> 'ifi->name' so DEBUG compiles again.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/28 21:49:59

Modified files:
	.              : want.html 

Log message:
remove martin and tobiasu's wanted items as well as a couple redundant lines.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/28 21:52:21

Modified files:
	.              : want.html 

Log message:
remove armish/sparc/vax/zaurus stuff.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/28 21:58:14

Modified files:
	.              : want.html 

Log message:
formatting tweaks, remove invisible <p> tags.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/28 23:58:22

Modified files:
	regress/usr.bin/rcs: Makefile rlog-rflag2.out rlog-rflag3.out 

Log message:
Fix tests
- rlog lines end with ';' these days
- error message in low-mem conditions changed


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/29 00:45:38

Modified files:
	regress/usr.bin/cvs: Makefile 

Log message:
with commitids, status produces an extra line per revision


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/09/29 01:48:28

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-128.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/09/29 02:50:43

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

Log message:
Check padding when writing any character with width > 1, in case they
overlap after the first character (for example with cells xy and ab, y
is replacing a).


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/09/29 03:16:21

Modified files:
	gnu/usr.bin/cvs: Makefile.bsd-wrapper mkinstalldirs 
	gnu/usr.bin/cvs/contrib: Makefile.in 

Log message:
Set correct owner for installed files. Required for noperm release.
ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/29 03:52:00

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

Log message:
Update to py-parsing 2.1.9


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/29 04:46:03

src/regress/bin/ksh/main

Update of /cvs/src/regress/bin/ksh/main
In directory cvs.openbsd.org:/tmp/cvs-serv75671/main

Log Message:
Directory /cvs/src/regress/bin/ksh/main added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/09/29 05:04:45

Modified files:
	regress/bin/ksh: Makefile 
Added files:
	regress/bin/ksh/main: Makefile 

Log message:
If a Makefile both defines SUBDIR and includes <bsd.regress.mk>,
the "all" target will depend on the "regress" target, so running
"make all" will recurse into the subdirectories for "regress", and
then recurse a second time into the same subdirectories for "all",
running all the tests twice.

Fix this by moving the Makefile to run the main-level tests into
a subdirectory "main" and only including <bsd.subdir.mk> from the
top level Makefile.

Issue reported by otto@; patch OK'ed by otto@ and bluhm@.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/29 05:37:44

Modified files:
	sys/net        : bridgectl.c if_bridge.c if_bridge.h if_switch.c 
	                 if_vxlan.c 

Log message:
Rename brtag_src/brtag_dst to brtag_peer/brtag_local to avoid
confusion about the tunnel endpoints when responding to the peer.

OK yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/29 06:18:33

Modified files:
	sys/net        : switchofp.c 

Log message:
Make set-field action about tunneling work with bridge_tunneltag.

input goda, ok reyk goda


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/29 07:04:50

Modified files:
	usr.sbin/switchd: ofp.h ofp13.c ofp_map.h 

Log message:
Teach switchd(8) some multipart table properties request/parse code to
handle basic display.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/29 07:30:48

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Teach switchd(8) how to ask for and debug equipment description
requests / replies.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/29 09:05:13

Modified files:
	devel/py-wcwidth: Makefile distinfo 

Log message:
Update to py-wcwidth 0.1.7. Take maintainership.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/29 09:10:23

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Use the macro OFP_ALIGN() to find alignment instead of rolling my own way.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/29 09:29:06

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Don't record non-existant client identifier in lease file.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/29 11:03:00

Modified files:
	usr.sbin/switchd: imsg_util.c 

Log message:
Replace memset in ibuf_zero with explicit_bzero as done in iked.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/29 12:13:50

Modified files:
	usr.sbin/switchd: util.c 

Log message:
handle AF_UNIX sockaddrs


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/09/29 12:16:50

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Teach switchd(8) how to request flow entries and how to validate the
request/reply. With this we get the OXM type/value printing for all
directions.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/29 12:25:54

Modified files:
	usr.sbin/switchd: ofp.c ofp10.c ofp13.c switchd.h 

Log message:
Rename ofp_send to ofp_output


CVSROOT:	/cvs
Module name:	www
Changes by:	juanfra@cvs.openbsd.org	2016/09/29 13:05:40

Modified files:
	.              : want.html 

Log message:
Delete one of my requests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/29 13:31:29

Log message:
    Comment:
    zstandard fast real-time compression algorithm
    
    Description:
    Zstd, short for Zstandard, is a fast lossless compression algorithm, targeting
    real-time compression scenarios at zlib-level and better compression ratios.
    
    Maintainer: Juan Francisco Cantero Hurtado <juanfra@openbsd.org>
    
    WWW: https://facebook.github.io/zstd/
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	juanfra
    Release Tags:	juanfra_20160929
    
    N ports/archivers/zstd/Makefile
    N ports/archivers/zstd/distinfo
    N ports/archivers/zstd/patches/patch-tests_playTests_sh
    N ports/archivers/zstd/pkg/DESCR
    N ports/archivers/zstd/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/09/29 14:27:00

Modified files:
	opensmtpd      : donations.html 

Log message:
thanks Martin


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/09/29 14:28:44

Modified files:
	opensmtpd/faq  : options.html 

Log message:
fix pasto

spotted by Justin Clift


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/29 14:38:01

Modified files:
	sys/net        : switchofp.c 

Log message:
typo: send ofp messages instead of massages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/09/29 14:39:54

Modified files:
	archivers      : Makefile 

Log message:
+archivers/zstd


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/29 14:46:06

Modified files:
	usr.sbin/switchd: util.c switchd.h 

Log message:
Add print_hex() for debugging of received packets (from iked)


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/09/29 16:04:28

Modified files:
	usr.sbin/relayd: relay.c 

Log message:
fix DEBUG build after ps->ps_instance change
ok reyk@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/29 16:42:04

Modified files:
	usr.sbin/vmd   : config.c control.c proc.c proc.h vmd.c vmd.h 
	                 vmm.c 

Log message:
Implement fork+exec for vmd, using the same framework from httpd etc.

No objections from mlarkin@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/29 17:49:58

Modified files:
	www/aria2      : Makefile distinfo 
Added files:
	www/aria2      : patch-src_Makefile_in 

Log message:
Update to aria2 1.27.1. OK gonzalo@ (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/09/29 20:08:52

Modified files:
	textproc/the_silver_searcher: Makefile distinfo 

Log message:
Update to the_silver_searcher 0.33.0. From Florian Stinglmayr (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/09/30 00:27:21

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
Revert sending router solicitations when a prefix expires and go back
to previous behaviour of starting quick, exponentially backing off and
settling on every 60 seconds.
sthen@ noticed that this broke the backing off when we don't receive
an advertisment and so we would hammer the network every second which
is particularly bad on wifi networks.
OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/09/30 01:33:06

Modified files:
	sys/arch/amd64/amd64: identcpu.c 
	sys/arch/amd64/include: cpu.h specialreg.h 

Log message:
Compute CR3 target count. Needed for upcoming debugging diff.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/30 02:43:23

Modified files:
	usr.bin/aucat  : abuf.c afile.c aucat.c dsp.c utils.c 

Log message:
Remove unnecessary includes. From Michael W. Bombardieri <mb at ii.net>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/30 03:03:37

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

Log message:
Update to py-pluggy 0.4.0


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/09/30 03:14:44

Modified files:
	usr.bin/aucat  : aucat.c 

Log message:
Set the device rate to the calculated rate. Otherwise, the signal
may endup resampled twice.


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/09/30 03:19:13

Modified files:
	usr.bin/ssh    : channels.c channels.h clientloop.c clientloop.h 
	                 mux.c opacket.h packet.c packet.h ssh.c 

Log message:
ssh proxy mux mode (-O proxy; idea from Simon Tatham):
- mux client speaks the ssh-packet protocol directly over unix-domain socket.
- mux server acts as a proxy, translates channel IDs and relays to the server.
- no filedescriptor passing necessary.
- combined with unix-domain forwarding it's even possible to run mux client
and server on different machines.
feedback & ok djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/30 03:45:56

Modified files:
	www/py-requests: Makefile distinfo 

Log message:
Update to py-requests 2.11.1


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/09/30 04:22:05

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Accept a packet smaller than ETHERMIN.

ok reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/30 04:53:11

Modified files:
	lib/libc/sys   : read.2 
	sys/kern       : vfs_vnops.c 

Log message:
Make read(2) return EISDIR on directories.

Years ago Theo made read(2) return 0 on directories, instead of dumping
the directory content.  Another behavior is allowed as an extension by
POSIX, returning an EISDIR error, as used on a few other systems.  This
behavior is deemed more useful as it helps spotting errors.  This
implies that it might break some setups.

Ports bulk builds by ajacoutot@ and naddy@, ok millert@ bluhm@ naddy@
deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/09/30 04:55:22

Modified files:
	sys/kern       : vfs_vnops.c 

Log message:
Drop a now unneeded variable initialization; spotted by bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/30 05:25:59

Log message:
    Import py-codestyle (was pep8), ok danj@
    
    pycodestyle is a tool to check your Python code against some of the style
    conventions in PEP 8.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20160930
    
    N ports/devel/py-codestyle/Makefile
    N ports/devel/py-codestyle/distinfo
    N ports/devel/py-codestyle/pkg/DESCR
    N ports/devel/py-codestyle/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/30 05:30:45

Modified files:
	devel          : Makefile 

Log message:
+py-codestyle
+py-codestyle,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/30 05:55:20

Modified files:
	regress/usr.bin/ssh: Makefile 
	regress/usr.bin/ssh/unittests: Makefile Makefile.inc 

Log message:
In ssh tests set REGRESS_FAIL_EARLY with ?= so that the environment
can change it.
OK djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/30 05:57:57

Modified files:
	usr.sbin/switchd: Makefile imsg_util.c ofcconn.c ofp.c ofp10.c 
	                  ofp13.c parse.y switchd.c switchd.h types.h 
	                  util.c 
Added files:
	usr.sbin/switchd: ofrelay.c 

Log message:
Implement socket server code that properly handles async I/O, partial
messages, multiple messages per buffer and important things like
connection limits and file descriptor accounting.  It works with TCP
connections as well as switch(4).  The ofrelay.c part replaces
networking that was in ofp.c and will soon handle all socket
connections of switchd.  It is called "ofrelay" because it will be
used as client, server, and forwarder.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/30 06:05:46

Modified files:
	sys/dev/wscons : wsconsio.h wskbd.c 

Log message:
Add a WSKBDIO_GETENCODINGS ioctl that returns the supported keyboard
encodings.

ok deraadt@, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/09/30 06:07:23

Modified files:
	sbin/kbd       : kbd_wscons.c 

Log message:
Use WSKBDIO_GETENCODINGS ioctl to generate a list of supported keyboard
encodings.  Restores functionality lost when removing the kvm groveling
code.

ok deraadt@, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/30 06:32:31

Modified files:
	usr.sbin/switchd: switchd.c types.h 

Log message:
Open next available tap(4) device instead of just tap0


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/30 06:33:43

Modified files:
	usr.sbin/switchd: ofp.c ofrelay.c switchd.h 

Log message:
Disable write events if there is nothing to write.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/30 06:40:00

Modified files:
	sys/net        : ofp.h 

Log message:
sync ofp.h from switchd, add missing comments


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/09/30 06:48:27

Modified files:
	usr.sbin/switchd: Makefile ofcconn.c ofp.c ofp10.c ofp10.h 
	                  ofp13.c switchd.h 
Removed files:
	usr.sbin/switchd: ofp.h 

Log message:
Remove local copy of ofp.h and use net/ofp.h instead


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/09/30 07:20:57

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Zap stray whitespace.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/30 07:32:19

Modified files:
	security/ccid  : Makefile distinfo 
	security/ccid/patches: patch-src_Makefile_in 

Log message:
Update to ccid-1.4.25


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/09/30 07:48:38

Modified files:
	security/opensc: Makefile 
Added files:
	security/opensc/patches: patch-src_pkcs11_openssl_c 

Log message:
Merge "allow building against libressl" (upstream git commit
7b9bd6003082a60bbc4452f048ca8a7b839025f1), and remove local workaround.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/30 08:27:52

Modified files:
	regress/sbin/pfctl: Makefile 

Log message:
also copy pf103.include to obj dir


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/30 08:33:10

Modified files:
	regress/usr.bin/cvs: Makefile 

Log message:
The opencvs sources are not linked to the build.  To make the cvs
regression test run, build opencvs on demand as a dependency.
Input and OK otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/09/30 08:34:36

Removed files:
	regress/sys/crypto/auth: Makefile md5.c 

Log message:
crypto(4) is no more


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/09/30 08:47:41

Modified files:
	libressl       : releases.html 

Log message:
fix version numbers; spotted by bernard spil


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/30 09:05:02

Modified files:
	app/cwm        : mousefunc.c 

Log message:
Switch to XWindowEvent() pulling out events that match the mask *and*
window.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/30 09:12:19

Modified files:
	app/cwm        : calmwm.h menu.c mousefunc.c 

Log message:
Replace mousefunc_sweep_draw() with a generic menu_windraw() using va
lists; use it appropriately for both window dimension and position in
the respective mousefunc calls.

ok bryent@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/09/30 10:04:13

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 53.0.2785.143


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/09/30 11:02:55

Modified files:
	bin/ksh        : ksh.1 

Log message:
remove unneccessary .Pp; from jan stary


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/09/30 12:28:04

Modified files:
	devel/pylint   : Makefile 

Log message:
Fix depends for py2 version


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/30 12:28:06

Modified files:
	app/cwm        : calmwm.h conf.c menu.c mousefunc.c xutil.c 

Log message:
Use instinsic X11 functions for key/btn/ptr grab/ungrab/regrab requests;
the one line wrappers provided no value and limited altering calls where
needed; additionally, most of them had but one caller.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/30 13:40:05

Modified files:
	devel/ruby-rgen: Makefile distinfo 
	devel/ruby-rgen/pkg: PLIST 

Log message:
update to rgen-0.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/30 13:55:18

Modified files:
	graphics/birdfont: Makefile distinfo 

Log message:
update to birdfont-2.16.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/09/30 14:12:59

Modified files:
	sysutils/ansible: Makefile distinfo 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_plugins_action_copy_py 
	sysutils/ansible/pkg: PLIST 

Log message:
update to ansible-2.1.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/09/30 14:24:46

Modified files:
	usr.bin/ssh    : channels.c 

Log message:
fix some -Wpointer-sign warnings in the new mux proxy; ok markus@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/30 14:55:54

Modified files:
	app/cwm        : client.c 

Log message:
Set the initial ptr position during client init, instead of waiting
until (maybe) a ptrwarp call. Likewise, explicitly ensure an inbounds ptr
position (same as initial) when saving.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/09/30 15:11:45

Modified files:
	sysutils/ruby-puppet/4: Makefile distinfo 

Log message:
Update to 4.7.0

Fixes just a single critical bug:
https://docs.puppet.com/puppet/4.7/reference/release_notes.html#critical-bug-fix

OK ajacoutot@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/09/30 15:44:51

Modified files:
	app/cwm        : calmwm.h 

Log message:
remove unused proto


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/30 16:11:37

Modified files:
	regress/usr.bin/cvs: Makefile setdate.pl 
Added files:
	regress/usr.bin/cvs: seed1.txt 
Removed files:
	regress/usr.bin/cvs/import_seed: seed1.txt 

Log message:
The import test of regress/usr.bin/cvs tries to touch a file in
src, not in obj.  So better populate an import directory in obj and
import from there.  Also remove trailing whitespaces and semicolons.
OK otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/09/30 16:23:28

Modified files:
	regress/usr.bin/cvs: test_opencvs_import_01_seed1.txt,v 

Log message:
The opencvs test checks the RCS id of the file I have just commited.
So the test broke with my commit.  Change the expected result and
hope that this commit will not break it again.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/09/30 17:47:28

Modified files:
	www/surf2      : Makefile distinfo 
	www/surf2/patches: patch-config_mk 

Log message:
Update to surf2 snapshot from 2016-09-22


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/09/30 19:33:21

Modified files:
	distrib/notes/armv7: prep 

Log message:
Add notes on installing on systems a miniroot is not available for.
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/01 00:17:47

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/01 04:17:44

Modified files:
	lib/pixman     : config.h.in configure configure.ac 
	lib/pixman/pixman: Makefile.am Makefile.in pixman-arm-common.h 
	                   pixman-arm-neon-asm-bilinear.S 
	                   pixman-arm-neon-asm.S pixman-arm-neon-asm.h 
	                   pixman-arm-neon.c 
	                   pixman-arm-simd-asm-scaled.S 
	                   pixman-arm-simd-asm.S pixman-arm-simd-asm.h 
	                   pixman-arm-simd.c pixman-combine-float.c 
	                   pixman-combine32.c pixman-fast-path.c 
	                   pixman-general.c pixman-gradient-walker.c 
	                   pixman-implementation.c pixman-inlines.h 
	                   pixman-mips-dspr2-asm.S 
	                   pixman-mips-dspr2-asm.h pixman-mips-dspr2.c 
	                   pixman-mips-dspr2.h pixman-mmx.c 
	                   pixman-private.h pixman-sse2.c pixman-vmx.c 
	                   pixman.c 
	lib/pixman/test: Makefile.in Makefile.sources blitters-test.c 
	                 check-formats.c composite.c 
	                 lowlevel-blt-bench.c pixel-test.c 
	                 scaling-test.c thread-test.c utils.c utils.h 
Added files:
	lib/pixman/pixman: pixman-arm-asm.h 
	lib/pixman/test: affine-bench.c cover-test.c 
	                 fence-image-self-test.c radial-invalid.c 
	                 solid-test.c tolerance-test.c 

Log message:
Update to pixman 0.34.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/10/01 05:54:18

Modified files:
	archivers/fuse-zip: Makefile 
	audio/libofa   : Makefile 
	benchmarks/httperf: Makefile 
	chinese/cconv  : Makefile 
	comms/picocom  : Makefile 
	comms/wy60     : Makefile 
	databases/leveldb: Makefile 
	databases/py-apsw: Makefile 
	devel/arduino  : Makefile 
	devel/codeworker: Makefile 
	devel/dissy    : Makefile 
	devel/gflags   : Makefile 
	devel/gtest    : Makefile 
	devel/ocaml-bitstring: Makefile 
	devel/protobuf : Makefile 
	devel/py-mox   : Makefile 
	devel/py-progressbar: Makefile 
	devel/pybugz   : Makefile 
	devel/rlog     : Makefile 
	devel/shunit2  : Makefile 
	devel/sparsehash: Makefile 
	devel/ucpp     : Makefile 
	editors/texworks: Makefile 
	games/choria   : Makefile 
	games/pingus   : Makefile 
	games/singularity: Makefile 
	geo/gmapcatcher: Makefile 
	graphics/delaboratory: Makefile 
	graphics/ffmpegthumbnailer: Makefile 
	graphics/fotowall: Makefile 
	graphics/openjpeg: Makefile 
	graphics/py-dot: Makefile 
	graphics/py-graphics: Makefile 
	infrastructure/templates: network.conf.template 
	inputmethods/ibus: Makefile 
	inputmethods/ibus-anthy: Makefile 
	japanese/mecab : Makefile 
	lang/processing: Makefile 
	math/foma      : Makefile 
	math/geogebra  : Makefile 
	misc/p5-Umph-Prompt: Makefile 
	multimedia/libmp4v2: Makefile 
	net/flow-tools : Makefile 
	net/grake      : Makefile 
	net/libdnet    : Makefile 
	net/openvpn-auth-ldap: Makefile 
	net/p5-SNMP_Session: Makefile 
	net/py-dpkt    : Makefile 
	net/py-flowtools: Makefile 
	net/softflowd  : Makefile 
	net/tircd      : Makefile 
	net/torsocks   : Makefile 
	net/unworkable : Makefile 
	print/apvlv    : Makefile 
	print/detex    : Makefile 
	productivity/akonadi-googledata: Makefile 
	productivity/libgcal: Makefile 
	security/bunny : Makefile 
	security/encfs : Makefile 
	security/py-pefile: Makefile 
	security/yubiserve: Makefile 
	sysutils/py-lockfile: Makefile 
	textproc/iksemel: Makefile 
	textproc/py-prettytable: Makefile 
	textproc/txt2tags: Makefile 
	textproc/uchardet: Makefile 
	www/ap2-mod_wsgi: Makefile 
	www/drupal6/jquery_ui: Makefile 
	www/gcap       : Makefile 
	www/mollify    : Makefile 
	www/sabredav   : Makefile 
	www/sqtop      : Makefile 
	x11/faenza-icon-theme: Makefile 
	x11/gnome-colors-icon-theme: Makefile 
	x11/goggles    : Makefile 
	x11/keynav     : Makefile 
	x11/partiwm    : Makefile 
	x11/pinot      : Makefile 
	x11/py-pyglet  : Makefile 
	x11/tktray     : Makefile 
	x11/wbar       : Makefile 

Log message:
The ${PROJECT}.googlecode.com/files/ master sites are no longer
accessible, but the distfiles are still available at an archive URL.
Introduce MASTER_SITE_GOOGLECODE and use it for all affected ports.

ok czarkoff@ danj@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/10/01 06:56:12

Modified files:
	games/openmw   : Makefile distinfo 
	games/openmw/patches: patch-apps_wizard_CMakeLists_txt 

Log message:
Update to OpenMW 0.40.0, from David CARLIER.


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/10/01 06:56:54

Modified files:
	games/stone-soup: Makefile distinfo 
	games/stone-soup/patches: patch-source_Makefile 
	games/stone-soup/pkg: PFRAG.no-no_x11 PLIST 
Added files:
	games/stone-soup/patches: 
	                          patch-source_debian_crawl-tiles_desktop 
Removed files:
	games/stone-soup/patches: patch-source_command_cc 
	                          patch-source_dat_des_branches_dis_des 
	                          patch-source_dat_des_builder_shops_des 
	                          patch-source_dat_des_variable_grated_community_des 

Log message:
Update to stone-soup 0.18.1.
Patch by Henrique N. Lengler


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/10/01 06:58:18

Modified files:
	games/stone-soup: Makefile 

Log message:
fix some whitespace issues in stone-soup's Makefile


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/10/01 07:56:26

Modified files:
	devel/npth     : Makefile 
	infrastructure/templates: network.conf.template 
	security/gnupg : Makefile 
	security/gnupg2: Makefile 
	security/gpa   : Makefile 
	security/gpgme : Makefile 
	security/libassuan: Makefile 
	security/libgcrypt: Makefile 
	security/libgpg-error: Makefile 
	security/libksba: Makefile 
	security/pinentry: Makefile 

Log message:
rename MASTER_SITES_GNUPG to MASTER_SITE_GNUPG, like all the others


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/01 09:14:45

Modified files:
	www/py-jwt     : Makefile distinfo 
	www/py-jwt/patches: patch-setup_py 

Log message:
Update to py-jwt-1.4.2

From Johan Huldtgren (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/01 09:20:08

Modified files:
	security/py-oauthlib: Makefile distinfo 
	security/py-oauthlib/pkg: PLIST 

Log message:
Update to py-oauthlib-2.0.0

From Johan Huldtgren (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/01 10:58:29

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/01 12:04:25

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

Log message:
some minor tweaks; ok yasuoka


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/01 14:21:38

Modified files:
	infrastructure/db: user.list 

Log message:
book a seat for _rundeck


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/01 14:36:01

Modified files:
	net/apache-activemq: Makefile distinfo 
	net/apache-activemq/pkg: PLIST 

Log message:
update to apache-activemq-5.14.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2016/10/01 20:06:20

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

Log message:
Update to Snort 2.9.8.3.  Also remove README.session from PLIST since it no
longer exists.

Tested on amd64 by myself and on i386 by maintainer.

ok Markus Lude (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/10/01 20:36:10

Modified files:
	lang/bacon     : Makefile distinfo 
	lang/bacon/patches: patch-Makefile_in 

Log message:
Update to BaCon 3.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/02 00:36:39

Modified files:
	sys/arch/armv7/imx: imxehci.c 
	sys/dev/usb    : ehci.c ehcireg.h ehcivar.h 

Log message:
Save and restore the (non-standard) USBMODE register around a reset of the
controller.  This register controls whether the controller is in device or
host mode on many dual role controllers and gets reset during a reset of
the controller, placing the controller in (non-functional) idle mode.  By
saving and restoring it, we keep the controller in host mode.  Since this is
a non-standard register, add a new EHCIF_USBMODE flag and only do the save and
restore if it has been set.

Makes the upper "OTG" port of the Cubox-i work.

ok mpi@, jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/02 01:44:05

Modified files:
	devel/ruby-rspec/3/core: Makefile distinfo 

Log message:
update to rspec-core-3.5.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/02 01:47:55

Modified files:
	www/py-django/lts: Tag: OPENBSD_6_0 Makefile distinfo 
	www/py-django/lts/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
security fix for 1.8 version.
ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/02 01:48:46

Modified files:
	www/py-django/lts: Makefile distinfo 
	www/py-django/lts/pkg: PLIST 

Log message:
security fix for 1.8 version (1.8.14->1.8.15)
ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/02 02:05:51

Modified files:
	graphics/birdfont: Makefile distinfo 
Removed files:
	graphics/birdfont/patches: patch-configure patch-dodo_py 

Log message:
update to birdfont-2.16.10


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/10/02 02:08:11

Modified files:
	sys/sys        : ctf.h 

Log message:
add integer and float encoding macros

ok mpi@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/02 03:12:47

Modified files:
	app/xdm        : Makefile.bsd-wrapper 

Log message:
Explicitly set the owner of the shell scripts in etc/X11/xdm and of the
chooser and xdm binaries to BINOWN:BINGRP.  Needed for noperm release.

ok mathieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/02 03:16:22

Modified files:
	distrib/sets   : Makefile 

Log message:
Explicitly set owners of the xorg.db locate(1) database and of the
xetc.tgz set for sysmerge.  Needed for noperm release.

ok matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/02 03:19:28

Modified files:
	lib/fontconfig/conf.d: Makefile 

Log message:
chown -h symbolic links in conf.d.  Needed for noperm release.
There are a few remaining symlinks that will be fixed later.

ok matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/02 03:23:26

Modified files:
	font/dejavu-ttf: Makefile 

Log message:
Explicitly set owner and group of the symlinks in etc/fonts/conf.d and
of the fonts.dir and fonts.scale indexes. Needed for noperm release.

ok matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/02 03:25:23

Modified files:
	.              : Makefile 

Log message:
Set owner and group of the mandoc.db, the xetcsum file for sysmerge
and of the app-defaults symlink.  Needed for noperm release.

ok matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/02 03:28:53

Modified files:
	lib/libXScrnSaver: Makefile.bsd-wrapper 

Log message:
Set owner and group of the XScreenSaver(3) manpage symlink.
Needed for noperm release.

ok matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/02 03:30:18

Modified files:
	driver/xf86-input-mouse: Makefile.bsd-wrapper 

Log message:
Explicitly set owner and group of the mouse(4) manpage symlink.
Needed for noperm release.

ok matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 03:34:36

Modified files:
	font/adobe-100dpi: Makefile.am 
	font/adobe-75dpi: Makefile.am 
	font/adobe-utopia-100dpi: Makefile.am 
	font/adobe-utopia-75dpi: Makefile.am 
	font/adobe-utopia-type1: Makefile.am 
	font/arabic-misc: Makefile.am 
	font/bh-100dpi : Makefile.am 
	font/bh-75dpi  : Makefile.am 
	font/bh-lucidatypewriter-100dpi: Makefile.am 
	font/bh-lucidatypewriter-75dpi: Makefile.am 
	font/bh-ttf    : Makefile.am 
	font/bh-type1  : Makefile.am 
	font/bitstream-100dpi: Makefile.am 
	font/bitstream-75dpi: Makefile.am 
	font/bitstream-type1: Makefile.am 
	font/cronyx-cyrillic: Makefile.am 
	font/cursor-misc: Makefile.am 
	font/daewoo-misc: Makefile.am 
	font/dec-misc  : Makefile.am 
	font/ibm-type1 : Makefile.am 
	font/isas-misc : Makefile.am 
	font/jis-misc  : Makefile.am 
	font/micro-misc: Makefile.am 
	font/misc-cyrillic: Makefile.am 
	font/misc-ethiopic: Makefile.am 
	font/misc-meltho: Makefile.am 
	font/misc-misc : Makefile.am 
	font/mutt-misc : Makefile.am 
	font/schumacher-misc: Makefile.am 
	font/screen-cyrillic: Makefile.am 
	font/sony-misc : Makefile.am 
	font/sun-misc  : Makefile.am 
	font/winitzki-cyrillic: Makefile.am 
	font/xfree86-type1: Makefile.am 

Log message:
Typo font.dir -> fonts.dir


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 03:36:29

Modified files:
	font/adobe-100dpi: Makefile.in aclocal.m4 configure 
	font/adobe-75dpi: Makefile.in aclocal.m4 configure 
	font/adobe-utopia-100dpi: Makefile.in aclocal.m4 configure 
	font/adobe-utopia-75dpi: Makefile.in aclocal.m4 configure 
	font/adobe-utopia-type1: Makefile.in aclocal.m4 configure 
	font/arabic-misc: Makefile.in aclocal.m4 configure 
	font/bh-100dpi : Makefile.in aclocal.m4 configure 
	font/bh-75dpi  : Makefile.in aclocal.m4 configure 
	font/bh-lucidatypewriter-100dpi: Makefile.in aclocal.m4 
	                                 configure 
	font/bh-lucidatypewriter-75dpi: Makefile.in aclocal.m4 configure 
	font/bh-ttf    : Makefile.in aclocal.m4 config.guess config.sub 
	                 configure install-sh missing 
	font/bh-type1  : Makefile.in aclocal.m4 configure 
	font/bitstream-100dpi: Makefile.in aclocal.m4 configure 
	font/bitstream-75dpi: Makefile.in aclocal.m4 configure 
	font/bitstream-type1: Makefile.in aclocal.m4 configure 
	font/cronyx-cyrillic: Makefile.in aclocal.m4 configure 
	font/cursor-misc: Makefile.in aclocal.m4 configure 
	font/daewoo-misc: Makefile.in aclocal.m4 configure 
	font/dec-misc  : Makefile.in aclocal.m4 configure 
	font/ibm-type1 : Makefile.in aclocal.m4 configure 
	font/isas-misc : Makefile.in aclocal.m4 configure 
	font/jis-misc  : Makefile.in aclocal.m4 configure 
	font/micro-misc: Makefile.in aclocal.m4 configure 
	font/misc-cyrillic: Makefile.in aclocal.m4 configure 
	font/misc-ethiopic: Makefile.in aclocal.m4 configure 
	font/misc-meltho: Makefile.in aclocal.m4 configure 
	font/misc-misc : Makefile.in aclocal.m4 configure 
	font/mutt-misc : Makefile.in aclocal.m4 configure 
	font/schumacher-misc: Makefile.in aclocal.m4 configure 
	font/screen-cyrillic: Makefile.in aclocal.m4 configure 
	font/sony-misc : Makefile.in aclocal.m4 configure 
	font/sun-misc  : Makefile.in aclocal.m4 configure 
	font/winitzki-cyrillic: Makefile.in aclocal.m4 configure 
	font/xfree86-type1: Makefile.in aclocal.m4 configure 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 04:00:36

Modified files:
	lib/libXaw     : xaw7.pc.in 
	lib/libXaw/man : Makefile.am 

Log message:
Reduce diffs with upstreams


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/02 04:15:22

Modified files:
	databases/ruby-hiera-file: Makefile 

Log message:
sebastia took over maintainership for this


CVSROOT:	/cvs
Module name:	www
Changes by:	mpi@cvs.openbsd.org	2016/10/02 04:21:52

Modified files:
	.              : want.html 

Log message:
I don't need more USB gear for the moment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 04:23:52

Modified files:
	devel/py-backports-functools-lru-cache: Makefile distinfo 

Log message:
Update to py-backports-functools-lru-cache 1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 04:26:33

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

Log message:
Update to pyflakes 1.3.0.

ok frantisek holop (maintainer), danj@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 04:30:06

Modified files:
	lib/libXaw     : configure.ac 
	lib/libXaw/src : Makefile.am 

Log message:
Remove local patch for platforms without shared libs


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 04:30:28

Modified files:
	lib/libXaw     : configure 
	lib/libXaw/src : Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 04:36:25

Modified files:
	devel/py-country: Makefile distinfo 
	devel/py-country/pkg: DESCR PLIST 

Log message:
Update to py-country 1.20. Add py3 flavor and take mantainership.

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 04:41:45

Log message:
    Import py-spark-parser 1.4.0, ok danj@
    
    SPARK stands for Scanning, Parsing, and Rewriting Kit. It uses Jay Early’s
    algorithm for parsing context free grammars, and comes with some generic
    Abstract Syntax Tree routines. There is also a prototype scanner which does
    its job by combining Python regular expressions.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161002
    
    N ports/devel/py-spark-parser/Makefile
    N ports/devel/py-spark-parser/distinfo
    N ports/devel/py-spark-parser/pkg/PLIST
    N ports/devel/py-spark-parser/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 05:08:14

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

Log message:
Update to py-traitlets 4.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 05:15:37

Modified files:
	devel          : Makefile 

Log message:
+py-country,python3
+py-spark-parser
+py-spark-parser,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 05:39:39

Log message:
    Import py-xdis 2.3.1, ok danj@
    
    Python cross-version byte-code disassembler and marshal routines.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161002
    
    N ports/devel/py-xdis/Makefile
    N ports/devel/py-xdis/distinfo
    N ports/devel/py-xdis/pkg/PLIST
    N ports/devel/py-xdis/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 05:42:28

Log message:
    Import py-uncompyle6 2.8.3, ok dnaj@
    
    A native Python cross-version Decompiler and Fragment Decompiler.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161002
    
    N ports/devel/py-uncompyle6/Makefile
    N ports/devel/py-uncompyle6/distinfo
    N ports/devel/py-uncompyle6/pkg/PLIST
    N ports/devel/py-uncompyle6/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 05:45:49

Log message:
    Import py-hypothesis 3.5.2, ok danj@
    
    Hypothesis is an advanced testing library for Python. It lets you write
    tests which are parametrized by a source of examples, and then generates
    simple and comprehensible examples that make your tests fail. This lets
    you find more bugs in your code with less work.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161002
    
    N ports/devel/py-hypothesis/Makefile
    N ports/devel/py-hypothesis/distinfo
    N ports/devel/py-hypothesis/pkg/PLIST
    N ports/devel/py-hypothesis/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 06:01:11

Modified files:
	devel          : Makefile 

Log message:
+py-hypothesis
+py-hypothesis,python3
+py-uncompyle6
+py-uncompyle6,python3
+py-xdis
+py-xdis,python3


CVSROOT:	/cvs
Module name:	www
Changes by:	mpi@cvs.openbsd.org	2016/10/02 08:17:19

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2016-embracingbsdrt.pdf 

Log message:
Slides for my EuroBSDcon 2016 talk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/02 09:12:36

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

Log message:
Update to py-configparser 3.5.0.

ok danj@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/02 10:51:16

Modified files:
	faq            : faq10.html 

Log message:
trim the section on doas and just link to the doas.conf manual for examples.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 11:16:31

Modified files:
	lib/libXaw     : Makefile.bsd-wrapper 
	lib/libXaw/src : Makefile.am 

Log message:
Handle the libXaw.so.xx.y symlink in afterinstall: in Makefile.bsd-wrapper
No more diffs with upstreams in autoconf files;
owneship of links for non-root/noperm installs is handled too.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 11:17:04

Modified files:
	lib/libXaw/src : Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 11:21:29

Modified files:
	xserver        : Makefile.bsd-wrapper 

Log message:
fix the ownership of the link /usr/X11R6/bin/X -> Xorg


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/02 11:42:31

Modified files:
	usr.bin/make   : varmodifiers.c 

Log message:
Avoid two printf("%s", NULL) with 'make -d v'.

improvements & ok espie, earlier version ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/02 12:24:49

Modified files:
	www/py-django/stable: Makefile distinfo 
	www/py-django/stable/pkg: PLIST 

Log message:
update django to 1.10.2.
ok shadchin@.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/02 12:51:44

Modified files:
	sys/dev/ic     : ahci.c 

Log message:
Contrary to e. g. the xHCI specification, the AHCI rev. 1.3 spec
does not say anything about which type (snoopable/uncached etc.) of
bus transactions are issued by HBAs on accesses to the descriptors.
Thus, the right assumption would be "classical" concurrent accesses
by both CPU/driver as well as hardware to the descriptors and their
DMA memory backings respectively, which is also confirmed by actual
testing. Consequently, switch to BUS_DMA_COHERENT mappings for said
DMA memory as otherwise corruption of descriptors is seen.

From Marius Strobl

tested by awolk (amd64), bluhm (amd64, i386), myself (amd64, armv7)
ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/02 12:53:28

Modified files:
	sys/dev/ic     : ahci.c 

Log message:
Given that ahci_port_alloc() grabs one CCB for use during NCQ error
recovery from the CCB pool sized based on the NCS capability, i. e.
number of command slots reported by the controller, it is necessary
to pretend at least 2 slots in sc->sc_ncmds for devices without NCQ
support. That way, also at least 1 available slot is made available
for atascsi(4). Otherwise, controllers having only a single command
slot will trigger "no free xfers on a new port" in atascsi(4).
Note that pretending 2 command slots is also fine with the abuse of
the NCQ error recovery CCB in ahci_port_softreset().

From Marius Strobl

tested by awolk (amd64), bluhm (amd64, i386), myself (amd64, armv7)
ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/02 12:54:02

Modified files:
	sys/dev/ic     : ahci.c 

Log message:
Some HBAs report NCQ capability despite only supporting one command
slot. Thus, extend the check whether NCQ actually should be enabled
accordingly.

From Marius Strobl

tested by awolk (amd64), bluhm (amd64, i386), myself (amd64, armv7)
ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/02 12:56:05

Modified files:
	sys/dev/ic     : ahci.c 

Log message:
Some HABs reset parts of AHCI_PREG_CMD when AHCI_PREG_SCTL_DET_INIT
gets set. Therefore, ahci_port_softreset() restores the sate of the
former register once the device detection sequence is finished. The
device detection code in ahci_pmp_port_portreset() does not restore
AHCI_PREG_CMD afterwards, so let it catch up. Apparently, this part
was an oversight as ahci_pmp_port_portreset() did not otherwise use
"cmd".

From Marius Strobl

tested by awolk (amd64), bluhm (amd64, i386), myself (amd64, armv7)
ok jmatthew@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 13:11:16

Modified files:
	lib/libXaw     : Makefile.bsd-wrapper 

Log message:
Fix installation of libXaw.so.15.0 link.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/10/02 13:17:38

Modified files:
	mail/rspamd    : Makefile 
Added files:
	mail/rspamd/patches: patch-src_libserver_html_c 
	                     patch-src_libserver_url_c 

Log message:
mail/rspamd: Backport some patches to fix two crashes I encountered.

OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/02 14:11:32

Modified files:
	sys/arch/arm/include: tcb.h 

Log message:
The userspace TCB_GET() shouldn't take an argument

ok deraadt@ tom@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/02 14:45:04

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
In X509_cmp_time(), pass asn1_time_parse() the tag of the field being
parsed so that a malformed GeneralizedTime field is recognized as an error
instead of potentially being interpreted as if it was a valid UTCTime.

Reported by Theofilos Petsios (theofilos (at) cs.columbia.edu)

ok beck@ tedu@ jsing@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/02 14:45:45

Modified files:
	faq            : faq10.html 

Log message:
move introductory paragraph on doas to the beginning of the section
and thin out some redundant text.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 14:51:20

Modified files:
	font/bh-ttf    : Makefile.bsd-wrapper 

Log message:
Fix ownership of /etc/fonts/conf.d/42-luxi-mono.conf link


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/02 14:55:09

Modified files:
	font           : Makefile.inc 
	font/alias     : Makefile.bsd-wrapper 

Log message:
Fix ownership of fonts.dir and font.scale files as well as
fontconfig font caches.
mkfontdir and mkfontscale are now run out of font/alias at the end
of the build or install, like fc-cache.
fc-cache is using its -y (sysroot) flag that works if used correctly.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/02 15:05:44

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Detect zero-length encrypted session data early, instead of when malloc(0)
fails or the HMAC check fails.

Noted independently by jsing@ and Kurt Cancemi (kurt (at) x64architecture.com)
ok bcook@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/02 15:16:26

Modified files:
	faq            : index.html faq10.html 

Log message:
rename the doas session to "executing commands as another user" and
add back a brief mention of sudo


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/02 15:18:08

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Check for and handle failure of HMAC_{Update,Final} or EVP_DecryptUpdate()

based on openssl commit a5184a6c89ff954261e73d1e8691ab73b9b4b2d4
ok bcook@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/02 15:19:05

Modified files:
	faq            : faq10.html 

Log message:
better wording from tj that arrived 2s too late


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/02 16:28:49

ports/devel/p5-AnyEvent/patches

Update of /cvs/ports/devel/p5-AnyEvent/patches
In directory cvs.openbsd.org:/tmp/cvs-serv56110/patches

Log Message:
Directory /cvs/ports/devel/p5-AnyEvent/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/02 17:11:55

Modified files:
	lib/libkvm     : shlib_version kvm_cd9660.c kvm_file2.c 
	                 kvm_ntfs.c kvm_udf.c 
	sys/kern       : kern_sysctl.c 
	sys/sys        : sysctl.h 

Log message:
Add va_nlink information to struct kinfo_file (so bump the shlib minor)

from Sebastien Marie


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/02 17:16:08

Modified files:
	usr.bin/fstat  : fstat.1 fstat.c 

Log message:
Indicate with an asterisk when a file has been unlinked.

from Sebastien Marie


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/02 17:22:52

Modified files:
	lib/libssl/src/crypto: Tag: OPENBSD_6_0 opensslv.h 

Log message:
bump to 2.4.4


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/02 17:24:56

Modified files:
	lib/libssl/src/crypto: Tag: OPENBSD_5_9 opensslv.h 

Log message:
bump to 2.3.9


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/02 17:38:32

Modified files:
	sys/arch/armv7/omap: if_cpsw.c 

Log message:
Set IFCAP_VLAN_MTU capability in cpsw(4).  Avoids
"ifconfig: SIOCSETVLAN: No buffer space available" when creating vlan
interfaces without first lowering the mtu.  Reported by Steven Chamberlain,
diagnosed by mikeb@, patch from Brad.  ok bmercer@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/02 18:55:34

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/02 19:59:20

Modified files:
	sys/arch/armv7/omap: files.omap omap.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 
Added files:
	sys/arch/armv7/omap: ompinmux.c 

Log message:
Disable sitaracm and add a new ompinmux driver for omap pin muxing/pad
configuration that attaches with the fdt and writes values to registers
based on the pinctrl data in the fdt.  Handles 16 bit values
(OMAP3/OMAP4) and 32 bit values (AM335x/AM57xx).

Feedback from and ok kettenis@ tom@ on an earlier version.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/02 20:21:51

Modified files:
	share/man/man4/man4.armv7: Makefile 
Added files:
	share/man/man4/man4.armv7: ompinmux.4 

Log message:
Add a manual page for ompinmux.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/02 22:13:58

Modified files:
	lib/libtls     : tls_util.c 

Log message:
use the same type for buf as the return type in tls_load_file

ok tedu@, noted by kinichiro


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/02 22:53:55

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 

Log message:
disable PAT and MTRR in guest VMs


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/02 23:59:24

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
style cleanup


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/03 00:00:17

Modified files:
	usr.sbin/vmd   : i8253.c i8253.h i8259.c i8259.h mc146818.c 
	                 mc146818.h ns8250.c ns8250.h 

Log message:
add RCS tags


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/03 00:57:45

Modified files:
	lib/pixman/pixman: pixman-vmx.c 

Log message:
revert pixman-vmx.c to the version of pixman-0.32.8.
gcc 4.2 is not able to compile the new version.
XXX switch back to 0.34 once macppc switches to clang.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/10/03 01:40:00

Modified files:
	devel/capstone : Makefile 
	devel/capstone/patches: patch-Makefile 

Log message:
Fix SONAME so that binaries built with -lcapstone can actually find the library.

ok benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 01:43:40

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

Log message:
Update to py-botocore-1.4.58.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 01:44:00

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 01:44:25

Modified files:
	devel/py-colorama: Makefile distinfo 

Log message:
Update to py-colorama-0.3.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 01:44:49

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 01:52:38

Modified files:
	productivity/tryton/account: Makefile distinfo 

Log message:
Update to trytond-module-account-3.2.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 01:52:58

Modified files:
	productivity/tryton/party_vcarddav: Makefile distinfo 

Log message:
Update to trytond-module-party_vcarddav-3.2.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 01:53:13

Modified files:
	productivity/tryton/tryton: Makefile distinfo 

Log message:
Update to tryton-3.2.18.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 02:00:46

Modified files:
	security/libnettle: Makefile distinfo 
	security/libnettle/pkg: PLIST 

Log message:
Update to libnettle-3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 02:04:37

Modified files:
	multimedia/x264: Makefile distinfo 
	multimedia/x264/patches: patch-common_osdep_h patch-configure 

Log message:
Update to x264-20160930.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 02:05:37

Modified files:
	multimedia/x265: Makefile distinfo 

Log message:
Update to x265-2.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/03 02:48:33

Modified files:
	devel/py-traitlets: Makefile 

Log message:
Fix build IPython, spotted by Nigel Taylor.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/03 03:34:45

Modified files:
	textproc/elasticsearch: Makefile distinfo 
	textproc/elasticsearch/pkg: PLIST 

Log message:
Update to 2.4.1
tested by jasper@ and Pavel Korovin
ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/03 03:37:10

Modified files:
	sysutils/logstash: Makefile distinfo 
	sysutils/logstash/pkg: PLIST 

Log message:
Update to 2.4.0v0
tested by jasper@ and Pavel Korovin
ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/03 03:38:40

Modified files:
	www/kibana     : Makefile distinfo 
	www/kibana/pkg : PLIST 

Log message:
Update to 4.6.1
ok jasper@ and Pavel Korovin (Maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 04:38:30

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

Log message:
report signify2 as well


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 04:59:54

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgSign.pm Signer.pm 

Log message:
throw a decent error message, signify2 can't (yet) sign non local packages
(it would need a way to get "raw" gzip data)


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/03 05:16:12

Modified files:
	lib/libssl/src/crypto/x509: Tag: OPENBSD_6_0 x509_vfy.c 

Log message:
In X509_cmp_time(), pass asn1_time_parse() the tag of the field being
parsed so that a malformed GeneralizedTime field is recognized as an error
instead of potentially being interpreted as if it was a valid UTCTime.

Reported by Theofilos Petsios (theofilos (at) cs.columbia.edu)
ok beck@ tedu@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/03 05:20:03

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_6_0 t1_lib.c 

Log message:
Improve ticket validity checking when tlsext_ticket_key_cb() callback
chooses a different HMAC algorithm.
Avert memory leaks if the callback preps the HMAC in some way.

Based on openssl commit 1bbe48ab149893a78bf99c8eb8895c928900a16f
but retaining a pre-callback length check to guarantee the callback
is provided the buffer that the API claims.

ok bcook@ jsing@
original commit by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/03 05:23:13

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_6_0 s3_srvr.c 

Log message:
Check for packet with truncated DTLS cookie.
Flip pointer comparison logic to avoid beyond-end-of-buffer pointers
to make it less likely a compiler will decide to screw you.

Based on parts of openssl commits
6f35f6deb5ca7daebe289f86477e061ce3ee5f46 and
89c2720298f875ac80777da2da88a64859775898

ok jsing@
original commit by @guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/03 05:24:28

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_6_0 t1_lib.c 

Log message:
Detect zero-length encrypted session data early, instead of when malloc(0)
fails or the HMAC check fails.

Noted independently by jsing@ and Kurt Cancemi (kurt (at) x64architecture.com)
ok bcook@
original patch by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/03 05:25:39

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_6_0 t1_lib.c 

Log message:
Check for and handle failure of HMAC_{Update,Final} or EVP_DecryptUpdate()

based on openssl commit a5184a6c89ff954261e73d1e8691ab73b9b4b2d4
ok bcook@
original patch by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/03 05:54:29

Modified files:
	sys/kern       : kern_timeout.c 

Log message:
avoid holding timeout_mutex while interacting with the scheduler.

as noted by haesbaert, this is necessary to avoid deadlocks because
the scheduler can call back into the timeout subsystem while its
holding its own locks.

this happened in two places. firstly, in softclock() it would take
timeout_mutex to find pending work. if that pending work needs a
process context, it would queue the work for the thread and call
wakeup, which enters the scheduler locks. if another cpu is trying
to tsleep (or msleep) with a timeout specified, the sleep code would
be holding the sched lock and call timeout_add, which takes
timeout_mutex.

this is solved by deferring the wakeup to after timeout_mutex is
left. this also has the benefit of mitigating the number of wakeups
done per softclock tick.

secondly, the timeout worker thread takes timeout_mutex and calls
msleep when there's no work to do (ie, the queue is empty). msleep
will take the sched locks. again, if another cpu does a tsleep
with a timeout, you get a deadlock.

to solve this im using sleep_setup and sleep_finish to sleep on an
empty queue, which is safe to do outside the lock as it is comparisons
of the queue head pointers, not derefs of the contents of the queue.

as long as the sleeps and wakeups are ordered correctly with the
enqueue and dequeue operations under the mutex, this all works.
you can think of the queue as a single descriptor ring, and the
wakeup as an interrupt.

the second deadlock was identified by guenther@
ok tedu@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/03 06:06:43

Modified files:
	regress/sys/kern/setuid: Makefile 

Log message:
The setuid tests needs an obj directory that allows to run programs
with set user id.  Skip the test if the current filesystem has set
the nosuid mount option.
OK otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dlg@cvs.openbsd.org	2016/10/03 06:11:29

Modified files:
	devel/libgtop2 : Makefile 
Added files:
	devel/libgtop2/patches: patch-sysdeps_openbsd_procmap_c 

Log message:
gut the procmap functionality so this can build.

i broke it by moving uvm datastructures from RB macros to RBT
functions. gutting libgtop2 basically means make it return an empty
list of mappings.

ok jasper@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 06:14:08

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

Log message:
display a decent error message


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/03 06:16:41

Modified files:
	usr.sbin/snmpd : snmpd.h 

Log message:
include sys/tree.h explicitly rather than rely on a random pf header
to do it.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/03 06:19:59

Modified files:
	usr.sbin/snmpd : usm.c 

Log message:
use EVP_CipherFinal_ex instead of EVP_CipherFinal

EVP_CipherFinal_ex has well defined behaviour, where EVP_CipherFinal
can vary depending on the version of your ssl library.

ok bcook@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/03 06:26:13

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

Log message:
Use detach hook to notify bridge of interface removal instead of adding
code to if.c.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/03 06:30:43

Modified files:
	usr.sbin/ntpd  : util.c 

Log message:
Fix a possible bug that will happen with dup2() when oldd == newd. In that
case the dup2() would fail silently and the descriptor would remain with
the CLOEXEC flag causing the exec*()d child process to have unexpected
behavior.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/10/03 06:33:21

Modified files:
	sys/netinet6   : in6.c in6.h ip6_forward.c ip6_id.c ip6_mroute.c 
	                 nd6.c nd6_rtr.c 

Log message:
Convert some of the remaining usages of time_second to time_uptime.

time_second is unix time so it can be affected by clock changes.
time_uptime is monotonic so it isnt affected by clock changes. that
in turn means route expiries wont jump with clock changes if set
against time_uptime.

the expiry is translated into unix time for export to userland though.

Should fix mismatch between route timers that were already converted
and ND default routers that were still using time_second.

Tested by matthieu@ and sthen@

ok sthen@, dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/03 06:38:00

Log message:
    import p5-Test-RequiresInternet 0.05
    OK benoit@
    
    Comment:
    easily test network connectivity
    
    Description:
    This module is intended to easily test network connectivity before
    functional tests begin to non-local Internet resources.  It does
    not require any modules beyond those supplied in core Perl.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20161003
    
    N ports/devel/p5-Test-RequiresInternet/Makefile
    N ports/devel/p5-Test-RequiresInternet/distinfo
    N ports/devel/p5-Test-RequiresInternet/pkg/DESCR
    N ports/devel/p5-Test-RequiresInternet/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/03 06:43:44

Modified files:
	devel          : Makefile 

Log message:
+p5-Test-RequiresInternet


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/03 07:03:49

Modified files:
	sbin/kbd       : kbd_wscons.c 

Log message:
Those while loops look better written as for loops

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 07:11:38

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

Log message:
document what signify2 does, remove remnants of signify/x509.
comment out stuff that's not supported yet, but may make a come-back later


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 07:17:30

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCreate.pm PkgSign.pm Signer.pm 

Log message:
kill creating old signatures.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 07:24:44

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

Log message:
No need to record gzip position after CONTENTS since we don't need partial
copy for newer signatures


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/03 07:40:40

Modified files:
	mail/thunderbird-i18n: Makefile.inc distinfo 
	mail/mozilla-thunderbird: Makefile distinfo 

Log message:
Bugfix update to tb 45.4.0.

See https://www.mozilla.org/en-US/thunderbird/45.4.0/releasenotes/


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/03 07:41:30

Modified files:
	app/cwm        : client.c kbfunc.c xevents.c 

Log message:
client_ptrwarp should not deal with unhiding or raising clients (non ptr
requests); most callers do this already - deal with the few that do not.
client_ptrwarp becomes a simple wrapper (setpos) but it will be expanded.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/03 07:52:18

Modified files:
	app/cwm        : kbfunc.c mousefunc.c 

Log message:
For both kb and mouse move, it is possible to grab a client and move it
completely off the screen/region; instead, if the pointer is outside of
the client bounds, warp the pointer to the closest edge before moving.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 07:58:09

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

Log message:
gc the old checking code in pkg_add


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/10/03 08:05:21

Modified files:
	sys/dev/usb    : xhci.c 

Log message:
Fix some bus_dmamap_sync(9) calls.

Do not fold multiple DMA synchronizations into one when chaining TRBs
as the ring might wrap.

Add missing "READ" transfer direction from the HC to host when applicable.

From Marius Strobl.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 08:15:55

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocator.pm PackageRepository.pm 

Log message:
add TRUSTED_PKG_PATH after discussing with aja@
use case is testing binary packages among developers, -Dunsigned means
everything is unsigned, which is bad for dependencies


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/03 08:24:18

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

Log message:
document (partially) new stuff


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/03 08:34:25

Modified files:
	net/isc-dhcp   : Makefile 

Log message:
Use INSTALL_SCRIPT instead of INSTALL_PROGRAM for dhclient-script

No change in resulting package.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/03 08:42:34

Modified files:
	app/cwm        : calmwm.h client.c conf.c parse.y 

Log message:
Defaults are split between defines and conf_init(); normalize these, as
well as give 'sticky' groups its own variable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/03 08:50:11

Modified files:
	www/p5-WWW-Mechanize: Makefile distinfo 

Log message:
update p5-WWW-Mechanize to 1.78
cleanup dependencies


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/03 09:26:34

Modified files:
	.              : errata60.html 

Log message:
release smtpd errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/03 09:53:09

Modified files:
	sys/net        : if_bridge.c 

Log message:
Use detach hook to notify bridge(4) about span port removals.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/03 10:19:09

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/10/03 11:40:26

Log message:
    import voluptuous
    
    a new dependency for the elasticsearch-curator
    
    Voluptuous, despite the name, is a Python data validation library. It is
    primarily intended for validating data coming into Python as JSON, YAML,
    etc.
    
    Feedback and OK jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20160903
    
    N ports/devel/py-voluptuous/Makefile
    N ports/devel/py-voluptuous/distinfo
    N ports/devel/py-voluptuous/pkg/DESCR
    N ports/devel/py-voluptuous/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/10/03 11:43:18

Modified files:
	devel          : Makefile 

Log message:
+ py-voluptuous


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/10/03 11:52:40

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

Log message:
while updating curator, update urllib3 as well


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/10/03 11:54:00

Modified files:
	sysutils/py-elasticsearch-curator: Makefile distinfo 
	sysutils/py-elasticsearch-curator/pkg: PLIST 

Log message:
Update to 4.1.1

most major change new added dependency to devel/py-voluptuous
to be used to validate input of the yaml config files.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/03 12:43:49

Modified files:
	app/cwm        : calmwm.h conf.c menu.c 

Log message:
Start simplifying menu code; and in turn, remove a cursor no longer
needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/03 13:04:41

Modified files:
	sysutils/consolekit/patches: patch-src_ck-sysdeps-openbsd_c 

Log message:
Merged upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/03 13:19:18

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

Log message:
Remove some redundant checks and make ich/dch consistent.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/10/03 13:27:30

Modified files:
	lang/racket-minimal: Makefile 
Added files:
	lang/racket-minimal/patches: patch-src_racket_src_sfs_c 
Removed files:
	lang/racket-minimal: patch-src_racket_src_sfs_c 

Log message:
Move the patch to the correct directory.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/10/03 13:36:11

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
fix smtp session logic bug that can lead to a server crash.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/03 14:58:39

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

Log message:
Document set-hook -u.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/03 15:24:40

Modified files:
	gnu/lib/libstdc++-v3: Makefile 
	gnu/usr.bin/binutils-2.17: Makefile.bsd-wrapper 
	gnu/usr.bin/texinfo: Makefile.bsd-wrapper 

Log message:
Fix ownership for install on a noperm filesystem.
joint work with tb


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/10/03 15:25:41

Modified files:
	opensmtpd      : index.html 
Added files:
	opensmtpd/announces: release-6.0.1.txt 

Log message:
release 6.0.1, errata release


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/10/03 15:34:20

Modified files:
	opensmtpd/announces: release-6.0.1.txt 

Log message:
credit Mickael Torres for finding the bug, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/03 16:13:30

Modified files:
	lib/csu/arm    : md_init.h 

Log message:
Simplify code that sets up a stack frame for running .init code to be more
AEABI-like.

ok tom@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/03 16:52:11

Modified files:
	usr.bin/tmux   : alerts.c client.c cmd-move-window.c 
	                 input-keys.c input.c options-table.c tty-acs.c 
	                 window-copy.c xterm-keys.c 

Log message:
Remove some dead code in cmd-move-window.c and make a load of local
functions static.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/03 18:12:27

Modified files:
	usr.sbin/smtpd : Tag: OPENBSD_6_0 smtp_session.c 

Log message:
OpenBSD 6.0 errata 10, Oct 3, 2016

A bug in the smtp session logic can lead to a server crash.
Found and reported by Mickael Torres.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/03 21:15:51

Modified files:
	lib/libc/arch/arm/sys: cerror.S 

Log message:
Use the userspace-visible thread register directly in __cerror instead
of indirecting through __errno().

Register naming tweaks and clang testing by patrick@ and jsg@
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/10/03 21:26:22

Modified files:
	sysutils/dtb   : Makefile distinfo 
	sysutils/dtb/pkg: PLIST 

Log message:
update dtb to linux 4.8

This adds "allwinner,sun8i-h3-ccu" to existing allwinner h3 dtbs that
H3 support in -current requires.

And notably adds new dtbs for:
imx6q-utilite-pro
sun7i-a20-bananapi-m1-plus
sun8i-h3-bananapi-m2-plus
bcm2837-rpi-3-b

Tested on cubox, bbb and panda.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/03 22:44:53

Modified files:
	net/py-dpkt    : Makefile distinfo 
	net/py-dpkt/pkg: PLIST 
Removed files:
	net/py-dpkt/patches: patch-dpkt_ip_py 

Log message:
update dpkt to 1.8.8.
ok Thanasoulas Spiros (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/03 23:31:35

Modified files:
	databases/p5-DBD-mysql: Makefile distinfo 

Log message:
Security update to 4.037
fixes CVE-2016-1246
spotted by afresh1@, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/03 23:55:09

Modified files:
	sys/arch/alpha/alpha: vm_machdep.c 

Log message:
The new thread's userspace v0, a3, and a4 registers are updated in
child_return() like on other archs, so cpu_fork() doesn't need to
touch them.

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/04 03:46:31

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

Log message:
Check the actual pointer returned by km_alloc(9) instead of the array.  The
latter will always be non-NULL, and therefore the test will always be false.

Caught by clang.

ok jca@, mikeb@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/04 03:59:44

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

Log message:
Use "%s" in vm_rpc_send_rpci_tx() call.  Avoids a "format string is not a
string literal" warning from clang.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/04 04:10:19

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocation.pm PkgInfo.pm 

Log message:
remove may_check_data logic, since signatures are now handled externally


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/10/04 05:26:00

Added files:
	www/aria2/patches: patch-src_Makefile_in 

Log message:
Move the patch to the correct directory.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/10/04 05:33:11

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
update to 2.35b; OK jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/10/04 06:14:51

Modified files:
	net/owncloudclient: Makefile distinfo 

Log message:
bugfix update to owncloudclient-2.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/04 06:37:31

Modified files:
	audio/xmms2    : Makefile 

Log message:
Update HOMEPAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/04 06:56:17

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

Log message:
Update to py-tz 2016.7


CVSROOT:	/cvs
Module name:	www
Changes by:	espie@cvs.openbsd.org	2016/10/04 07:01:01

Modified files:
	faq            : current.html 

Log message:
enough people finding out about new sigs the hard way, explain what's
going on in simple terms.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/10/04 07:54:32

Modified files:
	sys/net        : if_pflow.c if_pfsync.c 
	sys/netinet    : ip_carp.c tcp_timer.h tcp_var.h 

Log message:
Convert timeouts that need a process context to timeout_set_proc(9).

The current reason is that rtalloc_mpath(9) inside ip_output() might
end up inserting a RTF_CLONED route and that require a write lock.

ok kettenis@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/10/04 07:56:50

Modified files:
	sys/netinet    : tcp_input.c 

Log message:
One more timeout_set_proc(9) conversion.

Found by Chris Jackman, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/10/04 08:04:19

Modified files:
	sys/netinet6   : in6.c 
	sys/net        : route.c 

Log message:
Correct the flag checks inside rt_ifa_addlocal(9) and rt_ifa_dellocal(9).

There's no need to insert an RTF_LOCAL route if it is already there, not
if a route with the same destination exist.

This fixes a KASSERT() triggered by adding an alias for an address already
present in the ARP cache as reported by weerd@ and Peter J. Philipp.

This should also fix a KASSERT() triggered by a NDP change reported by
Sebastien Marie.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/10/04 08:12:05

Modified files:
	sys/dev/usb    : usbdi.c 

Log message:
Let the stack perform DMA synchronization instead of doing it (partially)
in HC drivers.

Only ehci(4) was performing pre & post synchronization completly.  Now
pre-synchronization is done in usbd_transfer() and post-synchronization
in usbd_transfer_complete().  This will allow us to remove the partial
synchronization primitives from the pipe handlers.

This is similar to what FreeBSD did in r158998, r164519 and r176203.

From Marius Strobl.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/04 08:23:15

Modified files:
	devel/asm6     : Makefile 

Log message:
Remove dead HOMEPAGE and MASTER_SITES, switch to MASTER_SITE_OPENBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/04 08:24:45

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

Log message:
check_signature is gone


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/04 08:27:25

Modified files:
	usr.sbin/pkg_add: Makefile 
Removed files:
	usr.sbin/pkg_add/OpenBSD: signify.pm x509.pm 

Log message:
no longer needed


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/04 08:40:41

Modified files:
	usr.bin/signify: zsig.c 

Log message:
typo


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/04 08:46:13

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

Log message:
slightly smarter parsing of error log


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 08:56:37

Modified files:
	lib/libX11/src : FontNames.c ListExt.c ModMap.c 

Log message:
The validation of server responses avoids out of boundary accesses.
From Tobias Stoeckmann / Xorg Securiry adrvisory Oct 4, 2016.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 08:58:26

Modified files:
	lib/libX11/src : GetImage.c 

Log message:
Validation of server responses in XGetImage()
Check if enough bytes were received for specified image type and
geometry. Otherwise GetPixel and other functions could trigger an
out of boundary read later on.
From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 08:59:47

Modified files:
	lib/libXfixes/src: Region.c 

Log message:
Integer overflow on illegal server response
The 32 bit field "rep.length" is not checked for validity, which allows
an integer overflow on 32 bit systems.

A malicious server could send INT_MAX as length, which gets multiplied
by the size of XRectangle. In that case the client won't read the whole
data from server, getting out of sync.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 09:01:03

Modified files:
	lib/libXi/src  : XGMotion.c XGetBMap.c XGetDCtl.c XGetFCtl.c 
	                 XGetKMap.c XGetMMap.c XIQueryDevice.c 
	                 XListDev.c XOpenDev.c XQueryDv.c 

Log message:
Properly validate server responses

By validating length fields from server responses, out of boundary
accesses and endless loops can be mitigated.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 09:02:31

Modified files:
	lib/libXrandr/src: XrrConfig.c XrrCrtc.c XrrMonitor.c 
	                   XrrOutput.c XrrProvider.c XrrScreen.c 

Log message:
Avoid out of boundary accesses on illegal responses

The responses of the connected X server have to be properly checked
to avoid out of boundary accesses that could otherwise be triggered
by a malicious server.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 09:03:48

Modified files:
	lib/libXrender/src: Filter.c 

Log message:
Avoid OOB write in XRenderQueryFilters

The memory for filter names is reserved right after receiving the reply.
After that, filters are iterated and each individual filter name is
stored in that reserved memory.

The individual name lengths are not checked for validity, which means
that a malicious server can reserve less memory than it will write to
during each iteration.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 09:05:13

Modified files:
	lib/libXrender/src: Xrender.c 

Log message:
Validate lengths while parsing server data.

Individual lengths inside received server data can overflow
the previously reserved memory.

It is therefore important to validate every single length
field to not overflow the previously agreed sum of all invidual
length fields.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 09:08:08

Modified files:
	lib/libXtst/src: XRecord.c 

Log message:
Out of boundary access and endless loop in libXtst

A lack of range checks in libXtst allows out of boundary accesses.
The checks have to be done in-place here, because it cannot be done
without in-depth knowledge of the read data.

If XRecordStartOfData, XRecordEndOfData, or XRecordClientDied
without a client sequence have attached data, an endless loop would
occur. The do-while-loop continues until the current index reaches
the end. But in these cases, the current index would not be
incremented, leading to an endless processing.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 09:09:40

Modified files:
	lib/libXv/src  : Xv.c 

Log message:
Protocol handling issues in libXv

The Xv query functions for adaptors and encodings suffer from out of boundary
accesses if a hostile X server sends a maliciously crafted response.

A previous fix already checks the received length against fixed values but
ignores additional length specifications which are stored inside the received
data.

These lengths are accessed in a for-loop. The easiest way to guarantee a
correct processing is by validating all lengths against the remaining size
left before accessing referenced memory.

This makes the previously applied check obsolete, therefore I removed it.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 09:11:05

Modified files:
	lib/libXvMC/src: XvMC.c 

Log message:
Avoid buffer underflow on empty strings.

If an empty string is received from an x-server, do not underrun the
buffer by accessing "rep.nameLen - 1" unconditionally, which could end
up being -1.

From Tobias Stoeckmann / X.Org security advisory Oct 4, 2016


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/04 09:18:20

Modified files:
	app/cwm        : calmwm.h conf.c group.c screen.c xutil.c 

Log message:
Turn CALMWM_NGROUPS define into variable, ngroups.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/10/04 09:39:58

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
tls_close() can return TLS_WANT_POLLIN/TLS_WANT_POLLOUT - handle this
case correctly.

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/10/04 09:41:07

Modified files:
	usr.sbin/acme-client: netproc.c 

Log message:
s/letsencrypt/ACME/


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/10/04 09:49:42

Modified files:
	usr.sbin/acme-client: http.c http.h netproc.c 

Log message:
Avoid a potential MITM - calling tls_config_insecure_noverify() is a bad
idea, so stop doing that. Instead, use a single tls_config, set it up and
configure the CA file to use while we still have rpath, then drop rpath.
This also avoids creating a new tls_config for each and every HTTPS
connection, which is unnecessary.

ok benno@ florian@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/04 09:52:32

Modified files:
	app/cwm        : calmwm.h client.c conf.c 

Log message:
Calculate client nameqlen in client_setname(), the only place it's
needed/used.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/10/04 10:01:29

Modified files:
	devel/cvs2gitdump: Makefile distinfo 
Removed files:
	devel/cvs2gitdump: patch-cvs2gitdump_1 patch-cvs2svndump_1 

Log message:
Update to cvs2gitdump 20160815. Remove the patches.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/04 10:54:31

Modified files:
	.              : Makefile 
	etc            : Makefile 

Log message:
stop supporting SUDO builds.  Something better is coming, so let's
align everyone who is using SUDO builds towards the new strategy.
ok natano


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/04 11:03:42

Modified files:
	.              : stable.html 

Log message:
remove the 'env DESTDIR=/ make distrib-dirs' line.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/04 11:17:30

Modified files:
	usr.sbin/vmd   : Makefile config.c proc.c proc.h vmd.c vmd.h 
	                 vmm.c 
Added files:
	usr.sbin/vmd   : priv.c 

Log message:
Add a new "priv" process that is responsible for ioctls and restricted
operations that aren't allowed under pledge.  This is a companion to
the "vmd" process that runs as root but with pledge.

With the "priv" process, each new tap(4) interface now gets a
description to indicate the vm, eg. "vm1-if0-myvm".  For network
configuration will be done by vmd/priv later.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/04 11:25:52

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
Add an example to find the generated tap(4) interface description.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/10/04 11:27:39

Modified files:
	share/misc     : airport 

Log message:
Specify update rules, and add my home airport to the list

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/04 11:58:09

Modified files:
	sys/net        : switchofp.c 

Log message:
Don't use padding for ofp_action_header when building the table property
response thus respecting what the OpenFlow 1.3.5 spec says.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/04 12:48:58

Modified files:
	net/py-cares   : Makefile distinfo 

Log message:
Update to py-cares-2.1.1 to fix CVE-2016-5180

ok shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/04 12:49:52

Modified files:
	net/py-aiodns  : Makefile distinfo 

Log message:
Update to py-aiodns-1.1.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 12:54:01

Modified files:
	lib/libX11/src : Tag: OPENBSD_6_0 FontNames.c GetImage.c 
	                 ListExt.c ModMap.c 
	lib/libXfixes/src: Tag: OPENBSD_6_0 Region.c 
	lib/libXi/src  : Tag: OPENBSD_6_0 XGMotion.c XGetBMap.c 
	                 XGetDCtl.c XGetFCtl.c XGetKMap.c XGetMMap.c 
	                 XIQueryDevice.c XListDev.c XOpenDev.c 
	                 XQueryDv.c 
	lib/libXrandr/src: Tag: OPENBSD_6_0 XrrConfig.c XrrCrtc.c 
	                   XrrMonitor.c XrrOutput.c XrrProvider.c 
	                   XrrScreen.c 
	lib/libXrender/src: Tag: OPENBSD_6_0 Filter.c Xrender.c 
	lib/libXtst/src: Tag: OPENBSD_6_0 XRecord.c 
	lib/libXv/src  : Tag: OPENBSD_6_0 Xv.c 
	lib/libXvMC/src: Tag: OPENBSD_6_0 XvMC.c 

Log message:
Protocol handling issues in X Window System client libraries
X.Org security advisory: October 4, 2016

Fix a number of issues in the way various X client libraries handle
server responses.

Checked by tj@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/04 12:55:14

Modified files:
	lib/libX11/src : Tag: OPENBSD_5_9 FontNames.c GetImage.c 
	                 ListExt.c ModMap.c 
	lib/libXfixes/src: Tag: OPENBSD_5_9 Region.c 
	lib/libXi/src  : Tag: OPENBSD_5_9 XGMotion.c XGetBMap.c 
	                 XGetDCtl.c XGetFCtl.c XGetKMap.c XGetMMap.c 
	                 XIQueryDevice.c XListDev.c XOpenDev.c 
	                 XQueryDv.c 
	lib/libXrandr/src: Tag: OPENBSD_5_9 XrrConfig.c XrrCrtc.c 
	                   XrrOutput.c XrrProvider.c XrrScreen.c 
	lib/libXrender/src: Tag: OPENBSD_5_9 Filter.c Xrender.c 
	lib/libXtst/src: Tag: OPENBSD_5_9 XRecord.c 
	lib/libXv/src  : Tag: OPENBSD_5_9 Xv.c 
	lib/libXvMC/src: Tag: OPENBSD_5_9 XvMC.c 

Log message:
Protocol handling issues in X Window System client libraries
X.Org security advisory: October 4, 2016

Fix a number of issues in the way various X client libraries handle
server responses.

Checked by tj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/04 13:34:44

Log message:
    import construct, a powerful declarative parser/builder for binary data.
    ok benoit@, inputs and ok@ shadchin@.
    while here, add python3 flavor.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20161004
    
    N ports/devel/py-construct/Makefile
    N ports/devel/py-construct/distinfo
    N ports/devel/py-construct/pkg/PLIST
    N ports/devel/py-construct/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/04 13:38:17

Modified files:
	devel          : Makefile 

Log message:
SUBDIR += py-construct
SUBDIR += py-construct,python3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/10/04 13:48:48

Modified files:
	xserver        : Makefile.bsd-wrapper 

Log message:
ignore chown error (for systems which don't install a Xserver)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/04 13:57:52

Log message:
    import efilter, a general-purpose destructuring and search language implemented in
    Python, and suitable for integration with any Python project that requires a
    search function for some of its data.
    ok benoit@, inputs and ok shadchin@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20161004
    
    N ports/devel/py-efilter/Makefile
    N ports/devel/py-efilter/distinfo
    N ports/devel/py-efilter/pkg/PLIST
    N ports/devel/py-efilter/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/04 13:58:56

Modified files:
	devel          : Makefile 

Log message:
SUBDIR += py-efilter


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/04 14:04:00

Modified files:
	geo/qgis       : Makefile distinfo 

Log message:
Update to QGIS 2.16.3.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/04 14:05:50

Modified files:
	faq            : current.html 

Log message:
firmwares -> firmware and some whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/04 14:06:49

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

Log message:
remove signify.pm and x509.pm


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/04 14:15:55

Modified files:
	app/cwm        : calmwm.h screen.c xevents.c 

Log message:
When removing xrandr regions, ensure clients are within the bounds of
the screen; adapted from an ancient diff from Sviatoslav Chagaev. Things
in this area will likely change, but put this in so it works now and
serves as a reminder.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/04 15:10:51

Modified files:
	sbin/mount     : mount.8 

Log message:
Improve description of the noperm option.
ok jmc (on an earlier version of the diff), tb (who found a typo) and deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/04 15:22:42

Modified files:
	graphics/cadubi: Makefile distinfo 
	graphics/cadubi/patches: patch-cadubi 
	graphics/cadubi/pkg: PLIST 

Log message:
Update cadubi to 1.3.1. From Rafael Sadowski.

Tweaks and OK czarkoff@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/10/04 15:34:40

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
add a comment about implicitly-expected checks to
sshkey_ec_validate_public()


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/04 16:09:21

Modified files:
	usr.sbin/syslogd: syslogd.8 syslogd.c 

Log message:
When doing global remote logging and archiving, it is inconvenient
that the syslog timestamp does not contain the year and the timezone,
but has local time with daylight saving time.
Now with -Z syslogd(8) switches to RFC 5424 ISO format for timestamps.
Then all logging is also done in UTC.  Default is to keep local
time and BSD syslog RFC 3164 format.
BIG BIG BIG OK for the feature ajacoutot@; OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/04 16:12:47

Added files:
	regress/usr.sbin/syslogd: args-zulu.pl 

Log message:
Add test for syslogd(8) -Z ISO timestamp format.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/04 16:38:02

Modified files:
	devel/p5-Sub-Name: Makefile distinfo 

Log message:
update p5-Sub-Name to 0.21


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/04 16:47:51

Modified files:
	usr.sbin/dhcpd : dhcp.c options.c sync.c sync.h 

Log message:
Zap stray whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/04 17:02:05

Modified files:
	sys/dev        : audio.c 
	sys/dev/acpi   : acpithinkpad.c 

Log message:
At acpithinkpad attach time determine the value of the mute, and defer
telling the audio subsystem about this later on in boot.  (Mute state
is maintained by the BIOS over a suspend, hibernate, reboot, etc -- this
may be last missing piece of the puzzle we tore our hair out in Brisbane)
diagnosis and code by Anton Lindqvist, ok ratchov


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/04 18:50:00

Modified files:
	usr.sbin/dhcpd : dhcp.c 

Log message:
Use consistant idiom (intermediate variable 'i' rather than repeated
uses of very long #define names) to access option data in nak_lease()
and ack_lease().

Shortens a lot of lines, which allows a number of line splits to
be eliminates.

Makes some upcoming diffs easier to integrate.

No intentional functional change.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/04 19:38:41

Modified files:
	.              : stable.html 

Log message:
compress the lists of commands a little more. use machine(1)
instead of uname(1) to match what the errata do.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/04 19:58:14

Modified files:
	.              : errata59.html errata60.html 

Log message:
release xenocara errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/04 20:31:53

Modified files:
	sys/kern       : exec_elf.c kern_sig.c kern_xxx.c 
	sys/uvm        : uvm_mmap.c 

Log message:
Display/test/use the process PID, not the thread's TID, in a few places.

ok mpi@ mikeb@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/04 22:58:07

Modified files:
	openssh        : releasenotes.html 
	build/openssh  : releases.pl 

Log message:
Automatically mark up "bz#XXXX" annotations as links to the corresponding
bugzilla bug.  Add a cache for the CVS lookups (disabled by default).


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/04 23:22:03

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Display the process's PID with p->p_p->ps_pid, not p->p_pid.
Use a local variable struct process *pr to simplify expressions

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/05 01:29:59

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c armv7_machdep.h platform.c 

Log message:
Introduce a global function pointer to reset the CPU akin to amd64 and
i386.  As newer ARMs where we use device tree from the get go don't
necessarily have a 'platform', this will allow drivers to hook
themselves as a way to reset the CPU.

ok jsg@ kettenis@ tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/10/05 01:38:07

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 bgpd.h kroute.c parse.y printconf.c 

Log message:
Let bgpd announce routes based on a route-label.

OK henning@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/05 01:44:24

Modified files:
	sys/arch/arm/armv7: armv7_space.c 
	sys/arch/arm/include: bus.h 
	sys/arch/arm/simplebus: simplebus.c 
	sys/arch/armv7/armv7: armv7_machdep.c 

Log message:
Some device trees use 64-bit intermediate virtual addresses.  This
means that even though the hardware in the end never leaves the 32-bit
address space, some addresses used solely in the device tree can be
bigger than 32-bit.  As bus_space_map(9) takes addresses of size
bus_addr_t, which is 32-bit on ARMv7, we cannot pass those virtual
addresses to the parent bus, even though it will be mapped back into a
32-bit address in the end.  To work around this, make bus_space_map(9)
take a 64-bit address.  Since this is implemented as a macro and
function pointer we can safely do that without harming any other
architecture.

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/05 02:04:14

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

Log message:
Add a missing flush; this appears to fix the broadwell/skylake "failed to
launch with valid vmcs" issue some people have been seeing when launching
vmm(4) VMs.

tested by reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/10/05 02:07:46

Modified files:
	sys/net        : route.c 

Log message:
rt_timer_timer() needs a process context because it messes with the
routing table.

Found the hardway by Chris Jackman.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/05 02:10:26

Modified files:
	graphics/colord: Makefile distinfo 
	graphics/colord/patches: patch-configure 

Log message:
Update to colord-1.3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/05 02:29:50

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.293.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/05 02:36:22

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/05 02:36:39

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.59.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/05 02:37:03

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/05 03:12:13

Modified files:
	share/man/man8 : release.8 

Log message:
Overhaul the release(8) manual: the current version prompted some users
to leave their boxes wide open with ... unfortunate doas.conf(5) rules.
Only give the essential commands for -release and -stable.  Remove all
mentions of doas(1).  Tighten up the style: avoid repetitions and the
second person.

requested by & ok deraadt, tweaks & ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/05 05:55:45

Modified files:
	sys/arch/sgi/stand: Makefile32.inc 
	sys/arch/sgi/stand/boot: Makefile diskio.c version 

Log message:
Make the sgi boot blocks read the real OpenBSD disklabel instead of
assuming that the 'a' partition starts at the same location as the
volume header partition #0.

Diff from Miod Vallat


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 06:01:15

Modified files:
	usr.sbin/switchd: ofrelay.c 

Log message:
More debugging


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/05 06:32:13

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

Log message:
Allow cmd_mouse_at return arguments to be NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/05 06:34:05

Modified files:
	usr.bin/tmux   : paste.c tmux.h 

Log message:
Keep buffer creation time and add accessors for it and the order number.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/05 06:36:36

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

Log message:
Wrap some long lines in screen-write.c.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/05 07:10:59

Modified files:
	app/cwm        : calmwm.h conf.c xutil.c 

Log message:
Stash wmname into conf.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/05 07:35:17

Modified files:
	app/cwm        : conf.c cwm.1 

Log message:
Add CM-a for 'nogroup' (CM-0 stays for now); update manpage to reflect.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/10/05 07:48:50

Modified files:
	www/otter-browser: Makefile distinfo 

Log message:
Update otter-browser to 0.9.11 beta 11

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/05 07:50:20

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

Log message:
getting errors is trivial, just don't forget to close the handle and not
return anything in case signature did fail.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/05 08:01:23

Modified files:
	app/cwm        : cwm.1 cwmrc.5 

Log message:
More accurate to say 'toggle', rather than 'select', for group[n]/nogroup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/05 08:42:10

Modified files:
	graphics/py-Pillow: Makefile distinfo 

Log message:
update to Pillow 3.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/05 08:48:58

Modified files:
	usr.bin/signify: signify.c 

Log message:
combining an assignment and *two* tests in one conditional is a bit much.
pull things apart.
reported by espie in a separate complaint. :)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/05 08:59:19

Modified files:
	usr.sbin/pkg_add: package.5 

Log message:
document signature change


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 09:28:15

Modified files:
	usr.sbin/switchd: ofrelay.c 

Log message:
I added a second buffer as fix for the fact that /dev/switch doesn't
act like a socket.  Unfortunately, this broke handling of jumbo
buffers in the adjusted version of ofrelay.  Don't abort the
connection until there is no more data to read or the connection has
been closed.

Problem out by rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 09:29:26

Modified files:
	regress/usr.sbin/switchd: args-packet-jumbo.pm 

Log message:
Bump the sizes of generated jumbo frames up to the max.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 09:42:28

Modified files:
	usr.sbin/switchd: ofp10.c 

Log message:
Move ofp_validate_header() to ofp10.c until we have a better place


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/05 09:45:13

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

Log message:
document the previously hidden keyname detection. urged by espie.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/05 09:48:39

Modified files:
	usr.bin/signify: signify.c 

Log message:
more properly check the secret key extension. from espie


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/05 09:58:50

Modified files:
	usr.bin/signify: signify.c 

Log message:
when generating keys, make sure the names specified adhere to all
department of keyname compliance regulations. see if anybody complains...


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/05 10:06:02

Modified files:
	distrib/notes/sgi: install 
	distrib/sgi/ramdisk: install.md 

Log message:
Remove an outdated remark about the 'a' partition. The sgi bootblocks
now locate the partition by using the disklabel.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 10:40:55

Modified files:
	usr.sbin/switchd: ofp.c 

Log message:
Remove ofp_validate_header() here


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/05 10:48:10

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/pkg  : PLIST-doc 
Removed files:
	lang/rust/patches: patch-mk_rt_mk 

Log message:
Update to rust-1.12.0

From semarie (maintainer), ok ajacoutot


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/05 10:51:22

Modified files:
	devel/cargo    : Makefile distinfo 
	devel/cargo/pkg: PLIST 
Removed files:
	devel/cargo/patches: patch-configure 

Log message:
Update to cargo-0.13.0

From semarie (maintainer), ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/05 10:53:35

Modified files:
	regress/sys/kern: Makefile 
	regress/sys/kern/setuid: Makefile 

Log message:
Link the setuid regress test to the build in a way that the obj
directory gets created.  But do not run the test during a global
make regress, as the test puts a setuid binary into the object
directory.  Also remove the setuid bit after the test has been run
manually.
OK otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 10:58:19

Modified files:
	usr.sbin/switchd: proc.c proc.h 
	usr.sbin/httpd : httpd.h proc.c 
	usr.sbin/relayd: proc.c relayd.h 

Log message:
sync proc.c with vmd: add p_pw to specify a non-standard user for a process.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/05 10:58:23

Modified files:
	lib/libcrypto/man: crypto.3 

Log message:
Fix some broken .Xr links, loosely based on a diff
from Rob Pierce <rob at 2keys dot ca>.

The content of this page may also need expert attention, i suspect
it may be lacking modern algorithms and over-emphasizing obsolete
ones, but i dare not touch the content.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/05 11:03:38

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

Log message:
Update to py-coverage 4.2.

From trondd < trondd at kagu-tsuchi dot com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/05 11:06:28

Modified files:
	devel/py-nose  : Makefile 
Added files:
	devel/py-nose/patches: patch-nose_plugins_cover_py 

Log message:
Make coverage plugin compatible with py-coverage 4.2


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 11:10:00

Modified files:
	usr.sbin/httpd : proc.c 
	usr.sbin/switchd: proc.c 
	usr.sbin/relayd: proc.c 
	usr.sbin/vmd   : proc.c 

Log message:
Call setsid() to create a new session for the executed processes.

From deraadt@
OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/05 11:13:54

Modified files:
	usr.sbin/httpd : proc.c 

Log message:
Check if oldd == newd before dup2(), if that is the case we need to remove
the CLOEXEC flag ourselves.

ok bluhm@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 11:30:13

Modified files:
	etc/examples   : vm.conf 
	usr.sbin/vmd   : config.c parse.y priv.c proc.h virtio.c 
	                 vm.conf.5 vmd.c vmd.h vmm.c 

Log message:
Add support for enhanced networking configuration and virtual switches.
See vm.conf(5) for more details.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 11:31:22

Modified files:
	usr.sbin/vmd   : parse.y 

Log message:
Replace one u_int8_t with uint8_t (finger memory)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/05 11:31:28

Modified files:
	usr.sbin/relayd: proc.c 
	usr.sbin/vmd   : proc.c 
	usr.sbin/switchd: proc.c 

Log message:
Sync with httpd(8) proc file. Check for dup2() usage to avoid oldd == newd
and remove the CLOEXEC with fcntl() if necessary.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/05 11:36:53

Modified files:
	usr.bin/doas   : doas.c doas.h parse.y 

Log message:
as a result of the env rework, arraylen() is only used in parse.y.
move it there and make it static.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/05 11:40:25

Modified files:
	usr.bin/doas   : doas.c doas.h 

Log message:
move yyparse decl next to yyfp


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/05 12:00:41

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

Log message:
De-escalate to an unprivileged users during 'make build' and 'make release'.

- If you start make build as root, everything will be run as root.
Nothing new here. New is, that you can set BUILDUSER=somebody and the
unprived parts will be run as somebody.
- If you start make build with sudo, the unprived parts will be run as
the real user (meaning YOU). You can still set BUILDUSER=somebody and
the uprived parts will run as somebody.
- If you start make build as a normal user it will error out. "I'm sorry
Dave."

Note that DESTDIR must be on partition with the noperm flag set for make
release to work correctly as an unprivileged user.

idea and ok deraadt
input and ok tb ratchov millert
rpe, halex and probably others where part of the conversation to make
this happen, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/05 12:01:52

Modified files:
	etc/examples   : vm.conf 

Log message:
Change switch "wireless" to another example - bridging from VM to
wireless in station mode is not supported.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/05 12:13:25

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

Log message:
Set the USE_RTS flag in the right place. Error introduced in if_iwm.c r1.139.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/05 12:28:17

Modified files:
	print/cups     : Makefile distinfo 
	print/cups/patches: patch-test_run-stp-tests_sh 
	print/cups/pkg : PLIST-main 

Log message:
Update to cups-2.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/10/05 13:50:46

Modified files:
	devel/jansson  : Makefile distinfo 
	devel/jansson/patches: patch-CMakeLists_txt 
Removed files:
	devel/jansson/patches: patch-cmake_jansson_config_h_cmake 
	                       patch-src_jansson_config_h_in 
	                       patch-src_load_c 

Log message:
update to jansson-2.9


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/05 14:08:36

Modified files:
	usr.sbin/nsd   : Makefile.bsd-wrapper 
	usr.sbin/unbound: Makefile.bsd-wrapper 

Log message:
Rewriting USER gets in the way of the de-escalation mechanism as it
shadows the real user's identity.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/05 15:26:54

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

Log message:
Hide wpi(4) fatal firmware error details inside #ifdef WPI_DEBUG.
ok sthen tb deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/05 15:40:01

Modified files:
	etc            : Makefile 
	etc/mtree      : 4.4BSD.dist 

Log message:
conditionally create obj & xobj same way that src is handled
ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/05 16:00:29

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

Log message:
screen_write_copy tried to be clever and clear the line if it reached
the end of the source, but it was wrong and causes problems that are
only showing up now we are more aggressive about skipping redundant
screen updates. Remove the optimization entirely as more trouble than it
is worth to fix (and it'll have to go when BCE is done anyway).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/05 16:06:48

Modified files:
	sys/arch/armv7/armv7: armv7var.h platform.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/imx: files.imx imxdog.c 
Removed files:
	sys/arch/armv7/imx: imx.c imx6.c imx_machdep.c 

Log message:
Make imxdog(4) set cpuresetfn, and remove all the imx platform that is no
longer needed, including the imx board IDs.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/05 17:28:28

Modified files:
	usr.bin/doas   : doas.c 

Log message:
Add back the call to yyparse() that was accidentally dropped in the
previous commit. Fortunately, doas fails closed...

ok tedu


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/05 21:31:56

Modified files:
	build/openssh  : releases.pl 
	openssh        : releasenotes.html 

Log message:
Mark up buganizer references of the form "bz #NNNN" in addition to the
"bz#NNNN" ones as links to the corresponding bugzilla bug.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/05 22:39:30

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
In pledge_namei_wlpath() if resolvpath() errors out early it will not
set variables that will be later used as the size argument to
free(NULL calls.  This should be harmless as free returns early if the
address is NULL without checking the size.  Initialise these variables
before the call to ensure they are never passed to another function
uninitialised.

ok tedu@ millert@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/10/05 23:05:55

Modified files:
	devel/luacheck : Makefile distinfo 

Log message:
update to luacheck 0.16.1


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/10/05 23:29:19

Modified files:
	sys/dev        : audio.c 

Log message:
Fix the condition used to decide whether to automatically start the
device, and factor it into a single function. Without this fix, if the
device is open in full-duplex mode, it could start with empty play
buffer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/05 23:44:12

Modified files:
	databases/p5-DBD-mysql: Tag: OPENBSD_6_0 Makefile distinfo 
	databases/p5-DBD-mysql/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
Security update to 4.037
fixes CVE-2016-1246
ok afresh1@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/05 23:47:35

Modified files:
	net/nmap       : Makefile distinfo 
	net/nmap/patches: patch-Makefile_in patch-libnetutil_netutil_cc 
	                  patch-scan-engine_cc patch-timing_cc 
	net/nmap/pkg   : PLIST-main PLIST-zenmap 

Log message:
Update to 7.30
from David Carlier with tweaks by me


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/05 23:52:09

Log message:
    Import p5-Proc-Fork, a simple, intuitive interface to the fork() system call
    ok bluhm@
    
    This module provides an intuitive, Perl-ish way to write forking
    programs by letting you use blocks to illustrate which code section
    executes in which fork. The code for the parent, child, retry handler
    and error handler are grouped together in a "fork block".
    
    Status:
    
    Vendor Tag:	giovanni
    Release Tags:	giovanni_20161006
    
    N ports/devel/p5-Proc-Fork/Makefile
    N ports/devel/p5-Proc-Fork/distinfo
    N ports/devel/p5-Proc-Fork/pkg/PLIST
    N ports/devel/p5-Proc-Fork/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/05 23:54:00

Modified files:
	devel          : Makefile 

Log message:
+p5-Proc-Fork


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/06 00:25:31

Modified files:
	emulators/mgba : Makefile distinfo 
	emulators/mgba/pkg: DESCR-libretro DESCR-main DESCR-qt 

Log message:
Update to mgba-0.5.1.

Release notes:
https://mgba.io/2016/10/05/mgba-0.5.1/
https://mgba.io/2016/09/19/mgba-0.5.0/

Of note: this update adds Game Boy and Game Boy Color support,
as opposed to 0.4.1 which only supported Game Boy Advance.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/06 01:17:06

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

Log message:
remove some Xr that had no section numbers (since we don;t have the pages);
from a diff from anton lindqvist;


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/10/06 01:30:19

Modified files:
	sys/dev/wsfont : wsfont.c 

Log message:
Remove reference to non existing font.

Include file with font data (courier11x18.h) was removed from NetBSD due
to licensing concerns before wsfont was imported into OpenBSD.

Cookie values have been renumbered for consistency.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/06 01:37:52

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: specialreg.h vmmvar.h 

Log message:
add a debug function that was useful in finding the previous
broadwell/skylake bug.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/06 01:51:10

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

Log message:
turn off vmm(4) debug mode


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/06 03:31:38

Modified files:
	regress/usr.bin/ssh: Makefile 

Log message:
Move USER out of the way to unbreak the BUILDUSER mechanism.
ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/06 04:59:14

Modified files:
	usr.sbin/vmd   : vm.conf.5 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 05:24:04

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

Log message:
Syslog RFC 5424 says you should add 1 to 6 digits with fractions
of a second to each syslog timestamp.  As we do not measure the
time in syslog(3), use only 3 digits with millisecond precision.
OK dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/06 05:25:17

Modified files:
	sbin/dmesg     : dmesg.8 

Log message:
fix HISTORY;
patch from Sevan Janiyan <venture37 at geeklan dot co dot uk>;
verified using Kusick's UCB CSRG archive CDs


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 05:26:11

Modified files:
	regress/usr.sbin/syslogd: args-zulu.pl 

Log message:
Add millisecond precision to expected timestamp.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2016/10/06 05:28:38

Modified files:
	.              : want.html 

Log message:
Add a request for Loongson 3A hardware.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/06 05:43:30

Modified files:
	sbin/dump      : dump.8 
	sbin/init      : init.8 
	sbin/mknod     : mknod.8 
	sbin/mount     : mount.8 

Log message:
fix HISTORY;
patches from Sevan Janiyan <venture37 at geeklan dot co dot uk>;
verified using minnie.tuhs.org/cgi-bin/utree.pl


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/06 06:04:40

Modified files:
	devel/nspr     : Makefile distinfo 

Log message:
Update to nspr 4.13.

See
https://groups.google.com/forum/#!topic/mozilla.dev.tech.nspr/AhNiw22wz7U
for the small amount of changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/06 06:10:22

Modified files:
	security/nss   : Makefile distinfo 
	security/nss/patches: patch-nss_lib_freebl_blapi_h 

Log message:
Update to nss 3.27, required by gecko 50.

See
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.27_release_notes

Note that a bunch of CA's were removed, but not WoSign, because it owns
StartSSL/StartCOM.. see
https://docs.google.com/document/d/1C6BlmbeQfn4a9zydVi2UvjBGv6szuSB4sMYUcVrR8vQ/preview
and https://wiki.mozilla.org/CA:WoSign_Issues for details. Anyway, we
know the CA model is broken, right ?

Bump major, functions added/removed...


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/06 06:23:06

Modified files:
	devel/py-hypothesis: Makefile distinfo 

Log message:
Update to py-hypothesis 3.5.3


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/06 07:02:31

Modified files:
	sbin/disklabel : editor.c 

Log message:
init auto-partition table to zeroes; ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 07:03:47

Modified files:
	usr.sbin/syslogd: privsep.c syslogd.c syslogd.h 

Log message:
Do an exec on itself in the privileged syslogd(8) parent process
to reshuffle its memory layout.
Input rzalamena@; OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 07:06:14

Modified files:
	regress/usr.sbin/syslogd: args-privsep.pl args-sighup-config.pl 
	                          args-sighup-privsep.pl 
	                          args-sighup-tcp.pl args-sighup-tls.pl 
	                          args-sighup.pl args-sigpipe.pl 
	                          args-sigterm.pl 

Log message:
Check that syslogd priv process does exec on itself.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/06 07:16:21

Modified files:
	sbin/mount_ffs : mount_ffs.8 

Log message:
fix HISTORY:
NetBSD 1.0A was not a release, but it was
what would be called NetBSD 1.0-current in OpenBSD terminology,
see http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/conf/newvers.sh#rev1.17

patch from Sevan Janiyan <venture37 at geeklan dot co dot uk>


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/06 08:30:05

Modified files:
	app/cwm        : client.c 

Log message:
Check the ptr bounds in the new client during cycling, since not all
actions do ptrsave, such as restoring client geometry; adapted from a
diff by Vadim Vygonets.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/06 08:41:19

Modified files:
	app/cwm        : calmwm.h conf.c kbfunc.c mousefunc.c xevents.c 

Log message:
Add an argument to the callbacks to pass the xevent context, button or
key press. This allows to remove a few hacks to duplicate functions only
for behaviour changes; now differing behaviours are pushed down to the
callback. Also will allow for previously unavailable actions to be bind-able
down the road.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/10/06 08:47:00

Modified files:
	sbin/ifconfig  : ifconfig.8 
	usr.bin/openssl: openssl.1 

Log message:
typo


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/06 08:53:53

Modified files:
	app/cwm        : calmwm.h conf.c kbfunc.c 

Log message:
Rename 2 kbfunc to match closer to what they do


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/06 09:18:48

Modified files:
	sys/dev/ic     : rt2560.c 

Log message:
Disable RTS for long frames in ral(4) for rt2560 chips.
On these chips RTS causes bad performance in hostap mode for unknown reasons.

Convert some debug printfs to DPRINTF.
Add a comment which explains why 2 free slots are needed on the Tx queue.

ok phessler@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/06 09:34:18

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

Log message:
Use BUILDUSER as the owner of new links/directories created in 'make obj'
when started as root.

diff by millert with tweaks by me
ok tb deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/06 09:37:42

Modified files:
	etc            : Makefile 

Log message:
Build kernels as root for now. Otherwise we run into permission issues
when the source tree is not owned by ${BUILDUSER}.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/06 09:40:20

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

Log message:
Enable hardware VLAN tagging

Turns out that hardware VLAN tagging is required to use VLANs at all
(while QinQ VLANs are not filtered regardless...). On top of that a
PowerShell command needs to be executed to configure Trunk mode on
virtual interfaces.  An example of such command is:

Set-VMNetworkAdapterVlan -VMName OpenBSD -Trunk \
-AllowedVlanIdList 10-100 -NativeVlanId 5

This will enable trunking mode on all hvn(4) interfaces.  An option
-VMNetworkAdapterName can be passed to turn trunking on one interface,
and although by default all networking interfaces have the same name
"Network Adapter", a "Rename-VMNetworkAdapter" command can be used
to rename them one by one.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/06 10:12:43

Modified files:
	usr.sbin/dhcpd : dhcp.c dhcpd.h 

Log message:
Add support for RFC 6842. RFC 2131 said the server MUST NOT echo
the client-identifier value. RFC 6842 says the server MUST echo it.

Echoing the information disambiguates packets for relays and clients
when chaddr is 0. Similar to what dhcpv6 does.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/06 10:22:43

Modified files:
	.              : Makefile 

Log message:
Simplify the 'make includes' step in 'make build': move the privdrop
bit up into 'make includes', so the latter benefits from that idiom
as well. Sprinkle a few 'exec' while there.

ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/06 10:29:17

Modified files:
	sbin/dhclient  : clparse.c dhclient.c dispatch.c options.c 

Log message:
Add support for RFC 6842, which says the client MUST drop packets when
the server provides a client-identifier value and it doesn't match
the value the client sent.

So stop suppressing client-identifer info in the leases file and when
reading the leases file stop discarding leases that don't have current
client-identifier info. Don't use them, but keep them around in case
the client-identifier info changes back next time.

Also construct the default client-identifier (if needed) before reading
the leases file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/06 10:32:30

Log message:
    Import checkrestart 1.0, from upstream/maintainer Sebastien Marie
    
    checkrestart is a program designed to help to find processes that need
    restarting after upgrade.
    
    checkrestart walks thought entire file table of the system, searching for
    processes using node detached from filesystem.
    
    The typical use case is:
    - starts a long lived program.
    - later, upgrades your packages via pkg_add -u.
    - if the program is updated on disk, the running program is still the
    previous one (without security fixes for example).
    - checkrestart will tell you which processes belong to this category.
    
    Note that this requires libkvm>=16.2
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	semarie
    Release Tags:	landry_20161006
    
    N ports/sysutils/checkrestart/Makefile
    N ports/sysutils/checkrestart/distinfo
    N ports/sysutils/checkrestart/pkg/PLIST
    N ports/sysutils/checkrestart/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/06 10:33:29

Modified files:
	sysutils       : Makefile 

Log message:
+checkrestart


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/06 10:45:20

Modified files:
	sysutils/sysclean: Makefile 

Log message:
Use GH_* variables, no pkg change so no bump.

From maintainer/developer Sebastien Marie


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 10:49:31

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.038


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 10:53:40

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

Log message:
The start control imsg has been switched to a new "struct
vmop_create_params" that also includes configuration that is only for
userland.  I forgot to commit this chunk.

Found the hard way by mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/06 11:00:25

Modified files:
	sys/dev/pv     : if_xnf.c xen.c xenvar.h 

Log message:
Remove _ds_boundary abuse (again)

The logic behind this change is this: a single mbuf may reference
only a contiguous chunk of memory.  When this chunk crosses a page
boundary only the first part of it has a non-zero offset while all
other chunks start at the beginning of the page.

We take advantage of this fact and calculate the offset of a first
chunk as a simple "mtod(m, vaddr_t) & PAGE_MASK".


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 11:02:10

Modified files:
	sys/kern       : sys_socket.c uipc_socket.c 

Log message:
Separate splsoftnet() from variable initialization.
From mpi@'s netlock diff; OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/06 11:02:22

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

Log message:
Fold the bus_dmamap_destroy into the loop above


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/10/06 11:07:10

Modified files:
	.              : events.html 

Log message:
improve a few entries, in particular adding video links


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/06 12:15:44

Modified files:
	sys/arch/armv7/stand/efiboot: conf.c efiboot.c exec.c 

Log message:
Remove board IDs for the i.MX platform.  The kernel doesn't need them anymore.
Make sure we pass 0 as the board ID instead of random garbage if we don't
find a matching compatible string.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 12:48:41

Modified files:
	usr.sbin/vmd   : vmd.c vmd.h vmm.c 

Log message:
Terminate VMs on shutdown of vmd instead of leaving them running as
undead VM processes.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 12:52:09

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

Log message:
Update the list of vmm ioctls that are allowed by pledge.

OK mlarkin@ stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/06 12:56:17

Modified files:
	.              : Makefile 
	etc            : Makefile 

Log message:
Print the root check error message to stderr. While there add the name
of the target to the message to be more descriptive.

ok deraadt tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/06 13:03:19

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-129.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 13:09:08

Modified files:
	sys/kern       : uipc_socket.c uipc_socket2.c 
	sys/net        : if_ppp.c pf.c route.c 
	sys/netinet    : in_pcb.c 

Log message:
Remove redundant comments that say a function must be called at
splsoftnet() if the function does a splsoftassert(IPL_SOFTNET)
anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 13:32:23

Modified files:
	etc            : rc 

Log message:
Move vmd down as VMs might need the host's dhcpd, httpd etc. on startup.

OK mlarkin@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/06 13:43:30

Modified files:
	devel/libowfat : Makefile distinfo 
	devel/libowfat/patches: patch-GNUmakefile 
	devel/libowfat/pkg: PLIST 
Added files:
	devel/libowfat/patches: patch-buffer_buffer_put_c 

Log message:
update libowfat to 0.31
From Jan Klemkow (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/06 13:49:38

Modified files:
	faq            : current.html 

Log message:
New build infrastructure, noperm release process

The infrastructure to build the base system from source and to make a
release has changed.  The make build command now MUST be issued by root.
The makefiles will de-escalate privileges to BUILDUSER whenever possible.

Before starting a build, make sure that /usr/obj is empty and owned by
BUILDUSER.  Start the build from /usr/src as follows:

# export BUILDUSER=your-build-user      # only needed the first time
# make obj
# make build

To make a release(8), further setup is required:

* Mount a noperm filesystem on /dest, of size at least 1G, of type ffs
* The /dest mount point must be owned by BUILDUSER, with permissions 700.
* Create directories /dest/base and /dest/xbase owned by BUILDUSER.
* The RELEASEDIR must also be owned by BUILDUSER.

To build a base release, set DESTDIR=/dest/base and to build a xenocara
release, set DESTDIR=/dest/xbase.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/06 13:51:15

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

Log message:
update to UniFi-5.2.9, which backs out firmware for 1st gen UAPs due to
some issues with newer firmware on these devices.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/06 14:07:19

Modified files:
	faq            : current.html 

Log message:
back out previous, there was a misunderstanding. will be fixed shortly


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 14:20:42

Modified files:
	etc            : Makefile changelist master.passwd rc rc.conf 
	etc/mail       : aliases 
Added files:
	etc/rc.d       : switchd 

Log message:
Add switchd

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 14:25:02

Modified files:
	etc            : group 

Log message:
Add _switchd


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 14:27:44

Modified files:
	usr.sbin/switchd: types.h 

Log message:
Switch switchd to the _switchd user.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 14:33:46

Modified files:
	usr.sbin       : Makefile 

Log message:
Enable switchd + switchctl.  It is not finished yet but we made a lot
of progress and enabling it early is a better process.

Requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/06 14:41:28

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Enable pledge(2) in vmm and the VM processes: This way the VMs and
their monitor run in a very restricted environment.  VMs only pledge
"stdio vmm" which allows them to do most basic functions and a subset
of vmm ioctls (the other part of vmm ioctls are only permitted in the
parent).

This requires the previous change in the vmm kernel part.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/06 15:00:00

Modified files:
	sbin/mount     : mount.8 
	sys/ufs/ufs    : ufs_vnops.c 

Log message:
On noperm mount points honor the permissions of the root directory, so
access can be locked down.

ok deraadt tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/06 15:01:06

Modified files:
	faq            : current.html 

Log message:
New build infrastructure, noperm release process

The infrastructure to build the base system from source and to make a
release has changed.  The make build command now MUST be issued by root.
The makefiles will de-escalate privileges to BUILDUSER whenever possible.

Before starting a build, make sure that /usr/obj is empty and owned by
BUILDUSER.  Start the build from /usr/src as follows:

# export BUILDUSER=your-build-user      # only needed the first time
# make obj
# make build

To make a release(8), further setup is required:

* Mount a noperm filesystem on /dest, of size at least 1G, of type ffs
* The /dest mount point must be owned by BUILDUSER, with permissions 700.
* Create directories /dest/base and /dest/xbase owned by BUILDUSER.
* The RELEASEDIR must also be owned by BUILDUSER.

To build a base release, set DESTDIR=/dest/base and to build a xenocara
release, set DESTDIR=/dest/xbase.


CVSROOT:	/cvs
Module name:	www
Changes by:	natano@cvs.openbsd.org	2016/10/06 15:08:34

Modified files:
	faq            : current.html 

Log message:
Tweak wording: mount point != filesystem mounted on it.
ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/06 16:38:25

Modified files:
	usr.bin/signify: signify.c 

Log message:
- better check for seckeyname/pubkeyname "equality", remove the path
(you could legitimately store secret keys on a temporary mount
- error out if seckeyname does not follow the *.sec pattern for signing,
augment the check to deal with that.
- special case: seckeyfile can come from a pipe, and then, well, there's no
way to store *.pub in the comment.

okay tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/06 18:17:20

Modified files:
	usr.bin/mg     : dired.c 

Log message:
Switch a SLIST_FOREACH loop containing SLIST_REMOVE to SLIST_FOREACH_SAFE.
ok lum@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/10/06 19:49:28

Modified files:
	www/hiawatha   : Makefile distinfo 
	www/hiawatha/patches: patch-config_hiawatha_conf_in 
	                      patch-man_hiawatha_1_in 
	                      patch-src_serverconfig_c 

Log message:
Update to hiawatha 10.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/10/06 19:50:44

Modified files:
	lang/bacon     : Makefile distinfo 

Log message:
The tarball was updated.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/06 20:05:22

src/regress/sys/net/vxlan

Update of /cvs/src/regress/sys/net/vxlan
In directory cvs.openbsd.org:/tmp/cvs-serv5722/vxlan

Log Message:
Directory /cvs/src/regress/sys/net/vxlan added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/06 20:05:22

src/regress/sys/net/etherip

Update of /cvs/src/regress/sys/net/etherip
In directory cvs.openbsd.org:/tmp/cvs-serv5722/etherip

Log Message:
Directory /cvs/src/regress/sys/net/etherip added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/06 20:06:57

Modified files:
	regress/sys/net: Makefile 
Added files:
	regress/sys/net/etherip: Makefile etherip_1.sh etherip_subr 
	regress/sys/net/vxlan: Makefile vxlan_1.sh vxlan_subr 

Log message:
Add simple regress test for vxlan(4) and etherip(4).

ok bluhm


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/06 20:14:13

Modified files:
	faq            : current.html 

Log message:
two sentences needed some shuffling to read a bit less awkwardly.
other minor wording tweaks and markup fixups.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/06 22:08:30

Modified files:
	sys/arch/loongson/loongson: wscons_machdep.c 
Added files:
	sys/arch/loongson/dev: radeonfb.c 

Log message:
Add an initial framebuffer driver for the RS780E chipset on loongson,
ported from sparc64. For now, it works without hardware acceleration,
but otherwise it is usable enough as a console and with X.

Diff from Miod's hoard


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2016/10/06 22:20:09

Modified files:
	faq            : current.html 

Log message:
Updated share/mk files need to be installed before starting a build or
make obj won't set permissions based on BUILDUSER and make build will
then later error out.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/06 22:28:39

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/06 23:47:24

Modified files:
	etc            : rc 

Log message:
first set -max limit, then -cur, otherwise if -cur si higher than the current
max, it won't be set. noted by Evgeny Grin; ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/06 23:54:35

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
Beter implementation of chunk canaries: store size in chunk meta data
instead of chunk itself; does not change actual allocated size; ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/06 23:55:37

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
stray tab


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/07 00:16:03

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Fix vxlan_lookup() to comply the assumption of ether_input().  Put the
entire ethernet header on first mbuf and align 32bit at the payload.
Also fix the vxlan_output() not to cause an alignment fault.  Use a
new mbuf for VXLAN header instead of M_PREPEND to make sure that the
mbuf is aligned 32bit.  This is required to align 32 bit at the outer
IP header.

input vgross mikeb
ok dlg


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/07 01:08:03

Modified files:
	devel/py-parsing: Makefile distinfo 

Log message:
Update to py-parsing 2.1.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/07 01:09:41

Modified files:
	devel/py-setuptools_scm: Makefile distinfo 

Log message:
Update to py-setuptools_scm 1.13.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/07 01:15:33

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

Log message:
Update to py-xdis 2.3.2


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 01:22:32

src/sys/arch/armv7/marvell

Update of /cvs/src/sys/arch/armv7/marvell
In directory cvs.openbsd.org:/tmp/cvs-serv3928/marvell

Log Message:
Directory /cvs/src/sys/arch/armv7/marvell added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 01:24:21

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK files.armv7 
Added files:
	sys/arch/armv7/marvell: files.marvell mvacc.c 

Log message:
Add a driver for the Marvell Armada 380 core clock.  This driver
provides information about the four big clocks that are part of
this SoC.  Attach it early as the serial console needs it and the
core clock is after the console in the device tree.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 01:25:58

Modified files:
	sys/arch/armv7/marvell: mvacc.c 

Log message:
Don't forget to add the CVS Id tag.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 01:33:54

Modified files:
	usr.sbin/httpd : server_fcgi.c 

Log message:
Empty lines cause server_fcgi_getheaders() to immediately return.
Unfortunately in that case the line was not freed.  This lead to a
memleak on each request.  Thus, save the return value prior to
returning, free the line and return the saved value.

ok jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 01:37:29

Modified files:
	usr.sbin/httpd : server_fcgi.c 

Log message:
The strchr() call either returns a NULL pointer, on which the code will
break out of the loop, or a pointer to ':'.  Thus the extra check for
':' is unnecessary and can be removed.

ok jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/07 01:51:16

Modified files:
	sys/ufs/ufs    : ufs_vnops.c 

Log message:
Extra parentheses in conditional; no binary change.
from brynet, ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/07 02:17:06

Modified files:
	x11/gnome/photos: Makefile distinfo 

Log message:
Update to gnome-photos-3.20.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/07 02:18:22

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

Log message:
Use detach hook to notify switch(4) about interface removals instead of
adding code to if.c.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/07 02:31:08

Modified files:
	usr.sbin/switchd: ofp13.c ofrelay.c switchd.h 

Log message:
Add support for multipart replies and implement a simple ofp 1.3.5 error
message sending function.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/07 02:43:17

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-6.11.4


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/07 02:49:53

Modified files:
	usr.sbin/switchd: Makefile ofp13.c switchd.h 
Added files:
	usr.sbin/switchd: ofp_common.c 

Log message:
Move some shared code into a new file.

Discussed with rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/07 02:51:05

Modified files:
	emulators/qemu : Makefile 
	emulators/qemu/patches: patch-net_tap-bsd_c 

Log message:
Better diff to deal with the tap(4) transition. No functional change.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/07 02:55:30

Modified files:
	devel/llvm     : Makefile distinfo 
	devel/llvm/patches: patch-lib_Support_Triple_cpp 
	                    patch-lib_Target_Mips_MCTargetDesc_MipsMCAsmInfo_cpp 
	                    patch-tools_clang_include_clang_Driver_Options_td 
	                    patch-tools_clang_lib_Basic_Targets_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_h 
	                    patch-tools_clang_lib_Driver_Tools_cpp 
	devel/llvm/pkg : PLIST 
	lang/clang     : clang.port.mk 
Added files:
	devel/llvm/patches: patch-include_llvm_Support_Threading_h 
	                    patch-lib_CodeGen_TargetLoweringBase_cpp 
	                    patch-lib_Transforms_InstCombine_InstCombineCompares_cpp 
Removed files:
	devel/llvm/patches: patch-lib_CodeGen_StackProtector_cpp 

Log message:
Update to LLVM 3.9.0.
Been through bulks on amd64 / i386 by sthen@ and naddy@ respectively.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/07 02:57:13

Modified files:
	devel/include-what-you-use: Makefile 
Added files:
	devel/include-what-you-use/patches: patch-CMakeLists_txt 
	                                    patch-iwyu_ast_util_cc 

Log message:
Fix iwyu to build with llvm 3.9.

"should be good" jsg@
from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/07 04:05:16

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : README bro.rc 
Added files:
	net/bro/patches: patch-aux_broctl_bin_broctl_in 

Log message:
Use setrlimit() in broctl, at least 256 FDs are needed.
Fix rc_reload().


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/07 04:20:31

Modified files:
	net/arp-scan   : Makefile distinfo 

Log message:
update MAC vendor database


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/07 04:22:24

Modified files:
	net/GeoIP      : Makefile distinfo 

Log message:
update geolite database


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/07 04:27:31

Log message:
    import devel/py-ply, ok/feedback (a while ago..) by danj@, do-test from jca@
    
    PLY is an implementation of the lex and yacc parsing tools written
    entirely in Python. It uses LR-parsing which is reasonably efficient and
    well suited for larger grammars.
    
    PLY provides most of the standard lex/yacc features including support
    for empty productions, precedence rules, error recovery, and support for
    ambiguous grammars.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20161007
    
    N ports/devel/py-ply/Makefile
    N ports/devel/py-ply/distinfo
    N ports/devel/py-ply/pkg/PLIST
    N ports/devel/py-ply/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/07 04:28:15

Modified files:
	devel          : Makefile 

Log message:
+py-ply/,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/07 04:29:34

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

Log message:
update to py-ply-3.9


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/07 05:43:08

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

Log message:
Add a few tips on setting up hvn(4) interfaces


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/07 06:59:04

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
document "chunk canary corrupted" error


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/07 06:59:42

Modified files:
	net/bro        : Makefile 
Removed files:
	net/bro/patches: patch-cmake_FindBIND_cmake 

Log message:
Revert the cmake patch again and use LDFLAGS. We want to make sure libbind
is used to prevent conflicts.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/07 07:34:56

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : PLIST 

Log message:
Handle the ${PREFIX}/share/broctl/scripts/broctl-config.sh symlink at
install time (@exec-add/@exec-delete). The target changes according to the
spooldir and "@comment no checksum" does not work for symlinks.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/07 07:56:09

Modified files:
	faq            : current.html 

Log message:
tweak previous, must do 'make obj && make build' from /usr/src, not
from /usr/src/share/mk; remove setting BUILDUSER explicitly while there
since that's not needed.

pointed out by jesper wallin, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/07 08:41:52

Modified files:
	usr.bin/ssh    : sshd_config.5 

Log message:
tidy up the formatting in this file. more specifically, replace
.Dq, which looks appalling, with .Cm, where appropriate;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/07 08:42:27

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

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/07 08:43:13

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
grammar fix previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 08:43:50

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/marvell: files.marvell 
Added files:
	sys/arch/armv7/marvell: mvsysctrl.c 

Log message:
Support the Marvell Armada's System Controller to be able to reset
the machine.

ok kettenis@
ok tom@ on previous version


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/07 08:44:03

Modified files:
	security/wpa_supplicant: Makefile distinfo 
	security/wpa_supplicant/patches: patch-src_crypto_tls_openssl_c 
	                                 patch-src_utils_eloop_c 
	                                 patch-wpa_supplicant_Makefile 
	                                 patch-wpa_supplicant_main_c 
Added files:
	security/wpa_supplicant/patches: 
	                                 patch-src_crypto_crypto_openssl_c 
Removed files:
	security/wpa_supplicant/patches: patch-src_utils_common_c 
	                                 patch-src_utils_common_h 
	                                 patch-src_wps_wps_attr_process_c 
	                                 patch-wpa_supplicant_config_c 

Log message:
Update to wpa_supplicant-2.6

Tested by pascal@ and Laurence Tratt
feedback by sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/07 09:01:30

Modified files:
	etc            : master.passwd group 

Log message:
use better uid/gid for _switchd


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/07 09:08:10

Modified files:
	databases/hs-hedis: Makefile distinfo 

Log message:
Update to hedis-0.9.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/07 09:15:30

Modified files:
	share/man/man5 : mk.conf.5 

Log message:
document BUILDUSER; ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/07 09:31:42

Modified files:
	regress/usr.bin: Makefile 

Log message:
enable colrm and column, which i apparently forgot


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 09:48:55

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

Log message:
rss limit is no longer enforced. noticed by Raimo Niskanen


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 09:50:12

Modified files:
	sys/dev        : rnd.c 

Log message:
the old time delta code is no longer used. nothing reads these values.
remove it another relic of the superstitious past.
ok deraadt millert mikeb


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 09:59:36

Modified files:
	sys/dev        : rnd.c 

Log message:
another unused variable bites the dust. spotted by deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/07 10:09:33

src/regress/usr.bin/wc

Update of /cvs/src/regress/usr.bin/wc
In directory cvs.openbsd.org:/tmp/cvs-serv17920/wc

Log Message:
Directory /cvs/src/regress/usr.bin/wc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 10:09:49

Modified files:
	bin/ksh        : ksh.1 

Log message:
note that ulimit -m is not enforced, spotted by jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/07 10:10:32

Added files:
	regress/usr.bin/wc: Makefile wc.sh 

Log message:
minimal UTF-8 tests for wc(1)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 10:10:45

Modified files:
	bin/csh        : csh.1 

Log message:
suppose we should fix csh while we're at it.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/07 11:13:40

src/regress/usr.bin/cut

Update of /cvs/src/regress/usr.bin/cut
In directory cvs.openbsd.org:/tmp/cvs-serv38875/cut

Log Message:
Directory /cvs/src/regress/usr.bin/cut added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/07 11:22:12

Added files:
	regress/usr.bin/cut: Makefile cut.sh 

Log message:
test multibyte behaviour of cut(1)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/07 11:30:10

Modified files:
	regress/usr.bin: Makefile 

Log message:
enable tests for cut(1) and wc(1)


CVSROOT:	/cvs
Module name:	www
Changes by:	natano@cvs.openbsd.org	2016/10/07 11:55:35

Modified files:
	faq            : current.html 

Log message:
The owner of /dest/{x,}base doesn't actually matter, as they are on a
noperm partition, and it's not picked up by the tarballs.
ok tb deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 12:52:36

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Fixup comment by removing a word.

"free commit" kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 13:04:44

Modified files:
	sys/kern       : uipc_syscalls.c kern_sysctl.c 
	sys/sys        : sysctl.h 
	lib/libc/gen   : sysctl.3 

Log message:
introduce a sysctl to hijack dns sockets. when set to a port number,
all dns socket connections will be redirected to localhost:port.
this could be a sockopt on the listening socket, but sysctl is
an easier interface to work with right now.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 13:07:37

Modified files:
	usr.sbin/rebound: rebound.8 rebound.c 

Log message:
several big changes, tied together.
switch to reading resolv.conf to find upstream name servers.
moitor this file and automatically restart if it changes.
use the dnsjackport sysctl to steal DNS connections from libc.
listen on port 54 to avoid collisions with other DNS servers.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/07 13:10:46

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/marvell: files.marvell 
Added files:
	sys/arch/armv7/marvell: mvagc.c 

Log message:
Implement a driver for Marvell Armada's clock gates.  This basically
turns on a peripheral's power and functionality.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 13:14:56

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

Log message:
the parent mostly never crashes, but the child might. or the config file
disappears. in such cases, the parent will exit. make sure to always
reset the jackport, not just when receiving sigterm.
(doesn't protect against parent crashing, but that shouldn't happen.)


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/07 13:17:50

Modified files:
	sys/dev        : softraid_raid5.c 

Log message:
Using '4' as the max # of ccb's in a work unit doesn't work so well
when the number of chunks in your RAID5 is significantly more than
4.  Each work unit needs to use at least a ccb per chunk to do the
i/o.

Set the max to the number of chunks, which all the other RAID types
do in one varient or other. Note that it's not really a max, just
the number used when allocating the entire collection of ccb's for the
volume.

Fixes doing largeish i/o's (e.g. dd bs=1m count=128) to RAID5 volumes
with many chunks.

Problem reported by Alex McWhirter.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/07 14:24:52

Modified files:
	share/man/man4/man4.armv7: Makefile 
Removed files:
	share/man/man4/man4.armv7: imx.4 

Log message:
imx(4) is no more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/10/07 14:36:18

Removed files:
	databases/p5-DBD-mysql/patches: Tag: OPENBSD_6_0 patch-dbdimp_c 

Log message:
Remove a patch that breaks the build and is no longer needed with
DBD-mysql-4.037.

ok giovanni@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/07 14:58:12

Modified files:
	lib/libc/gen   : sysctl.3 

Log message:
sort;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/07 15:03:06

Modified files:
	usr.sbin/rebound: rebound.8 

Log message:
kern.dnsjacking -> kern.dnsjackport;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/07 15:05:20

Modified files:
	share/man/man4/man4.armv7: imxtemp.4 intro.4 

Log message:
no more imx.4;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/07 15:49:09

Modified files:
	net/py-zmq     : Makefile distinfo 
	net/py-zmq/pkg : PLIST 
Removed files:
	net/py-zmq/patches: patch-zmq_sugar_context_py 

Log message:
Update to py-zmq 15.4.0.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/07 15:49:45

Log message:
    GNU Backgammon (gnubg) plays and analyzes backgammon games and matches. It is
    able to play and analyze both money games and tournament matches, evaluate and
    roll out positions, and more. Driven by a command-line interface, it displays
    an ASCII rendering of a board on text-only terminals, but also allows the user
    to play games and manipulate positions with a graphical GTK+ interface. GNU
    Backgammon is extensible via Python.
    
    GNU Backgammon is a world class opponent and rates at around 2200 on FIBS, the
    First Internet Backgammon Server - at its best, it is in the top 5 of over
    6000 rated players there). GNU Backgammon can be played on numerous other
    on-line backgammon servers.
    
    OK edd@
    
    Status:
    
    Vendor Tag:	czarkoff
    Release Tags:	czarkoff_20161007
    
    N ports/games/gnubg/Makefile
    N ports/games/gnubg/distinfo
    N ports/games/gnubg/patches/patch-board3d_font3d_c
    N ports/games/gnubg/patches/patch-board3d_inc3d_h
    N ports/games/gnubg/patches/patch-render_c
    N ports/games/gnubg/patches/patch-configure
    N ports/games/gnubg/patches/patch-doc_Makefile_in
    N ports/games/gnubg/pkg/DESCR
    N ports/games/gnubg/pkg/PLIST
    N ports/games/gnubg/files/gnubg.desktop
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/07 15:51:10

Modified files:
	games          : Makefile 

Log message:
+gnubg


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/07 17:42:16

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

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/07 18:14:34

Modified files:
	faq            : faq6.html 

Log message:
expand the dhcpd example to include multiple subnets and tighten up
some wording.

input from sthen, ok krw


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/07 18:34:10

Modified files:
	faq/pf         : example1.html 

Log message:
mention the dhcpd section of faq6 in the dhcp section here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/10/07 19:33:09

Modified files:
	games/quakespasm: Makefile distinfo 

Log message:
update to QuakeSpasm 0.92.1


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/07 20:16:43

Modified files:
	sys/sys        : ktrace.h 
	sys/kern       : uipc_syscalls.c sys_pipe.c 
	usr.bin/kdump  : ktrstruct.c 

Log message:
Add ktracing of the fds returned by pipe() and socketpair()

ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/07 21:17:45

Modified files:
	faq            : faq6.html 

Log message:
trim some extraneous text and sort range/options items.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/10/07 21:32:25

Modified files:
	sys/net        : raw_usrreq.c 

Log message:
Instead of setting errno and then doing a goto do a m_freem() and return error.
Same thing but nicer to read. OK henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/07 21:42:20

Modified files:
	sys/arch/armv7/omap: ommmc.c 

Log message:
Only set the highspeed bit in bus_clock if highspeed is supported
by the controller.  Needed as the bus_clock callback is called with
SDMMC_TIMING_HIGHSPEED even if the controller capability is not set.
Required to raise the bus width on pandaboard which doesn't have the
highspeed capability.

As anything other than 1 bit mode results in the emmc on the bbb
timing out waiting for command completion, limit higher bus
modes to the first hsmmc controller.  This at least lets 4 bit
modes work with sd cards on bbb and pandaboard.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/07 21:46:58

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

Log message:
too many blank lines


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2016/10/07 23:30:05

Modified files:
	libressl       : index.html 

Log message:
Link all the directories, since we split this up


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/07 23:42:38

Modified files:
	sys/arch/sparc64/sparc64: genassym.cf 

Log message:
p_wchan and p_pid aren't used from asm (anymore?)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/07 23:49:09

Modified files:
	sys/arch/alpha/alpha: interrupt.c trap.c 
	sys/arch/amd64/amd64: trap.c 
	sys/arch/arm/arm: fault.c 
	sys/arch/hppa/hppa: trap.c 
	sys/arch/i386/i386: apm.c trap.c vm86.c 
	sys/arch/loongson/dev: apm.c 
	sys/arch/macppc/dev: apm.c 
	sys/arch/mips64/mips64: pmap.c trap.c 
	sys/arch/sh/sh : trap.c 
	sys/arch/sparc64/fpu: fpu.c 
	sys/arch/sparc64/sparc64: db_interface.c machdep.c trap.c 

Log message:
Various printf claim to report the PID, so actually report that and not the TID

Build testing assistance from deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/07 23:52:06

Modified files:
	sys/dev        : vnd.c 
	sys/dev/pci/drm: drmP.h drm_linux.h 

Log message:
Various printf claim to report the PID, so actually report that and not the TID

ok kettenis@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/07 23:55:03

Modified files:
	sys/arch/armv7/omap: omapid.c 

Log message:
Use the fdt root node instead of board ids to gate omap4 specific code.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/08 00:33:59

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

Log message:
a little more precision about reloading config. only reopen if it changed


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/08 00:45:02

Modified files:
	share/man/man4/man4.armv7: sysreg.4 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/vexpress: files.vexpress sysreg.c vexpress.c 

Log message:
Dynamically attach sysreg(4) using the FDT.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/08 01:01:03

Modified files:
	share/man/man5 : mk.conf.5 

Log message:
downgrade the description of SUDO somewhat; ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/10/08 03:14:44

Modified files:
	opensmtpd      : donations.html 

Log message:
thanks Daniel Pajonzeck


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 03:19:47

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

Log message:
Update to py-boto3-1.4.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 03:20:01

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.60.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 03:20:16

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 03:20:39

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/08 03:34:16

Modified files:
	sbin/mount_msdos: mount_msdos.8 

Log message:
add missing AUTHORS; OK sobrado@, also checked by Sevan Janiyan


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/08 03:41:04

Modified files:
	share/man/man4/man4.armv7: plrtc.4 pluart.4 

Log message:
Remove Xrs to vexpress(4) for drivers that no longer attach to it.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/08 03:43:46

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

Log message:
Do not let "make all" run the tests in the subdirectories twice
if a Makefile using <bsd.regress.mk> defines both SUBDIR and
REGRESS_TARGETS.
This helps for example src/regress/usr.bin/ssh/.
Same for "make cleandir", don't run "make clean" twice in SUBDIR.
OK bluhm@, and no opposition when shown on tech@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 03:45:13

Modified files:
	converters/libpst: Makefile 

Log message:
Take MAINTAINER.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/08 03:47:24

Modified files:
	devel/jansson  : Makefile 
	devel/jansson/patches: patch-CMakeLists_txt 

Log message:
Remove unneeded patch chunk that broke audio/deadbeef since the
update to jansson-2.9


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/08 03:50:14

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi sun4i.c sun7i.c sunxi.c 
	                      sxipio.c 

Log message:
Attach sxipio(4) using the fdt.

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 04:05:47

Modified files:
	devel/p5-Glib2 : Makefile distinfo 
	devel/p5-Glib2/pkg: PLIST 

Log message:
Update to p5-Glib2-1.323.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 04:18:13

Modified files:
	x11/p5-Gtk2    : Makefile distinfo 

Log message:
Update to p5-Gtk2-1.2499.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/08 05:20:27

Modified files:
	sys/dev/ic     : dwc_gmac.c dwc_gmac_var.h 

Log message:
Bring receive filter handling closer to the way we do things.

From Brad Smith.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/08 05:21:41

Modified files:
	sys/arch/armv7/sunxi: sunxi_machdep.c sxidog.c 

Log message:
Make sxidog(4) set cpuresetfn, and cut some dead wood from the platform code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/08 06:49:19

Modified files:
	devel/libgit2  : Makefile.inc 
	devel/libgit2/libgit2: Makefile distinfo 
	devel/libgit2/libgit2-glib: Makefile 
	devel/libgit2/py-git2: Makefile distinfo 
	devel/libgit2/py-git2/pkg: PLIST 

Log message:
update libgit2 and py-git2 to 0.24.1

Make better use of GH_* and python MODULE.

OK shadchin@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/08 06:56:18

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
make clear the length printed is the requested length


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/08 08:09:10

Modified files:
	lib/fontconfig/pc: Makefile 

Log message:
Fix package version in fontconfig.pc


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/08 08:19:09

Modified files:
	www/py-tornado : Makefile distinfo 
	www/py-tornado/pkg: PLIST 
Removed files:
	www/py-tornado/patches: patch-tornado_test_process_test_py 

Log message:
Update to py-tornado 4.4.2.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/08 08:35:19

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

Log message:
Hide details of fatal firmware errors in iwn(4) behind #ifdef IWN_DEBUG.
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/08 08:35:56

Modified files:
	sys/dev/ic     : ar5008.c ar9003.c 

Log message:
Add comments explaining why athn(4) disables multi-rate retries with RTS.
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/08 08:37:48

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

Log message:
Rate sets managed by net80211 are sorted by effective data rate speed while
the iwm_rates array sorts CCK rates before OFDM rates. Add a mapping function
to fill the ACK rate bitmap correctly.
Problem pointed out by Imre Vadasz.
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/08 08:42:36

Modified files:
	sys/net80211   : ieee80211_radiotap.h 

Log message:
Allow writing an MCS index to radiotap's rate field. The format we use is
the same as FreeBSD is using and is already recognized by third party tools.
For this file a documentation change is all that's needed.
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/08 08:44:36

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

Log message:
Make iwn(4) write MCS into the radiotap rate field.
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/08 08:45:11

Modified files:
	usr.sbin/tcpdump: print-802_11.c 

Log message:
Make tcpdump show MCS stored in radiotap's rate field.
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/10/08 10:19:44

Modified files:
	sys/uvm        : uvm_amap.c 

Log message:
Prevent infinite loops for amap allocations with >= 2^17 slots

This was caused by an integer overflow in a loop. mlarkin@
noticed the hang when trying to run a vmm(4) guest with lots of RAM.


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2016/10/08 10:20:44

Modified files:
	sys/uvm        : Tag: OPENBSD_6_0 uvm_amap.c 

Log message:
Backport r1.78 from -current:
Prevent infinite loops for amap allocations with >= 2^17 slots

This was caused by an integer overflow in a loop. mlarkin@
noticed the hang when trying to run a vmm(4) guest with lots of RAM.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/08 10:25:45

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/10/08 11:02:48

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c 

Log message:
Simplify handling of cold reboot on armv7 to match other platforms

Suggested by and ok both patrick@ and kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 11:50:46

Modified files:
	graphics/ffmpeg: Makefile distinfo 

Log message:
SECURITY update to ffmpeg-20161008.
CVE-2016-7562, CVE-2016-7122, CVE-2016-7450, CVE-2016-7502, CVE-2016-7555, CVE-2016-7785, CVE-2016-7905

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 11:51:30

Modified files:
	x11/mplayer    : Makefile 

Log message:
New FFmpeg version.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/08 11:52:57

Modified files:
	.              : mail.html 

Log message:
remove defunct italian and french mailing lists; from davide gerhard


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/08 13:09:34

Modified files:
	lib/libGLw     : Makefile 
	lib/libepoxy   : Makefile 

Log message:
use the pkg-config support from bsd.xorg.mk to handle
libGLw and libepoxy .pc files rather than manually generating them
as root in postinstall. Spotted by natano@ ok natano@.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/08 13:29:18

Modified files:
	lib/libGLw     : Makefile 

Log message:
Put back the NOPROFILE= that I accidentally removed in previous commit


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/08 13:55:40

Modified files:
	usr.bin/gprof  : gprof.c 

Log message:
findcall() for the -c option is implemented on mips64, not sparc64


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/08 14:14:06

Modified files:
	x11/mplayer    : Makefile distinfo 
	x11/mplayer/patches: patch-DOCS_man_en_mplayer_1 patch-configure 
Removed files:
	x11/mplayer/patches: patch-libmpcodecs_vd_ffmpeg_c 
	                     patch-libmpdemux_demux_gif_c 

Log message:
Update to mplayer-20161008.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/08 14:36:35

Modified files:
	sys/net        : switchofp.c 

Log message:
Check for the correct header length size. MINCLSIZE is used for cluster,
instead we should use MHLEN for header size.

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/08 14:38:39

Modified files:
	www/ruby-passenger: Makefile 

Log message:
Add BDEP on gsed, since embedded libuv picks it up at runtime

problem noticed by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/08 15:27:32

Modified files:
	sys/kern       : kern_sysctl.c 

Log message:
initialize the port variable before sysctl, since it's also read out.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/08 15:31:56

Modified files:
	sys/kern       : kern_sysctl.c 

Log message:
upon further review, port numbers go all the way up to ushort max


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	natano@cvs.openbsd.org	2016/10/08 15:51:47

Modified files:
	lib/libX11/src : Makefile.am Makefile.in 

Log message:
ks_tables.h is always considered out of date due to the forced rebuild
of the makekeys util. This means it's also rebuilt during install. First
as root during build, later by the BUILDUSER during release, which won't
be able to rewrite it, because it's now owned by root. With this result:

override rw-r--r--  root/wheel for ks_tables.h?

One step closer towards noperm release builds for xenocara.

ok matthieu


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/08 17:31:57

Modified files:
	sys/arch/m88k/m88k: sig_machdep.c 

Log message:
Report the PID in sendsig() debugging

tested by aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/08 17:36:10

Modified files:
	sys/net        : if_switch.c 

Log message:
Add missing if_put() in the switch(4) destroy path.

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/08 18:42:14

Modified files:
	devel/py-hg-git: Makefile 

Log message:
unclutter test target


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/08 18:53:43

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c armv7_machdep.h platform.c 

Log message:
Add a power down function pointer so power down can work without the
platform abstraction.

ok tom@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/08 19:08:25

Modified files:
	share/man/man4/man4.armv7: sxipio.4 

Log message:
sxipio now attaches with fdt


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/08 19:40:43

Modified files:
	share/man/man4/man4.armv7: Makefile 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/vexpress: files.vexpress sysreg.c 
	sys/arch/armv7/armv7: armv7var.h platform.c 
Removed files:
	share/man/man4/man4.armv7: vexpress.4 
	sys/arch/armv7/vexpress: vexpress.c vexpress_a15.c vexpress_a9.c 
	                         vexpress_machdep.c 

Log message:
Remove the vexpress platform abstraction and board id.  All the devices
that attached to vexpress have been converted to fdt so this is no
longer required.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/08 21:07:25

Modified files:
	sys/arch/loongson/stand/boot: start.S 

Log message:
Pass `prid' properly to pmon_init().


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/08 21:29:53

Modified files:
	sys/arch/mips64/include: pte.h 

Log message:
Do not use MIPS64r2 instructions on Loongson 2. Now, a generic loongson
kernel has to learn a new trick in order to use TLB RI/XI on 3A2000.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/09 00:20:25

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
fix heap overflow by rewriting loop; detected by new malloc canaries
ok krw@ beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 00:47:10

Modified files:
	devel/llvm     : Makefile distinfo 
	devel/llvm/pkg : PLIST 
Added files:
	devel/llvm/patches: patch-tools_lld_ELF_InputFiles_cpp 
	                    patch-tools_lld_ELF_InputSection_cpp 
	                    patch-tools_lld_ELF_InputSection_h 
	                    patch-tools_lld_ELF_LinkerScript_cpp 
	                    patch-tools_lld_ELF_LinkerScript_h 
	                    patch-tools_lld_ELF_Writer_cpp 
	                    patch-tools_lld_ELF_Writer_h 

Log message:
Enable building lld.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/09 01:30:28

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Use xsnprintf not snprintf for the prompt in window_copy_write_line
because we don't care if it is truncated to the screen width, we don't
want it to be fatal.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/09 01:58:35

Modified files:
	usr.bin/tmux   : cmd-set-option.c 

Log message:
Handle NULL window or session for user options.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/09 02:06:51

Modified files:
	usr.bin/tmux   : cmd-if-shell.c cmd-run-shell.c 

Log message:
Pass file/line to new command for if-shell so that errors appear
sensibly.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/09 03:54:56

Modified files:
	data/xkeyboard-config: Makefile.inc 

Log message:
Provide a default clean target now that bsd.subdir.mk doesn't.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/10/09 04:20:53

Modified files:
	distrib/miniroot: install.sub 

Log message:
Re-enable fetching sets from local sources (disk, cdrom, nfs) as root.
It's the users responsibility to ensure the integrity of these files!

Problem found by Laurence Tratt who placed the sets in his home dir
where the unprivileged users now used by the installer weren't able
to read them from.

discussed with deraadt@
OK krw@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/09 04:45:14

Modified files:
	build/openssh  : releases.pl 
	openssh        : releasenotes.html 

Log message:
Multiple bz annotations can appear on one line so mark up all of them.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/09 05:01:31

Modified files:
	sys/arch/armv7/armv7: armv7_start.S 

Log message:
Change raw dsb and smc opcodes to instructions.  The dsb encoding did
not set an option where as having just a 'dsb' instruction results in
the 'sy'/full system option being set.

Unknown/reserved options are supposed to result in a full system dsb
but the ARM ARM specifically calls this out as something software
should not rely on.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/09 05:14:22

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi sun4i.c sun7i.c sunxi.c 
	                      sxiccmu.c 

Log message:
Attach sxiccmu(4) using the fdt.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/09 05:20:10

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

Log message:
Update to py-uncompyle6 2.8.4


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/10/09 05:25:40

Modified files:
	sys/arch/alpha/alpha: machdep.c 
	sys/arch/amd64/amd64: machdep.c 
	sys/arch/hppa/hppa: machdep.c 
	sys/arch/i386/i386: machdep.c 
	sys/arch/landisk/landisk: machdep.c 
	sys/arch/loongson/loongson: machdep.c wscons_machdep.c 
	sys/arch/luna88k/luna88k: machdep.c 
	sys/arch/m88k/m88k: m88k_machdep.c 
	sys/arch/macppc/macppc: machdep.c 
	sys/arch/octeon/octeon: machdep.c 
	sys/arch/octeon/stand/boot: machdep.c 
	sys/arch/sgi/sgi: ip22_machdep.c ip27_machdep.c ip30_machdep.c 
	                  machdep.c 
	sys/arch/socppc/socppc: machdep.c 
	sys/arch/socppc/stand/boot: machdep.c 
	sys/arch/sparc64/sparc64: machdep.c 

Log message:
Apply consistency to forever loops with continue and NOTREACHED

Same thought from kettenis@, ok krw@ phessler@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/09 05:37:23

Modified files:
	sys/dev        : audio.c 

Log message:
Don't allocate struct mixer_devinfo instances on the stack.  It is a fairly
large data structure and if the compiler gets clever and inlines some code
we hit the stack size compiler warning.  This makes things compile with clang.

ok ratchov@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/10/09 05:39:20

Modified files:
	devel/gdb      : Makefile distinfo 
	devel/gdb/patches: patch-bfd_elf_c patch-bfd_peXXigen_c 
	                   patch-gdb_data-directory_Makefile_in 
	devel/gdb/pkg  : PLIST 

Log message:
Update to GDB 7.12.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	shadchin@cvs.openbsd.org	2016/10/09 05:49:41

Modified files:
	data/xkeyboard-config/man: xkeyboard-config.7 
	data/xkeyboard-config/pc: Makefile 
	data/xkeyboard-config/symbols: Makefile 
	dist/xkeyboard-config: NEWS aclocal.m4 configure configure.ac 
	dist/xkeyboard-config/po: af.po az.po bg.po ca.po crh.po cs.po 
	                          da.po de.po el.po en_GB.po eo.po es.po 
	                          fi.po fr.po gl.po hr.po hu.po id.po 
	                          it.po ja.po ka.po ko.po ky.po lt.po 
	                          nb.po nl.po pl.po pt_BR.po ro.po ru.po 
	                          rw.po sk.po sl.po sq.po sr.po sv.po 
	                          tr.po uk.po vi.po zh_CN.po zh_TW.po 
	dist/xkeyboard-config/rules: base.extras.xml.in base.ml_s.part 
	                             base.o_s.part base.xml.in 
	                             evdev.extras.xml.in evdev.xml.in 
	dist/xkeyboard-config/symbols: Makefile.am Makefile.in cm de kz 
	                               lk rs ru us 
	dist/xkeyboard-config/symbols/sharp_vndr: sl-c3x00 
Added files:
	dist/xkeyboard-config/symbols: au parens 

Log message:
Update to xkeyboard-config 2.19

ok matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	shadchin@cvs.openbsd.org	2016/10/09 05:51:41

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/10/09 07:23:34

Modified files:
	graphics/blender: Makefile distinfo 
	graphics/blender/patches: 
	                          patch-source_blender_blenloader_intern_writefile_c 
	graphics/blender/pkg: PLIST 

Log message:
Update to blender 2.78.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/09 07:27:18

Log message:
    Import py-cycler 0.10.0, ok daniel@
    
    Composable cycle class used for constructing style-cycles.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161009
    
    N ports/graphics/py-cycler/Makefile
    N ports/graphics/py-cycler/distinfo
    N ports/graphics/py-cycler/pkg/DESCR
    N ports/graphics/py-cycler/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/09 07:29:26

Modified files:
	graphics       : Makefile 

Log message:
+py-cycler
+py-cycler,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/09 08:23:10

Modified files:
	etc            : Makefile 

Log message:
Check that DESTDIR is on a noperm filesystem that's properly locked
down and enforce reasonable permissions for RELEASEDIR.

prodded by and ok deraadt
ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:05:54

Log message:
    Import gnome-autoar-0.1.1.
    
    gnome-autoar provides functions, widgets, and gschemas for GNOME applications
    which want to use archives as a convenient method to transfer directories over
    the internet.
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161009
    
    N ports/x11/gnome/autoar/Makefile
    N ports/x11/gnome/autoar/distinfo
    N ports/x11/gnome/autoar/pkg/DESCR
    N ports/x11/gnome/autoar/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:07:31

Modified files:
	x11/gnome      : Makefile 

Log message:
+autoar


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:08:47

Modified files:
	mail/evolution : Makefile 
Added files:
	mail/evolution/patches: patch-configure 
	                        patch-data_org_gnome_evolution_shell_gschema_xml_in 
	                        patch-e-util_e-attachment-store_c 
	                        patch-e-util_e-attachment_c 

Log message:
Add support for gnome-autoar.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/10/09 09:10:33

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

Log message:
update to 1.76


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:22:35

ports/misc/osinfo

Update of /cvs/ports/misc/osinfo
In directory cvs.openbsd.org:/tmp/cvs-serv78090/osinfo

Log Message:
Directory /cvs/ports/misc/osinfo added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:23:18

Added files:
	misc/osinfo    : Makefile Makefile.inc 

Log message:
Add squeleton for new libosinfo hier.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:24:20

Log message:
    Import libosinfo-1.0.0.
    (moved from misc/libosinfo and updated)
    
    libosinfo is a GObject based library API for managing information about
    operating systems, hypervisors and the (virtual) hardware devices they can
    support.
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacouott_20161009
    
    N ports/misc/osinfo/libosinfo/Makefile
    N ports/misc/osinfo/libosinfo/distinfo
    N ports/misc/osinfo/libosinfo/pkg/DESCR
    N ports/misc/osinfo/libosinfo/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:25:10

Log message:
    Import osinfo-db-20160728.
    
    The osinfo database provides information about operating systems and hypervisor
    platforms to facilitate the automated configuration and provisioning of new
    virtual machines.
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161009
    
    N ports/misc/osinfo/osinfo-db/Makefile
    N ports/misc/osinfo/osinfo-db/distinfo
    N ports/misc/osinfo/osinfo-db/pkg/DESCR
    N ports/misc/osinfo/osinfo-db/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:25:44

Log message:
    Import osinfo-db-tools-1.0.0.
    
    This package contains a set of tools to assist administrators and developers in
    managing the libosinfo database.
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161009
    
    N ports/misc/osinfo/osinfo-db-tools/Makefile
    N ports/misc/osinfo/osinfo-db-tools/distinfo
    N ports/misc/osinfo/osinfo-db-tools/pkg/DESCR
    N ports/misc/osinfo/osinfo-db-tools/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:26:59

Modified files:
	sysutils/virt-manager: Makefile 
	x11/gnome/tracker: Makefile 

Log message:
Fix dependency after libosinfo move.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:27:42

Removed files:
	misc/libosinfo : Makefile distinfo 
	misc/libosinfo/pkg: DESCR PLIST 

Log message:
Move to misc/osinfo/libosinfo.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/09 09:28:07

Modified files:
	misc           : Makefile 

Log message:
-libosinfo
+osinfo


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/09 10:24:34

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

Log message:
Make the CLIENT_STATUS flag imply that pane status lines are redrawn if
they are enabled and break the actual screen generation code into a
separate function. Fixes problems reported by Romain Francoise.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/09 10:43:47

Modified files:
	games/jbrickshooter: Makefile distinfo 

Log message:
Update to jbrickshooter 1.6.0, and switch to github since google code
was removed. Build jar from java sources using ant.


CVSROOT:	/cvs
Module name:	src
Changes by:	henning@cvs.openbsd.org	2016/10/09 12:01:57

Modified files:
	sys/net        : pf.c 

Log message:
formatting nit (a tab got lost somewhen)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/09 12:16:46

Modified files:
	usr.bin/mandoc : mandoc.h mdoc_term.c mdoc_validate.c read.c 

Log message:
Delete complicated code dealing with .Bl -tag without -width,
and just let it default to -width 6n, which agrees with the
traditional -width Ds that is still in widespread use.

I just pushed a patch upstream to GNU roff that does the same for
groff_mdoc(7).  Before, groff contained code that was even more
complicated than mandoc, but both resulted in quite different
user-visible output.  Now, both agree, and output is nicer for both.

Useless complication noticed by Carsten Kunze (Heirloom roff).


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/09 12:47:49

Modified files:
	x11/st         : Makefile distinfo 
	x11/st/patches : patch-config_def_h patch-config_mk 
Removed files:
	x11/st/patches : patch-st_c 

Log message:
Update to st-0.7

from Rafael Sadowski

OK jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/09 13:04:38

Modified files:
	audio/deadbeef : Makefile 
Added files:
	audio/deadbeef/patches: patch-plugins_alac_alac_c 

Log message:
Explicitly pass '--disable-libmpg123' to CONFIGURE_ARGS, to avoid
a hidden dependency on audio/mpg123; spotted by nigel@

While here, merge a fix from the '0.7' stable branch:

alac: prevent crash on unrecognized/corrupt content
(upstream git commit 0d269ed4eee6a6b5e82dbc898a4779aea368e8f2)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/09 13:25:15

Removed files:
	regress/misc/utf8: t1.exp t1.sh t2.exp t2.sh wc.exp wc.sh 

Log message:
Remove simple UTF-8 tests.  Ingo has written propper tests for
cut(1) and wc(1).  Tests for tr(1) will come when it is UTF-8 ready.
OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/09 13:33:34

Modified files:
	sys/kern       : uipc_socket2.c 

Log message:
sowakeup() is only called from sorwakeup() and sowwakeup().  Both
have an splsoftassert(IPL_SOFTNET) now, so sowakeup() does not need
to call splsoftnet() anymore.
From mpi@'s netlock diff; OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/10/09 14:05:10

Modified files:
	sys/net        : if.c 

Log message:
This needs radix.h because it uses rn_refines().
OK guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/09 14:16:50

Modified files:
	sys/arch/m88k/m88k: m88k_machdep.c 

Log message:
Tweak the special handling of pid 1 in setregs()...and document that
while it's not 100% correct, it's okay

tested by aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/09 14:55:16

Modified files:
	etc            : Makefile 

Log message:
Remove check for RELEASEDIR permissions, there are usecases where other
filesystem permissions are required.

requested by deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/09 15:25:27

Modified files:
	devel/libowfat : Makefile 
	devel/libowfat/patches: patch-GNUmakefile 
	devel/libowfat/pkg: PLIST 

Log message:
Build and install libowfat also as shared library.
From Jan Klemkow (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/09 16:46:48

Modified files:
	sys/kern       : sys_process.c 

Log message:
With systrace and procfs gone, process_checkioperm() and process_domem()
are for option PTRACE only

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/09 17:46:23

Modified files:
	sys/arch/armv7/armv7: armv7_start.S 
	sys/arch/armv7/conf: GENERIC RAMDISK files.armv7 
Added files:
	sys/arch/armv7/dev: psci.c 

Log message:
Add psci(4) a driver for the reset and power down portion of the
ARM Power State Coordination Interface (PSCI) specification.

Tested with qemu-system-arm -M virt.

Feedback from patrick@, ok kettenis@ tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/09 17:49:54

Modified files:
	sys/msdosfs    : msdosfs_vfsops.c 

Log message:
Do not check the SecPerTrack field of the BPB when mounting a MSDOS
file system.  In modern images the field is not set properly and
the value is not used anyway.  FreeBSD has removed the check already
in 2008.
From Alexander von Gernler; OK krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/09 17:50:20

Modified files:
	share/man/man4/man4.armv7: Makefile 
Added files:
	share/man/man4/man4.armv7: psci.4 

Log message:
add a manual page for psci


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/10/09 18:14:28

Modified files:
	.              : errata60.html 

Log message:
errara 012, uvm amap lockup; from stefan


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/09 18:34:50

Modified files:
	sbin/fsck_msdos: boot.c 
	sys/msdosfs    : bootsect.h msdosfs_vfsops.c 

Log message:
Rename BIOS parameter block field from bsPBP to bsBPB.  This typo
has been fixed in FreeBSD in 2002.  No binary change.
From Alexander von Gernler; OK krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/09 18:34:51

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
copy the offset of data inside mbufs in m_copym().

this is cheap since it is basic math. it also means that payloads
which have been aligned carefully will also be aligned in their
copy.

ok yasuoka@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/09 18:41:17

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
white space fixes.

no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/09 19:59:33

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

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/10/09 19:59:40

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/10/09 20:22:59

Modified files:
	usr.bin/pkill  : pkill.c 

Log message:
- mark delim variable as const. it is a literal string;
- no need to declare main() prototype;
- mark all functions as static;
- add __dead marker to usage(), since it doesn't return;
- zap extern *optarg/optind in main(), It is already done in unistd.h;
- return from main instead of exit(3) that enables stack protector;
- fix err() eval in pledge()s error path.

OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/10/09 20:23:54

Modified files:
	usr.bin/uname  : uname.c 

Log message:
calls to uname(3) should be checked against non-negative value
upon successful and -1 on failure (as per POSIX). No functional change, just
improves portability.

OK millert@ schwarze@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2016/10/09 20:26:24

Modified files:
	usr.sbin/eigrpd: tlv.c 

Log message:
calls to uname(3) should be checked against non-negative value
upon successful and -1 on failure (as per POSIX). No functional change, just
improves portability.

requested by guenther@
looks correct to schwarze@
OK renato@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/09 20:44:17

Modified files:
	sys/net        : if_ethersubr.c if_vlan.c 

Log message:
ensure prepended ethernet headers are placed on ETHER_ALIGN boundaries,
even if m_prepend allocates a new mbuf in front of the current one.

this is done by asking M_PREPEND for ETHER_HDR_LEN + ETHER_ALIGN bytes,
and then calling m_adj(ETHER_ALIGN) after.

in the case M_PREPEND does not allocate a new mbuf and ends up with the
same layout as before.

in the allocation case, the requested length is provided on a long
boundary. an ETHER_HDR_LEN request would therefore be 6 bytes
allocated on a long boundary, when we want it to be at ETHER_ALIGN.
by asking for ETHER_HDR_LEN plus ETHER_ALIGN, we can m_adj ETHER_ALIGN
off to get us to the ETHER_ALIGN offset.

ok yasuoka@ mikeb@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/09 22:36:48

Modified files:
	openssh        : specs.html 

Log message:
Add draft-ssh-ext-info-04 and draft-rsa-dsa-sha2-256-03 that were added
in 7.2.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/09 22:40:26

Modified files:
	openssh        : specs.html 

Log message:
Slightly less verbose.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/10 02:06:38

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : README 

Log message:
Add a small entry for 'broctl cron'.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/10 02:15:05

Modified files:
	security/gnutls: Makefile distinfo 

Log message:
Update to gnutls-3.4.16.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/10 02:33:32

Modified files:
	share/man/man9 : bpf_mtap.9 

Log message:
Fix typo "bfp".
OK dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/10 03:33:17

Log message:
    Import agar-1.5.0.
    
    Agar is a cross-platform GUI toolkit. Agar provides a base framework and a
    collection of GUI widgets from which GUI applications can be built. Agar can
    be styled and themed using a CSS-style engine.
    
    Agar applications work seamlessly under X11 (with OpenGL), Windows, MacOS X
    and SDL 1.2. Agar can also attach to an OpenGL or SDL context and operate as
    window manager for the application. Agar is compact, efficient, and fully
    thread-safe. Its functionality can be extended using simple C/C++ class
    registration interfaces.
    
    improvements and ok czarkoff@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20161010
    
    N ports/x11/agar/Makefile.inc
    N ports/x11/agar/Makefile
    N ports/x11/agar/agar/Makefile
    N ports/x11/agar/agar/distinfo
    N ports/x11/agar/agar/patches/patch-Makefile
    N ports/x11/agar/agar/pkg/DESCR
    N ports/x11/agar/agar/pkg/PLIST
    N ports/x11/agar/test/Makefile
    N ports/x11/agar/test/distinfo
    N ports/x11/agar/test/pkg/DESCR
    N ports/x11/agar/test/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/10 03:33:44

Modified files:
	x11            : Makefile 

Log message:
+agar


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/10 05:13:49

Modified files:
	usr.sbin/httpd : proc.c 

Log message:
Add more context to fatal*() messages so it makes easier to debug proc.c
internals.

ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/10/10 06:20:17

Modified files:
	devel/radare2  : Makefile.inc 
	devel/radare2/bindings: Makefile distinfo 
	devel/radare2/bindings/pkg: PLIST 
	devel/radare2/bindings/tests/test_vala_r_asm: rasm.vala 
	devel/radare2/main: Makefile distinfo 
	devel/radare2/main/patches: patch-libr_Makefile 
	devel/radare2/main/pkg: PLIST README 

Log message:
Update to radare2 0.10.6

Also rename radare-bindings2 to radare2-bindings (as upstream).

OK edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/10/10 06:23:18

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Switch radare-bindings2 to radare2-bindings

Fix some whitespace at the same time.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/10 06:25:20

Modified files:
	security       : Makefile 
	security/cyrus-sasl2: Makefile 
	security/cyrus-sasl2/pkg: DESCR PLIST 
Added files:
	security/cyrus-sasl2/pkg: PFRAG.sql 

Log message:
Split sqlite3 support into its own FLAVOR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/10 06:55:51

Modified files:
	devel/cryptopp : Makefile 
	devel/cryptopp/patches: patch-config_h 
Added files:
	devel/cryptopp/patches: patch-algparam_h patch-cryptlib_h 
	                        patch-filters_h patch-misc_h 
	                        patch-osrng_h patch-pubkey_h 
	                        patch-secblock_h patch-seckey_h 
	                        patch-simple_h patch-stdcpp_h 

Log message:
Get rid of all the noisy warnings like:
warning: "_MSC_VER" is not defined


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/10 07:25:08

xenocara/lib/libGLw/GL

Update of /cvs/xenocara/lib/libGLw/GL
In directory cvs.openbsd.org:/tmp/cvs-serv51756/GL

Log Message:
Directory /cvs/xenocara/lib/libGLw/GL added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/10 07:25:38

Modified files:
	net/amule      : Makefile 
Added files:
	net/amule/patches: patch-src_PrefsUnifiedDlg_cpp 
	                   patch-src_PrefsUnifiedDlg_h 

Log message:
Fix restoring toolbar orientation on 'Cancel'
(upstream git commit 8f0c06698f988e8d93b62045716bd205a015490b)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/10 07:27:14

Modified files:
	lib/libGLw     : Makefile 
Added files:
	lib/libGLw/GL  : GLwDrawA.h GLwDrawAP.h GLwMDrawA.h GLwMDrawAP.h 
Removed files:
	lib/libGLw     : GLwDrawA.h GLwDrawAP.h GLwMDrawA.h GLwMDrawAP.h 

Log message:
Move headers files to 'GL/' so that the library can be built
without installed headers.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/10 07:34:43

Modified files:
	.              : Makefile 
	app/fvwm       : Makefile 
	lib/freetype   : Makefile 
	lib/libepoxy   : Makefile 
	share/mk       : bsd.xorg.mk 

Log message:
Remove the global 'make includes' step from 'make build'.
This is no longer needed and gets in the way of tightening
permission used during build. ok and suggestions natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/10 07:54:47

Modified files:
	usr.bin/tmux   : tmux.h paste.c arguments.c 

Log message:
Some more static.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/10 09:22:26

Modified files:
	usr.sbin/rcctl : rcctl.8 

Log message:
improve .Bl -tag -width for -Tps mode;
patch from Jan Stary <hans at stare dot cz>;
"go ahead" jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/10 09:53:36

Modified files:
	usr.sbin/dhcpd : dhcp.c 

Log message:
Stop pretending we use RFC 3046/Option 82/Relay Agent Information.

RFC 3042 says servers that do not understand the option will not
echo it.

Plus, our desultory attempt at echoing was almost certainly broken
for OFFERs (use after free of packet data) and not even attempted
for NACKs.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/10 10:31:35

Modified files:
	usr.sbin/httpd : proc.c 

Log message:
Fix msgbuf_write() usage idiom and modify the treatment for socket close
to exit gracefully instead of fatal()ing.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/10 10:52:24

Log message:
    import p5-Cpanel-JSON-XS 3.0217
    OK benoit@
    
    Comment:
    cPanel fork of JSON::XS, fast and correct serializing
    
    Description:
    This module converts Perl data structures to JSON and vice versa.
    Its primary goal is to be correct and its secondary goal is to be
    fast.  To reach the latter goal it was written in C.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20161010
    
    N ports/converters/p5-Cpanel-JSON-XS/Makefile
    N ports/converters/p5-Cpanel-JSON-XS/distinfo
    N ports/converters/p5-Cpanel-JSON-XS/pkg/PLIST
    N ports/converters/p5-Cpanel-JSON-XS/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/10 10:55:02

Modified files:
	converters     : Makefile 

Log message:
+p5-Cpanel-JSON-XS


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/10 11:13:05

Modified files:
	converters/p5-JSON-MaybeXS: Makefile distinfo 

Log message:
update p5-JSON-MaybeXS to 1.003008


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/10 11:15:30

Modified files:
	lib/libutil    : imsg_init.3 

Log message:
Fixup the example for msgbuf_write() and imsg_read() to check the
error cases for -1 and 0 explicitly (it initially only checked for -1,
I updated it to also check for 0, and rzalamena@ figured out that 0
has to be checked in a differently).

OK millert@ rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/10 11:19:47

Log message:
    import rundeck-2.6.9
    
    Job scheduler and runbook automation. Enable self-service access to
    existing scripts and tools.
    
    joint work with/OK aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20161010
    
    N ports/sysutils/rundeck/Makefile
    N ports/sysutils/rundeck/distinfo
    N ports/sysutils/rundeck/pkg/DESCR
    N ports/sysutils/rundeck/pkg/PLIST
    N ports/sysutils/rundeck/pkg/rundeck.rc
    N ports/sysutils/rundeck/files/admin.aclpolicy
    N ports/sysutils/rundeck/files/apitoken.aclpolicy
    N ports/sysutils/rundeck/files/framework.properties
    N ports/sysutils/rundeck/files/log4j.properties
    N ports/sysutils/rundeck/files/profile
    N ports/sysutils/rundeck/files/project.properties
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/10 11:20:42

Modified files:
	sysutils       : Makefile 

Log message:
+rundeck


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/10 11:28:30

Modified files:
	usr.bin/tmux   : cmd-resize-pane.c layout.c tmux.h 

Log message:
Do not allow the opposite pane to resize when dragging with the mouse
because it is not possible to keep the mouse on the border when the
minimum size is reached.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/10 11:28:56

Modified files:
	sysutils/beats/filebeat: Makefile distinfo 
	sysutils/beats/packetbeat: Makefile distinfo 
	sysutils/beats/topbeat: Makefile distinfo 

Log message:
update to beats-1.3.1; from Pavel Korovin


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/10/10 11:36:03

Modified files:
	bin/ed         : sub.c 

Log message:
Remove infinite loop detection from the s-command.
If a zero-length match is found do the replacement and increment the start point
for the next search by one. This allows for commands like s/^/- /
This brings the behaviour closer to the way sed and vi work.

OK schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/10 11:50:23

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

Log message:
Update to py-slixmpp-1.2.1

While there, fix test target


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/10 11:51:32

Modified files:
	net/poezio     : Makefile distinfo 
	net/poezio/patches: patch-setup_py 
	net/poezio/pkg : PLIST 

Log message:
Update to poezio-0.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/10 12:00:02

ports/net/py-cares/patches

Update of /cvs/ports/net/py-cares/patches
In directory cvs.openbsd.org:/tmp/cvs-serv64498/patches

Log Message:
Directory /cvs/ports/net/py-cares/patches added to the repository
--> Using per-directory sticky tag `OPENBSD_6_0'


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/10 12:06:50

Modified files:
	net/py-cares   : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/py-cares/patches: Tag: OPENBSD_6_0 
	                      patch-deps_c-ares_src_ares_create_query_c 

Log message:
Backport the patch for CVE-2016-5180 for the bundled c-ares

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/10 12:07:03

Modified files:
	bin/mv         : rm.c 

Log message:
remove some dead code that's only used in rm


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/10 12:09:40

Modified files:
	bin/mv         : rm.c 

Log message:
remove some more dead code. (previous diff from Jan Stary)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/10 12:10:40

Modified files:
	bin/mv         : rm.c 

Log message:
zap extra includes


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/10 12:13:21

Modified files:
	bin/mv         : rm.c 

Log message:
don't need to worry about pre/post order and skipping directories.
remove more dead code


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/10 12:25:26

Modified files:
	regress/sys/net/etherip: Makefile etherip_1.sh 

Log message:
Move check for sysctl settings from shell script to makefile to
handle skipping consistently like other tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/10 12:58:38

Modified files:
	sysutils/sleuthkit: Makefile distinfo 
	sysutils/sleuthkit/patches: patch-man_hfind_1 patch-man_sorter_1 
	sysutils/sleuthkit/pkg: PLIST 

Log message:
update sleuthkit to 4.3.0.
inputs and ok nigel@.


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/10/10 13:28:48

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
Unregister the KEXINIT handler after message has been received.
Otherwise an unauthenticated peer can repeat the KEXINIT and cause
allocation of up to 128MB -- until the connection is closed.
Reported by shilei-c at 360.cn


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/10/10 13:35:47

Modified files:
	usr.bin/ssh    : Tag: OPENBSD_6_0 kex.c 

Log message:
MFC:
Unregister the KEXINIT handler after message has been received.
Otherwise an unauthenticated peer can repeat the KEXINIT and cause
allocation of up to 128MB -- until the connection is closed.
Reported by shilei-c at 360.cn


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/10/10 13:37:33

Modified files:
	usr.bin/ssh    : Tag: OPENBSD_5_9 kex.c 

Log message:
MFC:
Unregister the KEXINIT handler after message has been received.
Otherwise an unauthenticated peer can repeat the KEXINIT and cause
allocation of up to 128MB -- until the connection is closed.
Reported by shilei-c at 360.cn


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/10 14:10:56

Modified files:
	sysutils/rundeck: Makefile 

Log message:
use working master site; spotted by naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/10 14:27:30

Modified files:
	.              : errata59.html errata60.html 

Log message:
release sshd errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/10 15:08:40

Modified files:
	sys/dev/pv     : hyperv.c hypervreg.h hypervvar.h 

Log message:
Reshuffle GUID device ID table and add $ tags to headers


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/10 15:16:36

Modified files:
	regress/usr.sbin/syslogd: args-client-tls-fake.pl 
	                          args-tls-cafile-fake.pl 

Log message:
The TLS error message depends on the generated fake certificate.
Make the test's expectation less strict.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/10 15:29:23

Modified files:
	usr.bin/tmux   : cfg.c environ.c format.c grid.c hooks.c job.c 
	                 key-string.c layout-set.c mode-key.c names.c 
	                 notify.c options.c procname.c screen-redraw.c 
	                 screen.c server-client.c server-fn.c server.c 
	                 session.c signal.c status.c tmux.c tty-keys.c 
	                 tty-term.c tty.c 

Log message:
Loads more static, except for cmd-*.c and window-*.c.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/10 15:51:39

Modified files:
	usr.bin/tmux   : cmd-attach-session.c cmd-bind-key.c 
	                 cmd-break-pane.c cmd-capture-pane.c 
	                 cmd-choose-buffer.c cmd-choose-client.c 
	                 cmd-choose-tree.c cmd-clear-history.c 
	                 cmd-command-prompt.c cmd-confirm-before.c 
	                 cmd-copy-mode.c cmd-detach-client.c 
	                 cmd-display-message.c cmd-find-window.c 
	                 cmd-find.c cmd-if-shell.c cmd-join-pane.c 
	                 cmd-kill-pane.c cmd-kill-server.c 
	                 cmd-kill-session.c cmd-kill-window.c 
	                 cmd-list-buffers.c cmd-list-clients.c 
	                 cmd-list-panes.c cmd-list-sessions.c 
	                 cmd-list-windows.c cmd-load-buffer.c 
	                 cmd-lock-server.c cmd-move-window.c 
	                 cmd-new-session.c cmd-new-window.c 
	                 cmd-paste-buffer.c cmd-pipe-pane.c 
	                 cmd-refresh-client.c cmd-rename-session.c 
	                 cmd-rename-window.c cmd-resize-pane.c 
	                 cmd-respawn-pane.c cmd-respawn-window.c 
	                 cmd-rotate-window.c cmd-run-shell.c 
	                 cmd-save-buffer.c cmd-select-layout.c 
	                 cmd-select-pane.c cmd-select-window.c 
	                 cmd-send-keys.c cmd-set-buffer.c 
	                 cmd-set-environment.c cmd-set-hook.c 
	                 cmd-set-option.c cmd-show-environment.c 
	                 cmd-show-messages.c cmd-show-options.c 
	                 cmd-source-file.c cmd-split-window.c 
	                 cmd-string.c cmd-swap-pane.c cmd-swap-window.c 
	                 cmd-switch-client.c cmd-unbind-key.c 
	                 cmd-wait-for.c window-clock.c 

Log message:
Add static in cmd-* and fix a few other nits.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/10 15:53:46

Modified files:
	usr.sbin/httpd : proc.c 

Log message:
Modify httpd(8)'s proc.c to use less file descriptors during the daemon
start up. To achieve this proc_init() initiates only the necessary pipes
between child and parent, allocate and distribute fds in proc_connect().

In case of configuration checks ('-n') we do nothing in proc_init() and
proc_connect().

ok reyk@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/10 18:21:09

Modified files:
	build/openssh  : releases.pl 
	openssh        : releasenotes.html 

Log message:
Add name tags to anchors for each release so that you can link to the
releases notes for a specific release, eg releasenotes.html#7.2 .
Suggested by djm.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/10 18:38:32

Modified files:
	build/openssh  : releases.pl 
	openssh        : releasenotes.html 

Log message:
Add missing quote.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/10 23:51:03

Modified files:
	devel/jenkins  : Makefile.inc 
	devel/jenkins/devel: Makefile 
	devel/jenkins/pkg: jenkins.rc 
	devel/jenkins/stable: Makefile 

Log message:
- update HOMEPAGE
- tweak rcscript: sync rc_stop() with current best practice and trim rc_pre()

ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/10 23:52:45

Modified files:
	sysutils/rundeck: Makefile 
	sysutils/rundeck/pkg: PLIST 

Log message:
- adjust hashbang line for toolsscripts
- split do-extract into two targets, one that actually extracts and one that
only substitutes (do-configure)
- don't install ${FILESDIR}/CVS/

ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/10 23:53:56

Modified files:
	sysutils/rundeck: Makefile 
	sysutils/rundeck/pkg: PLIST 

Log message:
@sample log4j-properties file as cli-log4j-properties, which is used by the
tools scripts.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/10/11 00:54:05

Modified files:
	bin/ed         : sub.c 

Log message:
Reimplement g flag for s commands. Got lost in previous commit.

Found because of a hint by and OK schwarze@.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/11 01:02:46

Modified files:
	sbin/newfs     : newfs.c 

Log message:
Enable the noperm option for mount_mfs. mfs is ffs in sheeps clothing,
so we basically get this for free.

requested by espie
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/11 01:11:40

Modified files:
	usr.bin/tmux   : status.c tmux.h utf8.c 

Log message:
Support UTF-8 entry into the command prompt.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/11 01:23:34

Modified files:
	usr.bin/tmux   : cmd-bind-key.c cmd-command-prompt.c 
	                 cmd-list-keys.c cmd-send-keys.c key-bindings.c 
	                 mode-key.c server-client.c status.c tmux.1 
	                 tmux.h window-choose.c window-clock.c 
	                 window-copy.c window.c 

Log message:
Fundamental change to how copy mode key bindings work:

The vi-copy and emacs-copy mode key tables are gone, and instead copy
mode commands are bound in one of two normal key tables ("copy-mode" or
"copy-mode-vi"). Keys are bound to "send-keys -X copy-mode-command". So:

bind -temacs-copy C-Up scroll-up
bind -temacs-copy -R5 WheelUpPane scroll-up

Becomes:

bind -Tcopy-mode C-Up send -X scroll-up
bind -Tcopy-mode WheelUpPane send -N5 -X scroll-up

This allows the full command parser and command set to be used - for
example, we can use the normal command prompt for searching, jumping,
and so on instead of a custom one:

bind -Tcopy-mode C-r command-prompt -p'search up' "send -X search-backward '%%'"

command-prompt also gets a -1 option to only require on key press, which
is needed for jumping.

The plan is to get rid of mode keys entirely, so more to come eventually.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/11 01:45:26

Modified files:
	usr.sbin/vmd   : proc.c 
	usr.sbin/switchd: proc.c 

Log message:
Sync proc.c file vmd(8) and switchd(8).

New changes:
* Fix msgbuf_write() usage idiom;
* Add context (function name) that fatal()ed;
* Use less fds on startup;

ok mlarkin@, reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 03:02:15

Modified files:
	lang/php/5.6   : Makefile distinfo 
	lang/php/5.6/patches: patch-php_ini-development 
	                      patch-php_ini-production 

Log message:
update to php-5.6.26, ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 03:02:27

Modified files:
	lang/php/7.0   : Makefile distinfo 

Log message:
update to php-7.0.11, ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 03:09:50

Modified files:
	www/py-requests: Makefile distinfo 

Log message:
fixup distfile name, and use /etc/ssl/cert.pem rather than py-requests' own
CA listing.  ok shadchin@ dcoppa@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/11 03:30:37

Modified files:
	usr.bin/tmux   : key-bindings.c key-string.c server-client.c 
	                 tmux.1 tmux.h window-copy.c 

Log message:
Support double and triple clicks (they are cumulative, so double is
fired then triple), and use for select-word and select-line in copy
mode. Inspired by a different solution from Omar Sandoval.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/11 04:24:12

Modified files:
	x11/xmobar     : Makefile 
Added files:
	x11/xmobar/patches: patch-src_Xmobar_hs 

Log message:
tell the user what went wrong in the event of a failure
(upstream git commit f2d33fa9a2a613fd19c41323f2f11941f8a08e27)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 04:31:27

Modified files:
	devel/py-zopecomponent: Makefile 

Log message:
missing RDEP on py-zopeevent


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 04:35:08

Modified files:
	www/py-ndg-httpsclient: Makefile distinfo 
	www/py-ndg-httpsclient/pkg: PLIST 

Log message:
update to py-ndg_httpsclient-0.4.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/11 04:59:27

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-Makefile patch-t_test-lib_sh 
	devel/git/pkg  : PLIST-main 

Log message:
Update to git-2.10.1

OK benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 05:34:50

Modified files:
	security/py-cryptography: Makefile distinfo 
	security/py-cryptography_vectors: Makefile distinfo 

Log message:
update to py-cryptography-1.5.2


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/11 05:40:12

Modified files:
	sys/net        : if_ethersubr.c 

Log message:
Strengthen Ethernet packet length checks on input;  ok dlg


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/11 05:46:49

Modified files:
	sys/dev/pv     : files.pv hyperv.c hypervreg.h 
Added files:
	sys/dev/pv     : hypervic.c hypervicreg.h 

Log message:
Move Hyper-V integration components into a separate source file

Input & OK reyk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/11 06:06:51

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

Log message:
Update to py-prompt_toolkit 1.0.7

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/11 06:08:36

Modified files:
	sysutils/aws-shell: Makefile 

Log message:
Fix after update py-prompt_toolkit.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/11 06:10:47

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

Log message:
Remove vic(4)'s BUGS section that I added in 2006 when people were
still terrified about VMs - vic(4) was the first driver for a virtual
interface in OpenBSD.  The statement is still true but we all got used
to the obvious fact: "BUGS There are tons of bugs in VMware and the
underlying host operating systems.  Please consider that the security
of the OpenBSD guest can be circumvented by attacking the host
environment."

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/11 06:42:21

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Ports can be built with several (not just two) lua versions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/11 06:59:12

Modified files:
	audio/mumble   : Makefile distinfo 

Log message:
Update to mumble-1.2.17


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/11 07:08:21

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

Log message:
missing .Fl macro, from Jan Stary


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/11 07:21:59

Modified files:
	usr.bin/tmux   : arguments.c cmd-queue.c grid.c names.c screen.c 
	                 server-fn.c session.c tmux.c tmux.h tty.c 
	                 window-choose.c window-copy.c window.c 

Log message:
Add static in window-*.c and move some internal functions out of tmux.h.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 07:26:45

Modified files:
	www/c-icap/c-icap: Makefile distinfo 
	www/c-icap/modules: Makefile distinfo 

Log message:
update to c-icap 0.4.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 07:27:28

Modified files:
	sysutils/bacula: Makefile distinfo 
Removed files:
	sysutils/bacula/patches: patch-src_lib_edit_c 

Log message:
update to bacula-7.4.4


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/11 07:45:47

Modified files:
	usr.bin/tmux   : cfg.c format.c layout-set.c mode-key.c paste.c 
	                 tmux.h 

Log message:
Some other stuff that can be local to one file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 07:47:44

Modified files:
	www/squid      : Makefile distinfo 

Log message:
update to squid-3.5.22


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 07:52:35

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.3.2, fixing regressions in 3.3, 3.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 07:52:38

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

Log message:
update to lldpd-0.9.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 07:56:02

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-6.11.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 07:57:08

Modified files:
	security/py-bcrypt: Makefile distinfo 

Log message:
update to py-bcrypt-3.1.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 08:06:32

ports/security/letsencrypt/client/files

Update of /cvs/ports/security/letsencrypt/client/files
In directory cvs.openbsd.org:/tmp/cvs-serv39105/files

Log Message:
Directory /cvs/ports/security/letsencrypt/client/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/11 08:13:08

Modified files:
	devel/luadoc   : Makefile 

Log message:
Standard Makefile layout


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 09:06:41

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/py-acme: Makefile distinfo 
	security/letsencrypt/py-acme/pkg: PLIST 
Added files:
	security/letsencrypt/client/files: privkey-to-pem 

Log message:
update to certbot/py-acme 0.9.1

add a little script to client/files/ for people wanting to move to acme-client
and retain their old key


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 09:08:00

Modified files:
	textproc/p5-PDF-API2: Makefile distinfo 

Log message:
update to p5-PDF-API2-2.029


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 09:09:28

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

Log message:
update to py-cffi-1.8.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 09:11:38

Modified files:
	audio/quodlibet: Makefile distinfo 

Log message:
update to quodlibet-3.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/11 09:20:28

Modified files:
	devel/py-test-cov: Makefile distinfo 

Log message:
Update to py-test-cov 2.4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 09:49:00

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

Log message:
update to roundcube-1.2.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/11 09:53:26

Modified files:
	security/luacrypto: Makefile 

Log message:
Use standard Makefile layout


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/11 09:59:52

Modified files:
	mail/osbf-lua  : Makefile 

Log message:
Standard Makefile layout


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/11 10:16:44

Modified files:
	bin/mv         : mv.c 
Removed files:
	bin/mv         : pathnames.h 

Log message:
Remove now-unused pathnames.h, from Jan Stary


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/11 10:22:15

Modified files:
	usr.bin/unexpand: unexpand.c 

Log message:
Make the "all" global variable local to main() since it is passed
to tabify() already.  Adapted from a diff by Jan Stary.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/11 10:37:11

Modified files:
	sys/net        : switchofp.c 

Log message:
Small code improvements:
- use the same idiom as switchd(8) to calculate alignment;
- use oxm_value instead of doing pointer arithmetic;
- typo fix: 'recived' -> 'received';
- remove unused variable;
- use definition instead of hardcoded value;

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/11 11:05:33

Modified files:
	sysutils/rundeck: Makefile 

Log message:
drop NO_BUILD and "fake" a do-build target so we have JAVA_HOME and actually
have a BDEP on jdk.

spotted by naddy@ and nigel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/11 11:26:26

Modified files:
	net/gupnp/av   : Makefile distinfo 
	net/gupnp/av/patches: patch-tests_Makefile_in 

Log message:
- update to gupnp-av-0.12.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/11 11:26:45

Modified files:
	net/gupnp/tools: Makefile 

Log message:
regen WANTLIB after gupnp-av update


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/11 11:30:28

Modified files:
	share/man/man7 : mdoc.7 

Log message:
link to http://mdocml.bsd.lv/mdoc/ below SEE ALSO;
tweak and OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/11 11:55:52

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/11 12:36:13

Modified files:
	security/luasec: Makefile 

Log message:
Standard Makefile layout

ok gsoares@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/10/11 12:47:46

Modified files:
	www/kcgi       : Makefile distinfo 
	www/kcgi/pkg   : PLIST 

Log message:
Update kcgi to 0.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/11 13:16:15

Modified files:
	x11/gnome/eog  : Makefile distinfo 

Log message:
update to eog-3.20.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 13:19:45

Modified files:
	sysutils/bacula: Makefile distinfo 

Log message:
Use a new distfile for bacula, upstream rerolled it to change some
printf formatting. Reported by naddy@ nigel@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/10/11 13:27:39

Modified files:
	usr.bin/sed    : process.c 

Log message:
Fix an off by one error when no matches were found in a substitute.
By pfg@ from FreeBSD

OK millert@ and otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/10/11 13:31:15

Modified files:
	regress/usr.bin/sed: sedtest.expected sedtest.sh 

Log message:
Add a regression test for the off by one bug reported by pfg.
Based on the example presented by pfg.

OK otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/11 13:43:11

Modified files:
	devel/lpeg     : Makefile distinfo 

Log message:
Update lpeg to 1.0.0.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/10/11 13:43:33

Modified files:
	x11/lsw        : Makefile 

Log message:
update homepage, from rafael sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/10/11 13:44:39

Modified files:
	x11/sselp      : Makefile 

Log message:
update homepage, from rafael sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/10/11 13:45:18

Modified files:
	x11/swarp      : Makefile 

Log message:
update homepage, from rafael sadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/11 13:52:54

Modified files:
	bin/ksh        : vi.c main.c 

Log message:
Partial UTF-8 line editing support for ksh(1) vi input mode;
so far, it covers these commands: a h i l x /
This is an isu8cont()-based hack similar in style to what i did
in emacs input mode, but less elegant and slightly more intrusive
because the vi mode code is much more ugly and less straightforward
than the emacs mode code.  This one required partial rewrites of
a few helper functions, and comments were added while there.

This is not perfect, but hopefully reduces people's cursing
until a more rigorous solution can be devised (much) later.
Some polishing may be useful in tree, in particular adding
utf8cont() support to a few missing commands.

Mostly written shortly after Christmas 2015.
Reminded by and OK czarkoff@.
Feedback, partial review and testing, no longer any objection by martijn@.
Feedback and testing by tb@.
Also read fine to nicm@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 14:35:39

Modified files:
	mail/libspf2   : Makefile 
Added files:
	mail/libspf2/patches: patch-configure_ac 
	                      patch-src_libspf2_spf_dns_resolv_c 

Log message:
use base resolver rather than libbind, based on a diff from Jeremie Le Hen
(modified to patch autoconf input file rather than generated configure script)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 14:36:36

Modified files:
	mail/milter-greylist: Makefile 

Log message:
remove libspf2 workaround, from Jeremie Le Hen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 14:47:43

Modified files:
	net/net-snmp   : Makefile 
	net/net-snmp/pkg: netsnmpd.rc 

Log message:
Use the -r flag in net-snmp's rc.d script, as figured out by
Theodore Wynnychenko. This tells it not to exit when it can't open
/dev/kmem etc. Fixes startup now that this access is disabled by
default in OpenBSD.

Some MIBs won't work, but in general these should be rewritten
to use sysctl interfaces.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/11 14:53:27

Modified files:
	openssh        : manual.html 

Log message:
Simplify sshd link to match others; patch from rczlonka at gmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/11 15:26:10

Modified files:
	sysutils/bacula: Makefile 

Log message:
missed WRKDIST, from nigel@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/10/11 15:47:45

Modified files:
	usr.bin/ssh    : packet.c packet.h 

Log message:
Add a per-packet input hook that is called with the decrypted packet
contents. This will be used for fuzzing; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/10/11 15:49:54

Modified files:
	regress/usr.bin/ssh/misc/kexfuzz: kexfuzz.c 

Log message:
fix the KEX fuzzer - the previous method of obtaining the packet contents
was broken. This now uses the new per-packet input hook, so it sees
exact post-decrypt packets and doesn't have to pass packet integrity
checks. ok markus@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/11 15:54:35

Modified files:
	lib/libGLU     : configure.ac 
	lib/mesa       : configure.ac 
	lib/pixman     : configure.ac 
	util/macros    : Makefile.in aclocal.m4 configure configure.ac 
	                 xorg-macros.m4.in 

Log message:
Force AM_MAINTAINER_MODE in all Xenocara packages built by autotools

This prevents autotools to try to rebuild themselve automagically
if configure.ac, Makefile.am or a few other have more recent time
stamps than the generated files.

It will allows to get rid of the NO_REORDER mechanism that touches
files in the source tree to ensure nothing gets rebuilt.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/11 16:08:01

Modified files:
	sys/netinet    : ipsec_output.c 

Log message:
Rename 'i' to 'hlen' for greater readability;  ok millert, naddy


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/11 16:15:58

Modified files:
	app/appres     : Makefile.in aclocal.m4 configure 
	app/appres/man : Makefile.in 
	app/bdftopcf   : Makefile.in aclocal.m4 configure 
	app/bdftopcf/man: Makefile.in 
	app/beforelight: Makefile.in aclocal.m4 configure 
	app/beforelight/man: Makefile.in 
	app/bitmap     : Makefile.in aclocal.m4 configure 
	app/bitmap/man : Makefile.in 
	app/editres    : Makefile.in aclocal.m4 config.sub configure 
	app/editres/man: Makefile.in 
	app/fonttosfnt : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	app/fslsfonts  : Makefile.in aclocal.m4 configure 
	app/fslsfonts/man: Makefile.in 
	app/fstobdf    : Makefile.in aclocal.m4 configure 
	app/fstobdf/man: Makefile.in 
	app/iceauth    : Makefile.in aclocal.m4 configure 
	app/iceauth/man: Makefile.in 
	app/ico        : Makefile.in aclocal.m4 configure 
	app/listres    : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	app/listres/man: Makefile.in 
	app/luit       : Makefile.in aclocal.m4 configure 
	app/mkfontdir  : Makefile.in aclocal.m4 config.guess config.sub 
	                 configure install-sh missing 
	app/mkfontdir/man: Makefile.in 
	app/mkfontscale: Makefile.in aclocal.m4 configure 
	app/mkfontscale/man: Makefile.in 
	app/oclock     : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	app/oclock/man : Makefile.in 
	app/rgb        : Makefile.in aclocal.m4 configure 
	app/rgb/man    : Makefile.in 
	app/scripts    : INSTALL Makefile.in aclocal.m4 config.guess 
	                 config.h.in config.sub configure install-sh 
	                 missing mkinstalldirs 
	app/sessreg    : Makefile.in aclocal.m4 configure 
	app/sessreg/man: Makefile.in 
	app/setxkbmap  : Makefile.in aclocal.m4 configure 
	app/setxkbmap/man: Makefile.in 
	app/showfont   : Makefile.in aclocal.m4 configure 
	app/showfont/man: Makefile.in 
	app/smproxy    : Makefile.in aclocal.m4 configure 
	app/smproxy/man: Makefile.in 
	app/twm        : Makefile.in aclocal.m4 configure 
	app/twm/man    : Makefile.in 
	app/twm/src    : Makefile.in 
	app/viewres    : Makefile.in aclocal.m4 config.sub configure 
	app/viewres/man: Makefile.in 
	app/x11perf    : Makefile.in aclocal.m4 config.h.in configure 
	app/xauth      : Makefile.in aclocal.m4 configure 
	app/xbacklight : aclocal.m4 configure 
	app/xbiff      : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	                 mkinstalldirs 
	app/xbiff/man  : Makefile.in 
	app/xcalc      : Makefile.in aclocal.m4 configure 
	app/xcalc/man  : Makefile.in 
	app/xclipboard : Makefile.in aclocal.m4 configure 
	app/xclock     : aclocal.m4 configure 
	app/xcmsdb     : Makefile.in aclocal.m4 configure 
	app/xcmsdb/man : Makefile.in 
	app/xcompmgr   : Makefile.in aclocal.m4 configure 
	app/xcompmgr/man: Makefile.in 
	app/xconsole   : aclocal.m4 configure 
	app/xdm        : Makefile.in aclocal.m4 configure 
	app/xdpyinfo   : Makefile.in aclocal.m4 configure 
	app/xdpyinfo/man: Makefile.in 
	app/xdriinfo   : Makefile.in aclocal.m4 configure 
	app/xdriinfo/man: Makefile.in 
	app/xedit      : Makefile.in aclocal.m4 configure 
	app/xedit/man  : Makefile.in 
	app/xev        : Makefile.in aclocal.m4 configure 
	app/xev/man    : Makefile.in 
	app/xeyes      : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	                 mkinstalldirs 
	app/xf86dga    : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	app/xfd        : Makefile.in aclocal.m4 configure 
	app/xfontsel   : Makefile.in aclocal.m4 configure 
	app/xfsinfo    : Makefile.in aclocal.m4 configure 
	app/xfsinfo/man: Makefile.in 
	app/xfwp       : INSTALL aclocal.m4 config.h.in configure 
	app/xgamma     : Makefile.in aclocal.m4 configure 
	app/xgamma/man : Makefile.in 
	app/xgc        : Makefile.in aclocal.m4 configure 
	app/xgc/man    : Makefile.in 
	app/xhost      : Makefile.in aclocal.m4 configure 
	app/xhost/man  : Makefile.in 
	app/xinit      : Makefile.in aclocal.m4 configure 
	app/xinput     : Makefile.in aclocal.m4 configure 
	app/xinput/man : Makefile.in 
	app/xinput/src : Makefile.in 
	app/xkbcomp    : Makefile.in aclocal.m4 configure 
	app/xkbcomp/man: Makefile.in 
	app/xkbevd     : Makefile.in aclocal.m4 configure 
	app/xkbevd/man : Makefile.in 
	app/xkbprint   : Makefile.in aclocal.m4 configure 
	app/xkbprint/man: Makefile.in 
	app/xkbutils   : Makefile.in aclocal.m4 configure 
	app/xkbutils/man: Makefile.in 
	app/xkill      : Makefile.in aclocal.m4 configure 
	app/xload      : Makefile.in aclocal.m4 configure 
	app/xlogo      : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	                 mkinstalldirs 
	app/xlogo/man  : Makefile.in 
	app/xlsatoms   : Makefile.in aclocal.m4 configure 
	app/xlsatoms/man: Makefile.in 
	app/xlsclients : Makefile.in aclocal.m4 configure 
	app/xlsfonts   : Makefile.in aclocal.m4 configure 
	app/xlsfonts/man: Makefile.in 
	app/xmag       : Makefile.in aclocal.m4 configure 
	app/xmag/man   : Makefile.in 
	app/xman       : Makefile.in aclocal.m4 configure 
	app/xman/man   : Makefile.in 
	app/xmessage   : Makefile.in aclocal.m4 config.sub configure 
	app/xmessage/man: Makefile.in 
	app/xmodmap    : Makefile.in aclocal.m4 configure 
	app/xmodmap/man: Makefile.in 
	app/xmore      : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	app/xpr        : INSTALL Makefile.in aclocal.m4 config.guess 
	                 config.h.in config.sub configure depcomp 
	                 install-sh missing 
	app/xprop      : Makefile.in aclocal.m4 configure 
	app/xrandr     : aclocal.m4 configure 
	app/xrdb       : Makefile.in aclocal.m4 configure 
	app/xrefresh   : Makefile.in aclocal.m4 configure 
	app/xrefresh/man: Makefile.in 
	app/xset       : Makefile.in aclocal.m4 configure 
	app/xsetroot   : Makefile.in aclocal.m4 configure 
	app/xsetroot/man: Makefile.in 
	app/xsm        : Makefile.in aclocal.m4 configure 
	app/xsm/man    : Makefile.in 
	app/xstdcmap   : Makefile.in aclocal.m4 configure 
	app/xstdcmap/man: Makefile.in 
	app/xvidtune   : Makefile.in aclocal.m4 configure 
	app/xvidtune/man: Makefile.in 
	app/xvinfo     : Makefile.in aclocal.m4 configure 
	app/xvinfo/man : Makefile.in 
	app/xwd        : Makefile.in aclocal.m4 configure 
	app/xwininfo   : Makefile.in aclocal.m4 configure 
	app/xwininfo/man: Makefile.in 
	app/xwud       : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh missing 
	app/xwud/man   : Makefile.in 
	doc/xorg-docs  : Makefile.in aclocal.m4 configure 
	doc/xorg-docs/general: Makefile.in 
	doc/xorg-docs/general/fonts: Makefile.in 
	doc/xorg-docs/general/graphics: Makefile.in 
	doc/xorg-docs/general/input: Makefile.in 
	doc/xorg-docs/general/platforms: Makefile.in 
	doc/xorg-docs/man: Makefile.in 
	doc/xorg-docs/specs: Makefile.in 
	doc/xorg-docs/specs/CTEXT: Makefile.in 
	doc/xorg-docs/specs/ICCCM: Makefile.in 
	doc/xorg-docs/specs/XLFD: Makefile.in 
	doc/xorg-docs/specs/Xext: Makefile.in 
	doc/xorg-docs/specs/Xserver: Makefile.in 
	driver/xf86-input-acecad: Makefile.in aclocal.m4 config.guess 
	                          config.h.in config.sub configure 
	                          depcomp install-sh ltmain.sh missing 
	driver/xf86-input-acecad/man: Makefile.in 
	driver/xf86-input-acecad/src: Makefile.in 
	driver/xf86-input-elographics: aclocal.m4 configure 
	driver/xf86-input-fpit: Makefile.in aclocal.m4 config.guess 
	                        config.h.in config.sub configure depcomp 
	                        install-sh ltmain.sh missing 
	driver/xf86-input-fpit/conf: Makefile.in 
	driver/xf86-input-fpit/man: Makefile.in 
	driver/xf86-input-fpit/src: Makefile.in 
	driver/xf86-input-hyperpen: Makefile.in aclocal.m4 config.guess 
	                            config.h.in config.sub configure 
	                            depcomp install-sh missing 
	driver/xf86-input-hyperpen/man: Makefile.in 
	driver/xf86-input-hyperpen/src: Makefile.in 
	driver/xf86-input-joystick: aclocal.m4 configure 
	driver/xf86-input-keyboard: Makefile.in aclocal.m4 configure 
	driver/xf86-input-keyboard/man: Makefile.in 
	driver/xf86-input-keyboard/src: Makefile.in 
	driver/xf86-input-mouse: Makefile.in aclocal.m4 configure 
	driver/xf86-input-mouse/include: Makefile.in 
	driver/xf86-input-mouse/man: Makefile.in 
	driver/xf86-input-mouse/src: Makefile.in 
	driver/xf86-input-mutouch: Makefile.in aclocal.m4 config.guess 
	                           config.h.in config.sub configure 
	                           depcomp install-sh ltmain.sh missing 
	driver/xf86-input-mutouch/man: Makefile.in 
	driver/xf86-input-mutouch/src: Makefile.in 
	driver/xf86-input-penmount: Makefile.in aclocal.m4 config.guess 
	                            config.h.in config.sub configure 
	                            depcomp install-sh ltmain.sh missing 
	driver/xf86-input-penmount/man: Makefile.in 
	driver/xf86-input-penmount/src: Makefile.in 
	driver/xf86-input-synaptics: Makefile.in aclocal.m4 configure 
	driver/xf86-input-synaptics/conf: Makefile.in 
	driver/xf86-input-synaptics/include: Makefile.in 
	driver/xf86-input-synaptics/man: Makefile.in 
	driver/xf86-input-synaptics/src: Makefile.in 
	driver/xf86-input-synaptics/tools: Makefile.in 
	driver/xf86-input-usbtablet: Makefile.in aclocal.m4 config.guess 
	                             config.h.in config.sub configure 
	                             depcomp install-sh ltmain.sh 
	                             missing 
	driver/xf86-input-usbtablet/man: Makefile.in 
	driver/xf86-input-usbtablet/src: Makefile.in 
	driver/xf86-input-vmmouse: aclocal.m4 configure 
	driver/xf86-input-void: Makefile.in aclocal.m4 configure 
	driver/xf86-input-void/man: Makefile.in 
	driver/xf86-input-void/src: Makefile.in 
	driver/xf86-input-ws: Makefile.in aclocal.m4 config.guess 
	                      config.h.in config.sub configure depcomp 
	                      install-sh missing 
	driver/xf86-input-ws/include: Makefile.in 
	driver/xf86-input-ws/man: Makefile.in 
	driver/xf86-input-ws/src: Makefile.in 
	driver/xf86-video-apm: Makefile.in aclocal.m4 config.guess 
	                       config.sub configure depcomp 
	driver/xf86-video-apm/man: Makefile.in 
	driver/xf86-video-apm/src: Makefile.in 
	driver/xf86-video-ark: Makefile.in aclocal.m4 config.guess 
	                       config.sub configure depcomp 
	driver/xf86-video-ark/src: Makefile.in 
	driver/xf86-video-ast: aclocal.m4 configure 
	driver/xf86-video-ati: aclocal.m4 configure 
	driver/xf86-video-chips: aclocal.m4 configure 
	driver/xf86-video-cirrus: Makefile.in aclocal.m4 configure 
	driver/xf86-video-cirrus/man: Makefile.in 
	driver/xf86-video-cirrus/src: Makefile.in 
	driver/xf86-video-dummy: aclocal.m4 configure 
	driver/xf86-video-glint: Makefile.in aclocal.m4 config.guess 
	                         config.sub configure depcomp 
	driver/xf86-video-glint/man: Makefile.in 
	driver/xf86-video-glint/src: Makefile.in 
	driver/xf86-video-i128: Makefile.in aclocal.m4 config.guess 
	                        config.sub configure depcomp 
	driver/xf86-video-i128/man: Makefile.in 
	driver/xf86-video-i128/src: Makefile.in 
	driver/xf86-video-intel: Makefile.in aclocal.m4 configure 
	driver/xf86-video-intel/libobj: Makefile.in 
	driver/xf86-video-intel/man: Makefile.in 
	driver/xf86-video-intel/src: Makefile.in 
	driver/xf86-video-intel/src/legacy: Makefile.in 
	driver/xf86-video-intel/src/legacy/i810: Makefile.in 
	driver/xf86-video-intel/src/legacy/i810/xvmc: Makefile.in 
	driver/xf86-video-intel/src/render_program: Makefile.in 
	driver/xf86-video-intel/src/sna: Makefile.in 
	driver/xf86-video-intel/src/sna/brw: Makefile.in 
	driver/xf86-video-intel/src/sna/fb: Makefile.in 
	driver/xf86-video-intel/src/uxa: Makefile.in 
	driver/xf86-video-intel/test: Makefile.in 
	driver/xf86-video-intel/tools: Makefile.in 
	driver/xf86-video-intel/xvmc: Makefile.in 
	driver/xf86-video-intel/xvmc/shader: Makefile.in 
	driver/xf86-video-intel/xvmc/shader/mc: Makefile.in 
	driver/xf86-video-intel/xvmc/shader/vld: Makefile.in 
	driver/xf86-video-mach64: aclocal.m4 configure 
	driver/xf86-video-mga: aclocal.m4 configure 
	driver/xf86-video-neomagic: aclocal.m4 configure 
	driver/xf86-video-nv: Makefile.in aclocal.m4 config.guess 
	                      config.sub configure depcomp 
	driver/xf86-video-nv/man: Makefile.in 
	driver/xf86-video-nv/src: Makefile.in 
	driver/xf86-video-openchrome: aclocal.m4 configure 
	driver/xf86-video-openchrome/man: Makefile.in 
	driver/xf86-video-r128: aclocal.m4 configure 
	driver/xf86-video-rendition: aclocal.m4 configure 
	driver/xf86-video-s3: Makefile.in aclocal.m4 compile 
	                      config.guess config.sub configure depcomp 
	driver/xf86-video-s3/man: Makefile.in 
	driver/xf86-video-s3/src: Makefile.in 
	driver/xf86-video-s3virge: aclocal.m4 configure 
	driver/xf86-video-savage: aclocal.m4 configure 
	driver/xf86-video-siliconmotion: aclocal.m4 configure 
	driver/xf86-video-sis: aclocal.m4 configure 
	driver/xf86-video-tdfx: aclocal.m4 configure 
	driver/xf86-video-trident: aclocal.m4 configure 
	driver/xf86-video-tseng: Makefile.in aclocal.m4 config.guess 
	                         config.sub configure depcomp 
	driver/xf86-video-tseng/man: Makefile.in 
	driver/xf86-video-tseng/src: Makefile.in 
	driver/xf86-video-vesa: Makefile.in aclocal.m4 configure 
	driver/xf86-video-vesa/man: Makefile.in 
	driver/xf86-video-vesa/src: Makefile.in 
	driver/xf86-video-vmware: aclocal.m4 configure 
	driver/xf86-video-wsfb: aclocal.m4 configure 
	driver/xf86-video-wsudl: aclocal.m4 configure 
	font/adobe-100dpi: aclocal.m4 configure 
	font/adobe-75dpi: aclocal.m4 configure 
	font/adobe-utopia-100dpi: aclocal.m4 configure 
	font/adobe-utopia-75dpi: aclocal.m4 configure 
	font/adobe-utopia-type1: aclocal.m4 configure 
	font/alias     : Makefile.in aclocal.m4 config.guess config.sub 
	                 configure install-sh missing 
	font/alias/100dpi: Makefile.in 
	font/alias/75dpi: Makefile.in 
	font/alias/cyrillic: Makefile.in 
	font/alias/misc: Makefile.in 
	font/arabic-misc: aclocal.m4 configure 
	font/bh-100dpi : aclocal.m4 configure 
	font/bh-75dpi  : aclocal.m4 configure 
	font/bh-lucidatypewriter-100dpi: aclocal.m4 configure 
	font/bh-lucidatypewriter-75dpi: aclocal.m4 configure 
	font/bh-ttf    : aclocal.m4 configure 
	font/bh-type1  : aclocal.m4 configure 
	font/bitstream-100dpi: aclocal.m4 configure 
	font/bitstream-75dpi: aclocal.m4 configure 
	font/bitstream-type1: aclocal.m4 configure 
	font/cronyx-cyrillic: aclocal.m4 configure 
	font/cursor-misc: aclocal.m4 configure 
	font/daewoo-misc: aclocal.m4 configure 
	font/dec-misc  : aclocal.m4 configure 
	font/encodings : Makefile.in aclocal.m4 config.guess config.sub 
	                 configure install-sh missing 
	font/encodings/large: Makefile.in 
	font/ibm-type1 : aclocal.m4 configure 
	font/isas-misc : aclocal.m4 configure 
	font/jis-misc  : aclocal.m4 configure 
	font/micro-misc: aclocal.m4 configure 
	font/misc-cyrillic: aclocal.m4 configure 
	font/misc-ethiopic: aclocal.m4 configure 
	font/misc-meltho: aclocal.m4 configure 
	font/misc-misc : aclocal.m4 configure 
	font/mutt-misc : aclocal.m4 configure 
	font/schumacher-misc: aclocal.m4 configure 
	font/screen-cyrillic: aclocal.m4 configure 
	font/sony-misc : aclocal.m4 configure 
	font/sun-misc  : aclocal.m4 configure 
	font/util      : Makefile.in aclocal.m4 configure 
	font/util/man  : Makefile.in 
	font/winitzki-cyrillic: aclocal.m4 configure 
	font/xfree86-type1: aclocal.m4 configure 
	lib/libFS      : Makefile.in aclocal.m4 configure 
	lib/libFS/src  : Makefile.in 
	lib/libFS/test : Makefile.in 
	lib/libGLU     : Makefile.in aclocal.m4 configure 
	lib/libICE     : Makefile.in aclocal.m4 configure 
	lib/libICE/doc : Makefile.in 
	lib/libICE/specs: Makefile.in 
	lib/libICE/src : Makefile.in 
	lib/libSM      : Makefile.in aclocal.m4 config.h.in configure 
	lib/libSM/doc  : Makefile.in 
	lib/libSM/src  : Makefile.in 
	lib/libX11     : Makefile.in aclocal.m4 configure 
	lib/libX11/include: Makefile.in 
	lib/libX11/man : Makefile.in 
	lib/libX11/man/xkb: Makefile.in 
	lib/libX11/modules: Makefile.in 
	lib/libX11/modules/im: Makefile.in 
	lib/libX11/modules/im/ximcp: Makefile.in 
	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 
	lib/libX11/specs: Makefile.in 
	lib/libX11/specs/XIM: Makefile.in 
	lib/libX11/specs/XKB: Makefile.in 
	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: Makefile.in 
	lib/libX11/src : Makefile.in 
	lib/libX11/src/util: Makefile.in 
	lib/libX11/src/xcms: Makefile.in 
	lib/libX11/src/xkb: Makefile.in 
	lib/libX11/src/xlibi18n: Makefile.in 
	lib/libXRes    : Makefile.in aclocal.m4 configure 
	lib/libXRes/man: Makefile.in 
	lib/libXRes/src: Makefile.in 
	lib/libXScrnSaver: Makefile.in aclocal.m4 config.guess 
	                   config.h.in config.sub configure depcomp 
	                   install-sh missing 
	lib/libXScrnSaver/man: Makefile.in 
	lib/libXScrnSaver/src: Makefile.in 
	lib/libXau     : Makefile.in aclocal.m4 configure 
	lib/libXau/man : Makefile.in 
	lib/libXaw     : Makefile.in aclocal.m4 configure 
	lib/libXaw/include: Makefile.in 
	lib/libXaw/man : Makefile.in 
	lib/libXaw/specs: Makefile.in 
	lib/libXaw/src : Makefile.in 
	lib/libXcomposite: Makefile.in aclocal.m4 config.sub configure 
	lib/libXcomposite/man: Makefile.in 
	lib/libXcomposite/src: Makefile.in 
	lib/libXcursor : Makefile.in aclocal.m4 configure 
	lib/libXcursor/man: Makefile.in 
	lib/libXcursor/src: Makefile.in 
	lib/libXdamage : Makefile.in aclocal.m4 config.sub configure 
	lib/libXdamage/src: Makefile.in 
	lib/libXdmcp   : Makefile.in aclocal.m4 configure 
	lib/libXdmcp/doc: Makefile.in 
	lib/libXdmcp/test: Makefile.in 
	lib/libXext    : Makefile.in aclocal.m4 configure 
	lib/libXfixes  : Makefile.in aclocal.m4 configure 
	lib/libXfixes/man: Makefile.in 
	lib/libXfixes/src: Makefile.in 
	lib/libXfont   : Makefile.in aclocal.m4 configure 
	lib/libXfont/doc: Makefile.in 
	lib/libXfont/src: Makefile.in 
	lib/libXfont/src/FreeType: Makefile.in 
	lib/libXfont/src/bitmap: Makefile.in 
	lib/libXfont/src/builtins: Makefile.in 
	lib/libXfont/src/fc: Makefile.in 
	lib/libXfont/src/fontfile: Makefile.in 
	lib/libXfont/src/stubs: Makefile.in 
	lib/libXfont/src/util: Makefile.in 
	lib/libXfontcache: INSTALL Makefile.in aclocal.m4 config.guess 
	                   config.h.in config.sub configure depcomp 
	                   install-sh ltmain.sh missing 
	lib/libXfontcache/man: Makefile.in 
	lib/libXfontcache/src: Makefile.in 
	lib/libXft     : Makefile.in aclocal.m4 configure 
	lib/libXft/man : Makefile.in 
	lib/libXft/src : Makefile.in 
	lib/libXi      : aclocal.m4 configure 
	lib/libXinerama: Makefile.in aclocal.m4 configure 
	lib/libXinerama/man: Makefile.in 
	lib/libXinerama/src: Makefile.in 
	lib/libXmu     : Makefile.in aclocal.m4 config.h.in configure 
	lib/libXmu/doc : Makefile.in 
	lib/libXmu/include: Makefile.in 
	lib/libXmu/src : Makefile.in 
	lib/libXpm     : Makefile.in aclocal.m4 configure 
	lib/libXpm/cxpm: Makefile.in 
	lib/libXpm/doc : Makefile.in 
	lib/libXpm/include: Makefile.in 
	lib/libXpm/man : Makefile.in 
	lib/libXpm/src : Makefile.in 
	lib/libXpm/sxpm: Makefile.in 
	lib/libXrandr  : Makefile.in aclocal.m4 configure 
	lib/libXrandr/man: Makefile.in 
	lib/libXrandr/src: Makefile.in 
	lib/libXrender : Makefile.in aclocal.m4 configure 
	lib/libXrender/src: Makefile.in 
	lib/libXt      : Makefile.in aclocal.m4 configure 
	lib/libXt/include: Makefile.in 
	lib/libXt/man  : Makefile.in 
	lib/libXt/specs: Makefile.in 
	lib/libXt/src  : Makefile.in 
	lib/libXt/test : Makefile.in 
	lib/libXt/util : Makefile.in 
	lib/libXtst    : Makefile.in aclocal.m4 configure 
	lib/libXtst/man: Makefile.in 
	lib/libXtst/specs: Makefile.in 
	lib/libXtst/src: Makefile.in 
	lib/libXv      : Makefile.in aclocal.m4 configure 
	lib/libXv/include: Makefile.in 
	lib/libXv/include/X11: Makefile.in 
	lib/libXv/include/X11/extensions: Makefile.in 
	lib/libXv/man  : Makefile.in 
	lib/libXv/src  : Makefile.in 
	lib/libXvMC    : Makefile.in aclocal.m4 configure 
	lib/libXvMC/include: Makefile.in 
	lib/libXvMC/include/X11: Makefile.in 
	lib/libXvMC/include/X11/extensions: Makefile.in 
	lib/libXvMC/src: Makefile.in 
	lib/libXvMC/wrapper: Makefile.in 
	lib/libXxf86dga: Makefile.in aclocal.m4 configure 
	lib/libXxf86dga/man: Makefile.in 
	lib/libXxf86dga/src: Makefile.in 
	lib/libXxf86misc: Makefile.in aclocal.m4 config.guess config.sub 
	                  configure depcomp install-sh ltmain.sh missing 
	lib/libXxf86misc/man: Makefile.in 
	lib/libXxf86misc/src: Makefile.in config.h.in 
	lib/libXxf86vm : Makefile.in aclocal.m4 configure 
	lib/libXxf86vm/man: Makefile.in 
	lib/libXxf86vm/src: Makefile.in 
	lib/libdmx     : Makefile.in aclocal.m4 configure 
	lib/libdmx/man : Makefile.in 
	lib/libdmx/src : Makefile.in 
	lib/libdrm     : Makefile.in aclocal.m4 configure 
	lib/libdrm/amdgpu: Makefile.in 
	lib/libdrm/exynos: Makefile.in 
	lib/libdrm/freedreno: Makefile.in 
	lib/libdrm/intel: Makefile.in 
	lib/libdrm/libkms: Makefile.in 
	lib/libdrm/man : Makefile.in 
	lib/libdrm/nouveau: Makefile.in 
	lib/libdrm/omap: Makefile.in 
	lib/libdrm/radeon: Makefile.in 
	lib/libdrm/tegra: Makefile.in 
	lib/libdrm/tests: Makefile.in 
	lib/libdrm/tests/amdgpu: Makefile.in 
	lib/libdrm/tests/exynos: Makefile.in 
	lib/libdrm/tests/kms: Makefile.in 
	lib/libdrm/tests/kmstest: Makefile.in 
	lib/libdrm/tests/modeprint: Makefile.in 
	lib/libdrm/tests/modetest: Makefile.in 
	lib/libdrm/tests/nouveau: Makefile.in 
	lib/libdrm/tests/proptest: Makefile.in 
	lib/libdrm/tests/radeon: Makefile.in 
	lib/libdrm/tests/tegra: Makefile.in 
	lib/libdrm/tests/util: Makefile.in 
	lib/libdrm/tests/vbltest: Makefile.in 
	lib/libdrm/vc4 : Makefile.in 
	lib/libfontenc : Makefile.in aclocal.m4 configure 
	lib/libfontenc/src: Makefile.in 
	lib/libpciaccess: Makefile.in aclocal.m4 configure 
	lib/libpciaccess/include: Makefile.in 
	lib/libpciaccess/man: Makefile.in 
	lib/libpciaccess/scanpci: Makefile.in 
	lib/libpciaccess/src: Makefile.in 
	lib/libxkbfile : Makefile.in aclocal.m4 configure 
	lib/libxkbfile/src: Makefile.in 
	lib/libxkbui   : INSTALL Makefile.in aclocal.m4 config.guess 
	                 config.h.in config.sub configure depcomp 
	                 install-sh ltmain.sh missing 
	lib/libxkbui/src: Makefile.in 
	lib/libxtrans  : Makefile.in aclocal.m4 configure 
	lib/mesa       : Makefile.in aclocal.m4 configure 
	lib/mesa/src   : Makefile.in 
	lib/mesa/src/compiler: Makefile.in 
	lib/mesa/src/egl: Makefile.in 
	lib/mesa/src/egl/wayland/wayland-drm: Makefile.in 
	lib/mesa/src/egl/wayland/wayland-egl: Makefile.in 
	lib/mesa/src/gallium: Makefile.in 
	lib/mesa/src/gallium/auxiliary: Makefile.in 
	lib/mesa/src/gallium/auxiliary/pipe-loader: Makefile.in 
	lib/mesa/src/gallium/drivers/ddebug: Makefile.in 
	lib/mesa/src/gallium/drivers/freedreno: Makefile.in 
	lib/mesa/src/gallium/drivers/i915: Makefile.in 
	lib/mesa/src/gallium/drivers/ilo: Makefile.in 
	lib/mesa/src/gallium/drivers/llvmpipe: Makefile.in 
	lib/mesa/src/gallium/drivers/noop: Makefile.in 
	lib/mesa/src/gallium/drivers/nouveau: Makefile.in 
	lib/mesa/src/gallium/drivers/r300: Makefile.in 
	lib/mesa/src/gallium/drivers/r600: Makefile.in 
	lib/mesa/src/gallium/drivers/radeon: Makefile.in 
	lib/mesa/src/gallium/drivers/radeonsi: Makefile.in 
	lib/mesa/src/gallium/drivers/rbug: Makefile.in 
	lib/mesa/src/gallium/drivers/softpipe: Makefile.in 
	lib/mesa/src/gallium/drivers/svga: Makefile.in 
	lib/mesa/src/gallium/drivers/trace: Makefile.in 
	lib/mesa/src/gallium/drivers/vc4: Makefile.in 
	lib/mesa/src/gallium/drivers/virgl: Makefile.in 
	lib/mesa/src/gallium/state_trackers/clover: Makefile.in 
	lib/mesa/src/gallium/state_trackers/dri: Makefile.in 
	lib/mesa/src/gallium/state_trackers/glx/xlib: Makefile.in 
	lib/mesa/src/gallium/state_trackers/nine: Makefile.in 
	lib/mesa/src/gallium/state_trackers/omx: Makefile.in 
	lib/mesa/src/gallium/state_trackers/osmesa: Makefile.in 
	lib/mesa/src/gallium/state_trackers/va: Makefile.in 
	lib/mesa/src/gallium/state_trackers/vdpau: Makefile.in 
	lib/mesa/src/gallium/state_trackers/xa: Makefile.in 
	lib/mesa/src/gallium/state_trackers/xvmc: Makefile.in 
	lib/mesa/src/gallium/targets/d3dadapter9: Makefile.in 
	lib/mesa/src/gallium/targets/dri: Makefile.in 
	lib/mesa/src/gallium/targets/libgl-xlib: Makefile.in 
	lib/mesa/src/gallium/targets/omx: Makefile.in 
	lib/mesa/src/gallium/targets/opencl: Makefile.in 
	lib/mesa/src/gallium/targets/osmesa: Makefile.in 
	lib/mesa/src/gallium/targets/pipe-loader: Makefile.in 
	lib/mesa/src/gallium/targets/va: Makefile.in 
	lib/mesa/src/gallium/targets/vdpau: Makefile.in 
	lib/mesa/src/gallium/targets/xa: Makefile.in 
	lib/mesa/src/gallium/targets/xvmc: Makefile.in 
	lib/mesa/src/gallium/tests/trivial: Makefile.in 
	lib/mesa/src/gallium/tests/unit: Makefile.in 
	lib/mesa/src/gallium/winsys/amdgpu/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/freedreno/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/i915/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/intel/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/nouveau/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/radeon/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/svga/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/dri: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/kms-dri: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/null: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/wrapper: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/xlib: Makefile.in 
	lib/mesa/src/gallium/winsys/vc4/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/virgl/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/virgl/vtest: Makefile.in 
	lib/mesa/src/gbm: Makefile.in 
	lib/mesa/src/glx: Makefile.in 
	lib/mesa/src/glx/apple: Makefile.in 
	lib/mesa/src/glx/tests: Makefile.in 
	lib/mesa/src/gtest: Makefile.in 
	lib/mesa/src/loader: Makefile.in 
	lib/mesa/src/mapi: Makefile.in 
	lib/mesa/src/mapi/glapi/gen: Makefile.in 
	lib/mesa/src/mesa: Makefile.in 
	lib/mesa/src/mesa/drivers/dri: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/common: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/common/xmlpool: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i915: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i965: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/nouveau: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/r200: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/radeon: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/swrast: Makefile.in 
	lib/mesa/src/mesa/drivers/osmesa: Makefile.in 
	lib/mesa/src/mesa/drivers/x11: Makefile.in 
	lib/mesa/src/mesa/main/tests: Makefile.in 
	lib/mesa/src/util: Makefile.in 
	lib/mesa/src/util/tests/hash_table: Makefile.in 
	lib/pixman     : Makefile.in aclocal.m4 configure 
	lib/pixman/demos: Makefile.in 
	lib/pixman/pixman: Makefile.in 
	lib/pixman/test: Makefile.in 
	lib/xcb-util   : Makefile.in aclocal.m4 configure 
	lib/xcb-util/src: Makefile.in 
	lib/xcb-util-cursor: aclocal.m4 configure 
	lib/xcb-util-image: aclocal.m4 configure 
	lib/xcb-util-keysyms: aclocal.m4 configure 
	lib/xcb-util-renderutil: aclocal.m4 configure 
	lib/xcb-util-wm: Makefile.in aclocal.m4 configure 
	lib/xcb-util-wm/ewmh: Makefile.in 
	lib/xcb-util-wm/icccm: Makefile.in 
	util/gccmakedep: aclocal.m4 configure 
	util/makedepend: aclocal.m4 configure 
	xserver        : Makefile.in aclocal.m4 configure 
	xserver/Xext   : Makefile.in 
	xserver/Xi     : Makefile.in 
	xserver/composite: Makefile.in 
	xserver/config : Makefile.in 
	xserver/damageext: Makefile.in 
	xserver/dbe    : Makefile.in 
	xserver/dix    : Makefile.in 
	xserver/doc    : Makefile.in 
	xserver/doc/dtrace: Makefile.in 
	xserver/dri3   : Makefile.in 
	xserver/exa    : Makefile.in 
	xserver/fb     : Makefile.in 
	xserver/glamor : Makefile.in 
	xserver/glx    : Makefile.in 
	xserver/hw     : Makefile.in 
	xserver/hw/dmx : Makefile.in 
	xserver/hw/dmx/config: Makefile.in 
	xserver/hw/dmx/config/man: Makefile.in 
	xserver/hw/dmx/doc: Makefile.in 
	xserver/hw/dmx/doxygen: Makefile.in 
	xserver/hw/dmx/examples: Makefile.in 
	xserver/hw/dmx/glxProxy: Makefile.in 
	xserver/hw/dmx/input: Makefile.in 
	xserver/hw/dmx/man: Makefile.in 
	xserver/hw/kdrive: Makefile.in 
	xserver/hw/kdrive/ephyr: Makefile.in 
	xserver/hw/kdrive/ephyr/man: Makefile.in 
	xserver/hw/kdrive/fake: Makefile.in 
	xserver/hw/kdrive/fbdev: Makefile.in 
	xserver/hw/kdrive/linux: Makefile.in 
	xserver/hw/kdrive/src: Makefile.in 
	xserver/hw/vfb : Makefile.in 
	xserver/hw/vfb/man: Makefile.in 
	xserver/hw/xfree86: Makefile.in 
	xserver/hw/xfree86/common: Makefile.in 
	xserver/hw/xfree86/ddc: Makefile.in 
	xserver/hw/xfree86/dixmods: Makefile.in 
	xserver/hw/xfree86/doc: Makefile.in 
	xserver/hw/xfree86/dri: Makefile.in 
	xserver/hw/xfree86/dri2: Makefile.in 
	xserver/hw/xfree86/dri2/pci_ids: Makefile.in 
	xserver/hw/xfree86/drivers: Makefile.in 
	xserver/hw/xfree86/drivers/modesetting: Makefile.in 
	xserver/hw/xfree86/exa: Makefile.in 
	xserver/hw/xfree86/exa/man: Makefile.in 
	xserver/hw/xfree86/fbdevhw: Makefile.in 
	xserver/hw/xfree86/fbdevhw/man: Makefile.in 
	xserver/hw/xfree86/glamor_egl: Makefile.in 
	xserver/hw/xfree86/i2c: Makefile.in 
	xserver/hw/xfree86/int10: Makefile.in 
	xserver/hw/xfree86/loader: Makefile.in 
	xserver/hw/xfree86/man: Makefile.in 
	xserver/hw/xfree86/modes: Makefile.in 
	xserver/hw/xfree86/os-support: Makefile.in 
	xserver/hw/xfree86/os-support/bsd: Makefile.in 
	xserver/hw/xfree86/os-support/bus: Makefile.in 
	xserver/hw/xfree86/os-support/hurd: Makefile.in 
	xserver/hw/xfree86/os-support/linux: Makefile.in 
	xserver/hw/xfree86/os-support/misc: Makefile.in 
	xserver/hw/xfree86/os-support/solaris: Makefile.in 
	xserver/hw/xfree86/os-support/stub: Makefile.in 
	xserver/hw/xfree86/parser: Makefile.in 
	xserver/hw/xfree86/ramdac: Makefile.in 
	xserver/hw/xfree86/shadowfb: Makefile.in 
	xserver/hw/xfree86/utils: Makefile.in 
	xserver/hw/xfree86/utils/cvt: Makefile.in 
	xserver/hw/xfree86/utils/gtf: Makefile.in 
	xserver/hw/xfree86/utils/man: Makefile.in 
	xserver/hw/xfree86/vbe: Makefile.in 
	xserver/hw/xfree86/vgahw: Makefile.in 
	xserver/hw/xfree86/x86emu: Makefile.in 
	xserver/hw/xnest: Makefile.in 
	xserver/hw/xnest/man: Makefile.in 
	xserver/hw/xquartz: Makefile.in 
	xserver/hw/xquartz/GL: Makefile.in 
	xserver/hw/xquartz/bundle: Makefile.in 
	xserver/hw/xquartz/mach-startup: Makefile.in 
	xserver/hw/xquartz/man: Makefile.in 
	xserver/hw/xquartz/pbproxy: Makefile.in 
	xserver/hw/xquartz/xpr: Makefile.in 
	xserver/hw/xwayland: Makefile.in 
	xserver/hw/xwin: Makefile.in 
	xserver/hw/xwin/glx: Makefile.in 
	xserver/hw/xwin/man: Makefile.in 
	xserver/hw/xwin/winclipboard: Makefile.in 
	xserver/include: Makefile.in 
	xserver/man    : Makefile.in 
	xserver/mi     : Makefile.in 
	xserver/miext  : Makefile.in 
	xserver/miext/damage: Makefile.in 
	xserver/miext/rootless: Makefile.in 
	xserver/miext/shadow: Makefile.in 
	xserver/miext/sync: Makefile.in 
	xserver/os     : Makefile.in 
	xserver/present: Makefile.in 
	xserver/pseudoramiX: Makefile.in 
	xserver/randr  : Makefile.in 
	xserver/record : Makefile.in 
	xserver/render : Makefile.in 
	xserver/test   : Makefile.in 
	xserver/test/xi1: Makefile.in 
	xserver/test/xi2: Makefile.in 
	xserver/xfixes : Makefile.in 
	xserver/xkb    : Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/11 16:36:53

Modified files:
	share/mk       : Makefile bsd.xorg.mk 
Removed files:
	share/mk       : automake.dep 

Log message:
Remove the REORDER_DEPENDENCIES mechanism.
The xenocara build process is not writing in the source tree.
This and previous commits was done in cooperation with natano@
and deraadt@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/11 16:37:16

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/11 18:31:06

Modified files:
	usr.bin/make   : main.c 

Log message:
make -t uses the "fattr" syscall utimes(2) for its touch(1) built-in.
Thus, add "fattr" to the list of pledge promises.

ok millert, deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/11 20:01:33

Modified files:
	games/urbanterror: Makefile distinfo 
	games/urbanterror-data: Makefile distinfo 
	games/urbanterror-data/pkg: PLIST 

Log message:
Update to urbanterror-4.3.1.

From Ryan Freeman; thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/11 23:40:47

Modified files:
	x11/gnome/eog-plugins: Makefile distinfo 

Log message:
update to eog-plugins-3.16.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/12 00:09:34

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

Log message:
Update to libcares-1.12.0, fixing CVE-2016-5180

ok Brad (maintainer), input and ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/12 00:56:54

Modified files:
	sys/arch/amd64/include: vmmvar.h 
	usr.sbin/vmd   : pci.c pci.h virtio.c virtio.h vmm.c 

Log message:
Allow 4 vio(4) interfaces in each VM. Also fix a bad interrupt assignment that
caused IRQ9 to be shared between the second disk device and the vio(4)s,
which caused poor network performance.

ok reyk, stefan


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/12 01:36:38

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
optimize canary code a bit by storing offset of sizes table instead of
recomputing it all the time


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 02:09:26

Modified files:
	www/lighttpd   : Makefile 
	www/lighttpd/patches: patch-src_connections_c 
	                      patch-src_fdevent_c patch-src_fdevent_h 
	                      patch-src_mod_cgi_c 
	                      patch-src_mod_fastcgi_c 
	                      patch-src_mod_proxy_c patch-src_mod_scgi_c 
	                      patch-src_server_c 
Added files:
	www/lighttpd/patches: patch-src_mod_accesslog_c 
	                      patch-src_network_c 
	                      patch-src_network_write_no_mmap_c 

Log message:
Bring in a commit from upstream
- performance: use Linux extended syscalls and flags

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 02:17:52

Modified files:
	x11/gnome/settings-daemon: Makefile distinfo 

Log message:
Update to gnome-settings-daemon-3.20.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 02:18:06

Modified files:
	x11/gnome/control-center: Makefile distinfo 

Log message:
Update to gnome-control-center-3.20.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 02:24:43

Modified files:
	print/foomatic-db: Makefile distinfo 
	print/foomatic-db/pkg: PLIST 

Log message:
Update to foomatic-db-4.0.20161003.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/12 02:30:26

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
enable vmm


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 02:31:53

Modified files:
	x11/dbus       : Makefile distinfo 

Log message:
Update to dbus-1.10.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 03:00:14

Modified files:
	editors/vim    : Makefile 

Log message:
use standard GH_foo


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/12 03:07:59

Modified files:
	usr.bin/tmux   : paste.c window-copy.c 

Log message:
Unused variable and missing time.h.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 03:17:57

Modified files:
	devel/libgee   : Makefile distinfo 

Log message:
Update to libgee-0.18.1.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 03:31:16

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/patches: patch-runtime_filetype_vim 
	                     patch-runtime_syntax_fstab_vim 
	                     patch-runtime_syntax_make_vim 

Log message:
update to vim-8.0.0027 and adjust WANTLIB


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/12 03:50:55

Modified files:
	sys/net        : switchofp.c 

Log message:
When sending a action_output for a table-miss to the controller the
reason is always NO_MATCH. This fixes the compatibility with switchd(8)
which already works with other switches.

input from goda@
ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 04:07:18

Modified files:
	multimedia/gstreamer1/mm: Makefile distinfo 
	multimedia/gstreamer1/mm/pkg: PLIST 

Log message:
Update to gstreamer1mm-1.8.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/12 04:07:45

Modified files:
	editors/subtitleeditor: Makefile 
Added files:
	editors/subtitleeditor/patches: 
	                                patch-plugins_actions_keyframesmanagement_mediadecoder_h 
	                                patch-plugins_actions_waveformmanagement_mediadecoder_h 

Log message:
Fix build with gstreamer1mm >=1.8.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/12 04:35:44

Modified files:
	net/hexchat    : Makefile distinfo 

Log message:
Update hexchat to 2.12.2.

From maintainer Florian Stinglmayr.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 04:50:33

Modified files:
	net/net-snmp   : Makefile 
	net/net-snmp/patches: patch-perl_SNMP_Makefile_PL 
Added files:
	net/net-snmp/patches: 
	                      patch-agent_mibgroup_if-mib_ifXTable_ifXTable_c 
	                      patch-agent_mibgroup_if-mib_ifXTable_ifXTable_h 
	                      patch-agent_mibgroup_if-mib_ifXTable_ifXTable_interface_c 
	                      patch-agent_mibgroup_ip-mib_data_access_systemstats_common_c 
	                      patch-agent_mibgroup_ip-mib_ipIfStatsTable_ipIfStatsTable_data_get_c 
	                      patch-agent_mibgroup_ip-mib_ipIfStatsTable_ipIfStatsTable_data_get_h 
	                      patch-agent_mibgroup_ip-mib_ipIfStatsTable_ipIfStatsTable_interface_c 
	                      patch-agent_mibgroup_ip-mib_ipSystemStatsTable_ipSystemStatsTable_c 
	                      patch-agent_mibgroup_ip-mib_ipSystemStatsTable_ipSystemStatsTable_h 
	                      patch-agent_mibgroup_ip-mib_ipSystemStatsTable_ipSystemStatsTable_interface_c 
	                      patch-include_net-snmp_data_access_ipstats_h 
	                      patch-include_net-snmp_library_int64_h 
	                      patch-perl_ASN_Makefile_PL 
	                      patch-perl_Makefile_PL 
	                      patch-perl_OID_Makefile_PL 
	                      patch-perl_TrapReceiver_Makefile_PL 
	                      patch-perl_agent_Makefile_PL 
	                      patch-perl_agent_Support_Makefile_PL 
	                      patch-perl_agent_default_store_Makefile_PL 
	                      patch-perl_default_store_Makefile_PL 
	                      patch-snmplib_int64_c 
	                      patch-snmplib_read_config_c 
	                      patch-testing_fulltests_unit-tests_T015int64_clib_c 

Log message:
add patches to net-snmp, from upstream via afresh1, that will be needed for perl 5.24+


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/12 04:57:30

Modified files:
	usr.sbin/httpd : config.c httpd.h proc.c 

Log message:
Prevent fd exhaustion in the parent when loading the listening server
sockets by sending the fd one-by-one.  This allows to start httpd with
max 32 server instances and many server sockets without changing the
default rlimits in any way.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/12 04:58:32

Modified files:
	usr.sbin/vmd   : config.c 

Log message:
The error case checks for saved_errno, set it accordingly


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 05:04:38

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/pkg : PLIST 
Added files:
	devel/llvm/pkg : PFRAG.lld 

Log message:
don't build lld on i386, it needs __atomic_load_8. ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 05:05:05

Modified files:
	www/ap2-mod_perl: Makefile 
Added files:
	www/ap2-mod_perl/patches: patch-src_modules_perl_mod_perl_c 
	                          patch-src_modules_perl_modperl_env_c 
	                          patch-src_modules_perl_modperl_env_h 
	                          patch-src_modules_perl_modperl_perl_c 
	                          patch-t_response_TestModperl_env_pm 

Log message:
add patches needed for perl 5.22+, from upstream repo via afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/10/12 05:11:56

Modified files:
	usr.bin/cvs    : annotate.c 

Log message:
Use the correct type for p. From Joris Vink.

OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 05:17:30

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-2.0.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/12 05:35:49

Modified files:
	devel/py-xdis  : Makefile distinfo 

Log message:
Update to py-xdis 3.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/12 05:37:27

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

Log message:
Update to py-uncompyle6 2.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 05:39:27

Modified files:
	net/mtr        : Makefile distinfo 
	net/mtr/patches: patch-gtk_c 
Added files:
	net/mtr/patches: patch-mtr_c patch-net_c 

Log message:
update to mtr-0.87


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 05:45:04

Modified files:
	net/bird       : Makefile distinfo 
	net/bird/patches: patch-sysdep_unix_io_c 

Log message:
update to bird-1.6.2


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/12 05:47:34

Modified files:
	usr.sbin/vmd   : log.c 

Log message:
For correctness, always save errno when doing additional actions
before printing it.

OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 05:56:54

Modified files:
	sysutils/ipmitool: Makefile distinfo 
	sysutils/ipmitool/patches: patch-configure_ac 
	                           patch-include_ipmitool_ipmi_fru_h 
	                           patch-include_ipmitool_ipmi_intf_h 
	                           patch-lib_ipmi_delloem_c 
	                           patch-lib_ipmi_ekanalyzer_c 
	                           patch-lib_ipmi_fru_c 
Removed files:
	sysutils/ipmitool/patches: patch-contrib_bmclanconf 
	                           patch-contrib_collect_data_sh 
	                           patch-contrib_create_rrds_sh 
	                           patch-contrib_create_webpage_compact_sh 
	                           patch-contrib_create_webpage_sh 
	                           patch-lib_ipmi_sunoem_c 
	                           patch-src_plugins_serial_serial_basic_c 
	                           patch-src_plugins_serial_serial_terminal_c 

Log message:
update to ipmitool-1.8.18


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/12 05:57:31

Modified files:
	usr.sbin/switchd: log.c 
	usr.sbin/relayd: log.c 
	usr.sbin/httpd : log.c 
	usr.sbin/ntpd  : log.c 
	usr.sbin/snmpd : log.c 
	sbin/iked      : log.c 

Log message:
copy updated log.c from vmd: for correctness, save errno when doing
additional actions before printing it.  OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/12 05:57:56

Modified files:
	sysutils/freeipmi: Makefile distinfo 
	sysutils/freeipmi/patches: patch-libfreeipmi_Makefile_in 
	sysutils/freeipmi/pkg: PLIST 

Log message:
update to freeipmi-1.5.4


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/12 07:03:27

Modified files:
	usr.bin/tmux   : cmd-command-prompt.c key-bindings.c 
	                 server-client.c status.c tmux.1 tmux.h 

Log message:
The repeat prompt in both emacs and vi (and the old one in tmux) doesn't
support line editing and instead executes a command as soon as a
non-number key is pressed. Add a -N flag to command-prompt for the same
in copy mode. Reported by Theo Buehler.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/12 07:04:03

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

Log message:
Mention that netstat -P needs kmem access.

From David Hill, ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/12 07:24:07

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

Log message:
Redraw selection in tty_draw_line, so it appears when redrawing whole
pane. Reported by Theo Buehler.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/12 07:36:39

Modified files:
	usr.sbin/dhcpd : dhcp.c 

Log message:
client_identifier is not a string so using strlen() on it is
inappropriate. Which is why client_identifier_len exists.

Replace copy&pasted strlen() with client_identifier_len.

Symptoms (crash) and cause (bad c&p) spotted by sthen@.

tested & ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/12 08:03:17

Modified files:
	net/nmap/patches: patch-Makefile_in 

Log message:
Fix build if libdnet is installed
spotted, debugged and tested by Markus Lude, fix by me
Ok David Carlier (maintainer), sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/12 08:42:15

Log message:
    Import devel/lua-cliargs, from maintainer Florian Stinglmayr.
    
    This module adds support for accepting CLI arguments easily using multiple
    notations and argument types.
    
    cliargs allows you to define required, optional, and flag arguments.
    
    OK jca@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161012
    
    N ports/devel/lua-cliargs/Makefile
    N ports/devel/lua-cliargs/distinfo
    N ports/devel/lua-cliargs/pkg/PLIST
    N ports/devel/lua-cliargs/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/12 08:45:53

Modified files:
	devel          : Makefile 

Log message:
Add lua-cliargs.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/12 08:50:15

Modified files:
	usr.bin/tmux   : cmd-bind-key.c cmd-list-keys.c cmd-unbind-key.c 
	                 mode-key.c status.c tmux.1 tmux.h 

Log message:
Drop the edit mode key tables and just use fixed key bindings for the
command prompt.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/12 09:18:57

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Teach switchd(8) how to send set_config to the switch so we can be able
to get packet payloads from switch(4).

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/12 09:26:37

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

Log message:
bind-key -c has gone, remove from man page, and unused table declarations.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/12 09:43:51

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

Log message:
Fix a couple of problems with insert mode: flush dirty cells before we
modify the screen, not after; and use grid_view_insert_cells to make
space not grid_move_cells.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/12 09:51:45

Modified files:
	usr.bin/cvs    : hash.c 

Log message:
When allocating the h_table array use the size of struct hash_head,
not the size of a pointer.  From Joris Vink.  OK fcambus@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/12 10:11:16

Modified files:
	app/cwm        : calmwm.h 

Log message:
remove another unused proto


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/12 10:23:35

Modified files:
	sys/dev/pv     : hypervic.c hypervicreg.h hypervvar.h if_hvn.c 

Log message:
Get rid of the ch_buf member that is not part of the channel API

Devices need to allocate appropriate input/output buffers for use
with the VMBus channel API themselves.  There's no reason to keep
pointers to these buffers in the channel structure.

This requires a bit of restructuring of the code attaching internal
devices however.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/12 11:27:08

Modified files:
	usr.sbin/cron  : crontab.5 

Log message:
Document the "-q " prefix accepted in the "command" field.
Original patch from Wouter Clarie <wclarie at gmail com>,
tweaked in joint work with jca@,
OK millert@, OK jca@ on an earlier version.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/12 11:36:52

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

Log message:
Compare to see if pane status line has actually changed, not just size, and
do not draw if pane is not visible.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/12 11:47:23

Modified files:
	devel/p5-BSD-arc4random: Makefile 
	devel/p5-BSD-arc4random/patches: patch-arc4rnd_xs_c 
	                                 patch-lib_BSD_arc4random_pm 
	devel/p5-BSD-arc4random/pkg: PLIST 
Added files:
	devel/p5-BSD-arc4random/patches: patch-MANIFEST 

Log message:
The p5-BSD-arc4random port in OpenBSD should keep the API of the
BSD::arc4random Perl module, but use our libc functions internally.
This has been done with arc4random() already, but arc4random_bytes()
and arc4random_uniform() were still using a pure Perl implementation.
Replace that with an XS wrapper to our arc4random_buf(3) and
arc4random_uniform(3) functions in libc.
Take maintainer, most remaining code is in my patches.
OK millert@ sthen@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/12 11:53:51

Modified files:
	devel/p5-BSD-arc4random: Makefile 

Log message:
sort according to Makefile.template


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/12 11:54:03

Modified files:
	net/gupnp/av   : Makefile 

Log message:
missing dependency on gssdp; spotted by nigel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/12 12:21:09

Modified files:
	x11/gnome/ghex : Makefile distinfo 
Removed files:
	x11/gnome/ghex/patches: patch-src_chartable_c 
	                        patch-src_ghex-window_c patch-src_ui_c 

Log message:
update to ghex-3.18.3


CVSROOT:	/cvs
Module name:	www
Changes by:	jung@cvs.openbsd.org	2016/10/12 12:28:44

Modified files:
	.              : lyrics.html 

Log message:
adjust lyrics, spotted by michal bozon


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/12 13:07:42

Modified files:
	usr.sbin/switchd: control.c ofcconn.c ofp.c ofrelay.c parse.y 
	                  switchd.c switchd.h types.h 
	usr.sbin/switchctl: parser.c parser.h switchctl.8 switchctl.c 

Log message:
Start reworking the "device" support in switchd: Once connected, a
device is just an fd that is connected to a switch, either via TCP or
via /dev/switch.  Change the switchctl from "device add" to "connect"
etc.  This change is an intermediate step towards other changes,
including the configuration grammar, so a few things will be left
undocumented for now.

switchctl(8) examples,
switchctl connect /dev/switch0
switchctl connect /dev/switch0 forward-to 10.1.1.1
switchctl connect 127.0.0.1
switchctl connect 127.0.0.1 forward-to 10.1.1.1
switchctl disconnect /dev/switch0

Discussed with rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/12 13:10:04

Modified files:
	usr.sbin/vmd   : control.c vmd.c vmd.h vmm.c 
	usr.sbin/vmctl : main.c vmctl.8 vmctl.h 

Log message:
Fix functionality and semantics of vmctl load/reload/reset.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/10/12 15:51:11

Modified files:
	sys/dev/usb    : if_cdce.c if_cdcereg.h 

Log message:
Rename CDCE_ZAURUS option to CDCE_CRC32 for clarity.

OK kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/12 17:02:25

Modified files:
	regress/usr.sbin/syslogd: Syslogd.pm args-privsep-daemon.pl 
	                          args-privsep-foreground.pl 
	                          args-privsep.pl 

Log message:
Fix races during syslogd startup and shutdown in privsep tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/12 20:38:28

Modified files:
	games/urbanterror/patches: patch-Makefile 

Log message:
Regen patch


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/12 23:46:20

Modified files:
	usr.bin/systat : main.c 

Log message:
add the hostname to the display. started by otto, then deraadt. ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/13 02:29:15

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Implement simple feature request/reply support so we can get more
information about the target switch and its datapath id. Also I
commented out some requests that are not currently being used, like
table properties, flow dump and description.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/13 02:40:51

Modified files:
	net/mcabber    : Makefile distinfo 
Removed files:
	net/mcabber/patches: patch-configure 

Log message:
Update mcabber to 1.0.3.

From maintainer Markus Hennecke.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/10/13 02:48:15

Modified files:
	usr.sbin/tcpdump: print-bgp.c 

Log message:
Teach tcpdump to decode bgp path attribute draft-ietf-idr-large-community

Patch from Job Snijders, thanks!

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/13 03:01:04

Modified files:
	sys/arch/i386/i386: locore.s 

Log message:
cache another feature bit for something I'm working on


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/13 03:06:48

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

Log message:
-f missed from splitw usage, from Felix Rosencrantz.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/13 04:01:49

Modified files:
	usr.bin/tmux   : cmd-find.c cmd-join-pane.c cmd-new-session.c 
	                 cmd-new-window.c cmd-queue.c cmd-split-window.c 
	                 cmd-swap-pane.c cmd-swap-window.c cmd.c tmux.h 

Log message:
Some improvements and bug fixes for hooks:

- Prepare the state again before the "after" hooks are run, because the
command may have killed or moved windows.

- Use the hooks list from the newly prepared target, not the old hooks
list (only matters for new-session really).

- Correctly detect an invalid current state and ignore it in
cmd_find_target ("killw; swapw").

- Change neww, new, killp, killw, splitw, swapp, swapw to update the
current state (used if no explicit target is given) to something more
useful after they have finished. For example, neww changes it to the
newly created window.

Hooks are still relatively new and primitive so there are likely to be
more changes to come.

Parts based on bug reports from Uwe Werler and Iblis Lin.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/13 04:09:28

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.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/13 04:54:54

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

Log message:
Update to py-test 3.0.3


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/13 05:22:46

Modified files:
	usr.bin/systat : main.c 

Log message:
tweak previous; hostname is alredy available plus some better formatting
in case line numbers and/or PAUSED is shown; ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/13 05:51:02

Modified files:
	usr.bin/logname: logname.c 

Log message:
delete useless call to setlocale(3); while here, polish style:
sort headers, static __dead usage(), return from main etc...
based on a more intrusive diff by tedu@,
reminded by Jan Stary <hans at stare dot cz>,
using feedback from millert@; OK tedu@, deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2016/10/13 05:54:54

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl 2016.10.12

New extractors:
- lego
- nzz
- theweatherchannel
- thisoldhouse
- tonline

Removed aftonbladet.

From Davide Gerhard, thank you!


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 09:00:21

Log message:
    Import go-cs-0.6.
    
    cs is a program for concurrently executing ssh(1) or scp(1) on a number of
    hosts.  It is intended to automate running remote commands or copying files
    between hosts on a network. Public key authentication is used for establishing
    passwordless connection.
    
    Note that the utility has been renamed from cs to go-cs to prevent a conflict
    with the www/clearsilver port.
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161013
    
    N ports/sysutils/go-cs/Makefile
    N ports/sysutils/go-cs/distinfo
    N ports/sysutils/go-cs/pkg/DESCR
    N ports/sysutils/go-cs/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 09:01:18

Modified files:
	sysutils       : Makefile 

Log message:
+go-cs


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/13 09:14:29

Modified files:
	lang/ecl       : Makefile 

Log message:
Fix MASTER_SITES

Patch from Dan Andersen


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/13 09:20:40

Modified files:
	usr.sbin/ripd  : ripd.8 
	usr.sbin/ripctl: ripctl.8 

Log message:
Document the -s option, descr adapted from ospfd/ospfctl

Noticed by Sebastien Leclerc, ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/13 09:27:41

Modified files:
	.              : errata59.html errata60.html 

Log message:
release smtpd errata.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 09:34:52

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.6.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/13 09:39:32

Modified files:
	editors/emacs  : Makefile distinfo 
	editors/emacs/patches: patch-Makefile_in patch-configure 
	editors/emacs/pkg: PFRAG.no-no_x11 PLIST 
Removed files:
	editors/emacs/patches: patch-src_unexelf_c 

Log message:
Update to emacs-25.1

Announce: http://lists.gnu.org/archive/html/emacs-devel/2016-09/msg00451.html
NEWS file: https://www.gnu.org/software/emacs/news/NEWS.25.1

Fixes the focus problem seen with the gtk3 flavor.  The alignement fix
for sparc64 wasn't needed in 25.0.

Tested by Manuel Giraud, Ralf Horstmann (alpha), abieber@ (macppc),
danj@ (i386).  ok danj@ abieber@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/10/13 09:44:09

Modified files:
	usr.sbin/smtpd : Tag: OPENBSD_5_9 rfc2822.c smtp_session.c 

Log message:
"A logic issue in smtpd's header parsing can cause SMTP sessions to hang."
errata 031


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/10/13 09:46:05

Modified files:
	usr.sbin/smtpd : Tag: OPENBSD_6_0 rfc2822.c smtp_session.c 

Log message:
"A logic issue in smtpd's header parsing can cause SMTP sessions to hang"
errata 014


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/10/13 09:47:32

Modified files:
	usr.sbin/smtpd : rfc2822.c smtp_session.c 

Log message:
A logic issue in smtpd's header parsing can cause SMTP sessions to hang.

diff by eric@, ok me


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/10/13 09:49:07

Modified files:
	opensmtpd      : index.html 
Added files:
	opensmtpd/announces: release-6.0.2.txt 

Log message:
bugfix release 6.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 09:51:39

Modified files:
	net/dleyna     : Makefile.inc 
	net/dleyna/connector-dbus: Makefile 
	net/dleyna/core: Makefile 
	net/dleyna/renderer: Makefile 

Log message:
Drop the gettext MODULE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 09:52:13

Modified files:
	net/dleyna/server: Makefile 
Added files:
	net/dleyna/server/patches: patch-libdleyna_server_upnp_h 

Log message:
Fix build after the gupnp-av update.

reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 09:56:41

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-130.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/13 09:57:24

Modified files:
	editors/emacs  : Makefile 
Added files:
	editors/emacs/patches: patch-lisp_vc_vc-cvs_el 
	                       patch-lisp_vc_vc_el 

Log message:
Add two patches to make VC usable again after the 25.1 update.

- add a fix for https://debbugs.gnu.org/cgi/bugreport.cgi?bug=24082
- suppress noisy messages that slow down vc-dir


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/13 11:35:55

Modified files:
	multimedia/yle-dl: Makefile distinfo 
	multimedia/yle-dl/patches: patch-yle-dl 

Log message:
Update to yle-dl-2.12

from maintainer Timo Myyra


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/10/13 12:16:42

Modified files:
	sys/arch/sparc64/dev: ldc.c vdsk.c 

Log message:
Fix memory leaks on error paths spotted by coypu (at) SDF (dot) ORG - thanks

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2016/10/13 12:40:47

Modified files:
	sys/arch/sparc64/dev: ldc.c 

Log message:
Fix another memory leak on error path in ldc.c

"right" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 13:03:41

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.61.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 13:03:59

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/13 13:04:17

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/10/13 13:36:25

Modified files:
	sys/arch/amd64/amd64: identcpu.c vmm.c 
	sys/arch/amd64/include: cpu.h 

Log message:
Add an extra debug line when virtualization is disabled in the firmware.
This line would have saved me about an hour of hairpulling.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/10/13 13:43:44

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
The name argument is of the start command is not optional.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/13 14:09:19

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

Log message:
Remove mention of key tables than no longer exist.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/13 14:27:27

Modified files:
	usr.bin/tmux   : grid-view.c grid.c input.c screen-redraw.c 
	                 screen-write.c screen.c tmux.h tty.c 
	                 window-choose.c window-clock.c window-copy.c 
	                 window.c 

Log message:
Add support for BCE (background colour erase). This makes various escape
sequences (notable EL and ED but also IL, DL, ICH, DCH) create blank
cells using the current background colour rather than the default
colour.

On modern systems BCE doesn't really have many benefits, but most other
terminals now support it, some (lazy) applications rely on it, and it is
not hard to include now that we have pane background colours anyway.

Mostly written by Sean Haugh.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/13 14:31:45

Modified files:
	usr.bin/cvs    : rcs.c 

Log message:
Fix revision lookups for branches.  Properly perform a revision
lookup so update -r actually works again, as a bonus throw a more
correct error when the revision could not be found.  From Joris Vink.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/10/13 14:51:25

Modified files:
	usr.bin/cvs    : add.c admin.c annotate.c commit.c diff.c edit.c 
	                 entries.c file.c getlog.c history.c import.c 
	                 rcs.c rcs.h rcsnum.c rcsparse.c tag.c update.c 
	                 util.c 

Log message:
rcsnum_free() -> free() cleanups. From Michael W. Bombardieri.

OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/13 15:37:03

Modified files:
	usr.bin/tmux   : options-table.c session.c tmux.1 

Log message:
Remove the set-remain-on-exit option, it was always a hack and can now
be done with hooks instead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/13 15:38:05

Added files:
	sysutils/ipmitool/patches: patch-lib_ipmi_cfgp_c 

Log message:
missed cvs add, reported by naddy@ kili@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/13 16:30:45

Modified files:
	regress/usr.sbin/syslogd: args-dropped-sighup-tcp.pl 
	                          args-dropped-sighup-tls.pl 
	                          args-dropped-sigterm-tcp.pl 
	                          args-dropped-sigterm-tls.pl 

Log message:
In rare cases the number of dropped messages changes a bit more.
Make regex less strict.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/13 16:48:51

Modified files:
	usr.bin/tmux   : cmd-display-message.c cmd-if-shell.c 
	                 cmd-join-pane.c cmd-new-session.c 
	                 cmd-new-window.c cmd-queue.c cmd-source-file.c 
	                 cmd-split-window.c cmd-swap-pane.c 
	                 cmd-swap-window.c hooks.c tmux.1 tmux.h 

Log message:
Trying to do hooks generically is way too complicated and unreliable and
confusing, particularly trying to automatically figure out what target
hooks should be using. So simplify it:

- drop before hooks entirely, they don't seem to be very useful;

- commands with special requirements now fire their own after hook (for
example, if they change session or window, or if they have -t and -s
and need to choose which one the hook uses as current target);

- commands with no special requirements can have the CMD_AFTERHOOK flag
added and they will use the -t state.

At the moment new-session, new-window, split-window fire their own hook,
and display-message uses the flag. The remaining commands still need to
be looked at.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/10/13 17:38:22

Modified files:
	devel/cppcheck : Makefile distinfo 

Log message:
update to cppcheck 1.76.1
ok gsoares@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/13 22:53:26

Modified files:
	sys/arch/i386/i386: machdep.c 
	sys/arch/i386/include: cpu.h 

Log message:
cache some more cpuid info. the cached data is presently unused, but will
soon be.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/10/14 00:27:12

Modified files:
	games/urbanterror-data: Makefile 
	games/urbanterror-data/pkg: PLIST 

Log message:
- split long lines
- add URI_VER to SUBST_VARS to reduce PLIST diff on next update
OK bentley@ and Ryan Freeman (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/10/14 01:39:52

Modified files:
	print/poppler  : Makefile distinfo 

Log message:
Update to poppler-0.48.0.

ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/14 01:52:02

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

Log message:
Update to libnotify-0.7.7.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/14 02:03:14

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.62.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/14 02:03:38

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/14 03:27:21

Modified files:
	usr.bin/make   : Makefile generate.c var.c var.h 

Log message:
Implement the ${<D} and ${<F} variables, as documented in the manual.
They are equivalent to ${<:H} and ${<:T} repectively, however the former
variants are more portable, as they are understood by GNU, FreeBSD and
NetBSD make too.

absence of those variables reported by Dario Niedermann <dnied at tiscali.it>
ok millert espie


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/14 03:33:12

Modified files:
	x11/slim       : Makefile 

Log message:
berlios.de died ages ago, move HOMEPAGE to a github mirror. Note that
upstream is more or less dead, sadly.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/10/14 03:40:54

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

Log message:
when looking at the details of a prefix, show any unknown attributes and
what we know about it.

OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/14 03:45:30

Modified files:
	textproc/p5-PDF-API2: Makefile distinfo 

Log message:
update to p5-PDF-API2-2.030


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/14 03:46:14

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/py-acme: distinfo 

Log message:
update to certbot/py-acme 0.9.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	natano@cvs.openbsd.org	2016/10/14 04:14:00

Modified files:
	.              : Makefile 
	share/mk       : bsd.xorg.mk 

Log message:
Port the de-escalation mechanism we have in src to xenocara's make
bootstrap/obj/build. This is now possible due to a normal build not
writing to the source tree anymore.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/14 04:25:02

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Fulfil our contractual obligations with ether_input

Since ether_input expects the m_data to point directly at the Ethernet
header and most upper layer protocols immediately following Ethernet
expect their headers to be aligned to the 4 byte boundary, we need to
ensure that the decapsulated VXLAN packet payload satisfies these
requirements.

prompted by a diff by vgross@, with input from dlg@, ok yasuoka


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/14 04:51:57

Modified files:
	bin/cp         : cp.c 
	bin/rm         : rm.c 

Log message:
delete useless setlocale(3);
noticed by Jan Stary <hans at stare dot cz>;
return from main while here;
feedback and OK tb@, OK martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/14 05:00:22

Modified files:
	net/wireshark  : Makefile distinfo 
	net/wireshark/patches: patch-epan_crypt_airpdcap_ccmp_c 
	                       patch-ui_qt_compiled_filter_output_cpp 
	net/wireshark/pkg: PLIST-text 
Removed files:
	net/wireshark/patches: patch-epan_dissectors_packet-lbm_h 
	                       patch-epan_dissectors_packet-lbmr_c 
	                       patch-epan_dissectors_packet-lbtrm_c 

Log message:
update to wireshark-2.2.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/14 05:06:32

Modified files:
	bin/ksh        : ksh.1 

Log message:
Correct description of the "bind" builtin command.

jmc@ finds the key binding stuff "disgusting" (i can't argue with that)
and doesn't want to comment on the content, but agrees with the wording.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/14 05:33:13

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
move better canary code and validate_junk() over from libc malloc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/14 06:09:11

Added files:
	net/gupnp/tools/patches: patch-src_av-cp_playlist-treeview_h 

Log message:
this should've been added when regenerating WANTLIB after gupnp-av update

didn't build so no bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/14 06:27:39

Modified files:
	sysutils/ansible: Makefile 
Removed files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_plugins_action_copy_py 

Log message:
remove (undocumented) local modification of the 'copy that appends '\n' to
'content' if it didn't contain it yet.

while there have been various (stalled) attempts to get this upstream, i'd
rather not alter ansible's behaviour in ports as it would lead to non-portable
playbooks between openbsd and non-openbsd control nodes.

ok aja@ rpe@
also discussed with Patrik Lundin


CVSROOT:	/cvs
Module name:	www
Changes by:	jasper@cvs.openbsd.org	2016/10/14 06:27:56

Modified files:
	faq            : current.html 

Log message:
document ansible copy-module change


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/14 06:34:03

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_modules_extras_packaging_os_openbsd_pkg_py 

Log message:
fix issue with openbsd_pkg module where using the branch notation
(e.g. autoconf%2.13) would lead to tasks being (incorrectly) reported
as FAILED.

reported by Caspar Schutijser
fix by Patrik Lundin


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/14 06:48:56

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-alerts_php patch-config_php_default 
	                      patch-daily_sh patch-html_install_php 
	                      patch-html_pages_about_inc_php 
	                      patch-includes_common_php 
	                      patch-includes_defaults_inc_php 
	                      patch-includes_functions_php 
	                      patch-includes_polling_core_inc_php 
	                      patch-librenms_nonroot_cron 
	                      patch-poller-wrapper_py patch-validate_php 
	net/librenms/pkg: PLIST 
Removed files:
	net/librenms/patches: patch-includes_definitions_inc_php 
	                      patch-scripts_distro 
	                      patch-scripts_get-geshi_sh 
	                      patch-scripts_get-jpgraph_sh 
	                      patch-scripts_ntp-client_php 
	                      patch-scripts_ntpd-server_php 
	                      patch-scripts_postfix-queues 
	                      patch-scripts_powerdns_php 

Log message:
update to librenms-201609


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/14 06:51:15

Modified files:
	sysutils/ansible: Makefile 

Log message:
drop RDEP on py-httplib2. various modules switch to ansible.module_utils.urls
with ansible 2.1. only the dynamic inventory script for rudder depends on it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2016/10/14 07:14:45

Modified files:
	net/bgpq3      : Makefile distinfo 

Log message:
Upgrade to 0.1.32

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2016/10/14 07:15:21

Added files:
	net/bgpq3/patches: patch-bgpq3_c patch-bgpq3_h 
	                   patch-bgpq3_printer_c 

Log message:
Add -B, an OpenBGPD specific output format

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/14 07:55:31

Log message:
    py-fastimport is a parser for and a generator of the Git fastimport format.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	czarkoff
    Release Tags:	czarkoff_20161014
    
    N ports/devel/py-fastimport/distinfo
    N ports/devel/py-fastimport/Makefile
    N ports/devel/py-fastimport/pkg/DESCR
    N ports/devel/py-fastimport/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/14 08:00:09

Modified files:
	devel/py-dulwich: Makefile distinfo 

Log message:
update to py-dulwich-0.15.0

As testing dulwich with nose becomes more cumbersome, switch to projects' own
testing framework.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/10/14 10:05:36

Modified files:
	usr.sbin/bgpctl: bgpctl.8 bgpctl.c parser.c parser.h 
	usr.sbin/bgpd  : bgpd.8 bgpd.conf.5 bgpd.h control.c parse.y 
	                 printconf.c rde.c rde.h rde_attr.c rde_filter.c 

Log message:
Add support for draft-ietf-idr-large-community

Joint work with Job Snijders, many thanks!
OK benno@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/14 10:59:53

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

Log message:
Implement an operation to dequeue packets from the completion queue

Complete the RNDIS command submission API with a proper method of
command dequeuing from the completion queue.  Command timeout path
can be fully implemented now.

While here let the command completion wait interruptable.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/14 11:33:36

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
0xd0 -> 0xdb; ok deraadt@ millert@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/14 11:34:27

Modified files:
	share/man/man5 : malloc.conf.5 

Log message:
0xd0 -> 0xdb; ok deraadt@ millert@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/14 11:35:39

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
0xd0 -> 0xdb from libc malloc


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/14 11:40:47

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

Log message:
Missing flags in capture-pane, and tweak choose-tree text. From Dilyan Palauzov.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/10/14 12:19:04

Modified files:
	lib/libc/string: strlcat.c strlcpy.c strnlen.c 

Log message:
Cast pointers to uintptr_t to avoid potential signedness errors.
Based on patch from yuanjie.huang at windriver.com via OpenSSH bz#2608,
with & ok millert, ok deraadt.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/14 12:29:18

Modified files:
	.              : README 

Log message:
Update build instructions


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/14 12:32:54

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

Log message:
The trailing producer index must point to the beginning of the message


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/alpha/compile/GENERIC

Update of /cvs/src/sys/arch/alpha/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/alpha/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/alpha/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/alpha/compile/GENERIC.MP

Update of /cvs/src/sys/arch/alpha/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/alpha/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/alpha/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/alpha/compile/RAMDISK

Update of /cvs/src/sys/arch/alpha/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/alpha/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/alpha/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/alpha/compile/RAMDISKB

Update of /cvs/src/sys/arch/alpha/compile/RAMDISKB
In directory cvs.openbsd.org:/tmp/cvs-serv66032/alpha/compile/RAMDISKB

Log Message:
Directory /cvs/src/sys/arch/alpha/compile/RAMDISKB added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/alpha/compile/RAMDISKBIG

Update of /cvs/src/sys/arch/alpha/compile/RAMDISKBIG
In directory cvs.openbsd.org:/tmp/cvs-serv66032/alpha/compile/RAMDISKBIG

Log Message:
Directory /cvs/src/sys/arch/alpha/compile/RAMDISKBIG added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/alpha/compile/RAMDISKC

Update of /cvs/src/sys/arch/alpha/compile/RAMDISKC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/alpha/compile/RAMDISKC

Log Message:
Directory /cvs/src/sys/arch/alpha/compile/RAMDISKC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/amd64/compile/GENERIC

Update of /cvs/src/sys/arch/amd64/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/amd64/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/amd64/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/amd64/compile/GENERIC.MP

Update of /cvs/src/sys/arch/amd64/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/amd64/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/amd64/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/amd64/compile/RAMDISK

Update of /cvs/src/sys/arch/amd64/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/amd64/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/amd64/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:16

src/sys/arch/amd64/compile/RAMDISK_CD

Update of /cvs/src/sys/arch/amd64/compile/RAMDISK_CD
In directory cvs.openbsd.org:/tmp/cvs-serv66032/amd64/compile/RAMDISK_CD

Log Message:
Directory /cvs/src/sys/arch/amd64/compile/RAMDISK_CD added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/armv7/compile/GENERIC

Update of /cvs/src/sys/arch/armv7/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/armv7/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/armv7/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/armv7/compile/RAMDISK

Update of /cvs/src/sys/arch/armv7/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/armv7/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/armv7/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/hppa/compile/GENERIC

Update of /cvs/src/sys/arch/hppa/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/hppa/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/hppa/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/hppa/compile/GENERIC.MP

Update of /cvs/src/sys/arch/hppa/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/hppa/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/hppa/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/hppa/compile/RAMDISK

Update of /cvs/src/sys/arch/hppa/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/hppa/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/hppa/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/i386/compile/GENERIC

Update of /cvs/src/sys/arch/i386/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/i386/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/i386/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/i386/compile/GENERIC.MP

Update of /cvs/src/sys/arch/i386/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/i386/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/i386/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/i386/compile/RAMDISK

Update of /cvs/src/sys/arch/i386/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/i386/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/i386/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/i386/compile/RAMDISK_CD

Update of /cvs/src/sys/arch/i386/compile/RAMDISK_CD
In directory cvs.openbsd.org:/tmp/cvs-serv66032/i386/compile/RAMDISK_CD

Log Message:
Directory /cvs/src/sys/arch/i386/compile/RAMDISK_CD added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/landisk/compile/GENERIC

Update of /cvs/src/sys/arch/landisk/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/landisk/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/landisk/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/landisk/compile/RAMDISK

Update of /cvs/src/sys/arch/landisk/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/landisk/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/landisk/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/loongson/compile/GENERIC

Update of /cvs/src/sys/arch/loongson/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/loongson/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/loongson/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/loongson/compile/RAMDISK

Update of /cvs/src/sys/arch/loongson/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/loongson/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/loongson/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:17

src/sys/arch/luna88k/compile/GENERIC

Update of /cvs/src/sys/arch/luna88k/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/luna88k/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/luna88k/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/luna88k/compile/GENERIC.MP

Update of /cvs/src/sys/arch/luna88k/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/luna88k/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/luna88k/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/luna88k/compile/RAMDISK

Update of /cvs/src/sys/arch/luna88k/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/luna88k/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/luna88k/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/macppc/compile/GENERIC

Update of /cvs/src/sys/arch/macppc/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/macppc/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/macppc/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/macppc/compile/GENERIC.MP

Update of /cvs/src/sys/arch/macppc/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/macppc/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/macppc/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/macppc/compile/RAMDISK

Update of /cvs/src/sys/arch/macppc/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/macppc/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/macppc/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/octeon/compile/GENERIC

Update of /cvs/src/sys/arch/octeon/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/octeon/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/octeon/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/octeon/compile/GENERIC.MP

Update of /cvs/src/sys/arch/octeon/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/octeon/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/octeon/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/octeon/compile/RAMDISK

Update of /cvs/src/sys/arch/octeon/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/octeon/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/octeon/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/sgi/compile/GENERIC-IP22

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP22
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP22

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP22 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/sgi/compile/GENERIC-IP26

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP26
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP26

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP26 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/sgi/compile/GENERIC-IP27

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP27
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP27

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP27 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:18

src/sys/arch/sgi/compile/GENERIC-IP27.MP

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP27.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP27.MP

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP27.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/GENERIC-IP28

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP28
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP28

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP28 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/GENERIC-IP30

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP30
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP30

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP30 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/GENERIC-IP30.MP

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP30.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP30.MP

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP30.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/GENERIC-IP32

Update of /cvs/src/sys/arch/sgi/compile/GENERIC-IP32
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/GENERIC-IP32

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/GENERIC-IP32 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/RAMDISK-IP22

Update of /cvs/src/sys/arch/sgi/compile/RAMDISK-IP22
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/RAMDISK-IP22

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/RAMDISK-IP22 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/RAMDISK-IP26

Update of /cvs/src/sys/arch/sgi/compile/RAMDISK-IP26
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/RAMDISK-IP26

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/RAMDISK-IP26 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/RAMDISK-IP27

Update of /cvs/src/sys/arch/sgi/compile/RAMDISK-IP27
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/RAMDISK-IP27

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/RAMDISK-IP27 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/RAMDISK-IP28

Update of /cvs/src/sys/arch/sgi/compile/RAMDISK-IP28
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/RAMDISK-IP28

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/RAMDISK-IP28 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/RAMDISK-IP30

Update of /cvs/src/sys/arch/sgi/compile/RAMDISK-IP30
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/RAMDISK-IP30

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/RAMDISK-IP30 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sgi/compile/RAMDISK-IP32

Update of /cvs/src/sys/arch/sgi/compile/RAMDISK-IP32
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sgi/compile/RAMDISK-IP32

Log Message:
Directory /cvs/src/sys/arch/sgi/compile/RAMDISK-IP32 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/socppc/compile/GENERIC

Update of /cvs/src/sys/arch/socppc/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/socppc/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/socppc/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/socppc/compile/RAMDISK

Update of /cvs/src/sys/arch/socppc/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/socppc/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/socppc/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:19

src/sys/arch/sparc64/compile/GENERIC

Update of /cvs/src/sys/arch/sparc64/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sparc64/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/sparc64/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:20

src/sys/arch/sparc64/compile/GENERIC.MP

Update of /cvs/src/sys/arch/sparc64/compile/GENERIC.MP
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sparc64/compile/GENERIC.MP

Log Message:
Directory /cvs/src/sys/arch/sparc64/compile/GENERIC.MP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:20

src/sys/arch/sparc64/compile/RAMDISK

Update of /cvs/src/sys/arch/sparc64/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sparc64/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/sparc64/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:20

src/sys/arch/sparc64/compile/RAMDISKU1

Update of /cvs/src/sys/arch/sparc64/compile/RAMDISKU1
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sparc64/compile/RAMDISKU1

Log Message:
Directory /cvs/src/sys/arch/sparc64/compile/RAMDISKU1 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:37:20

src/sys/arch/sparc64/compile/RAMDISKU5

Update of /cvs/src/sys/arch/sparc64/compile/RAMDISKU5
In directory cvs.openbsd.org:/tmp/cvs-serv66032/sparc64/compile/RAMDISKU5

Log Message:
Directory /cvs/src/sys/arch/sparc64/compile/RAMDISKU5 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/14 12:41:53

Modified files:
	usr.bin/tmux   : cfg.c cmd-queue.c cmd-source-file.c 

Log message:
source-file and some other commands can recurse back into cmdq_continue,
which could potentially free the currently running command, so we need
to take a reference to it in cmdq_continue_one.

Fixes problem reported by Theo Buehler.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:43:02

Modified files:
	sys/arch/alpha : Makefile 
	sys/arch/amd64 : Makefile 
	sys/arch/armv7 : Makefile 
	sys/arch/hppa  : Makefile 
	sys/arch/i386  : Makefile 
	sys/arch/landisk: Makefile 
	sys/arch/loongson: Makefile 
	sys/arch/luna88k: Makefile 
	sys/arch/macppc: Makefile 
	sys/arch/octeon: Makefile 
	sys/arch/sgi   : Makefile 
	sys/arch/socppc: Makefile 
	sys/arch/sparc64: Makefile 
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	sys/arch/armv7/conf: Makefile.armv7 
	sys/arch/hppa/conf: Makefile.hppa 
	sys/arch/i386/conf: Makefile.i386 RAMDISK_CD 
	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 
Added files:
	sys/arch/alpha/compile: Makefile Makefile.inc 
	sys/arch/alpha/compile/GENERIC: Makefile 
	sys/arch/alpha/compile/GENERIC.MP: Makefile 
	sys/arch/alpha/compile/RAMDISK: Makefile 
	sys/arch/alpha/compile/RAMDISKB: Makefile 
	sys/arch/alpha/compile/RAMDISKBIG: Makefile 
	sys/arch/alpha/compile/RAMDISKC: Makefile 
	sys/arch/amd64/compile: Makefile Makefile.inc 
	sys/arch/amd64/compile/GENERIC: Makefile 
	sys/arch/amd64/compile/GENERIC.MP: Makefile 
	sys/arch/amd64/compile/RAMDISK: Makefile 
	sys/arch/amd64/compile/RAMDISK_CD: Makefile 
	sys/arch/armv7/compile: Makefile Makefile.inc 
	sys/arch/armv7/compile/GENERIC: Makefile 
	sys/arch/armv7/compile/RAMDISK: Makefile 
	sys/arch/hppa/compile: Makefile Makefile.inc 
	sys/arch/hppa/compile/GENERIC: Makefile 
	sys/arch/hppa/compile/GENERIC.MP: Makefile 
	sys/arch/hppa/compile/RAMDISK: Makefile 
	sys/arch/i386/compile: Makefile Makefile.inc 
	sys/arch/i386/compile/GENERIC: Makefile 
	sys/arch/i386/compile/GENERIC.MP: Makefile 
	sys/arch/i386/compile/RAMDISK: Makefile 
	sys/arch/i386/compile/RAMDISK_CD: Makefile 
	sys/arch/landisk/compile: Makefile Makefile.inc 
	sys/arch/landisk/compile/GENERIC: Makefile 
	sys/arch/landisk/compile/RAMDISK: Makefile 
	sys/arch/loongson/compile: Makefile Makefile.inc 
	sys/arch/loongson/compile/GENERIC: Makefile 
	sys/arch/loongson/compile/RAMDISK: Makefile 
	sys/arch/luna88k/compile: Makefile Makefile.inc 
	sys/arch/luna88k/compile/GENERIC: Makefile 
	sys/arch/luna88k/compile/GENERIC.MP: Makefile 
	sys/arch/luna88k/compile/RAMDISK: Makefile 
	sys/arch/macppc/compile: Makefile Makefile.inc 
	sys/arch/macppc/compile/GENERIC: Makefile 
	sys/arch/macppc/compile/GENERIC.MP: Makefile 
	sys/arch/macppc/compile/RAMDISK: Makefile 
	sys/arch/octeon/compile: Makefile Makefile.inc 
	sys/arch/octeon/compile/GENERIC: Makefile 
	sys/arch/octeon/compile/GENERIC.MP: Makefile 
	sys/arch/octeon/compile/RAMDISK: Makefile 
	sys/arch/sgi/compile: Makefile Makefile.inc 
	sys/arch/sgi/compile/GENERIC-IP22: Makefile 
	sys/arch/sgi/compile/GENERIC-IP26: Makefile 
	sys/arch/sgi/compile/GENERIC-IP27: Makefile 
	sys/arch/sgi/compile/GENERIC-IP27.MP: Makefile 
	sys/arch/sgi/compile/GENERIC-IP28: Makefile 
	sys/arch/sgi/compile/GENERIC-IP30: Makefile 
	sys/arch/sgi/compile/GENERIC-IP30.MP: Makefile 
	sys/arch/sgi/compile/GENERIC-IP32: Makefile 
	sys/arch/sgi/compile/RAMDISK-IP22: Makefile 
	sys/arch/sgi/compile/RAMDISK-IP26: Makefile 
	sys/arch/sgi/compile/RAMDISK-IP27: Makefile 
	sys/arch/sgi/compile/RAMDISK-IP28: Makefile 
	sys/arch/sgi/compile/RAMDISK-IP30: Makefile 
	sys/arch/sgi/compile/RAMDISK-IP32: Makefile 
	sys/arch/socppc/compile: Makefile Makefile.inc 
	sys/arch/socppc/compile/GENERIC: Makefile 
	sys/arch/socppc/compile/RAMDISK: Makefile 
	sys/arch/sparc64/compile: Makefile Makefile.inc 
	sys/arch/sparc64/compile/GENERIC: Makefile 
	sys/arch/sparc64/compile/GENERIC.MP: Makefile 
	sys/arch/sparc64/compile/RAMDISK: Makefile 
	sys/arch/sparc64/compile/RAMDISKU1: Makefile 
	sys/arch/sparc64/compile/RAMDISKU5: Makefile 
Removed files:
	sys/arch/alpha/compile: .cvsignore 
	sys/arch/amd64/compile: .cvsignore 
	sys/arch/armv7/compile: .cvsignore 
	sys/arch/hppa/compile: .cvsignore 
	sys/arch/i386/compile: .cvsignore 
	sys/arch/landisk/compile: .cvsignore 
	sys/arch/loongson/compile: .cvsignore 
	sys/arch/luna88k/compile: .cvsignore 
	sys/arch/macppc/compile: .cvsignore 
	sys/arch/octeon/compile: .cvsignore 
	sys/arch/sgi/compile: .cvsignore 
	sys/arch/socppc/compile: .cvsignore 
	sys/arch/sparc64/compile: .cvsignore 

Log message:
Kernel builds now happen in compile/CONFIG/obj@ -> /usr/obj/... [or ./obj/,
if srctree is not rooted at /usr/src].  As a result, stock GENERIC & RAMDISK
kernels are commited to the tree, to ensure the src tree can be "readonly"
during builds, with all writes occuring inside the obj space.  config -b
options are handled by ../Makefile.inc.  The canonical new way to configure
one of these kernels is:
% cd /sys/arch/amd64/compile/GENERIC.MP
% doas make obj
% make config
% make
% doas cp obj/bsd /bsd
The build infrastructure will use this new mechanism in a de-escalation
way using BUILDUSER.
Much help from natano and tb.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:44:20

Modified files:
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/amd64/common: Makefile.inc 
	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 
	distrib/macppc/ramdisk: Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sgi/ramdisk: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/bsd.rd: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
Use new kernel compile method for ramdisks, de-escalating to $BUILDUSER
as required.
much help from natano and tb.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:45:12

Modified files:
	etc            : Makefile 

Log message:
Build the bundle of GENERIC* kernels in using the new compile metods,
and de-escalate to $BUILDUSER.
Much help from natano and tb.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 12:51:04

Modified files:
	usr.sbin/config: main.c 

Log message:
Change the default non -b behaviour of config(8) to operate with the
new compile behaviour:
- create a Makefile including ../Makefile.inc
- run "make obj" to create the obj directory
- run "make config", to use logic in ../Makefile.inc to re-run config
with the correct -b options, thereby creating a layout in obj/
- exit 0.
As a result, the old patterns our fingers are used to continue to work
and there will be fewer curses.
ok natano tb


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 13:50:07

Modified files:
	sys/arch/i386/conf: RAMDISK_CD 

Log message:
backout small error


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/14 14:10:46

Modified files:
	faq            : current.html 

Log message:
Kernels now build in an obj directory just like the rest of the source tree.
This helps ensuring that the src tree can be read-only during builds. Some
cleanup needs to be done before updating your source trees via cvs:

$ cd /sys
$ rm -r arch/*/compile/[GR]*
$ rm arch/*/compile/.cvsignore
$ cvs up

The new way of configuring, building and installing a kernel is:

$ cd /src/sys/arch/$(machine)/compile/GENERIC.MP
$ doas make obj
$ make config
$ make
$ doas make install


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/10/14 14:37:08

Modified files:
	usr.bin/cvs    : update.c 

Log message:
Fix update -r and -A.

In certain cases update -r and update -A would not properly set or reset
the sticky tag for file(s).

From Joris Vink.

OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/14 15:48:00

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

Log message:
Don't make assumptions about line wrap on !xenl terminals, means that
using a wrong TERM without xenl is not so broken if used on a sensible
terminal.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/14 16:14:22

Modified files:
	usr.bin/tmux   : cmd-bind-key.c cmd-capture-pane.c 
	                 cmd-clear-history.c cmd-copy-mode.c 
	                 cmd-display-panes.c cmd-list-buffers.c 
	                 cmd-list-clients.c cmd-list-keys.c 
	                 cmd-list-panes.c cmd-list-sessions.c 
	                 cmd-list-windows.c cmd-load-buffer.c 
	                 cmd-lock-server.c cmd-paste-buffer.c 
	                 cmd-pipe-pane.c cmd-refresh-client.c 
	                 cmd-rename-session.c cmd-rename-window.c 
	                 cmd-resize-pane.c cmd-save-buffer.c 
	                 cmd-select-layout.c cmd-send-keys.c 
	                 cmd-set-buffer.c cmd-set-environment.c 
	                 cmd-set-hook.c cmd-set-option.c 
	                 cmd-show-environment.c cmd-show-messages.c 
	                 cmd-show-options.c cmd-string.c 
	                 cmd-unbind-key.c 

Log message:
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/14 16:22:04

Modified files:
	faq            : current.html 

Log message:
prepend /usr/src to /sys since not everyone has this symlink.
might be less confusing this way.

pointed out by amit kulkarni


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/14 16:28:23

Modified files:
	faq            : current.html 

Log message:
switch back to /sys, it's the more idiomatic way and everyone has the
symlink.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/14 17:52:45

Modified files:
	distrib/sparc64/ramdiskB: Makefile 

Log message:
fix typo


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/14 18:01:01

Modified files:
	usr.bin/tmux   : cmd-queue.c notify.c server.c tmux.h 

Log message:
Drain notifys once at the end of the server loop instead of doing it
from the end of every command queue (which could be nested).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/14 18:09:31

Modified files:
	usr.bin/tmux   : cmd-find.c notify.c tmux.1 tmux.h 

Log message:
Fire hooks on the simple notifys (window-renamed and session-renamed),
the complicated ones get no hooks for now (more to come).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/14 18:12:58

Modified files:
	usr.bin/tmux   : control-notify.c notify.c session.c tmux.h 

Log message:
Rename a function for consistency and some spacing nits.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/14 23:09:01

Modified files:
	sys/kern       : kern_fork.c 

Log message:
Process groups can't be removed if a zombie process is in them, so
ispidtaken() can rely on pgfind() for all pgrp checks and can simply
use zombiefind() for the zombie check

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/15 00:35:00

Log message:
    import libffio, basic file input/output abstraction C library.
    ok benoit@, jca@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20161015
    
    N ports/devel/libbfio/Makefile
    N ports/devel/libbfio/distinfo
    N ports/devel/libbfio/pkg/PLIST
    N ports/devel/libbfio/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/15 00:35:39

Modified files:
	devel          : Makefile 

Log message:
+     SUBDIR += libbfio


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/15 00:50:55

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

Log message:
Update to py-libcloud-1.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/10/15 01:29:10

Log message:
    Import pg_activity 1.3.1
    
    pg_activity is a top like application for PostgreSQL server activity
    monitoring.
    
    OK landry@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20161015
    
    N ports/databases/py-pg_activity/Makefile
    N ports/databases/py-pg_activity/distinfo
    N ports/databases/py-pg_activity/pkg/PLIST
    N ports/databases/py-pg_activity/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/10/15 01:37:56

Modified files:
	databases      : Makefile 

Log message:
+py-pg_activity


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 02:33:52

Modified files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_modules_extras_packaging_os_openbsd_pkg_py 

Log message:
patrik's patch was merged


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 02:51:08

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/pkg: PLIST 
Added files:
	sysutils/ansible/pkg: README 

Log message:
- drop py-paramiko dependency which most people don't need
- add README mentioning the optional dependencies for ansible's modules/scripts

input from aja@ rpe@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 03:03:05

Modified files:
	sysutils/ansible: Makefile 

Log message:
- use sed instead of perl
- simplify post-install


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 03:04:36

Modified files:
	sysutils/ansible: Makefile 

Log message:
${PREFIX}/man is already created by mtree, no need to re-mkdir it


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/15 03:27:52

Modified files:
	usr.bin/tmux   : cmd-break-pane.c session.c tmux.h window.c 

Log message:
Give window_create and window_create1 better names.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/15 05:14:58

Modified files:
	devel          : Makefile 

Log message:
+py-fastimport

Reminded by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/15 06:28:21

Modified files:
	graphics/libgxps: Makefile 

Log message:
--disable-test or it will pick up gtk+3 which may end up breaking bulk
builds.

reported by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/15 06:33:22

Modified files:
	lib/libutil    : imsg_init.3 

Log message:
zap trailing whitespace;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/15 06:34:02

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

Log message:
zap double .Pp;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/15 06:35:19

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

Log message:
add missing Xc, and macro fix;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 06:56:15

Modified files:
	net/gupnp/av   : Makefile distinfo 
	net/gupnp/av/pkg: PLIST 

Log message:
update to gupnp-av-0.12.10 (upstream dropped hidden gssdp dependency)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/15 07:00:07

Modified files:
	lib/csu        : Makefile 
	share/mk       : bsd.lib.mk 

Log message:
unify tmp depend generation.
- simpler uniform pattern
- put the tmpfile in OBJDIR, so that mv doesn't whine about groups
when using a separate builduser.

okay millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 07:02:52

Modified files:
	net/gssdp      : Makefile distinfo 

Log message:
update to gssdp-1.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 07:02:58

Modified files:
	net/gupnp/core : Makefile distinfo 
	net/gupnp/core/pkg: PLIST 

Log message:
update to gupnp-1.0.1


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/15 07:45:08

Modified files:
	sys/arch/alpha/compile: Makefile Makefile.inc 
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/compile: Makefile Makefile.inc 
	sys/arch/amd64/conf: Makefile.amd64 
	sys/arch/armv7/compile: Makefile Makefile.inc 
	sys/arch/armv7/conf: Makefile.armv7 
	sys/arch/hppa/compile: Makefile Makefile.inc 
	sys/arch/hppa/conf: Makefile.hppa 
	sys/arch/i386/compile: Makefile Makefile.inc 
	sys/arch/i386/conf: Makefile.i386 
	sys/arch/landisk/compile: Makefile Makefile.inc 
	sys/arch/landisk/conf: Makefile.landisk 
	sys/arch/loongson/compile: Makefile Makefile.inc 
	sys/arch/loongson/conf: Makefile.loongson 
	sys/arch/luna88k/compile: Makefile Makefile.inc 
	sys/arch/luna88k/conf: Makefile.luna88k 
	sys/arch/macppc/compile: Makefile Makefile.inc 
	sys/arch/macppc/conf: Makefile.macppc 
	sys/arch/octeon/compile: Makefile Makefile.inc 
	sys/arch/octeon/conf: Makefile.octeon 
	sys/arch/sgi/compile: Makefile Makefile.inc 
	sys/arch/sgi/conf: Makefile.sgi 
	sys/arch/socppc/compile: Makefile Makefile.inc 
	sys/arch/socppc/conf: Makefile.socppc 
	sys/arch/sparc64/compile: Makefile Makefile.inc 
	sys/arch/sparc64/conf: Makefile.sparc64 

Log message:
cleandir: target for kernel compile directories
ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/15 08:02:11

Modified files:
	usr.sbin/vmd   : config.c parse.y priv.c vm.conf.5 vmd.c vmd.h 

Log message:
Allow to add an interface to an interface group; with the group keyword.

Requested and tested by martijn@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/15 08:36:38

Modified files:
	bin/ksh        : ksh.1 

Log message:
remove the "in the future" notes from the past;
from ray lai


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/15 08:43:53

Modified files:
	sbin/sysctl    : sysctl.8 

Log message:
add kern.dnsjackport;


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/15 09:41:13

Modified files:
	devel          : Makefile 

Log message:
+py-fastimport,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/15 12:24:40

Modified files:
	lib/libc/stdlib: malloc.c 
	lib/libc/include: thread_private.h 

Log message:
Wrap _malloc_init() so internal calls go directly

prodded by otto@
ok kettenis@ otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 12:39:56

Modified files:
	graphics/birdfont: Makefile distinfo 

Log message:
birdfont-2.16.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 12:41:27

Modified files:
	sysutils/tmuxinator: Makefile distinfo 
	sysutils/tmuxinator/patches: patch-lib_tmuxinator_config_rb 
	sysutils/tmuxinator/pkg: PLIST 

Log message:
update to tmuxinator-0.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 13:05:18

Modified files:
	x11/spice-gtk  : Makefile distinfo 
	x11/spice-gtk/pkg: PLIST 

Log message:
update to spice-gtk-0.33


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 13:14:20

Modified files:
	sysutils/libvirt: Makefile 
	sysutils/libvirt-python: Makefile 
	sysutils/p5-Sys-Virt: Makefile 
	sysutils/ruby-libvirt: Makefile 
	sysutils/virt-manager: Makefile 
	devel/libvirt-glib: Makefile 
	devel/spice-protocol: Makefile 
	x11/nx         : Makefile.inc 
	x11/nx/nxcomp  : Makefile 
	x11/nx/nxproxy : Makefile 
	x11/nx/nxssh   : Makefile 
	x11/nx/opennx  : Makefile 
	x11/spice-gtk  : Makefile 

Log message:
drop maintainer for a bunch of ports (libvirt and nx) I hardly ever use anymore


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/15 13:14:43

Modified files:
	lang/elixir    : Makefile distinfo 

Log message:
update to elixir-1.3.3


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/15 13:26:11

Modified files:
	.              : stable.html 

Log message:
/usr/src/sys/... -> /sys/...


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/15 13:55:44

Modified files:
	net/nagios/check_rabbitmq: Makefile 

Log message:
add missing CONFIGURE_STYLE=modbuild


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/15 13:56:25

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
various formatting fixes, specifically removing Dq;


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/15 15:50:59

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

Log message:
implement random casing for query names, also known as 0x20 hardening.
this *should* work everywhere, and i consider minimum necessary protection
for a program like rebound. in the event it doesn't work, rebound can be
bypassed by disabling the port stealing sysctl.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/15 15:56:40

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

Log message:
be more cautious about inspecting packets. use integer offsets instead of
advancing pointers which may go past the end.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/15 16:09:51

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

Log message:
refactor the worker and monitor loops a little to make room for re-exec


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/15 16:20:18

Modified files:
	usr.bin/cvs    : buf.c buf.h diff3.c diff_internals.c file.c 
	                 getlog.c logmsg.c rcs.c update.c 

Log message:
Quiet compiler warnings.  OK tomc@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/15 17:06:39

Modified files:
	usr.bin/tmux   : cmd-run-shell.c 

Log message:
Only use pane with run-shell if -t is given.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/15 18:08:31

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

Log message:
switch to a re-exec model instead of plain forking to reduce sharing.
this shuffles about some of the initialization code and consolidates all
the worker initialization in one place.
the parent process runs the monitor loop and execs workers via -W, which
then drop immediately into the worker loop.
file descriptors currently inherited across exec, which probably exceeds
safe magic levels, but fits the existing model without too many changes.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/10/16 00:01:59

Log message:
    Import libdrm 2.4.71
    
    Status:
    
    Vendor Tag:	libdrm
    Release Tags:	libdrm_2_4_71
    
    C xenocara/lib/libdrm/Makefile.am
    C xenocara/lib/libdrm/configure
    C xenocara/lib/libdrm/configure.ac
    C xenocara/lib/libdrm/aclocal.m4
    U xenocara/lib/libdrm/xf86drm.h
    C xenocara/lib/libdrm/xf86drmMode.h
    C xenocara/lib/libdrm/Makefile.in
    U xenocara/lib/libdrm/Makefile.sources
    C xenocara/lib/libdrm/config.h.in
    U xenocara/lib/libdrm/libdrm.pc.in
    U xenocara/lib/libdrm/README
    C xenocara/lib/libdrm/xf86drm.c
    U xenocara/lib/libdrm/xf86drmHash.c
    U xenocara/lib/libdrm/xf86drmHash.h
    U xenocara/lib/libdrm/xf86drmRandom.c
    U xenocara/lib/libdrm/xf86drmRandom.h
    U xenocara/lib/libdrm/xf86drmSL.c
    C xenocara/lib/libdrm/xf86drmMode.c
    U xenocara/lib/libdrm/xf86atomic.h
    U xenocara/lib/libdrm/util_math.h
    U xenocara/lib/libdrm/libdrm_macros.h
    U xenocara/lib/libdrm/libdrm_lists.h
    U xenocara/lib/libdrm/util_double_list.h
    U xenocara/lib/libdrm/m4/libtool.m4
    U xenocara/lib/libdrm/m4/ltoptions.m4
    U xenocara/lib/libdrm/m4/ltsugar.m4
    U xenocara/lib/libdrm/m4/ltversion.m4
    U xenocara/lib/libdrm/m4/lt~obsolete.m4
    U xenocara/lib/libdrm/build-aux/compile
    U xenocara/lib/libdrm/build-aux/config.guess
    U xenocara/lib/libdrm/build-aux/config.sub
    U xenocara/lib/libdrm/build-aux/depcomp
    U xenocara/lib/libdrm/build-aux/install-sh
    U xenocara/lib/libdrm/build-aux/ltmain.sh
    U xenocara/lib/libdrm/build-aux/missing
    U xenocara/lib/libdrm/build-aux/test-driver
    C xenocara/lib/libdrm/include/drm/drm.h
    U xenocara/lib/libdrm/include/drm/drm_fourcc.h
    U xenocara/lib/libdrm/include/drm/drm_mode.h
    U xenocara/lib/libdrm/include/drm/drm_sarea.h
    C xenocara/lib/libdrm/include/drm/i915_drm.h
    U xenocara/lib/libdrm/include/drm/mach64_drm.h
    U xenocara/lib/libdrm/include/drm/mga_drm.h
    U xenocara/lib/libdrm/include/drm/nouveau_drm.h
    U xenocara/lib/libdrm/include/drm/qxl_drm.h
    U xenocara/lib/libdrm/include/drm/r128_drm.h
    U xenocara/lib/libdrm/include/drm/radeon_drm.h
    U xenocara/lib/libdrm/include/drm/amdgpu_drm.h
    U xenocara/lib/libdrm/include/drm/savage_drm.h
    U xenocara/lib/libdrm/include/drm/sis_drm.h
    U xenocara/lib/libdrm/include/drm/tegra_drm.h
    U xenocara/lib/libdrm/include/drm/vc4_drm.h
    U xenocara/lib/libdrm/include/drm/via_drm.h
    N xenocara/lib/libdrm/include/drm/virtgpu_drm.h
    U xenocara/lib/libdrm/include/drm/vmwgfx_drm.h
    U xenocara/lib/libdrm/libkms/Makefile.am
    U xenocara/lib/libdrm/libkms/libkms.h
    C xenocara/lib/libdrm/libkms/Makefile.in
    U xenocara/lib/libdrm/libkms/Makefile.sources
    U xenocara/lib/libdrm/libkms/libkms.pc.in
    U xenocara/lib/libdrm/libkms/internal.h
    C xenocara/lib/libdrm/libkms/linux.c
    U xenocara/lib/libdrm/libkms/dumb.c
    U xenocara/lib/libdrm/libkms/api.c
    U xenocara/lib/libdrm/libkms/vmwgfx.c
    U xenocara/lib/libdrm/libkms/intel.c
    U xenocara/lib/libdrm/libkms/nouveau.c
    U xenocara/lib/libdrm/libkms/radeon.c
    U xenocara/lib/libdrm/libkms/exynos.c
    U xenocara/lib/libdrm/libkms/kms-symbol-check
    U xenocara/lib/libdrm/intel/Makefile.am
    C xenocara/lib/libdrm/intel/intel_bufmgr.h
    U xenocara/lib/libdrm/intel/intel_aub.h
    U xenocara/lib/libdrm/intel/intel_debug.h
    C xenocara/lib/libdrm/intel/Makefile.in
    U xenocara/lib/libdrm/intel/Makefile.sources
    U xenocara/lib/libdrm/intel/libdrm_intel.pc.in
    U xenocara/lib/libdrm/intel/intel_bufmgr.c
    U xenocara/lib/libdrm/intel/intel_bufmgr_priv.h
    C xenocara/lib/libdrm/intel/intel_bufmgr_fake.c
    C xenocara/lib/libdrm/intel/intel_bufmgr_gem.c
    C xenocara/lib/libdrm/intel/intel_decode.c
    C xenocara/lib/libdrm/intel/intel_chipset.h
    U xenocara/lib/libdrm/intel/mm.c
    U xenocara/lib/libdrm/intel/mm.h
    U xenocara/lib/libdrm/intel/test_decode.c
    U xenocara/lib/libdrm/intel/intel-symbol-check
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch.sh
    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.sh
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch-ref.txt
    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/intel/tests/gen7-3d.batch-ref.txt
    U xenocara/lib/libdrm/nouveau/Makefile.am
    U xenocara/lib/libdrm/nouveau/nouveau.h
    C xenocara/lib/libdrm/nouveau/Makefile.in
    U xenocara/lib/libdrm/nouveau/Makefile.sources
    U xenocara/lib/libdrm/nouveau/libdrm_nouveau.pc.in
    U xenocara/lib/libdrm/nouveau/nouveau.c
    U xenocara/lib/libdrm/nouveau/pushbuf.c
    U xenocara/lib/libdrm/nouveau/bufctx.c
    U xenocara/lib/libdrm/nouveau/abi16.c
    U xenocara/lib/libdrm/nouveau/private.h
    U xenocara/lib/libdrm/nouveau/nouveau-symbol-check
    U xenocara/lib/libdrm/nouveau/nvif/class.h
    U xenocara/lib/libdrm/nouveau/nvif/cl0080.h
    U xenocara/lib/libdrm/nouveau/nvif/cl9097.h
    U xenocara/lib/libdrm/nouveau/nvif/if0002.h
    U xenocara/lib/libdrm/nouveau/nvif/if0003.h
    U xenocara/lib/libdrm/nouveau/nvif/ioctl.h
    U xenocara/lib/libdrm/nouveau/nvif/unpack.h
    U xenocara/lib/libdrm/radeon/Makefile.am
    U xenocara/lib/libdrm/radeon/radeon_bo.h
    U xenocara/lib/libdrm/radeon/radeon_cs.h
    U xenocara/lib/libdrm/radeon/radeon_surface.h
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.h
    U xenocara/lib/libdrm/radeon/radeon_cs_gem.h
    U xenocara/lib/libdrm/radeon/radeon_bo_int.h
    U xenocara/lib/libdrm/radeon/radeon_cs_int.h
    U xenocara/lib/libdrm/radeon/r600_pci_ids.h
    C xenocara/lib/libdrm/radeon/Makefile.in
    U xenocara/lib/libdrm/radeon/Makefile.sources
    U xenocara/lib/libdrm/radeon/libdrm_radeon.pc.in
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.c
    C xenocara/lib/libdrm/radeon/radeon_cs_gem.c
    U xenocara/lib/libdrm/radeon/radeon_cs_space.c
    U xenocara/lib/libdrm/radeon/radeon_bo.c
    U xenocara/lib/libdrm/radeon/radeon_cs.c
    C xenocara/lib/libdrm/radeon/radeon_surface.c
    U xenocara/lib/libdrm/radeon/bof.c
    U xenocara/lib/libdrm/radeon/bof.h
    N xenocara/lib/libdrm/radeon/radeon-symbol-check
    U xenocara/lib/libdrm/amdgpu/Makefile.am
    U xenocara/lib/libdrm/amdgpu/amdgpu.h
    U xenocara/lib/libdrm/amdgpu/Makefile.in
    U xenocara/lib/libdrm/amdgpu/Makefile.sources
    U xenocara/lib/libdrm/amdgpu/libdrm_amdgpu.pc.in
    U xenocara/lib/libdrm/amdgpu/amdgpu_bo.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_cs.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_device.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_gpu_info.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_internal.h
    U xenocara/lib/libdrm/amdgpu/amdgpu_vamgr.c
    U xenocara/lib/libdrm/amdgpu/util_hash.c
    U xenocara/lib/libdrm/amdgpu/util_hash.h
    U xenocara/lib/libdrm/amdgpu/util_hash_table.c
    U xenocara/lib/libdrm/amdgpu/util_hash_table.h
    U xenocara/lib/libdrm/amdgpu/amdgpu-symbol-check
    U xenocara/lib/libdrm/omap/Makefile.am
    U xenocara/lib/libdrm/omap/omap_drm.h
    U xenocara/lib/libdrm/omap/omap_drmif.h
    U xenocara/lib/libdrm/omap/Makefile.in
    U xenocara/lib/libdrm/omap/libdrm_omap.pc.in
    U xenocara/lib/libdrm/omap/omap_drm.c
    U xenocara/lib/libdrm/omap/omap-symbol-check
    U xenocara/lib/libdrm/exynos/Makefile.am
    U xenocara/lib/libdrm/exynos/exynos_drm.h
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.h
    U xenocara/lib/libdrm/exynos/exynos_drmif.h
    U xenocara/lib/libdrm/exynos/Makefile.in
    U xenocara/lib/libdrm/exynos/libdrm_exynos.pc.in
    U xenocara/lib/libdrm/exynos/exynos_drm.c
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.c
    U xenocara/lib/libdrm/exynos/fimg2d_reg.h
    U xenocara/lib/libdrm/exynos/exynos-symbol-check
    U xenocara/lib/libdrm/freedreno/Makefile.am
    U xenocara/lib/libdrm/freedreno/freedreno_drmif.h
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.h
    C xenocara/lib/libdrm/freedreno/Makefile.in
    U xenocara/lib/libdrm/freedreno/Makefile.sources
    U xenocara/lib/libdrm/freedreno/libdrm_freedreno.pc.in
    U xenocara/lib/libdrm/freedreno/freedreno_device.c
    U xenocara/lib/libdrm/freedreno/freedreno_pipe.c
    U xenocara/lib/libdrm/freedreno/freedreno_priv.h
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/freedreno_bo.c
    N xenocara/lib/libdrm/freedreno/freedreno_bo_cache.c
    U xenocara/lib/libdrm/freedreno/freedreno-symbol-check
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_bo.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_device.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_drm.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_pipe.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_priv.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/kgsl/msm_kgsl.h
    U xenocara/lib/libdrm/freedreno/msm/msm_bo.c
    U xenocara/lib/libdrm/freedreno/msm/msm_device.c
    U xenocara/lib/libdrm/freedreno/msm/msm_drm.h
    U xenocara/lib/libdrm/freedreno/msm/msm_pipe.c
    U xenocara/lib/libdrm/freedreno/msm/msm_priv.h
    U xenocara/lib/libdrm/freedreno/msm/msm_ringbuffer.c
    U xenocara/lib/libdrm/tegra/Makefile.am
    U xenocara/lib/libdrm/tegra/tegra.h
    U xenocara/lib/libdrm/tegra/Makefile.in
    U xenocara/lib/libdrm/tegra/libdrm_tegra.pc.in
    U xenocara/lib/libdrm/tegra/private.h
    U xenocara/lib/libdrm/tegra/tegra.c
    U xenocara/lib/libdrm/tegra/tegra-symbol-check
    U xenocara/lib/libdrm/vc4/Makefile.am
    U xenocara/lib/libdrm/vc4/vc4_packet.h
    U xenocara/lib/libdrm/vc4/vc4_qpu_defines.h
    U xenocara/lib/libdrm/vc4/Makefile.in
    U xenocara/lib/libdrm/vc4/Makefile.sources
    U xenocara/lib/libdrm/vc4/libdrm_vc4.pc.in
    N xenocara/lib/libdrm/etnaviv/Makefile.am
    N xenocara/lib/libdrm/etnaviv/etnaviv_drmif.h
    N xenocara/lib/libdrm/etnaviv/Makefile.in
    N xenocara/lib/libdrm/etnaviv/Makefile.sources
    N xenocara/lib/libdrm/etnaviv/libdrm_etnaviv.pc.in
    N xenocara/lib/libdrm/etnaviv/etnaviv_device.c
    N xenocara/lib/libdrm/etnaviv/etnaviv_gpu.c
    N xenocara/lib/libdrm/etnaviv/etnaviv_bo.c
    N xenocara/lib/libdrm/etnaviv/etnaviv_bo_cache.c
    N xenocara/lib/libdrm/etnaviv/etnaviv_pipe.c
    N xenocara/lib/libdrm/etnaviv/etnaviv_cmd_stream.c
    N xenocara/lib/libdrm/etnaviv/etnaviv_drm.h
    N xenocara/lib/libdrm/etnaviv/etnaviv_priv.h
    N xenocara/lib/libdrm/etnaviv/etnaviv-symbol-check
    U xenocara/lib/libdrm/tests/Makefile.am
    C xenocara/lib/libdrm/tests/Makefile.in
    U xenocara/lib/libdrm/tests/drmtest.c
    U xenocara/lib/libdrm/tests/drmtest.h
    U xenocara/lib/libdrm/tests/dristat.c
    U xenocara/lib/libdrm/tests/drmdevice.c
    U xenocara/lib/libdrm/tests/drmsl.c
    U xenocara/lib/libdrm/tests/drmstat.c
    U xenocara/lib/libdrm/tests/getclient.c
    U xenocara/lib/libdrm/tests/getstats.c
    U xenocara/lib/libdrm/tests/getversion.c
    U xenocara/lib/libdrm/tests/hash.c
    U xenocara/lib/libdrm/tests/name_from_fd.c
    U xenocara/lib/libdrm/tests/openclose.c
    U xenocara/lib/libdrm/tests/random.c
    U xenocara/lib/libdrm/tests/setversion.c
    U xenocara/lib/libdrm/tests/updatedraw.c
    U xenocara/lib/libdrm/tests/util/Makefile.am
    U xenocara/lib/libdrm/tests/util/Makefile.in
    U xenocara/lib/libdrm/tests/util/Makefile.sources
    U xenocara/lib/libdrm/tests/util/common.h
    U xenocara/lib/libdrm/tests/util/format.c
    U xenocara/lib/libdrm/tests/util/format.h
    U xenocara/lib/libdrm/tests/util/kms.c
    U xenocara/lib/libdrm/tests/util/kms.h
    U xenocara/lib/libdrm/tests/util/pattern.c
    U xenocara/lib/libdrm/tests/util/pattern.h
    U xenocara/lib/libdrm/tests/kms/Makefile.am
    U xenocara/lib/libdrm/tests/kms/Makefile.in
    U xenocara/lib/libdrm/tests/kms/libkms-test.h
    U xenocara/lib/libdrm/tests/kms/libkms-test-crtc.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-device.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-framebuffer.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-plane.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-screen.c
    U xenocara/lib/libdrm/tests/kms/kms-steal-crtc.c
    U xenocara/lib/libdrm/tests/kms/kms-universal-planes.c
    U xenocara/lib/libdrm/tests/modeprint/Makefile.am
    U xenocara/lib/libdrm/tests/modeprint/Makefile.in
    U xenocara/lib/libdrm/tests/modeprint/modeprint.c
    U xenocara/lib/libdrm/tests/proptest/Makefile.am
    U xenocara/lib/libdrm/tests/proptest/Makefile.in
    U xenocara/lib/libdrm/tests/proptest/Makefile.sources
    U xenocara/lib/libdrm/tests/proptest/proptest.c
    U xenocara/lib/libdrm/tests/modetest/Makefile.am
    C xenocara/lib/libdrm/tests/modetest/Makefile.in
    U xenocara/lib/libdrm/tests/modetest/Makefile.sources
    U xenocara/lib/libdrm/tests/modetest/buffers.c
    U xenocara/lib/libdrm/tests/modetest/buffers.h
    U xenocara/lib/libdrm/tests/modetest/cursor.c
    U xenocara/lib/libdrm/tests/modetest/cursor.h
    U xenocara/lib/libdrm/tests/modetest/modetest.c
    U xenocara/lib/libdrm/tests/vbltest/Makefile.am
    U xenocara/lib/libdrm/tests/vbltest/Makefile.in
    U xenocara/lib/libdrm/tests/vbltest/vbltest.c
    U xenocara/lib/libdrm/tests/kmstest/Makefile.am
    U xenocara/lib/libdrm/tests/kmstest/Makefile.in
    U xenocara/lib/libdrm/tests/kmstest/main.c
    U xenocara/lib/libdrm/tests/radeon/Makefile.am
    U xenocara/lib/libdrm/tests/radeon/Makefile.in
    U xenocara/lib/libdrm/tests/radeon/rbo.c
    U xenocara/lib/libdrm/tests/radeon/rbo.h
    U xenocara/lib/libdrm/tests/radeon/radeon_ttm.c
    U xenocara/lib/libdrm/tests/amdgpu/Makefile.am
    U xenocara/lib/libdrm/tests/amdgpu/Makefile.in
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.c
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.h
    U xenocara/lib/libdrm/tests/amdgpu/basic_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/bo_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/cs_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/uvd_messages.h
    U xenocara/lib/libdrm/tests/amdgpu/vce_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/vce_ib.h
    U xenocara/lib/libdrm/tests/amdgpu/frame.h
    U xenocara/lib/libdrm/tests/exynos/Makefile.am
    U xenocara/lib/libdrm/tests/exynos/Makefile.in
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_event.c
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_perf.c
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_test.c
    U xenocara/lib/libdrm/tests/tegra/Makefile.am
    U xenocara/lib/libdrm/tests/tegra/Makefile.in
    U xenocara/lib/libdrm/tests/tegra/openclose.c
    N xenocara/lib/libdrm/tests/etnaviv/Makefile.am
    N xenocara/lib/libdrm/tests/etnaviv/Makefile.in
    N xenocara/lib/libdrm/tests/etnaviv/cmdstream.xml.h
    N xenocara/lib/libdrm/tests/etnaviv/etnaviv_2d_test.c
    N xenocara/lib/libdrm/tests/etnaviv/state.xml.h
    N xenocara/lib/libdrm/tests/etnaviv/state_2d.xml.h
    N xenocara/lib/libdrm/tests/etnaviv/write_bmp.c
    N xenocara/lib/libdrm/tests/etnaviv/write_bmp.h
    N xenocara/lib/libdrm/tests/etnaviv/etnaviv_bo_cache_test.c
    N xenocara/lib/libdrm/tests/etnaviv/etnaviv_cmd_stream_test.c
    U xenocara/lib/libdrm/tests/nouveau/Makefile.am
    U xenocara/lib/libdrm/tests/nouveau/Makefile.in
    U xenocara/lib/libdrm/tests/nouveau/threaded.c
    U xenocara/lib/libdrm/man/Makefile.am
    U xenocara/lib/libdrm/man/Makefile.in
    U xenocara/lib/libdrm/man/drmAvailable.xml
    U xenocara/lib/libdrm/man/drmHandleEvent.xml
    U xenocara/lib/libdrm/man/drmModeGetResources.xml
    U xenocara/lib/libdrm/man/drm.xml
    U xenocara/lib/libdrm/man/drm-kms.xml
    U xenocara/lib/libdrm/man/drm-memory.xml
    
    26 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	2016/10/16 00:11:11

Modified files:
	lib/libdrm     : Makefile.am Makefile.bsd-wrapper Makefile.in 
	                 config.h.in configure configure.ac xf86drm.c 
	                 xf86drmMode.c xf86drmMode.h 
	lib/libdrm/etnaviv: Makefile.in 
	lib/libdrm/freedreno: Makefile.in 
	lib/libdrm/include/drm: drm.h i915_drm.h 
	lib/libdrm/intel: Makefile.in intel_bufmgr.h intel_bufmgr_fake.c 
	                  intel_bufmgr_gem.c intel_chipset.h 
	                  intel_decode.c 
	lib/libdrm/libkms: Makefile.in linux.c 
	lib/libdrm/nouveau: Makefile.in 
	lib/libdrm/radeon: Makefile.in radeon_cs_gem.c radeon_surface.c 
	lib/libdrm/tests: Makefile.in 
	lib/libdrm/tests/etnaviv: Makefile.in 
	lib/libdrm/tests/modetest: Makefile.in 
Removed files:
	lib/libdrm     : Android.mk 
	lib/libdrm/freedreno: Android.mk README 
	lib/libdrm/intel: Android.mk 
	lib/libdrm/libkms: Android.mk 
	lib/libdrm/nouveau: Android.mk 
	lib/libdrm/radeon: Android.mk 
	lib/libdrm/tests/modetest: Android.mk 

Log message:
Merge libdrm 2.4.71


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/10/16 00:19:55

Modified files:
	distrib/sets/lists/xbase: md.alpha md.amd64 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	2016/10/16 00:23:05

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 02:47:17

Modified files:
	usr.sbin/config: main.c 

Log message:
Stop complaining about changed kernel options when called for an empty
directory. With the new kernel obj mechanism config always prints

Kernel options have changed -- you must run "make clean"

on the first run. The message is suppressed when the compile directory
didn't exist before, but now the directory always exists when config is
run, so we have to use something else to detect if this is a "fresh" run
or an update of an existing directory. Use the options file instead,
which is used to track the kernel options of the last config run. If the
file doesn't exist, it is safe to assume, that this is a "fresh"
directory.

ok tb deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/16 03:16:52

Modified files:
	textproc/mupdf : Makefile distinfo 
	textproc/mupdf/patches: patch-Makefile patch-Makerules 
	                        patch-Makethird patch-docs_man_mupdf_1 
	                        patch-platform_gl_gl-main_c 
	                        patch-platform_x11_pdfapp_c 
	                        patch-source_fitz_list-device_c 
	                        patch-source_pdf_pdf-xref_c 
	                        patch-source_tools_mudraw_c 
	                        patch-source_tools_pdfclean_c 
	                        patch-source_tools_pdfposter_c 
	                        patch-source_tools_pdfshow_c 
	textproc/mupdf/pkg: PLIST 
Added files:
	textproc/mupdf/patches: patch-source_tools_murun_c 
	                        patch-source_tools_mutool_c 

Log message:
update to mupdf-1.9a


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 03:19:15

Modified files:
	usr.sbin/config: main.c 

Log message:
Remove declarations for optarg and optind. They are declared in <unistd.h>.
ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/16 03:35:40

Modified files:
	usr.sbin/config: config.h util.c 

Log message:
Add printf format attributes to the custom error functions.

ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 03:36:46

Modified files:
	usr.sbin/config: main.c 

Log message:
Remove the -g option. It is obsolete/undocumented since the initial
import from NetBSD in '95 and does nothing except print an error.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/16 04:40:59

Modified files:
	usr.sbin/rpc.bootparamd: bootparamd.c 

Log message:
Rename local variable 'err' to 'error', to avoid -Wshadow conflicts with err.h


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/16 05:28:54

Modified files:
	usr.bin/ul     : ul.c 

Log message:
Zap unused variable.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/16 07:03:40

Modified files:
	usr.bin/cvs    : diff3.c 
	usr.bin/diff3  : diff3prog.c 

Log message:
Remove useless n=n assignment in the first parse of a for().
It was already removed from the rcs version by nicm@.


CVSROOT:	/cvs
Module name:	src
Changes by:	okan@cvs.openbsd.org	2016/10/16 07:35:51

Modified files:
	usr.bin/rcs    : buf.c diff.c diff3.c rlog.c 

Log message:
Quiet compiler warnings; as applied to usr.bin/cvs by millert@

ok millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/16 07:50:35

Modified files:
	textproc/zathura/core: Makefile distinfo 
	textproc/zathura/core/pkg: PLIST 

Log message:
update to zathura-0.3.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/16 07:51:21

Modified files:
	textproc/zathura/plugins: Makefile.inc 
	textproc/zathura/plugins/cb: Makefile distinfo 
	textproc/zathura/plugins/djvu: Makefile distinfo 
	textproc/zathura/plugins/mupdf: Makefile distinfo 
	textproc/zathura/plugins/mupdf/patches: patch-document_c 
	                                        patch-image_c 
	                                        patch-page_c 
	                                        patch-search_c 
	                                        patch-utils_c 
	textproc/zathura/plugins/poppler: Makefile distinfo 
	textproc/zathura/plugins/ps: Makefile distinfo 
Added files:
	textproc/zathura/plugins/mupdf/patches: patch-config_mk 
	                                        patch-plugin_h 
Removed files:
	textproc/zathura/plugins/mupdf/patches: patch-index_c 
	                                        patch-links_c 
	                                        patch-plugin_c 
	                                        patch-render_c 

Log message:
use ports compiler for c11, remove devel/gettext MODULES, remove unnecessary PERMIT_*


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/16 08:20:11

Modified files:
	textproc       : Makefile 

Log message:
Hook lua52 flavors to the build for the Lua ports I maintain.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/16 10:29:44

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:56:39

src/usr.sbin/makefs

Update of /cvs/src/usr.sbin/makefs
In directory cvs.openbsd.org:/tmp/cvs-serv30088/makefs

Log Message:
Directory /cvs/src/usr.sbin/makefs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:05

src/usr.sbin/makefs/cd9660

Update of /cvs/src/usr.sbin/makefs/cd9660
In directory cvs.openbsd.org:/tmp/cvs-serv95057/cd9660

Log Message:
Directory /cvs/src/usr.sbin/makefs/cd9660 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:05

src/usr.sbin/makefs/ffs

Update of /cvs/src/usr.sbin/makefs/ffs
In directory cvs.openbsd.org:/tmp/cvs-serv95057/ffs

Log Message:
Directory /cvs/src/usr.sbin/makefs/ffs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:05

src/usr.sbin/makefs/msdos

Update of /cvs/src/usr.sbin/makefs/msdos
In directory cvs.openbsd.org:/tmp/cvs-serv95057/msdos

Log Message:
Directory /cvs/src/usr.sbin/makefs/msdos added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:05

src/usr.sbin/makefs/newfs_msdos

Update of /cvs/src/usr.sbin/makefs/newfs_msdos
In directory cvs.openbsd.org:/tmp/cvs-serv95057/newfs_msdos

Log Message:
Directory /cvs/src/usr.sbin/makefs/newfs_msdos added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:05

src/usr.sbin/makefs/sys

Update of /cvs/src/usr.sbin/makefs/sys
In directory cvs.openbsd.org:/tmp/cvs-serv95057/sys

Log Message:
Directory /cvs/src/usr.sbin/makefs/sys added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:05

src/usr.sbin/makefs/ufs

Update of /cvs/src/usr.sbin/makefs/ufs
In directory cvs.openbsd.org:/tmp/cvs-serv95057/ufs

Log Message:
Directory /cvs/src/usr.sbin/makefs/ufs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:05

src/usr.sbin/makefs/fs

Update of /cvs/src/usr.sbin/makefs/fs
In directory cvs.openbsd.org:/tmp/cvs-serv95057/fs

Log Message:
Directory /cvs/src/usr.sbin/makefs/fs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:23

src/usr.sbin/makefs/ufs/ufs

Update of /cvs/src/usr.sbin/makefs/ufs/ufs
In directory cvs.openbsd.org:/tmp/cvs-serv15478/ufs/ufs

Log Message:
Directory /cvs/src/usr.sbin/makefs/ufs/ufs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 10:58:23

src/usr.sbin/makefs/ufs/ffs

Update of /cvs/src/usr.sbin/makefs/ufs/ffs
In directory cvs.openbsd.org:/tmp/cvs-serv15478/ufs/ffs

Log Message:
Directory /cvs/src/usr.sbin/makefs/ufs/ffs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 11:01:01

src/usr.sbin/makefs/fs/cd9660

Update of /cvs/src/usr.sbin/makefs/fs/cd9660
In directory cvs.openbsd.org:/tmp/cvs-serv12776/fs/cd9660

Log Message:
Directory /cvs/src/usr.sbin/makefs/fs/cd9660 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 11:01:01

src/usr.sbin/makefs/fs/msdosfs

Update of /cvs/src/usr.sbin/makefs/fs/msdosfs
In directory cvs.openbsd.org:/tmp/cvs-serv12776/fs/msdosfs

Log Message:
Directory /cvs/src/usr.sbin/makefs/fs/msdosfs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 11:08:53

Added files:
	usr.sbin/makefs: Makefile README cd9660.c cd9660.h ffs.c ffs.h 
	                 makefs.8 makefs.c makefs.h msdos.c msdos.h 
	                 walk.c xmalloc.c 
	usr.sbin/makefs/cd9660: cd9660_archimedes.c cd9660_archimedes.h 
	                        cd9660_conversion.c cd9660_debug.c 
	                        cd9660_eltorito.c cd9660_eltorito.h 
	                        cd9660_strings.c cd9660_write.c 
	                        iso9660_rrip.c iso9660_rrip.h 
	usr.sbin/makefs/ffs: buf.c buf.h ffs_alloc.c ffs_balloc.c 
	                     ffs_extern.h mkfs.c newfs_extern.h 
	                     ufs_bmap.c ufs_inode.h 
	usr.sbin/makefs/fs/cd9660: cd9660_rrip.h iso.h iso_rrip.h 
	usr.sbin/makefs/fs/msdosfs: bootsect.h bpb.h clock_subr.c 
	                            clock_subr.h denode.h direntry.h 
	                            fat.h msdosfs_conv.c msdosfs_fat.c 
	                            msdosfs_lookup.c msdosfs_unicode.c 
	                            msdosfsmount.h 
	usr.sbin/makefs/msdos: msdosfs_denode.c msdosfs_vfsops.c 
	                       msdosfs_vnops.c 
	usr.sbin/makefs/newfs_msdos: mkfs_msdos.c mkfs_msdos.h 
	usr.sbin/makefs/sys: bootblock.h clock.h quota.h 
	usr.sbin/makefs/ufs/ffs: ffs_bswap.c ffs_extern.h ffs_subr.c 
	                         ffs_tables.c fs.h 
	usr.sbin/makefs/ufs/ufs: dinode.h dir.h quota.h ufs_bswap.h 

Log message:
Import makefs - a tool to create filesystem images from a directory.

This is a rough port of the NetBSD tool with some features removed we
don't need. It compiles, but I don't promise anything more. Importing
now, so we can hack on it in tree.

The supported filesystem types are: cd9660, ffs and msdosfs.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/10/16 11:15:15

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
Remove the "phase" state variable from the smtp session.  Simply check
"helo[0]" to see if an HELO/EHLO command was received (reset after
starttls), and "tx" to know if we are in a transaction.

ok  gilles@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/16 11:31:36

Modified files:
	sys/conf       : newvers.sh 

Log message:
Strip trailing obj/ from kernel build directories, so kernels
are again marked with GENERIC{,.MP} RAMDISK, etc.

Problem noticed by several (jsg, semarie, ...)
ok many (sthen, natano, millert, deraadt, ...)
Explanations why quotes aren't necessary by even more. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/10/16 11:37:40

Modified files:
	lib/libc/string: strlcat.c strlcpy.c strnlen.c 

Log message:
Roll back uintptr_t cast changes after discussions with tedu, otto and
others.

C11 6.5.6.9 says:
When two pointers are subtracted, both shall point to elements of the
same array object, or one past the last element of the array object; the
result is the difference of the subscripts of the two array elements.

In these cases the objects are arrays of char so the result is defined,
and we believe that the report is based on a compiler incorrectly trapping
on defined behaviour.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/16 11:50:00

Modified files:
	usr.sbin/config: main.c mkheaders.c mkioconf.c mkmakefile.c 
	                 mkswap.c ukc.c 

Log message:
Use the err(3) family of functions more consistently.

ok jca, improvements and ok millert, natano


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/16 11:55:14

Modified files:
	usr.bin/tmux   : cfg.c cmd-attach-session.c cmd-command-prompt.c 
	                 cmd-confirm-before.c cmd-copy-mode.c 
	                 cmd-display-panes.c cmd-find.c cmd-if-shell.c 
	                 cmd-load-buffer.c cmd-new-session.c 
	                 cmd-new-window.c cmd-queue.c cmd-resize-pane.c 
	                 cmd-run-shell.c cmd-send-keys.c 
	                 cmd-source-file.c cmd-split-window.c 
	                 cmd-wait-for.c cmd.c control.c format.c hooks.c 
	                 key-bindings.c notify.c server-client.c 
	                 server.c tmux.1 tmux.h window-choose.c 

Log message:
Rewrite command queue handling. Each client still has a command queue,
but there is also now a global command queue. Instead of command queues
being dispatched on demand from wherever the command happens to be
added, they are now all dispatched from the top level server
loop. Command queues may now also include callbacks as well as commands,
and items may be inserted after the current command as well as at the end.

This all makes command queues significantly more predictable and easier
to use, and avoids the complex multiple nested command queues used by
source-file, if-shell and friends.

A mass rename of struct cmdq to a better name (cmdq_item probably) is
coming.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/16 12:02:03

Modified files:
	usr.sbin/config: main.c 

Log message:
Add a == EOF that was accidentally lost in previous commit.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/16 12:05:41

Modified files:
	sys/net        : bpf.c 

Log message:
Fix bpf_catchpacket comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/16 12:15:22

Modified files:
	editors/emacs  : Makefile 
	editors/emacs/patches: patch-lisp_vc_vc-cvs_el 

Log message:
Merge better fix for #24082

This one lets unregistered files appear in vc-dir.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/10/16 12:22:11

ports/devel/p5-Coro/patches

Update of /cvs/ports/devel/p5-Coro/patches
In directory cvs.openbsd.org:/tmp/cvs-serv39179/patches

Log Message:
Directory /cvs/ports/devel/p5-Coro/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/10/16 12:23:53

Modified files:
	devel/p5-Coro  : Makefile distinfo 
Added files:
	devel/p5-Coro/patches: patch-Coro_State_xs 

Log message:
Update devel/p5-Coro to 6.511

Plus additional patch for perl 5.24 and disable JIT due to W^X violations.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/10/16 12:25:07

Modified files:
	devel/p5-Scope-Upper: Makefile distinfo 

Log message:
Update devel/p5-Scope-Upper to 0.29 for perl 5.24 support

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 12:55:10

Modified files:
	usr.sbin/makefs: Makefile msdos.c 
	usr.sbin/makefs/fs/msdosfs: denode.h direntry.h msdosfs_conv.c 
	                            msdosfs_lookup.c msdosfsmount.h 
	usr.sbin/makefs/msdos: msdosfs_vfsops.c msdosfs_vnops.c 
Removed files:
	usr.sbin/makefs/fs/msdosfs: clock_subr.c clock_subr.h 
	usr.sbin/makefs/sys: clock.h 

Log message:
Replace fs/msdosfs/{msdosfs_conv.c,direntry.h} with stripped-down
versions from our own tree. This allows to remove the clock_subr.c
tentacle.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/16 13:04:05

Modified files:
	usr.bin/tmux   : cfg.c cmd-attach-session.c cmd-bind-key.c 
	                 cmd-break-pane.c cmd-capture-pane.c 
	                 cmd-choose-buffer.c cmd-choose-client.c 
	                 cmd-choose-tree.c cmd-clear-history.c 
	                 cmd-command-prompt.c cmd-confirm-before.c 
	                 cmd-copy-mode.c cmd-detach-client.c 
	                 cmd-display-message.c cmd-display-panes.c 
	                 cmd-find-window.c cmd-find.c cmd-if-shell.c 
	                 cmd-join-pane.c cmd-kill-pane.c 
	                 cmd-kill-server.c cmd-kill-session.c 
	                 cmd-kill-window.c cmd-list-buffers.c 
	                 cmd-list-clients.c cmd-list-keys.c 
	                 cmd-list-panes.c cmd-list-sessions.c 
	                 cmd-list-windows.c cmd-load-buffer.c 
	                 cmd-lock-server.c cmd-move-window.c 
	                 cmd-new-session.c cmd-new-window.c 
	                 cmd-paste-buffer.c cmd-pipe-pane.c cmd-queue.c 
	                 cmd-refresh-client.c cmd-rename-session.c 
	                 cmd-rename-window.c cmd-resize-pane.c 
	                 cmd-respawn-pane.c cmd-respawn-window.c 
	                 cmd-rotate-window.c cmd-run-shell.c 
	                 cmd-save-buffer.c cmd-select-layout.c 
	                 cmd-select-pane.c cmd-select-window.c 
	                 cmd-send-keys.c cmd-set-buffer.c 
	                 cmd-set-environment.c cmd-set-hook.c 
	                 cmd-set-option.c cmd-show-environment.c 
	                 cmd-show-messages.c cmd-show-options.c 
	                 cmd-source-file.c cmd-split-window.c 
	                 cmd-swap-pane.c cmd-swap-window.c 
	                 cmd-switch-client.c cmd-unbind-key.c 
	                 cmd-wait-for.c cmd.c control.c format.c hooks.c 
	                 key-bindings.c notify.c server-client.c tmux.h 
	                 window-choose.c 

Log message:
Mass rename struct cmd_q to struct cmdq_item and related.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/16 13:07:05

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
Prefer memcpy/memmove over bcopy

ok mlarkin@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/16 13:11:30

Modified files:
	.              : 26.html 27.html 28.html 29.html 30.html 31.html 
	                 32.html 38.html 39.html 43.html 52.html 55.html 
	                 56.html 57.html 58.html 59.html 60.html 
	                 alpha.html amd64.html announce28.html 
	                 armish.html armv7.html aviion.html crypto.html 
	                 donations.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 hp300.html 
	                 hppa.html i386.html index.html innovations.html 
	                 landisk.html loongson.html luna88k.html 
	                 lyrics.html macppc.html mvme68k.html 
	                 mvme88k.html octeon.html plus23.html 
	                 plus27.html plus29.html plus32.html sgi.html 
	                 socppc.html sparc.html sparc64.html 
	                 tshirts.html vax.html zaurus.html 
	faq            : faq15.html upgrade53.html upgrade55.html 
	faq/ports      : guide.html 
	libressl       : index.html releases.html signing.html 
	opensmtpd      : security.html 
	openssh        : features.html goals.html openbsd.html 
	                 security.html 

Log message:
Switch a few links to ftp.openbsd.org, www.libressl.org and www.openssh.org
to https now that the certificates are fully supported. Only fully
qualified links are modified and none that are generated from build/. While
there, fix a few broken links that were found during the conversion.

requested by tj, "yes, but carefully" beck


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/16 13:15:02

Modified files:
	usr.bin/tmux   : notify.c server.c tmux.h 

Log message:
Notifys can go via the command queue instead of using their own queue.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 13:16:39

Modified files:
	usr.sbin/makefs/ffs: ffs_alloc.c ffs_extern.h 
	usr.sbin/makefs/fs/msdosfs: denode.h msdosfs_lookup.c 
	usr.sbin/makefs/ufs/ffs: ffs_extern.h ffs_subr.c 

Log message:
Remove some unused functions. Found by cppcheck from ports.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/16 13:28:44

Modified files:
	include        : Makefile 
	lib/libcrypto  : Makefile 
	lib/librpcsvc  : Makefile 
	gnu/usr.bin/cc/include: Makefile 

Log message:
Move libcrypto, librpcsvc and gnu/usr.bin/cc/include from RDIRS to PRDIRS,
and add prereq targets, so some header files are generated by BUILDUSER
during 'make prereq' instead of by root during 'make includes'.

Switch the order of 'make cleandir' and 'make includes' during 'make build'
so we don't generate many files twice.

Except for some machine@ symlinks from ${MACHINE}/stand, /usr/obj is now
clean from files generated by root during 'make build'. Those will be
cleaned up in a second step.

help, testing & ok deraadt, input from natano, further testing rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/16 13:36:37

Modified files:
	usr.bin/tmux   : cmd-queue.c format.c hooks.c notify.c tmux.h 

Log message:
Provide a way for hooks to tag formats onto the commands they fire so
that the user can get at additional information - now used for the
"hook" format, more to come.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/16 13:40:43

Modified files:
	.              : errata60.html 

Log message:
http -> https for the amap link


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 13:53:11

Modified files:
	usr.sbin/makefs: cd9660.c ffs.c makefs.c msdos.c walk.c 
	usr.sbin/makefs/cd9660: cd9660_archimedes.c cd9660_debug.c 
	                        cd9660_eltorito.c cd9660_strings.c 
	                        cd9660_write.c iso9660_rrip.c 
	usr.sbin/makefs/ffs: ffs_alloc.c ffs_balloc.c 

Log message:
Unused includes, as reported by include-what-you-use from ports.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/16 13:55:52

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

Log message:
Add hook_session and hook_window formats to get information on the
affected session or window when a hook fires. Enable session-created and
session-closed hooks now that that is available.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/16 14:10:48

Modified files:
	devel/luaprofiler: Makefile 

Log message:
Standard Makefile layout


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 14:26:56

Modified files:
	usr.sbin/makefs: Makefile README cd9660.c cd9660.h ffs.c ffs.h 
	                 makefs.8 makefs.c makefs.h msdos.c msdos.h 
	                 walk.c xmalloc.c 
	usr.sbin/makefs/cd9660: cd9660_archimedes.c cd9660_archimedes.h 
	                        cd9660_conversion.c cd9660_debug.c 
	                        cd9660_eltorito.c cd9660_eltorito.h 
	                        cd9660_strings.c cd9660_write.c 
	                        iso9660_rrip.c iso9660_rrip.h 
	usr.sbin/makefs/ffs: buf.c buf.h ffs_alloc.c ffs_balloc.c 
	                     ffs_extern.h mkfs.c newfs_extern.h 
	                     ufs_bmap.c ufs_inode.h 
	usr.sbin/makefs/fs/cd9660: cd9660_rrip.h iso.h iso_rrip.h 
	usr.sbin/makefs/fs/msdosfs: bootsect.h bpb.h denode.h fat.h 
	                            msdosfs_fat.c msdosfs_lookup.c 
	                            msdosfs_unicode.c msdosfsmount.h 
	usr.sbin/makefs/msdos: msdosfs_denode.c msdosfs_vfsops.c 
	                       msdosfs_vnops.c 
	usr.sbin/makefs/newfs_msdos: mkfs_msdos.c mkfs_msdos.h 
	usr.sbin/makefs/sys: bootblock.h quota.h 
	usr.sbin/makefs/ufs/ffs: ffs_bswap.c ffs_extern.h ffs_subr.c 
	                         ffs_tables.c fs.h 
	usr.sbin/makefs/ufs/ufs: dinode.h dir.h quota.h ufs_bswap.h 

Log message:
Add OpenBSD RCS tags; reminded by tb


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 14:30:40

Modified files:
	usr.sbin/makefs: ffs.c makefs.8 makefs.c makefs.h 

Log message:
Remove the -Z (spare ffs image) option.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 14:45:07

Modified files:
	usr.sbin/makefs: makefs.8 makefs.c makefs.h walk.c 

Log message:
Only allow one directory as argument and remove the -r option.
ok deraadt (on principle)


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/16 14:56:44

Modified files:
	usr.sbin/makefs: Makefile 

Log message:
The MSDOS_EI define isn't used anywhere.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/16 15:25:16

Modified files:
	share/man/man1 : gcc-local.1 

Log message:
Delete URL to dead site.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/16 15:26:06

Modified files:
	textproc/zathura/core: Makefile 

Log message:
zathura needs gettext-tools to build, found by nigel@


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2016/10/16 15:34:26

Modified files:
	.              : index.html 

Log message:
Admit to the existence of the github mirror


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 15:35:27

Modified files:
	usr.sbin/makefs/fs/msdosfs: fat.h msdosfsmount.h 
	usr.sbin/makefs/msdos: msdosfs_vfsops.c 

Log message:
remove GEMDOS code


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 15:44:43

Modified files:
	usr.sbin/makefs: cd9660.c ffs.c 

Log message:
/* XXX bounds checking! */
very crudely fix a few strcpy and sprintf warnings.
leave the quality warnings.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/16 15:45:17

Modified files:
	sys/net        : if.c 

Log message:
m_resethdr() clears information attached to a mbuf that has been
accumulated during processing, especially pf(4) data is removed.
When a packet is reinserted to local input processing, we have to
start from scratch with a clean mbuf header.  Also the packet has
to be in the routing doamin of the interface where it is inserted.
Incoming packet with stale inp pointer seen by patrick@ on lo(4);
OK sashan@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 15:47:03

Modified files:
	usr.sbin/makefs: cd9660.c 

Log message:
there's no need for a special typedef and function pointer for picking
between two functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 15:59:29

Modified files:
	usr.sbin/makefs: ffs.c makefs.c makefs.h 
	usr.sbin/makefs/ffs: mkfs.c 
	usr.sbin/makefs/ufs/ufs: dir.h 

Log message:
remove some byte swapping code from the top end


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/16 16:00:14

Modified files:
	usr.sbin/syslogd: privsep.c syslogd.c syslogd.h 

Log message:
Use closefrom(4) in privsep parent and avoid some global file
descriptor variables in syslogd(8) this way.
OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/16 16:06:40

Modified files:
	usr.bin/tmux   : cmd-attach-session.c cmd-find.c cmd-join-pane.c 
	                 cmd-new-session.c cmd-new-window.c 
	                 cmd-rename-session.c cmd-split-window.c 
	                 control-notify.c layout-custom.c layout.c 
	                 notify.c resize.c server-client.c server-fn.c 
	                 session.c tmux.1 tmux.h window.c 

Log message:
Use the notify name string instead of going via an enum and change
existing hooks to use notifys instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/16 16:12:50

Modified files:
	usr.sbin/syslogd: privsep.c ringbuf.c syslogd.c 

Log message:
Fix trailing whitespace and shorten long lines.
No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/16 16:18:04

Modified files:
	usr.bin/tmux   : alerts.c notify.c tmux.h 

Log message:
Use notifys for alerts too.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 16:19:10

Modified files:
	usr.sbin/makefs/ffs: ffs_alloc.c ffs_balloc.c 
	usr.sbin/makefs/ufs/ffs: ffs_subr.c 
	usr.sbin/makefs/ufs/ufs: ufs_bswap.h 

Log message:
another round of deswapping


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 16:23:08

Modified files:
	usr.sbin/makefs/ufs/ufs: ufs_bswap.h 

Log message:
simplify swapper functions a bit


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 16:26:34

Modified files:
	usr.sbin/makefs: ffs.c 
	usr.sbin/makefs/ffs: ffs_alloc.c 
	usr.sbin/makefs/ufs/ffs: ffs_subr.c 
	usr.sbin/makefs/ufs/ufs: ufs_bswap.h 

Log message:
remove swapping add macros


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 16:33:46

Modified files:
	usr.sbin/makefs/ffs: buf.h 
	usr.sbin/makefs/fs/msdosfs: denode.h msdosfs_lookup.c 
	usr.sbin/makefs/msdos: msdosfs_denode.c msdosfs_vnops.c 

Log message:
we're not going to be using kauth_creds


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/16 17:06:31

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0218


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/16 17:21:23

Modified files:
	converters/luastruct: Makefile 
	devel/coxpcall : Makefile 
	devel/lpeg     : Makefile 
	devel/lua-cjson: Makefile 
	devel/lua-cliargs: Makefile 
	devel/lua-cmsgpack: Makefile 
	devel/lua-lgi  : Makefile 
	devel/lua-penlight: Makefile 
	devel/lua-term : Makefile 
	devel/luaalarm : Makefile 
	devel/luabitop : Makefile 
	devel/luacopas : Makefile 
	devel/luadoc   : Makefile 
	devel/luafs    : Makefile 
	devel/luapack  : Makefile 
	devel/luaprofiler: Makefile 
	devel/luarings : Makefile 
	devel/luastdlib: Makefile 
	net/luasocket  : Makefile 
	security/luasec: Makefile 
	textproc/lua-lustache: Makefile 
	textproc/lua-markdown: Makefile 
	textproc/lua-yaml: Makefile 
	textproc/luaexpat: Makefile 
	textproc/luasoldout: Makefile 

Log message:
Add explicit lua52/lua53 FLAVORS where supported.

Discussed on ports@, sthen@ agrees with the direction.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/16 17:52:31

Modified files:
	converters     : Makefile 
	devel          : Makefile 
	net            : Makefile 
	security       : Makefile 
	textproc       : Makefile 

Log message:
Hook up tested lua52 and lua53 FLAVORS.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/16 18:09:26

Modified files:
	usr.sbin/makefs/cd9660: cd9660_eltorito.c 
Removed files:
	usr.sbin/makefs/sys: bootblock.h 

Log message:
Only a few apple-specific bits are needed by eltorito, so copy them local.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/16 19:16:22

Modified files:
	usr.sbin/makefs: ffs.c msdos.c msdos.h 
	usr.sbin/makefs/ffs: buf.c buf.h ffs_alloc.c ffs_balloc.c 
	                     ffs_extern.h ufs_inode.h 
	usr.sbin/makefs/fs/msdosfs: denode.h fat.h msdosfs_conv.c 
	                            msdosfs_fat.c msdosfs_lookup.c 
	                            msdosfsmount.h 
	usr.sbin/makefs/msdos: msdosfs_denode.c msdosfs_vfsops.c 
	                       msdosfs_vnops.c 
	usr.sbin/makefs/ufs/ffs: ffs_extern.h 

Log message:
mechanical rename of vnode to mkfsvnode and buf to mkfsbuf to avoid
collisions with the kernel structures of the same name.
caught one bug where the wrong header was being included.


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2016/10/16 20:53:47

Modified files:
	sys/sys        : mbuf.h 
	share/man/man9 : mbuf.9 

Log message:
"send/received" -> "sent/received"
ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2016/10/16 20:54:40

Modified files:
	lib/libpcap    : pcap.3 

Log message:
Add missing argument names for pcap_offline_filter.


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2016/10/16 20:58:29

Modified files:
	usr.bin/sort   : file.c sort.1 

Log message:
/var/tmp -> /tmp

From Jan Stary.
"POSIX doesn't restrict us here" and ok schwarze@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/10/16 21:18:30

Modified files:
	distrib/sets/lists/xbase: md.alpha md.amd64 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:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/16 21:30:14

Modified files:
	lib/libcrypto/bn: bn_print.c 

Log message:
If BN_div_word() fails (by returning (BN_ULONG)-1) or if the division
fails to reduce the input in the expected space then fail out instead
of overflowing the allocated buffer.

combines openssl commits 28a89639da50b1caed4ff3015508f23173bf3e49 and
3612ff6fcec0e3d1f2a598135fe12177c0419582

ok doug@ beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 00:16:55

Modified files:
	usr.sbin/makefs: Makefile 
Removed files:
	usr.sbin/makefs/ufs/ffs: ffs_bswap.c 

Log message:
Everything in ffs_bswap.c is unused.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/17 00:29:08

Modified files:
	share/man/man5 : malloc.conf.5 

Log message:
R option doesn't compact memory at all; flags are not only useful for
tetsing and debugging; mult-threaded programs use multiple pools


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/17 00:30:01

Log message:
    Import libretro-genesis-plus-gx-1.7.4.
    
    Genesis Plus GX is an open-source Sega 8/16 bit emulator focused on accuracy
    and portability.
    
    The source code, initially based on Genesis Plus 1.2a by Charles MacDonald
    has been heavily modified & enhanced, with respect to original goals and
    design, in order to improve emulation accuracy as well as adding support for
    new peripherals, cartridge or console hardware and many other exciting
    features.
    
    The result is that Genesis Plus GX is now more a continuation of the
    original project than a simple port, providing very accurate emulation and
    100% compatibility with Genesis / Mega Drive, Sega/Mega CD, Master System,
    Game Gear & SG-1000 released software (including all unlicensed or pirate
    known dumps), also emulating backwards compatibility modes when available.
    
    ok fcambus@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20161017
    
    N ports/emulators/libretro-genesis-plus-gx/Makefile
    N ports/emulators/libretro-genesis-plus-gx/distinfo
    N ports/emulators/libretro-genesis-plus-gx/patches/patch-Makefile_libretro
    N ports/emulators/libretro-genesis-plus-gx/patches/patch-core_loadrom_c
    N ports/emulators/libretro-genesis-plus-gx/pkg/DESCR
    N ports/emulators/libretro-genesis-plus-gx/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/17 00:43:32

Modified files:
	emulators      : Makefile 

Log message:
+libretro-genesis-plus-gx


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 01:45:32

Modified files:
	usr.sbin/makefs: makefs.8 makefs.c 

Log message:
Remove the -d option.

-d debug-mask
Enable various levels of debugging, depending upon which bits are
set in debug-mask.  XXX: document these

Useful, eh? Leaving the actual debug code in there for now, so debug
flags can be set at compile time. That might be removed in the future
too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/17 01:47:11

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/17 01:51:00

Modified files:
	graphics/ffmpeg: Makefile 
	graphics/ffmpeg/patches: patch-libavcodec_aaccoder_c 
	                         patch-libavcodec_aacenc_c 
	                         patch-libavcodec_aacenc_h 
	                         patch-libavcodec_aacenc_utils_h 

Log message:
Some more AAC fixes.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 01:54:17

Modified files:
	usr.sbin/makefs: ffs.c makefs.h walk.c 

Log message:
Remove "feature" defines. This code won't try to be portable when we are
done hacking it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/17 01:55:08

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.24.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 02:13:24

Modified files:
	usr.sbin/makefs: Makefile cd9660.c cd9660.h makefs.8 
Removed files:
	usr.sbin/makefs/cd9660: cd9660_archimedes.c cd9660_archimedes.h 

Log message:
Remove cd9660's archimedes option, we won't need RISC OS metadata on our
ISO images.


CVSROOT:	/cvs
Module name:	www
Changes by:	otto@cvs.openbsd.org	2016/10/17 02:19:37

Modified files:
	.              : mail.html 

Log message:
dutch mailinglist is dead; ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 02:22:38

Modified files:
	usr.sbin/makefs: cd9660.c cd9660.h 

Log message:
Remove some more unused cd9660 options.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/17 02:37:44

Modified files:
	textproc/zathura/core: Makefile 

Log message:
remove devel/gettext MODULES


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/10/17 03:51:20

Modified files:
	net/seafile    : Makefile.inc 
	net/seafile/ccnet: distinfo 
	net/seafile/client: distinfo 
	net/seafile/client/patches: patch-src_seafile-applet_cpp 
	net/seafile/seafile: distinfo 

Log message:
bugfix update to seafile-6.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 04:13:56

Modified files:
	devel/lutok    : Makefile 
	devel/kyua-cli : Makefile 

Log message:
Stop handling lua FLAVORS that aren't hooked to the build.

No objection from Sergey Bronnikov (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/17 04:49:17

Modified files:
	sbin/ifconfig  : brconfig.c ifconfig.c 

Log message:
Use strtoull() to read the datapath id and expect "datapath" instead of
"datapathid" as stated by the man page.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 05:15:35

Modified files:
	net/nbtscan    : Makefile distinfo 
	net/nbtscan/patches: patch-statusq_h 

Log message:
Update HOMEPAGE & MASTER_SITES, and use new tarballs.

- same tarball content
- regen a patch while here

from Rafael Sadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/17 05:19:55

Modified files:
	usr.sbin/syslogd: syslogd.8 syslogd.c syslogd.h 

Log message:
Remove the artificial maximum number of unix domain sockets in
syslogd(8).  Just malloc(3) them dynamically which also gives a
more random address space layout.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 05:56:26

Modified files:
	audio/mp3info  : Makefile 
	audio/mp3info/pkg: PFRAG.no-no_x11 PLIST 

Log message:
Drop the gettext module and add @bin annotations.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/17 07:44:03

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

Log message:
Fix a few mistakes and add a FILES entry for /etc/ldap/certs

From Rob Pierce, help & ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 07:45:38

Modified files:
	usr.sbin/makefs/ffs: ffs_extern.h 
	usr.sbin/makefs/ufs/ffs: ffs_subr.c 
Removed files:
	usr.sbin/makefs/ufs/ffs: ffs_extern.h 

Log message:
Dedup ffs_extern.h.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/17 07:49:03

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

Log message:
In FILES mention /etc/ldapd.conf first, then /etc/ldap/ entries


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 07:53:35

Modified files:
	usr.sbin/makefs/msdos: msdosfs_vfsops.c 
Removed files:
	usr.sbin/makefs/sys: quota.h 
	usr.sbin/makefs/ufs/ufs: quota.h 

Log message:
makefs doesn't care about quotas.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/10/17 08:03:17

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

Log message:
Tweak /etc/ldap/certs/ FILES entry.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 08:06:32

Modified files:
	usr.sbin/makefs/ufs/ffs: fs.h 
	usr.sbin/makefs/ufs/ufs: dinode.h dir.h 

Log message:
Remove apple ufs bits.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/17 08:25:33

Modified files:
	usr.sbin/makefs: makefs.c 
	usr.sbin/makefs/msdos: msdosfs_vfsops.c 

Log message:
unused variables


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 09:15:53

Modified files:
	devel/lua-cliargs: Makefile 
	devel/lua-cliargs/pkg: DESCR 

Log message:
Add a link to the online documentation.

ok Florian Stinglmayr (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 09:17:12

Modified files:
	devel/lua-cliargs: Makefile 

Log message:
Add a basic test target, reusing the port's examples

ok Florian Stinglmayr (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/17 10:26:20

Modified files:
	usr.sbin/vmd   : parse.y priv.c vm.conf.5 vmd.c vmd.h 

Log message:
Add the option to specify an interface group per virtual switch as well;
this group will be added to all VM tap(4) interfaces in the switch.

Tested by martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/17 10:26:52

Modified files:
	.              : README 

Log message:
Mention bulk(8)
ok espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/17 11:19:08

Modified files:
	bin/ksh        : vi.c 

Log message:
Make sure the cursor goes to the first byte of a UTF-8 character
and not to a continuation byte for these commands: b B e E w W |
Let {e,E}ndword return the position after the word because that is
easier to handle in the caller.
OK tb@ czarkoff@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/17 11:44:47

Modified files:
	bin/ksh        : main.c vi.c 

Log message:
No need to inspect LC_CTYPE:
* It was only used in vi input mode.
* No functional change in case of set -o vi-show8.
* No functional change if LC_CTYPE is set to UTF-8.
* More robust for the default of LC_CTYPE=C on a UTF-8 xterm.

Behaviour changes for the combination LC_CTYPE=C with set +o vi-show8
on non-UTF-8 terminals, but that combination is useless and dangerous
with or without this patch.  If you want to edit individual raw non-ASCII
non-UTF-8 bytes on the shell command line, always use set -o vi-show8.
(Besides, i doubt that you actually want to do that; better use a real
hex editor in the first place.)

OK czarkoff@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/17 11:59:57

Modified files:
	bin/ksh        : vi.c 

Log message:
resolve code duplication in domove() for the commands: b B w W
no functional change; suggested by tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2016/10/17 12:32:34

Modified files:
	textproc/groff : Makefile 
	textproc/groff/patches: patch-tmac_doc_tmac 
Added files:
	textproc/groff/patches: patch-tmac_groff_mdoc_man 

Log message:
Pull in a patch committed upstream:
Make the behaviour of .Bl -tag without -width comprehensible
and the same as in mandoc(1).
No opposition when shown on ports@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/17 12:39:43

Modified files:
	bin/ksh        : vi.c 

Log message:
simplify implementation of the '$' command, no functional change;
OK nicm@ tb@ czarkoff@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/17 13:00:16

Modified files:
	regress/usr.bin/mandoc/mdoc/Bl: Makefile tag.in tag.out_ascii 
Added files:
	regress/usr.bin/mandoc/mdoc/Bl: tag.out_lint 

Log message:
test .Bl -tag without -width;
related to mandoc/mdoc_term.c rev. 1.231 and to textproc/groff-1.22.3p3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 13:33:38

Modified files:
	devel          : Makefile 
	devel/lualdoc  : Makefile 
	devel/lualdoc/pkg: PLIST 
	x11/awesome    : Makefile 
	x11/awesome/patches: patch-awesomeConfig_cmake 

Log message:
Stop packaging lualdoc as a library that supports lua FLAVORS.

It is a standalone tool so no need to have several versions of it.
Make it depend on lua52, since this is what x11/awesome uses.  Adapt
x11/awesome while here.

ok dcoppa@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 15:37:16

Modified files:
	devel/luaposix : Makefile 

Log message:
Fix the RUN_DEPENDS on lua-bit32

ok awolk@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 15:39:23

Modified files:
	devel/luaposix : Makefile 
	devel/luaposix/pkg: PLIST 

Log message:
Add explicit support for lua52 and lua53 FLAVORS

and move the documentation so that several flavors can be installed
concurrently.

ok awolk@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/17 15:40:22

Modified files:
	devel          : Makefile 

Log message:
+luaposix,lua52
+luaposix,lua53


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/17 18:43:57

Modified files:
	sys/arch/sparc64/sparc64: autoconf.c db_interface.c locore.s 
	                          trap.c 

Log message:
Delete remnants of "traptrace" support

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/17 20:47:07

Modified files:
	.              : Makefile 

Log message:
Swap 'make cleandir' and 'make includes' for real.
Should have been part of commitid uHRFWpwUBjIz0UuR.

Original message:

Move libcrypto, librpcsvc and gnu/usr.bin/cc/include from RDIRS to PRDIRS,
and add prereq targets, so some header files are generated by BUILDUSER
during 'make prereq' instead of by root during 'make includes'.

Switch the order of 'make cleandir' and 'make includes' during 'make build'
so we don't generate many files twice.

Except for some machine@ symlinks from ${MACHINE}/stand, /usr/obj is now
clean from files generated by root during 'make build'. Those will be
cleaned up in a second step.

help, testing & ok deraadt, input from natano, further testing rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/17 23:33:57

Modified files:
	usr.sbin/vmd   : virtio.c vm.conf.5 

Log message:
When the guest OS gets a zero MAC address on a network interface, it should
create a randomized locally administrated address.  OpenBSD as a guest OS
does this correctly but we cannot rely on it for other guests, so randomize
the MAC address in vmd(8) on the host side if it is not specified by the
user.  I incremented the prefix by one to differentiate from the ones
that are generated by OpenBSD in the kernel; fe:e1:bb:xx:xx:xx.

OK deraadt@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/18 00:14:43

Modified files:
	distrib/notes  : m4.common 

Log message:
typo fix and zap some trailing eol whitespace;
from claus assman


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/18 00:59:02

Modified files:
	devel/llvm/patches: patch-tools_clang_lib_Driver_Tools_cpp 
Added files:
	devel/llvm/patches: patch-tools_lld_COFF_CMakeLists_txt 

Log message:
Add patch from upstream to fix the build issue with CMake.

fom Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/18 01:20:17

Modified files:
	mail/cyrus-imapd: Makefile distinfo 
	mail/cyrus-imapd/patches: patch-Makefile_in patch-configure 
	                          patch-imap_mailbox_c 
	                          patch-imap_sync_client_c 
	mail/cyrus-imapd/pkg: PLIST 

Log message:
Update to cyrus-imapd-2.5.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/18 01:26:26

Modified files:
	net/py-boto    : Makefile distinfo 

Log message:
Update to py-boto-2.43.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/18 01:26:42

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.63.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/18 01:27:04

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/18 01:38:16

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

Log message:
Store the right size in the pipe offset for pipe-pane.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/18 02:39:18

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

Log message:
Zero dirty count after flushing.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/18 02:46:43

Modified files:
	usr.bin/tmux   : cmd-queue.c tmux.h 

Log message:
Give each item on queue a name for better logging.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/18 03:22:05

Modified files:
	distrib/notes  : m4.common 

Log message:
spelling:
initialising -> initializing from Claus Assmann
artitions -> partitions from spell(1)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 03:23:34

Modified files:
	graphics/openjp2: Makefile distinfo 
	graphics/openjp2/patches: patch-CMakeLists_txt 
	                          patch-src_bin_jp2_convert_c 
	                          patch-src_lib_openmj2_opj_malloc_h 
Removed files:
	graphics/openjp2/patches: patch-src_lib_openjp2_opj_malloc_h 

Log message:
update to openjp2-2.1.2 - a huge number of security fixes since 2.1.0, see
https://github.com/uclouvain/openjpeg/blob/v2.1.2/CHANGELOG.md


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 03:24:20

Modified files:
	textproc/mupdf : Makefile 
	textproc/mupdf/patches: patch-Makethird 
	                        patch-source_fitz_load-jpx_c 

Log message:
- patch mupdf to cope with openjp2 update
- use sed -i instead of SUBST_CMD for easier update-patches management


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/18 03:31:05

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
Rewrite the kern.malloc.kmemstat in the same style as previous. This one does
not overflow because the initial count includes empty slots; ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 03:40:25

Modified files:
	graphics/darktable: Makefile distinfo 
	graphics/darktable/patches: 
	                            patch-src_external_rawspeed_RawSpeed_TiffIFD_cpp 

Log message:
update to darktable-2.0.6 and switch to the version of the RawSpeed patch
that was committed upstream


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

Modified files:
	mail/postfix/snapshot: Makefile distinfo 

Log message:
update to postfix-3.2-20161008, ok brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 04:22:40

Modified files:
	mail/postfix/stable: Makefile distinfo 

Log message:
update to postfix-3.1.3, ok brad


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

Log message:
    import ports/mail/neomutt, ok stsp@
    
    This is the neomutt.org patched version of Mutt, currently based on 1.7.1,
    and includes maintained versions of various third-party patches (sidebar,
    compressed folders, etc).
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20161018
    
    N ports/mail/neomutt/Makefile
    N ports/mail/neomutt/distinfo
    N ports/mail/neomutt/patches/patch-main_c
    N ports/mail/neomutt/patches/patch-mutt_sasl_c
    N ports/mail/neomutt/patches/patch-mutt_sasl_h
    N ports/mail/neomutt/pkg/DESCR
    N ports/mail/neomutt/pkg/PLIST
    
    No conflicts created by this import

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

Modified files:
	mail           : Makefile 

Log message:
hook up neomutt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 04:51:39

Modified files:
	mail/neomutt   : Makefile 

Log message:
autoconf regen not needed


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/18 05:05:45

Modified files:
	sys/net        : rtsock.c 

Log message:
Place splsoftnet() in route_input() to shut up splassert warnings
in sorwakeup().
Report from egorenar-dev at posteo.net; OK henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/18 05:20:42

Modified files:
	sys/net        : pf.c 

Log message:
The checksum of a ICMP "need to frag" packet for TCP was wrong when
created from a ICMP6 "too big" packet.  The function pf_change_icmp_af()
has code to adjust the pseudo-header checksum in the ICMP6 case,
but pf_test_state_icmp() changed the proto before the case was
entered.
So call pf_change_icmp_af() before the pd->proto is converted in
the TCP and UDP payload case like it was already done for ICMP and
ICMP6 payload.
Found by sys/net/pf_forward regress test; OK henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/18 05:29:27

Modified files:
	sys/net        : pf.c 

Log message:
The variable dlen is always positive and d may be negative.  So
declare both with the correct sign in pf_change_icmp_af().
OK henning@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 05:33:27

Modified files:
	mail           : Makefile 
	mail/mutt      : Makefile distinfo 
	mail/mutt/patches: patch-main_c patch-mutt_sasl_c 
	mail/mutt/pkg  : DESCR PLIST 

Log message:
update the main mutt port to 1.7.1, removing flavours:

sidebar - now in the main release (if you use this and your old configuration
doesn't work, review /usr/local/share/examples/mutt/sample.muttrc-sidebar)

compressed folders - use mail/neomutt if you want this


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/18 06:38:01

Modified files:
	share/man/man9 : style.9 

Log message:
Use "continue;" instead of a bare ";" in the for() loop example
with no body.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/18 06:41:22

Modified files:
	usr.bin/ssh    : sftp.c 

Log message:
Install a signal handler for tty-generated signals and wait for the
ssh child to suspend before suspending sftp.  This lets ssh restore
the terminal mode as needed when it is suspended at the password
prompt.  OK dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/18 06:47:18

Modified files:
	lib/libc/gen   : readpassphrase.c 

Log message:
Avoid generate SIGTTOU when restoring the terminal mode.  If we get
SIGTTOU it means the process is not in the foreground process group
which, in most cases, means that the shell has taken control of the
tty.  Requiring the user the fg the process in this case doesn't
make sense and can result in both SIGTSTP and SIGTTOU being sent
which can lead to the process being suspended again immediately
after being brought into the foreground.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/18 06:51:26

Modified files:
	usr.bin/tmux   : cmd-find.c 

Log message:
Tweak a couple of log statements.


CVSROOT:	/cvs
Module name:	src
Changes by:	henning@cvs.openbsd.org	2016/10/18 07:28:01

Modified files:
	sys/net        : pf.c pfvar.h 

Log message:
split pf_send_tcp() into the part that builds the mbuf and the actual
sending, needed soon. ok sashan mikeb lteo


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/18 07:40:59

Modified files:
	sys/dev        : rnd.c 

Log message:
when openbsd.randomdata was made readonly, the proto seed copy got done
too late, leading to poor rng in the kernel early on.  a behavioural
artifact in vmm spotted the issue.
ok tedu guenther mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/18 08:13:46

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
Simplify and correct support for reproducible builds, such that database
entries come in a well-defined order even in the presence of MLINKS.
Do this by using the compar() argument of fts_open(3) rather than
trying to sort later, which missed some cases.
This also shortens the code by a few lines.

Diff from Ed Maste <emaste @ FreeBSD>, adapted to our tree
and tweaked a bit by me, final version confirmed by Ed.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/18 08:20:07

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
Fix a comment: We don't have manpath(1).  No code change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 08:28:14

Modified files:
	graphics/jpeg  : Makefile distinfo 

Log message:
update to libjpeg-turbo 1.5.1, from brad


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/18 08:41:45

Modified files:
	regress/usr.bin/mandoc/db/out: twosect.dout 

Log message:
adjust after the ordering was made well-defined in mandocdb.c rev. 1.180


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/18 08:56:17

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

Log message:
Make grid_clear_cell set up the entry properly for 256 and RGB cells.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/10/18 09:16:55

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

Log message:
SVM on AMD CPUs is not supported yet, so don't attach there; ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/18 10:50:55

Modified files:
	usr.sbin/makefs: Makefile cd9660.h 
	usr.sbin/makefs/cd9660: iso9660_rrip.h 
Added files:
	usr.sbin/makefs/cd9660: cd9660_rrip.h iso.h iso_rrip.h 
Removed files:
	usr.sbin/makefs/fs/cd9660: cd9660_rrip.h iso.h iso_rrip.h 

Log message:
Merge fs/cd9660/ into cd9660.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/10/18 10:59:02

Modified files:
	net/tor        : Makefile distinfo 

Log message:
SECURITY update to 0.2.8.9.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/18 11:03:30

Modified files:
	app/cwm        : calmwm.c calmwm.h client.c conf.c group.c 
	                 kbfunc.c mousefunc.c screen.c search.c 
	                 xevents.c 

Log message:
Refactor callbacks to take a void * so as to not try and generalize into
client_ctx in keypress and buttonpress event handlers; pass appropriate *ctx's
based on context.

While here, limit some globals, replace defines with appropriate variables and
fix some naming.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/18 11:05:31

Modified files:
	usr.sbin/makefs: Makefile msdos.c 
	usr.sbin/makefs/msdos: msdosfs_denode.c msdosfs_vfsops.c 
	                       msdosfs_vnops.c 
Added files:
	usr.sbin/makefs/msdos: bootsect.h bpb.h denode.h direntry.h 
	                       fat.h mkfs_msdos.c mkfs_msdos.h 
	                       msdosfs_conv.c msdosfs_fat.c 
	                       msdosfs_lookup.c msdosfs_unicode.c 
	                       msdosfsmount.h 
Removed files:
	usr.sbin/makefs/fs/msdosfs: bootsect.h bpb.h denode.h direntry.h 
	                            fat.h msdosfs_conv.c msdosfs_fat.c 
	                            msdosfs_lookup.c msdosfs_unicode.c 
	                            msdosfsmount.h 
	usr.sbin/makefs/newfs_msdos: mkfs_msdos.c mkfs_msdos.h 

Log message:
Merge fs/msdosfs/ and newfs_msdos/ into msdos/.


CVSROOT:	/cvs
Module name:	src
Changes by:	joris@cvs.openbsd.org	2016/10/18 11:11:43

Modified files:
	usr.bin/cvs    : status.c 

Log message:
Add the branch revision to the status output much like GNU cvs does.

OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/18 11:23:21

Modified files:
	usr.sbin/makefs: Makefile ffs.c ffs.h 
	usr.sbin/makefs/ffs: ffs_alloc.c ffs_balloc.c mkfs.c ufs_bmap.c 
Added files:
	usr.sbin/makefs/ffs: dinode.h dir.h ffs_subr.c ffs_tables.c fs.h 
	                     ufs_bswap.h 
Removed files:
	usr.sbin/makefs/ufs/ffs: ffs_subr.c ffs_tables.c fs.h 
	usr.sbin/makefs/ufs/ufs: dinode.h dir.h ufs_bswap.h 

Log message:
Merge ufs/{ufs,ffs}/ into ffs/.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/10/18 11:32:54

Modified files:
	usr.bin/ssh    : channels.c channels.h 

Log message:
Remove channel_input_port_forward_request(); the only caller was the
recently-removed SSH1 server code so it's now dead code.  ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/18 11:38:20

Modified files:
	usr.sbin/makefs: makefs.8 makefs.c 

Log message:
Remove the -B flag. Most of the byteswapping code was tedu'd already.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/18 12:00:58

Modified files:
	net/libcares   : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/libcares/patches: Tag: OPENBSD_6_0 patch-ares_create_query_c 

Log message:
backport fix for CVE-2016-5180

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/10/18 12:05:19

Modified files:
	mail/opensmtpd-extras: Makefile distinfo 

Log message:
update to latest snapshot

ok giovanni


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/10/18 12:08:41

Modified files:
	misc/insult    : Makefile distinfo 

Log message:
update to 0.4 release


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/10/18 12:10:09

Modified files:
	x11/sct        : Makefile distinfo 

Log message:
update to 0.3 release


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/18 12:13:56

Modified files:
	share/man/man9 : style.9 

Log message:
Don't tell the programmer not to put variable declarations inside
blocks.  OK guenther@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/18 12:15:23

Modified files:
	usr.sbin/makefs: makefs.8 makefs.c 

Log message:
Only allow epoch timestamps for -T. A shared option for either using the
timestamps from a file or using an epoch timestamp is ridiculous.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/18 12:34:45

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

Log message:
Remove setprogname().


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/18 12:42:08

Modified files:
	usr.sbin/makefs: Makefile 

Log message:
cleanup Makefile


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/18 12:44:47

Modified files:
	sys/arch/i386/conf: ld.script 

Log message:
put .openbsd.randomdata into rodata, since i386 can handle it


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/18 12:54:35

Modified files:
	net/libcares   : Tag: OPENBSD_5_9 Makefile 
Added files:
	net/libcares/patches: Tag: OPENBSD_5_9 patch-ares_create_query_c 

Log message:
backport fix for CVE-2016-5180

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/18 13:19:29

Modified files:
	games/frotz    : Makefile 
	games/frotz/pkg: PLIST 

Log message:
build/install the dfortz "dumb terminal" interface; from tonypony76 at mail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/18 13:25:26

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

Log message:
xterm-keys was in the wrong place in the list; Dilyan Palauzov.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/10/18 13:46:00

Modified files:
	sys/ddb        : db_examine.c 

Log message:
Add the examine /m format, "display in unsigned hex with character
dump at the end of each line", which has always been documented but
not implemented.

Mostly from NetBSD, but I fixed the column alignment code.

ok mlarkin@, pirofti@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2016/10/18 13:47:52

Modified files:
	usr.sbin/bgpd  : rde.c bgpd.conf.5 

Log message:
"Terminate the session after number prefixes have been received" means
that max-prefix 1 will close the session on the first prefix which is
off by one to what one would expect. Change it to No. received >
max-prefix, which is also in line with other implementations.
Found by jbg@ and deraadt@.
ok phessler@ deraadt@ henning@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/18 13:52:49

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

Log message:
Clear cell entry with grid_default_entry not grid_default_cell.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/18 14:07:35

Modified files:
	usr.bin/sendbug: sendbug.c 

Log message:
Use the files in /var/db/acpi instead of trying to run acpidump.

ok brynet@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/18 15:06:52

Modified files:
	usr.bin/cvs    : diff3.c 
	usr.bin/diff3  : diff3prog.c 
	usr.bin/rcs    : diff3.c 

Log message:
Using bitwise OR along with two assignments in the conditional of
a while() loop is a trap for the unwary programmer (albeit a clever
trap).  Break this up into two separate assignments and using boolean
OR for clarity.  OK otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/18 15:57:19

Modified files:
	usr.sbin/ntpd  : constraint.c 

Log message:
Save the constraint process pid by getting the start_child() return value,
this should fix the problem with random ntpd(8) deaths.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/18 16:05:47

Modified files:
	usr.sbin/ntpd  : constraint.c 

Log message:
Check for EAGAIN on imsg_flush() return otherwise we might be failing
to send message to the child process. Do like we learned in httpd(8).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/18 16:26:20

Modified files:
	usr.bin/mandoc : dbm.c 

Log message:
The termination condition of the iteration logic in page_bymacro()
was overzealous.  Consequently, macro=substr and macro~regexp searches
only returned all pages containing the first matching macro value,
rather than all pages containing any of the matching macro values.
Bug reported by tb@ - thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	visa@cvs.openbsd.org	2016/10/18 19:07:32

Modified files:
	lang/gcc/4.9   : Makefile distinfo 

Log message:
regen mips64 adastrap

ok pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/18 19:32:26

Modified files:
	gnu/gcc/gcc    : c-decl.c 

Log message:
Don't warn about shadowing a global function unless the local
variable or parameter is a pointer to a function.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/18 19:34:47

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

Log message:
struct process has a pointer to the vmspace now, so simplify the ASID search

ok deraadt@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/10/18 19:46:15

Modified files:
	www/kcgi       : Makefile distinfo 
	www/kcgi/pkg   : PLIST 

Log message:
Update kcgi to 0.9.1

Now required GNU make for portability and introduces a new kutil_log(3)
interface.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/18 20:05:49

Modified files:
	sys/net        : if.c 

Log message:
Remove the if_input task from the correct taskq.

ok bluhm henning


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/18 23:31:25

Modified files:
	share/man/man5 : mk.conf.5 

Log message:
GLOBAL_AUTOCONF_CACHE is the name of a file, not 'yes'.  Leftover
from KERBEROS5 removal, spotted by Raf Czlonka.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/18 23:50:54

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

Log message:
note that SO_REUSEADDR is restricted to callers with the same uid or root;
while there, super-user -> superuser for internal consistency;

diff from kirill miazine, tweaked by myself;
ok deraadt millert guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/10/19 01:03:11

Modified files:
	sysutils/py-elasticsearch-curator: Makefile distinfo 

Log message:
Small bugfix release, however, bug doesn't affect us on OpenBSD


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/19 01:47:22

Log message:
    Import libretro-pcsx-rearmed-22.
    
    libretro-pcsx_rearmed provides a Sony PlayStation emulation core to the
    RetroArch emulator frontend, based on PCSX ReARMed.
    
    It is yet another PCSX fork based on the PCSX-Reloaded project, which itself
    contains code from PCSX, PCSX-df and PCSX-Revolution.
    
    ok fcambus@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20161019
    
    N ports/emulators/libretro-pcsx-rearmed/Makefile
    N ports/emulators/libretro-pcsx-rearmed/distinfo
    N ports/emulators/libretro-pcsx-rearmed/patches/patch-Makefile
    N ports/emulators/libretro-pcsx-rearmed/patches/patch-Makefile_libretro
    N ports/emulators/libretro-pcsx-rearmed/pkg/PLIST
    N ports/emulators/libretro-pcsx-rearmed/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/10/19 01:48:01

Modified files:
	emulators      : Makefile 

Log message:
+libretro-pcsx-rearmed


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/19 02:17:11

Modified files:
	usr.bin/tmux   : cmd-new-session.c session.c 

Log message:
Move session-create hook out of session_create so it works with grouped sessions.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/19 02:23:38

Modified files:
	sys/arch/mips64/mips64: trap.c 
	sys/arch/alpha/alpha: process_machdep.c 

Log message:
The first argument to process_domem() and its uio_procp should be curproc

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/19 02:28:20

Modified files:
	sys/kern       : sys_process.c 
	sys/uvm        : uvm_pmap.h 
	sys/arch/arm/arm: pmap.c pmap7.c 
	sys/arch/hppa/hppa: pmap.c 
	sys/arch/m88k/m88k: pmap.c 
	sys/arch/mips64/mips64: pmap.c trap.c 
	sys/arch/powerpc/powerpc: pmap.c 
	sys/arch/sh/sh : pmap.c 

Log message:
Change pmap_proc_iflush() to take a process instead of a proc
powerpc: rename second argument of pmap_proc_iflush() to match other archs

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/19 02:31:33

Modified files:
	sys/arch/hppa/hppa: trap.c 
	sys/arch/m88k/m88k: trap.c 
	sys/kern       : sys_process.c 
	sys/sys        : ptrace.h 

Log message:
Change process_{domem,auxv_offset}() to take a process instead of a proc.
Make process_auxv_offset() take and release a reference of the vmspace like
process_domem() does.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/19 02:34:53

Modified files:
	sys/net        : switchofp.c 

Log message:
Lets just be safe and check M_PREPEND return values for functions that
madj() and injects back the layer 2/3 contents.

ok lteo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/19 02:44:06

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

Log message:
Update to py-botocore-1.4.64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/19 02:44:22

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/19 03:22:07

Modified files:
	usr.bin/tmux   : alerts.c server-client.c session.c tmux.h 
	                 window.c 

Log message:
Alerts are too slow, so rather than walking all sessions and windows,
add a link of winlinks to each window and a pointer to the session to
each winlink. Also rewrite the alerts processing to return to the old
behaviour (alert in any window sets the flag on any winlink).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/19 03:24:57

Modified files:
	usr.bin/tmux   : key-bindings.c 

Log message:
Do not have a default binding for C-b in copy-mode-vi or it conflicts
with the default prefix. Reported by natano@.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/10/19 04:06:30

Modified files:
	usr.sbin/smtpd : smtpd.8 

Log message:
document -F which somehow escaped documentation


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/19 07:30:16

Modified files:
	graphics/py-Pillow: Makefile distinfo 

Log message:
update to py-Pillow-3.4.2


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/19 07:37:18

Modified files:
	regress/sys/netinet/pmtu: Makefile README 

Log message:
Do not change routes during test run, but expect that everything
is setup correctly before.  Use make check-setup to verify that.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/19 08:06:07

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

Log message:
add -F to usage() too;


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/19 08:15:07

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

Log message:
Only force iwm's firmware to use RTS for all frames if the AP requires it.
RTS is still used when sending long frames regardless of this change.
Tested by myself and Jan Stary.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/19 08:30:37

Modified files:
	benchmarks/netpipe: Makefile distinfo 
	benchmarks/netpipe/pkg: PLIST 
Removed files:
	benchmarks/netpipe/patches: patch-netpipe_h 

Log message:
Update to netpipe-3.7.2 + general port cleanup

New HOMEPAGE and MASTER_SITES, add license marker and install the new
NPtcp6 program.

Tweaked diff from Rafael Sadowski.

Warning: some cli options have changed (-r).


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/19 08:31:19

Modified files:
	regress/sys/net/pf_forward: Makefile 
	regress/sys/net/pf_fragment: Makefile 
	regress/sys/netinet/arp: Makefile 
	regress/sys/netinet/pmtu: Makefile 
	regress/sys/netinet6/frag6: Makefile 
	regress/sys/netinet6/nd6: Makefile 
	regress/sys/netinet6/rh0: Makefile 

Log message:
The clean:, cleandir:, and obj: targets of src/Makefile descend into
regress/ and run python to set the IMPORT_PYTHON variable in several
test Makefiles. This results in W^X violations during 'make build'.
Avoid doing that.

ok bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/19 10:09:24

Modified files:
	lib/libc/gen   : syslog_r.c 

Log message:
Use the reentrant strerror_r() instead of strerror() to expand %m.
Previously, syslog_r() would avoid calling strerror() since the latter
is not reentrant.  OK bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/19 10:26:16

Modified files:
	lib/libc/string: strerror_r.c 

Log message:
Remove the save_errno dance inside strerror_r(3).  It is from the
time when we had national language support.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/10/19 10:38:40

Modified files:
	lib/libssl     : s3_clnt.c s3_lib.c s3_srvr.c ssl_ciph.c 
	                 ssl_lib.c ssl_locl.h t1_lib.c 

Log message:
Remove support for fixed ECDH cipher suites - these is not widely supported
and more importantly they do not provide PFS (if you want to use ECDH, use
ECDHE instead).

With input from guenther@.

ok deraadt@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/19 10:39:02

Modified files:
	usr.sbin/config: ukc.c 

Log message:
There used to be disabled code that used /dev/tty to determine the
terminal size. That code was removed a while ago, and now there is
no longer any reason to open /dev/tty right before exiting init().

ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/19 10:39:50

Log message:
    Add a test suite for pf state handling.  It needs a remote machine
    to exchange packets, the remote kernel is tested.  For now it only
    contains a challenge ack test written by sashan@.
    OK sashan@
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20161019
    
    N src/regress/sys/net/pf_state/challenge_ack.py
    N src/regress/sys/net/pf_state/LICENSE
    N src/regress/sys/net/pf_state/Makefile
    N src/regress/sys/net/pf_state/pf.conf
    N src/regress/sys/net/pf_state/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/10/19 10:39:55

Modified files:
	regress/lib/libssl/client: clienttest.c 

Log message:
Update client hello messages to follow the removal of fixed ECDH.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/19 10:43:02

Modified files:
	regress/sys/net: Makefile 

Log message:
Link pf_state test to build.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/19 10:48:00

Modified files:
	usr.sbin       : Makefile 

Log message:
enable makefs


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/19 10:48:34

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/10/19 10:49:11

Modified files:
	lib/libcrypto/dsa: dsa_ameth.c 
	lib/libcrypto/ec: ec_ameth.c 
	lib/libcrypto/err: err_all.c 
	lib/libcrypto/gost: gostr341001_ameth.c gostr341001_pmeth.c 
	lib/libcrypto/pem: pem_lib.c 
	lib/libcrypto/rsa: rsa_ameth.c rsa_pmeth.c 

Log message:
unifdef OPENSSL_NO_CMS


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/19 10:49:58

Modified files:
	distrib/amd64/ramdiskA: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
Added files:
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
Removed files:
	distrib/amd64/common: Makefile.inc 

Log message:
Unshare Makefile.inc so we can determine how to squeeze makefs
into the picture.
ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/19 11:21:14

Modified files:
	distrib/amd64/ramdiskA: Makefile.inc 

Log message:
Inline IMAGE, CBIN, CRUNCHCONF and XNAME.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/19 11:45:39

Modified files:
	distrib/amd64/ramdisk_cd: Makefile Makefile.inc 

Log message:
Inline IMAGE, CBIN, CRUNCHCONF and XNAME.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/19 12:20:26

Modified files:
	bin/cat        : cat.c 
	bin/chmod      : chmod.c 
	bin/date       : date.c 
	bin/expr       : expr.c 
	bin/mkdir      : mkdir.c 
	bin/rmdir      : rmdir.c 

Log message:
Delete useless setlocale(3) in src/bin/.
Minor cleanup while here: return from main, static void __dead usage, etc.
Based on a patch from Jan Stary <hans at stare dot cz>.
Feedback and OK tb@, OK millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/19 12:34:05

Modified files:
	bin/ps         : ps.1 

Log message:
Make the description of COLUMNS a bit more readable.
Triggered by a different patch from Michal Mazurek.
Joint work by tb@, jmc@, and tedu@, but no one ever committed it.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/19 16:17:41

Modified files:
	usr.bin/mandoc : man.1 

Log message:
Avoid the confusion that -a might require a section argument; it does not.
Triggered by a question from <jmates at ee dot washington at edu>.
OK jmc@.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/10/19 17:21:56

Modified files:
	usr.bin/ssh    : mux.c 

Log message:
When tearing down ControlMaster connecctions, don't pollute stderr when
LogLevel=quiet.  Patch from Tim Kuijsten via tech@.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/10/19 23:29:55

Modified files:
	usr.bin/sndiod : dsp.c dsp.h 

Log message:
remove unused variables


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/19 23:38:41

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
Also place canaries in > page sized objects (if C is in effect); ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/10/19 23:48:50

Modified files:
	usr.bin/sndiod : sndiod.c 

Log message:
Move initialization of the helper process in its own routine to make
code more readable. No bahavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/19 23:49:59

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
canary corruption message changed a bit


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/20 01:14:44

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
optarg is declared in unistd.h and usage is __dead. From Jan Stary.

ok natano


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/20 01:23:23

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-131.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/20 02:03:15

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
avoid sentence splicing;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/20 04:24:40

Modified files:
	sbin/mknod     : mknod.c 

Log message:
delete useless call to setlocale(3);
patch from Jan Stary <hans at stare dot cz>;
OK millert@ natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/20 04:49:23

Modified files:
	mail/s-nail    : Makefile distinfo 
	mail/s-nail/patches: patch-nail_rc 

Log message:
update to s-nail 14.8.12

While at it switch from libedit to s-nail's own line editing function to
avoid bugs with non-ASCII input in various places.  (Changing setlocale
call in main.c to use LC_CTYPE solves most of them, but some remain, eg.
saving attachments with non-ASCII names.)

With this commit I take maintainership from william@

OK william@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/20 05:29:34

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
backout for now; flag combination GC is not ok


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/20 05:36:12

Modified files:
	security/letsencrypt/py-acme: Makefile 

Log message:
re-add py-ndg-httpsclient RDEP, accidentally removed when testing something earlier


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/20 07:43:32

Modified files:
	.              : stable.html 
	faq            : faq5.html 

Log message:
add release markers: update details of the build process for 6.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/20 10:12:14

Modified files:
	usr.bin/mandoc : dbm_map.c 

Log message:
st_size is off_t, which is signed, so use %lld rather than %llu;
noticed by Ed Maste when compiling on FreeBSD


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/20 10:19:11

Modified files:
	net/haproxy/patches: patch-Makefile 

Log message:
Patch has been (finally, yay) committed upstream


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/20 10:24:20

Modified files:
	faq/ports      : ports.html 

Log message:
bump release marker from 6.0 to 6.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/20 10:29:13

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
0x%llu is a bad idea, make that 0x%llx;
noticed while investigating a report from Ed Maste


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/20 10:31:37

Modified files:
	regress/sys/net/pf_state: Makefile challenge_ack.py 

Log message:
Make the test faster.  Move all the packet matching code into the
pcap filter.  That means the first packet sniffed is the correct
one.  In the success case, we can stop without waiting for a timeout.
OK sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/20 11:25:51

Modified files:
	regress/sys/net/pf_forward: ping6_mtu.py 

Log message:
Replace fork() and sleep() with a Python thread for sniffing packets.
This reduces test execution time from 1m20.34s to 0m37.32s.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/20 11:26:16

Modified files:
	share/zoneinfo/datfiles: asia australasia europe northamerica 

Log message:
Update to tzdata2016h from from ftp.iana.org.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/20 11:28:52

Modified files:
	multimedia/mpv : Makefile distinfo 
Added files:
	multimedia/mpv/patches: patch-video_out_opengl_context_c 
	                        patch-wscript 

Log message:
update to mpv 0.21.0

Two patches that are added in this commit are already upstreamed, so they
should be removed with next update.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/20 12:03:35

Modified files:
	build/openssh  : releases.pl 
	openssh        : releasenotes.html 

Log message:
Make portable releases separate anchors so that #N.Mp1 anchors always work.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/20 12:17:04

Modified files:
	regress/sys/net/pf_fragment: frag.py frag6.py frag6_cutnew.py 
	                             frag6_cutold.py frag6_dropnew.py 
	                             frag6_dropold.py frag6_ext.py 
	                             frag_cutnew.py frag_cutold.py 
	                             frag_dropnew.py frag_dropold.py 
	                             ping6_mtu_1300.py 

Log message:
Replace fork() and sleep() with a Python thread for sniffing packets.
This reduces test execution time from 2m21.95s to 1m09.80s.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/10/20 12:34:17

Modified files:
	sbin/ping      : ping.c 

Log message:
Only drop to _ping user if invoked as root. If invoked as an
unprivileged user just shed the setuid privs as previously.

sthen@ pointed out that you cannot kill(2) your own ping.
With this we rely on pledge(2) for unprivileged users.

OK sthen@, deraadt@ is happy with the middle ground


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/20 13:16:05

Modified files:
	regress/sys/net/pf_forward: ping6_mtu.py 
	regress/sys/net/pf_fragment: frag.py frag6.py frag6_cutnew.py 
	                             frag6_cutold.py frag6_dropnew.py 
	                             frag6_dropold.py frag6_ext.py 
	                             frag_cutnew.py frag_cutold.py 
	                             frag_dropnew.py frag_dropold.py 
	                             ping6_mtu_1300.py 
	regress/sys/net/pf_state: challenge_ack.py 

Log message:
By removing all the sleeps I created a race in the pf tests.  The
packet was sent and its reply received before the sniffer was up
and running.  So sleep a second after starting the sniffer thread
but before sending the packet.  With pf_forward 0m51.54s, pf_fragment
1m33.59s, pf_state 0m03.64s the test are still faster than with
forking.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/20 13:44:09

Modified files:
	usr.sbin/vmd   : vm.conf.5 

Log message:
some readability fixes for the SWITCH CONFIGURATION section,
from edd barrett;

while here, there seems to be three sections to the config file, not two;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/20 13:55:30

Modified files:
	usr.sbin/switchd: switchd.8 switchd.conf.5 
	usr.sbin/switchctl: switchctl.8 

Log message:
spread the Xr! as a bonus, typo fix in switchd.conf.5 too;
Xr diff from kapetanakis giannis


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/20 14:00:01

Modified files:
	usr.sbin/traceroute: traceroute.8 

Log message:
try to make DESCRIPTION read like it was written for one program, not two;
ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/20 14:15:09

Modified files:
	usr.sbin/traceroute: traceroute.8 

Log message:
some macro fixes for the options list;


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/10/20 14:23:49

Modified files:
	net/tor        : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/tor/patches: Tag: OPENBSD_6_0 patch-src_or_buffers_c 

Log message:
SECURITY fix for CVE-2016-8860.

ok danj@ robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/10/20 14:25:19

Modified files:
	www/kcaldav    : Makefile 
Added files:
	www/kcaldav/patches: patch-delete_c patch-dynamic_c patch-get_c 
	                     patch-options_c patch-principal_c 
	                     patch-property_c patch-propfind_c 
	                     patch-proppatch_c patch-put_c 
	                     patch-resource_c patch-util_c 

Log message:
Make kcaldav compile again after recent update to kcgi

Patches to be submitted upstream and can be removed next release.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/20 15:05:59

Modified files:
	regress/sys/net/pf_forward: ping6_mtu.py ping_mtu.py 
	regress/sys/net/pf_fragment: ping6_mtu_1300.py ping_mtu_1300.py 

Log message:
During sniffing filter strictly on icmp6 "packet too big" to avoid
that "neighbor discovery" confuses the test.


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/10/20 15:09:46

Modified files:
	libexec/spamd  : grey.c sync.c 

Log message:
- Remove useless var assignment
- Use memset(*b, 0, len) instead of bzero(*b, len)
- Use memcpy(*dst, *src, len) instead of bcopy(*src, *dst, len)
- Use explicit_bzero(3) instead of bzero(3) to clean temporary HMAC

Remarks from deraadt@ (duly noted!!), reviewed and OK by henning@ and tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/20 15:12:38

Modified files:
	x11/xfe        : Makefile 
	x11/xfe/patches: patch-src_SearchWindow_cpp 

Log message:
fix "seach window"


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2016/10/20 17:18:43

Modified files:
	sys/net        : pf.c 

Log message:
- PF should send a challenge ACK as response to SYN, which matches existing
state. Extra thanks goes to bluhm@ for careful testing and fixing patch I've
sent to tech@

O.K. henning@ bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2016/10/20 18:45:43

Modified files:
	infrastructure/lib/DPB: Engine.pm State.pm User.pm 
	infrastructure/lib/DPB/Heuristics: Size.pm 

Log message:
dpb cleans the permanent logs, always using the same pattern,
so write a method for that.

And don't fail silently when it doesn't work, because that causes
trouble down the line.

(e.g., your log user must be able to write into build-stats!!!)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/20 23:38:53

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

Log message:
mitigate against mpii device attachment racing with mountroot

mpii devices get attached by processing sas discovery events after
threads are running, but if you have a lean (in terms of devices)
and fast machine, these events might run after mountroot.

this change has mpii use config_pending_incr() before it attaches
scsibus, and runs config_pending_decr() after the first scan of the
bus is complete.

to make sure config_pending_decr() is run after the scsi attach/detach
events are processed, the MPII_EVENT_SAS_DISCOVERY events are
deferred to the same context that the MPII_EVENT_SAS_TOPOLOGY_CHANGE_LIST
events run in.

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/21 00:20:59

Modified files:
	sys/arch/i386/conf: GENERIC Makefile.i386 files.i386 
	sys/arch/i386/i386: conf.c cpu.c ipifuncs.c machdep.c mainbus.c 
	                    pmap.c pmapae.c 
	sys/arch/i386/include: cpu.h intrdefs.h pmap.h pte.h 
	                       specialreg.h 
Added files:
	sys/arch/i386/i386: vmm.c vmm_support.S 
	sys/arch/i386/include: vmmvar.h 

Log message:
vmm(4) for i386. Userland changes forthcoming. Note that for the time being,
i386 hosts are limited to running only i386 guests, even if the underlying
hardware supports amd64. This is a restriction I hope to lift moving forward,
but for now please don't report problems running amd64 guests on i386 hosts.

This was a straightforward port of the in-tree amd64 code plus the old rotted
tree I had from last year for i386 support. Changes included converting 64-bit
VMREAD/VMWRITE ops to 2x32-bit ops, and fixing treatment of the TSS, which
differs on i386.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/21 00:27:50

Modified files:
	sys/conf       : files 
	sys/kern       : init_main.c 
	sys/sys        : srp.h 
Added files:
	sys/kern       : subr_percpu.c 
	sys/sys        : percpu.h 

Log message:
add generalised access to per cpu data structures and counters.

both the cpumem and counters api simply allocates memory for each cpu in
the system that can be used for arbitrary per cpu data (via cpumem), or
a versioned set of counters per cpu (counters).

there is an alternate backend for uniprocessor systems that basically
turns the percpu data access into an immediate access to a single
allocation.

there is also support for percpu data structures that are available at
boot time by providing an allocation for the boot cpu. after autoconf,
these allocations have to be resized to provide for all cpus that were
enumerated by boot.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/21 00:29:10

Modified files:
	share/man/man4/man4.i386: Makefile 
Added files:
	share/man/man4/man4.i386: vmm.4 

Log message:
man pages for vmm(4) i386


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/21 00:41:52

Modified files:
	sys/kern       : subr_percpu.c 

Log message:
consistently zero the allocated memory in both the MP and UP cases.

from markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/21 00:55:09

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
and recommit with fixed GC


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/21 00:56:38

Modified files:
	sys/arch/i386/include: conf.h 
	sys/kern       : kern_pledge.c 

Log message:
pledge changes needed to support pledging vmd(8) on i386, forthcoming.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/21 01:12:06

Modified files:
	share/man/man4/man4.i386: vmm.4 

Log message:
add openbsd id;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/21 01:42:17

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

Log message:
Add missing information about the handling of input, output, and
character encoding, clarify the description of table mode, and say
that columns are filled before rows by default.
Feedback an OK jmc@, OK martijn@.


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/10/21 01:55:48

Modified files:
	sys/arch/octeon/dev: octeon_pcibus.c 

Log message:
Fix build: declare the pcie read/write routines before using them.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/21 01:57:29

Modified files:
	share/man/man9 : Makefile 
Added files:
	share/man/man9 : cpumem_get.9 

Log message:
first cut at a man page for cpumem


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/21 02:28:10

Modified files:
	devel/ctftools : Makefile 
Added files:
	devel/ctftools/patches: 
	                        patch-cddl_contrib_opensolaris_tools_ctf_cvt_ctfmerge_c 
	                        patch-cddl_contrib_opensolaris_tools_ctf_cvt_dwarf_c 
	                        patch-cddl_lib_libctf_Makefile 
	                        patch-cddl_usr_bin_ctfconvert_Makefile 
	                        patch-cddl_usr_bin_ctfdump_Makefile 
	                        patch-cddl_usr_bin_ctfmerge_Makefile 
Removed files:
	devel/ctftools/patches: 
	                        patch-contrib_opensolaris_tools_ctf_cvt_ctfmerge_c 
	                        patch-contrib_opensolaris_tools_ctf_cvt_dwarf_c 
	                        patch-lib_libctf_Makefile 
	                        patch-usr_bin_ctfconvert_Makefile 
	                        patch-usr_bin_ctfdump_Makefile 
	                        patch-usr_bin_ctfmerge_Makefile 

Log message:
More WRKDIST one level up, to allow patching in sys/

"go for it" jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/21 02:29:01

Modified files:
	devel/ctftools : Makefile 
Added files:
	devel/ctftools/patches: 
	                        patch-sys_cddl_contrib_opensolaris_uts_common_sys_isa_defs_h 

Log message:
Fix build on sparc64

"got for it" jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/21 02:29:34

Modified files:
	share/man/man9 : cpumem_get.9 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/21 03:26:36

Modified files:
	usr.sbin/traceroute: traceroute.8 

Log message:
some text cleanup and remove an irrelevant note; ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/21 03:35:27

Modified files:
	usr.sbin/makefs/ffs: mkfs.c 

Log message:
whitespace; no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/21 03:38:07

Modified files:
	share/man/man9 : cpumem_get.9 

Log message:
provos didnt write any of this


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/21 03:38:31

Modified files:
	usr.sbin/makefs/ffs: mkfs.c 

Log message:
Remove the superfluous 'sbsize' variable & s/sbsize/SBLOCKSIZE/.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/21 03:43:50

Modified files:
	usr.sbin/makefs/ffs: mkfs.c 

Log message:
Use the superblock passed to ffs_write_superblock() instead of referring
to the global 'sblock' variable for some operations.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/21 03:45:38

Modified files:
	astro/ansiweather: Makefile distinfo 

Log message:
Update ansiweather to 1.09.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	czarkoff@cvs.openbsd.org	2016/10/21 03:48:48

Modified files:
	app/video      : video.c 

Log message:
add NetWM-compliant fullscreen support

OK jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/21 04:15:40

Modified files:
	share/man/man9 : Makefile 
Added files:
	share/man/man9 : counters_alloc.9 

Log message:
first stab at describing the per cpu counters api


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/10/21 05:34:48

Modified files:
	usr.sbin/dhcpd : sync.c 

Log message:
- Use memset(*b, 0, len) instead of bzero(*b, len)
- Use explicit_bzero(3) instead of bzero(3) to clean temporary HMAC

OK krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/10/21 06:36:19

Modified files:
	sys/arch/octeon/dev: octeon_pcibus.c 

Log message:
Revert previous commit.

I was building in the wrong tree and got confused. Sorry!


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/10/21 06:36:29

Modified files:
	security/lynis : Makefile distinfo 
	security/lynis/pkg: PLIST 

Log message:
Upgrade for Lynis to 2.3.4:

https://cisofy.com/changelog/lynis/2.3.4/

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/21 06:39:13

Modified files:
	share/man/man9 : counters_alloc.9 cpumem_get.9 

Log message:
more tweaks; ok dlg


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/21 06:51:55

Modified files:
	devel/ctftools : Makefile 
	devel/ctftools/patches: patch-cddl_lib_libctf_Makefile 
	                        patch-cddl_usr_bin_ctfconvert_Makefile 
	                        patch-cddl_usr_bin_ctfdump_Makefile 
	                        patch-cddl_usr_bin_ctfmerge_Makefile 

Log message:
/usr/local -> ${LOCALBASE}

No objection from jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/10/21 06:53:03

Modified files:
	www/tomcat/v6  : Makefile distinfo 
	www/tomcat/v6/pkg: PLIST-examples 
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/pkg: PLIST-examples 

Log message:
Updates:

- Tomcat 6.0.47
- Tomcat 8.5.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	visa@cvs.openbsd.org	2016/10/21 07:13:31

Modified files:
	devel/gdb/patches: patch-gdb_mips64obsd-nat_c 

Log message:
Fix build on mips64. Part of the source is now built using c++ which
rejects implicit casts from type void *.

ok pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/21 07:51:59

Modified files:
	usr.bin/tmux   : cmd.c key-bindings.c tmux.1 

Log message:
Add %%% to substitute with quotes escaped (convert " to \"). Use this
for the prompts in copy mode. Fixes problems with jumping to ' reported
by Theo Buehler.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/21 08:52:27

Modified files:
	net/librenms   : Makefile distinfo 

Log message:
security update to librenms-201609.01
https://github.com/librenms/librenms/pull/4807


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/21 09:00:30

Modified files:
	share/man/man9 : cpumem_get.9 

Log message:
Add missing dot at beginning of macro line.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/21 09:06:14

Modified files:
	sys/arch/octeon/dev: cn30xxgmx.c 

Log message:
Fix grammar, and simplify a little.

Pointed out by pirofti@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/21 09:15:08

Modified files:
	sys/arch/octeon/dev: cn30xxgmx.c 

Log message:
Check if memory allocation failed.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/21 09:39:31

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
fix some void * arithmetic by casting


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/21 09:53:09

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/21 10:12:38

Modified files:
	usr.bin/make   : arch.c compat.c cond.c dir.c direxpand.c dump.c 
	                 engine.c lowparse.c main.c make.c parse.c 
	                 suff.c targ.c targequiv.c 

Log message:
small obvious cleanups:
- remove a lot of unnecessary casts
- zap extra param that's no longer needed
- add proper prototype and make function static

okay natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/21 10:57:53

Modified files:
	sys/arch/i386/i386: ipifuncs.c vmm.c 

Log message:
Fix MP builds including vmm
ok mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/21 11:03:02

Modified files:
	distrib/sets/lists/base: md.i386 
	distrib/sets/lists/comp: md.i386 mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/21 11:49:25

Log message:
    Import textproc/lua-cosmo.
    
    Cosmo is a "safe templates" engine. It allows you to fill nested templates,
    providing many of the advantages of Turing-complete template engines,
    without the downside of allowing arbitrary code in the templates.
    
    OK jca@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161021
    
    N ports/textproc/lua-cosmo/Makefile
    N ports/textproc/lua-cosmo/distinfo
    N ports/textproc/lua-cosmo/pkg/PLIST
    N ports/textproc/lua-cosmo/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/21 11:52:09

Modified files:
	textproc       : Makefile 

Log message:
Add lua-cosmo.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/21 14:02:42

Modified files:
	build/mirrors  : openssh-ftp.html.head 
	                 openssh-portable.html.head 
	openssh        : donations.html features.html ftp.html 
	                 goals.html history.html index.html legacy.html 
	                 list.html manual.html openbsd.html 
	                 portable.html press.html report.html 
	                 security.html specs.html users.html 

Log message:
Add rel=canonical links pointing to https://www.openssh.com.  ok tb@ tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/21 14:03:57

Modified files:
	sys/arch/armv7/sunxi: sunxireg.h sxitimer.c 

Log message:
Run timers from the 24MHz; it seems the A10s doesn't have a reliable 32kHz
clock.  Fixes the clock on the Olimux A10s OLinuXino-Micro board.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/21 14:09:49

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

Log message:
Outsource simplebus softc definition so that it can be used by
simplebus compatible bus drivers.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/21 14:11:36

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/marvell: files.marvell 
Added files:
	sys/arch/armv7/marvell: mvmbus.c mvmbusvar.h 

Log message:
Implement a driver for Marvell's Mbus bridge.  This is the component
that lets e.g. the CPU access a USB controller or the USB controller
access the system's RAM.  The bridge needs to be configured for the
devices before we can access the controller or a controller our memory.

Since it otherwise acts like a simplebus, simply attach simplebus once
we are finished.

"looks good to me" kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/21 14:35:10

Modified files:
	build/openssh  : releasenotes.html.head 
	openssh        : releasenotes.html 

Log message:
Add rel=canonical to releasenotes page.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/10/21 15:15:58

Modified files:
	editors/zile   : Makefile distinfo 

Log message:
Update for Zile to 2.4.12


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/21 15:42:57

Modified files:
	.              : errata58.html 

Log message:
fix a typo; from sergey bronnikov


CVSROOT:	/cvs
Module name:	src
Changes by:	joris@cvs.openbsd.org	2016/10/21 15:47:03

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

Log message:
Add support for the ACPI timer opcode.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/21 16:12:38

Modified files:
	sys/net        : switchofp.c 

Log message:
tag large constants as ULL to fix the build of switch(4) on ILP32 archs

ok jca@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/21 16:34:00

Modified files:
	sys/arch/armv7/imx: if_fec.c 

Log message:
Stop setting MIIF_AUTOTSLEEP in fec(4)

This can lead to tsleep in an interrupt context, which resulted in the
following panic:

kernel diagnostic assertion "p->p_wchan == NULL" failed: file
"/usr/src/sys/kern/kern_sched.c", line 333

TID   PPID   PGRP    UID  S       FLAGS  WAIT          COMMAND
86009      0      0      0  2  0x40014200  miiaut        idle0

Reported by matthieu@ with sabre lite, analysis by guenther@
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/21 20:09:14

Modified files:
	sys/kern       : kern_exec.c 

Log message:
Delete dead copy of pr->ps_vmspace; uvmspace_exec() can change it anyway

ok kettenis@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/21 20:55:36

Modified files:
	sys/kern       : kern_fork.c 

Log message:
Adjust allocpid() to take into account lastpid

ok jsing@ kettensi@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/21 21:34:32

Modified files:
	usr.sbin/ypldap: aldap.c 

Log message:
Fix copy-pasto in comment; from Rob Pierce (rob (at) 2keys.ca)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/21 21:37:13

Modified files:
	usr.sbin/ypldap: aldap.c 

Log message:
string terminators are called NUL, not NULL


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/21 22:39:18

Modified files:
	sys/kern       : kern_sysctl.c 

Log message:
Factor out pr->ps_vmspace into a local variable for fill_kproc()

ok jsing@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 04:03:52

Modified files:
	usr.sbin/makefs/ffs: mkfs.c 

Log message:
Avoid writing pointers to the disk (image).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/22 04:08:31

Modified files:
	usr.bin/mandoc : dbm_map.c mandocdb.c 

Log message:
cast off_t and uint64_t for printf(3)
to make sure that widths match on all platforms;
from Ed Maste <emaste at freebsd dot org>;
OK guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 04:13:08

Modified files:
	usr.sbin/makefs: ffs.c 

Log message:
Use deterministic pseudo-random numbers when the -T flag is used; for
repeatable builds.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 04:43:08

Modified files:
	usr.sbin/makefs/ffs: mkfs.c 

Log message:
Remove unused code for 4.3BSD format filesystems.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/22 05:00:02

Modified files:
	sys/arch/armv7/sunxi: sxie.c 

Log message:
Stop setting MIIF_AUTOTSLEEP in sxie(4)

This can lead to tsleep in an interrupt context.
Tested by and ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/22 06:26:46

Modified files:
	graphics/imv   : Makefile distinfo 

Log message:
update to imv-2.1.3


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/22 08:27:19

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
- fix MALLOC_STATS compile
- redundant cast is redundant


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/22 09:16:25

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi sunxi.c sxitimer.c 

Log message:
Attach sxitimer(4) using the fdt.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 10:51:52

Modified files:
	usr.sbin/makefs: ffs.c ffs.h 
	usr.sbin/makefs/ffs: ffs_alloc.c ffs_balloc.c ffs_subr.c 
	                     ffs_tables.c mkfs.c ufs_bmap.c 
Removed files:
	usr.sbin/makefs/ffs: dinode.h dir.h fs.h 

Log message:
Include our own <ufs/ufs/dinode.h>, <ufs/ufs/dir.h> and <ufs/ffs/fs.h>
header files instead of relying on copies of NetBSD's headers. This
required some changes in the .c files, due to renamed fields, functions
and preprocessor macros. Also pull in our own ffs_tables.c. As a bonus
this diff gets rid of layout compatibility issues in the superblock
(position of the fs_flags field).


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 11:15:28

Modified files:
	usr.sbin/makefs: ffs.c 
	usr.sbin/makefs/ffs: ffs_extern.h ffs_subr.c 

Log message:
s/panic/errx/  This is userland.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/22 11:30:35

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

Log message:
untarring src.tar.gz as root and then trying to cvs up it as a wsrc user
obviously won't work, so adjust instructions to use wsrc from the start.
tweak some wording while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/22 11:31:44

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_modules_extras_packaging_os_openbsd_pkg_py 

Log message:
sync with upstream git master, fixes package installation issues

reported by semarie
ok danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/10/22 11:48:41

Modified files:
	sys/arch/arm/arm: fault.c pmap7.c 
	sys/arch/arm/include: frame.h 

Log message:
If an Access Flag fault happens while we were running the kernel and
it happened on a kernel page, we need to consult the kernel pmap
instead of the current proc's pmap.  Fixes panic when using tmpfs.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 12:17:14

Modified files:
	usr.sbin/makefs: cd9660.c ffs.c makefs.c makefs.h msdos.c walk.c 
	usr.sbin/makefs/ffs: buf.c ffs_alloc.c 
	usr.sbin/makefs/msdos: msdosfs_fat.c 

Log message:
Remove huge amounts of debug code, that make the code nearly unreadable.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/22 12:35:12

Modified files:
	libexec/security: security 

Log message:
When checking ownership and modes of files in /var/mail/,
ignore *.lock files, to avoid pointless warning mails
reported by Philippe Meunier <meunier at ccs dot neu dot edu>;
OK florian@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/22 12:43:14

Modified files:
	net/py-curl    : Makefile distinfo 

Log message:
Update to py-curl 7.43.0

ok jca@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/22 13:16:43

Modified files:
	app/cwm        : search.c 

Log message:
clean up search_match_client(); no behaviour change


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 13:17:48

Modified files:
	usr.sbin/makefs: cd9660.c ffs.c makefs.c makefs.h walk.c 

Log message:
Clean up timestamp handling code to be less confusing.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/22 13:19:34

Modified files:
	lib/libc/stdlib: bsearch.c heapsort.c rand.c 

Log message:
$OpenBSD$


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 13:20:36

Modified files:
	usr.sbin/makefs: makefs.h walk.c 

Log message:
More "debug" code that has to go.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/22 13:23:45

Modified files:
	devel/py-setuptools_scm: Makefile distinfo 

Log message:
Update to py-setuptools_scm 1.15.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/22 13:35:12

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

Log message:
Update to py-simplejson 3.9.0


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 13:43:50

Modified files:
	usr.sbin/makefs: ffs.c 
	usr.sbin/makefs/ffs: ffs_alloc.c ffs_balloc.c ffs_subr.c mkfs.c 
	                     ufs_bmap.c 
Removed files:
	usr.sbin/makefs/ffs: ufs_bswap.h 

Log message:
Get rid of remaining FFS byteswap function stubs.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/22 14:28:00

Modified files:
	usr.sbin/makefs: makefs.8 

Log message:
various cleanup; ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 14:50:21

Modified files:
	usr.sbin/makefs: cd9660.c cd9660.h makefs.c 
	usr.sbin/makefs/msdos: mkfs_msdos.h 

Log message:
-#include <stdbool.h>


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/22 14:55:04

Modified files:
	usr.sbin/tcpdump: Makefile interface.h print-tcp.c 
Added files:
	usr.sbin/tcpdump: print-ofp.c 

Log message:
Teach tcpdump(8) how to read OpenFlow packets. This initial implementation
supports the following message types: hello, error, echo request/reply,
feature request/reply, set config, packet-in, packet-out, flow removed and
flow mod.

We currently only support printing this messages for OpenFlow 1.3.5, however
it is possible to reuse some functions and get other versions working too.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/22 14:55:05

Modified files:
	mail/s-nail    : Makefile distinfo 

Log message:
Update to s-nail-14.8.14


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/10/22 15:37:07

Modified files:
	x11/agar/agar  : Makefile 

Log message:
This needs audio/libsndfile.

ok, czarkoff@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/10/22 15:38:12

Modified files:
	x11/agar/agar  : Makefile 

Log message:
Oops! forgot to bump revision.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/22 16:20:24

Modified files:
	usr.sbin/makefs/msdos: msdosfs_denode.c msdosfs_fat.c 
	                       msdosfs_lookup.c msdosfs_vfsops.c 
	                       msdosfs_vnops.c 
Removed files:
	usr.sbin/makefs/msdos: bootsect.h bpb.h 

Log message:
Dedup msdosfs/{bootsect.h,bpb.h}.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/22 18:13:10

Log message:
    Import CBMC, a model checker for C and C++.
    
    Port by Simon Mages (maintainer) with input from Jan Klemkow, sthen@
    and myself.  ok sthen@
    
    DESCR:
    CBMC is a Bounded Model Checker for C and C++ programs. It supports C89, C99,
    most of C11 and most compiler extensions provided by gcc and Visual Studio. It
    also supports SystemC using Scoot, and has experimental support for Java
    Bytecode.
    
    CBMC verifies array bounds (buffer overflows), pointer safety, exceptions
    and user-specified assertions. Furthermore, it can check C and C++ for
    consistency with other languages, such as Verilog. The verification is
    performed by unwinding the loops in the program and passing the resulting
    equation to a decision procedure.
    
    While CBMC is aimed for embedded software, it also supports dynamic memory
    allocation using malloc and new.
    
    CBMC comes with a built-in solver for bit-vector formulas that is based on
    MiniSat. As an alternative, CBMC has featured support for external SMT
    solvers. Recommended solvers are (in no particular order) Boolector,
    MathSAT, Yices 2 and Z3. Note that these solvers need to be installed
    separately and have different licensing conditions.
    
    Status:
    
    Vendor Tag:	jca
    Release Tags:	jca_20161023
    
    N ports/devel/cbmc/Makefile
    N ports/devel/cbmc/distinfo
    N ports/devel/cbmc/patches/patch-src_big-int_allocainc_h
    N ports/devel/cbmc/patches/patch-src_common
    N ports/devel/cbmc/pkg/PLIST
    N ports/devel/cbmc/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/22 18:14:33

Modified files:
	devel          : Makefile 

Log message:
+cbmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/22 18:21:24

Modified files:
	sysutils/entr  : Makefile distinfo 

Log message:
Update to entr-3.6

From Rafael Sadowski, maintainer timeout.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/22 18:40:39

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

Log message:
listen on inet6 sockets as well. we need this because stolen inet6 sockets
can't be redirected to inet4 listeners.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/10/22 18:42:49

Modified files:
	sys/kern       : uipc_syscalls.c 

Log message:
dns hijacking must be af specific. move it into the port check function,
and redirect inet6 sockets to the ::1 flavor of localhost.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/22 19:59:16

Modified files:
	net/gpodder    : Makefile distinfo 
	net/gpodder/patches: patch-makefile 
	net/gpodder/pkg: PLIST 
Removed files:
	net/gpodder/patches: patch-setup_py 

Log message:
Update to gpodder 3.9.1

From Tim Meunier (new MAINTAINER)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/22 20:34:00

Modified files:
	faq            : faq15.html 

Log message:
update some pkg_* output to current reality - it's changed considerably
over the past ten years or so.  there's a lot more to do here in that
regard, but that's all i have energy for right now.  zap some text that
is unnecessary or no longer true.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/22 21:22:37

Modified files:
	sys/kern       : uipc_syscalls.c 

Log message:
handle non-INET6 kernels in some way


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/22 23:07:29

Modified files:
	sys/arch/armv7/omap: omap_machdep.c 

Log message:
stop disabling the external pl310 l2 cache on pandaboard

The consensus is that this was done before the bugs in the cache
flushing code were fixed.  The pl310 has been enabled on imx for some
time now and it works fine here on pandaboard as well.

ok patrick@ kettenis@ bmercer@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/10/23 00:16:03

Modified files:
	lib/mesa       : configure.ac configure 

Log message:
binutils on powerpc now ignores --gc-sections.  Remove the local patch
to avoid using it on powerpc from Mesa.

Tested by matthieu@ on macppc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/23 02:12:04

Modified files:
	sysutils/monit : Makefile distinfo 

Log message:
update to monit-5.20.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/23 02:12:40

Modified files:
	sysutils/ruby-puppet-syntax: Makefile distinfo 

Log message:
update to puppet-syntax-2.1.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:19:07

xenocara/app/xenodm

Update of /cvs/xenocara/app/xenodm
In directory cvs.openbsd.org:/tmp/cvs-serv46196/xenodm

Log Message:
Directory /cvs/xenocara/app/xenodm added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:20:02

xenocara/app/xenodm/config

Update of /cvs/xenocara/app/xenodm/config
In directory cvs.openbsd.org:/tmp/cvs-serv75656/config

Log Message:
Directory /cvs/xenocara/app/xenodm/config added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:20:02

xenocara/app/xenodm/greeter

Update of /cvs/xenocara/app/xenodm/greeter
In directory cvs.openbsd.org:/tmp/cvs-serv75656/greeter

Log Message:
Directory /cvs/xenocara/app/xenodm/greeter added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:20:02

xenocara/app/xenodm/include

Update of /cvs/xenocara/app/xenodm/include
In directory cvs.openbsd.org:/tmp/cvs-serv75656/include

Log Message:
Directory /cvs/xenocara/app/xenodm/include added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:20:02

xenocara/app/xenodm/man

Update of /cvs/xenocara/app/xenodm/man
In directory cvs.openbsd.org:/tmp/cvs-serv75656/man

Log Message:
Directory /cvs/xenocara/app/xenodm/man added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:20:02

xenocara/app/xenodm/xenodm

Update of /cvs/xenocara/app/xenodm/xenodm
In directory cvs.openbsd.org:/tmp/cvs-serv75656/xenodm

Log Message:
Directory /cvs/xenocara/app/xenodm/xenodm added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:20:02

xenocara/app/xenodm/m4

Update of /cvs/xenocara/app/xenodm/m4
In directory cvs.openbsd.org:/tmp/cvs-serv75656/m4

Log Message:
Directory /cvs/xenocara/app/xenodm/m4 added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:30:38

Added files:
	app/xenodm     : AUTHORS COPYING Makefile.am 
	                 Makefile.bsd-wrapper README configure.ac 
	                 cpprules.in 
	app/xenodm/config: GiveConsole Makefile.am OpenBSD_15bpp.xpm 
	                   OpenBSD_1bpp.xpm OpenBSD_4bpp.xpm 
	                   OpenBSD_8bpp.xpm README TakeConsole 
	                   Xreset.cpp Xresources.cpp Xservers.fs 
	                   Xservers.ws.cpp Xsession.cpp Xsetup_0 
	                   Xstartup.cpp xenodm-config.cpp 
	app/xenodm/greeter: Login.c Login.h LoginP.h Makefile.am greet.c 
	                    verify.c 
	app/xenodm/include: Makefile.am dm.h dm_auth.h dm_error.h 
	                    dm_socket.h greet.h 
	app/xenodm/man : Makefile.am xenodm.man 
	app/xenodm/xenodm: Makefile.am auth.c dm.c dpylist.c error.c 
	                   file.c mitauth.c netaddr.c reset.c resource.c 
	                   server.c session.c util.c 

Log message:
Add xenodm a stripped down xdm (X Display Manager) for OpenBSD.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 02:32:59

Added files:
	app/xenodm     : Makefile.in aclocal.m4 config.guess config.h.in 
	                 config.sub configure depcomp install-sh 
	                 ltmain.sh missing 
	app/xenodm/config: Makefile.in 
	app/xenodm/greeter: Makefile.in 
	app/xenodm/include: Makefile.in 
	app/xenodm/m4  : ax_define_dir.m4 libtool.m4 ltoptions.m4 
	                 ltsugar.m4 ltversion.m4 lt~obsolete.m4 
	app/xenodm/man : Makefile.in 
	app/xenodm/xenodm: Makefile.in 

Log message:
Generate autotools build system


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/23 02:35:55

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

Log message:
Update to py-xdis 3.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/23 02:37:21

Modified files:
	devel/py-uncompyle6: Makefile distinfo 

Log message:
Update to py-uncompyle6 2.9.2


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/10/23 02:42:58

Modified files:
	distrib/miniroot: install.sub 

Log message:
Exit autoinstall in case of missing / or duplicate mountpoints.
This also covers the case when a template is rejected by disklabel.

OK krw


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/23 04:22:21

Modified files:
	usr.sbin/makefs: cd9660.c ffs.c makefs.c makefs.h msdos.c 
	usr.sbin/makefs/msdos: mkfs_msdos.h 

Log message:
Remove short option names for -o.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/23 04:32:42

Modified files:
	usr.sbin/makefs: cd9660.c cd9660.h makefs.8 
	usr.sbin/makefs/cd9660: cd9660_write.c 

Log message:
Remove cd9660's keep-bad-images option.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 04:37:23

Modified files:
	app/xenodm/xenodm: session.c 

Log message:
remove unused parameter passwd in StartClient().


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 04:44:52

Modified files:
	app/xenodm/greeter: verify.c 

Log message:
Remove out-dated comment


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/23 04:52:46

Modified files:
	libressl       : goals.html index.html mail.html papers.html 
	                 patches.html releases.html signing.html 

Log message:
add canonical links to libressl.org

ok tj, bcook


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/23 04:58:45

Modified files:
	usr.sbin/makefs/msdos: mkfs_msdos.c mkfs_msdos.h 

Log message:
Remove the msdos no_create option.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/23 05:09:38

Modified files:
	usr.sbin/makefs: cd9660.c cd9660.h 
	usr.sbin/makefs/cd9660: cd9660_eltorito.c cd9660_write.c 
	usr.sbin/makefs/msdos: msdosfs_vfsops.c 

Log message:
No verbose flag for cd9660.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/23 05:10:21

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update to offlineimap 7.0.8

from Remi Locherer (maintainer)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 05:30:04

Modified files:
	app/xenodm/greeter: verify.c 

Log message:
greet->password is wiped after handling it to auth_setdata().
No need to wipe again it later.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 05:31:42

Modified files:
	app/xenodm/greeter: verify.c 

Log message:
Use explicit_bzero() to wipe the password


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/23 05:56:51

Modified files:
	sys/net        : switchofp.c 

Log message:
Don't free mbuf on error during swofp_flow_entry_put_instructions() parse,
otherwise we won't have the request ofp_header to send in the error message.

ok jca@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 06:50:49

Modified files:
	app/xenodm/include: dm.h 
	app/xenodm/xenodm: auth.c 

Log message:
Use xenodm where applicable in comments


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/23 07:24:42

Modified files:
	sys/arch/armv7/sunxi: sxitimer.c 

Log message:
Only attach on sun4i and sun5i.  The timer implemented on later SoCs lacks
the 64-bit counter that we use as timecounter.  Those SoCs have a generic
timer so we don't need the SoC-specific one.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/23 07:38:36

Modified files:
	textproc/py-mistune: Makefile distinfo 
	textproc/py-mistune/pkg: PLIST 

Log message:
Update to py-mistune 0.7.3.
Add py3 flavor and take maintainer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/10/23 07:40:24

Modified files:
	textproc       : Makefile 

Log message:
+py-mistune,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/10/23 07:53:04

Modified files:
	security/keepassx: Makefile distinfo 

Log message:
update to 2.0.3

from Rafael Sadowski, ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2016/10/23 08:54:14

Modified files:
	usr.bin/make   : make.1 parse.c parsevar.c var.c var.h 

Log message:
add !!=
feedback and okay millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/10/23 11:06:41

Modified files:
	sys/kern       : uipc_syscalls.c 
	usr.sbin/rebound: rebound.c 

Log message:
unbreak by fixing obvious pastos


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/23 11:27:01

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

Log message:
zap trailing whitespace;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/23 12:14:01

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

Log message:
For -d, if there is no modifier, don't go down the "longformat" path.
Fixes cases like "pstat -d x ticks" on armv7.

ok jca@, deraadt@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 12:41:39

Modified files:
	app/xenodm/config: Makefile.am Makefile.in 

Log message:
Oops a typo crept in


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/23 12:46:03

Modified files:
	regress/lib/libm/lgamma: lgamma.c 

Log message:
fix lgamma test on i386 and use symbolic constant; ok martynas@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/23 12:50:34

Modified files:
	sys/arch/armv7/armv7: platform.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/sunxi: files.sunxi 
Removed files:
	sys/arch/armv7/sunxi: sun4i.c sun7i.c sunxi.c sunxi_machdep.c 

Log message:
De-platformize sunxi.  This removes the board initialization code that sets up
SRAM for the EMAC.  Instead we rely on u-boot setting this up for us.

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/23 13:05:09

Modified files:
	sys/arch/armv7/armv7: armv7var.h intr.c 

Log message:
Remove sunxi board IDs.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/10/23 13:06:08

Modified files:
	sys/arch/armv7/stand/efiboot: conf.c efiboot.c 

Log message:
Remove sunxi board IDs.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 14:35:44

Modified files:
	app/xenodm/include: dm_error.h 
	app/xenodm/xenodm: error.c 

Log message:
Augment the chances LogOutOfMem() works in out-of-memory conditions.
All instances are called with only one constant string so no need for
varargs dance.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 14:38:36

Modified files:
	app/xenodm/greeter: verify.c 

Log message:
endpwent() is not needed after getpwnam()


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 15:13:03

Modified files:
	app/xenodm/include: dm.h 
	app/xenodm/xenodm: session.c 

Log message:
Mark some functions as __dead


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/23 15:17:24

Modified files:
	app/xenodm/xenodm: session.c 

Log message:
Don't try to find an interpreter to execute the Xsession file if
it's not executable.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/10/23 16:04:05

Modified files:
	usr.bin/ssh    : misc.c misc.h readconf.c serverloop.c 

Log message:
Factor out "can bind to low ports" check into its own function.  This will make
it easier for Portable to support platforms with permissions models other than
uid==0 (eg bz#2625).  ok djm@, "doesn't offend me too much" deraadt@.


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2016/10/23 16:59:19

Modified files:
	sys/dev/pckbc  : pms.c 
	sys/dev/wscons : wsconsio.h wsmouse.c wsmouseinput.h 
	                 wsmousevar.h 

Log message:
Improved parameter handling in wsmouse and new ioctls for reading and
setting parameter values.

ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/10/23 19:09:17

Modified files:
	usr.bin/ssh    : sshkey.c servconf.c 

Log message:
Remove dead breaks, found via opencoverage.net.  ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/23 19:50:09

Modified files:
	sys/dev/pci    : mpii.c mpiireg.h 

Log message:
augment the scsi_probe handler so it tries to query the sas dev pg 0

sas dev pg0 tells us interesting things, like the devices sas addresses
and if it is ATAPI or not.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/23 19:53:37

Modified files:
	emulators/mednafen: Makefile distinfo 
	emulators/mednafen/pkg: PLIST 

Log message:
Update to mednafen 0.9.39.2 and set USE_WXNEEDED


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/23 20:50:28

src/regress/sys/netinet/carp

Update of /cvs/src/regress/sys/netinet/carp
In directory cvs.openbsd.org:/tmp/cvs-serv75682/carp

Log Message:
Directory /cvs/src/regress/sys/netinet/carp added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/23 20:52:02

Added files:
	regress/sys/netinet/carp: Makefile README carp_1.sh carp_2.sh 
	                          carp_3.sh carp_4.sh carp_subr 

Log message:
Add regress tests for carp(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/23 21:11:58

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

Log message:
Add scsi ioctl hook to do a special treatment for DIOC{G,S}CACHE which
is already done in mfi(4).

ok dlg


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/23 21:15:38

Modified files:
	sys/sys        : percpu.h 
	sys/kern       : subr_percpu.c 

Log message:
non-MP vs MP codepaths were confusingly split between the .c and .h file.
Unify these by placing #ifdef MULTIPROCESSOR inside the functions, then
collapse further to reduce _KERNEL blocks
ok dlg


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/23 21:45:48

Modified files:
	share/man/man4 : mfii.4 
	sys/dev/pci    : mfii.c 

Log message:
Make mfii(4) bio(4) capable.

ok dlg


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/23 22:38:45

Modified files:
	sys/kern       : init_main.c kern_sysctl.c uipc_mbuf.c 
	sys/sys        : mbuf.h 

Log message:
move the mbstat structure to percpu counters

each cpus counters still have to be protected by splnet, but this
is better thana single set of counters protected by a global mutex.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/23 23:27:52

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

Log message:
Backout last 2 revisions.  Requested by deraadt.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/24 00:19:22

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

Log message:
fix SEE ALSO;


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/24 01:49:08

Modified files:
	www/surf2      : Makefile 
	www/surf2/patches: patch-config_def_h 

Log message:
get rid of uxterm


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/24 02:10:46

Modified files:
	editors/le     : Makefile distinfo 
	editors/le/pkg : PLIST 

Log message:
Update le to 1.16.3.

From maintainer Ivan Ivanov, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/24 03:32:42

Modified files:
	devel/nspr     : Makefile distinfo 

Log message:
Bugfix update to nspr 4.13.1.

Revert a change made in 4.13 cycle (pipes were made non-blocking by
default) that caused regressions in certain cases.

See
https://groups.google.com/forum/#!topic/mozilla.dev.tech.nspr/vHMBwAcu7x4
and https://bugzilla.mozilla.org/show_bug.cgi?id=1289145


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/24 03:33:08

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

Log message:
Update to firefox 49.0.2.

See https://www.mozilla.org/en-US/firefox/49.0.2/releasenotes/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2016-87/
Fixes MFSA-2016-87:
- CVE-2016-5287 / bugzil.la/1309823
- CVE-2016-5288 / bugzil.la/1310183 (bug information private)

prodded by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/10/24 03:44:43

Modified files:
	usr.sbin/nsd   : Makefile.in axfr.c configlexer.lex 
	                 configparser.y configure.ac difffile.c dns.c 
	                 dns.h edns.c edns.h namedb.c namedb.h 
	                 nsd-checkconf.c nsd-control.c nsd-mem.c 
	                 nsd.conf.5.in nsd.conf.sample.in nsec3.c 
	                 options.c options.h query.c query.h remote.c 
	                 tsig-openssl.c tsig.c xfrd-disk.c xfrd-tcp.c 
	                 xfrd.c xfrd.h zlexer.lex zparser.y 

Log message:
Update to 4.1.13
Testing millert, brad and myself.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/10/24 03:45:02

Modified files:
	usr.sbin/nsd   : configure 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/10/24 03:45:45

Modified files:
	usr.sbin/nsd   : configlexer.lex zlexer.lex 

Log message:
do not ignore -Wsign-compare; requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/24 05:09:05

Modified files:
	sys/netinet6   : frag6.c 

Log message:
When the IPv6 network stack receives an empty non atomic fragment,
just drop it.  It can never overlap existing content, there is no
ambiguous payload.  So save resources and do not try to insert it
into the queue.  This makes our IPv6 stack behave like pf fragment
reassembly.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/24 06:24:13

Modified files:
	net/isc-dhcp   : Makefile distinfo 

Log message:
update to isc-dhcp 4.3.5, from brad


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/24 07:27:06

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

Log message:
Document the LC_* variables in more detail
and explain what is special about locales in OpenBSD.
Lots of feedback and OK jmc@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/24 07:46:58

Modified files:
	bin/ls         : ls.1 
	usr.bin/colrm  : colrm.1 
	usr.bin/cut    : cut.1 
	usr.bin/fmt    : fmt.1 
	usr.bin/fold   : fold.1 
	usr.bin/less   : less.1 
	usr.bin/rs     : rs.1 
	usr.bin/ul     : ul.1 
	usr.bin/uniq   : uniq.1 
	usr.bin/wc     : wc.1 

Log message:
Unify wording for LC_CTYPE in ENVIRONMENT:
* Consistently use "character encoding locale" as suggested by stsp@.
* Resolve various gratuitious wording variations.
OK jmc@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/24 07:53:05

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

Log message:
As suggested by martijn@, delete absurd EXAMPLES section and two
irrelevant .Xr links.  While here, add two .Xr links that are relevant.
OK martijn@ jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/24 08:22:31

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2-1.16.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/24 09:06:49

Modified files:
	usr.sbin/makefs: makefs.8 

Log message:
document the options for msdos systems; help/ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/24 09:34:59

Modified files:
	regress/lib/libm/tgamma: tgamma.c 

Log message:
using exact valus in floating point tests often does not work as expected,
use epsilon test


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/24 11:16:23

Modified files:
	app/cwm        : calmwm.h search.c 

Log message:
Get rid of 'matchname'; it's too surprising to have the menu change during
client search as different potential str matches are cycled through. If there's
interest, the only string that doesn't exist in the listing is the window's
class - that can be added of course, but it makes the line too long imho.


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/10/24 11:18:42

Modified files:
	usr.bin/mg     : echo.c 

Log message:
remove double semicolon

from Brian Callahan


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/24 11:39:38

Modified files:
	app/cwm        : conf.c group.c kbfunc.c screen.c search.c 

Log message:
Sprinkle __func__ in appropriate error messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/24 12:26:17

Modified files:
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	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 

Log message:
make cleandir should skip the version file; ok otto millert


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/24 12:57:12

Modified files:
	app/cwm        : search.c 

Log message:
Remove duplicate check that strsubmatch() already does; while here, fix a
comment.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/24 13:31:35

Modified files:
	app/xterm      : Makefile xterm.man xtermcfg.h 

Log message:
Disable Tektronics 4014 emulation. ok natano@, naddy@, schwarze@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/24 13:55:37

Modified files:
	app/xterm      : Makefile xterm.man 

Log message:
Stop providing the uxterm and koi8rxterm shell scripts.
Requested by schwarze@ agreed naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	matthieu@cvs.openbsd.org	2016/10/24 13:56:53

Modified files:
	faq            : current.html 

Log message:
uxterm and koi8rxterm removal


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/10/24 14:44:09

Modified files:
	app/cwm        : conf.c kbfunc.c menu.c 

Log message:
Make it clear these are flags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/24 14:59:23

Modified files:
	shells/dash    : Makefile distinfo 

Log message:
Update to dash-0.5.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/24 15:01:05

Modified files:
	lang/mawk      : Makefile distinfo 

Log message:
Update to mawk-1.3.4-20160615


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/10/24 15:05:55

Modified files:
	usr.sbin/dhcpd : dhcp.c 

Log message:
Compare server-identifiers and reject packets only *after* applying
value specified in dhcpd.conf.

i.e. don't assume it is always the primary address of the interface
the packet arrived on.

Fixes issues with redundant dhcpd servers and CARP'd interfaces.

Issue reported and fix tested by Johan Huldtgren


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/10/24 15:10:45

Modified files:
	sysutils/monit : Makefile 
	sysutils/monit/pkg: PLIST 
Added files:
	sysutils/monit/patches: patch-monitrc 

Log message:
add ${LOCALSTATEDIR}/monit folder and create state and id file there instead of
default users home (e.g. /root)

ok jasper


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/10/24 16:46:54

Modified files:
	x11/dwm        : Makefile 
	x11/dwm/patches: patch-config_def_h patch-dwm_1 

Log message:
uxterm -> xterm

OK jung@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/24 17:37:10

Modified files:
	faq            : current.html 

Log message:
tweak previous; missing </b> also noted by raf czlonka


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/24 17:38:30

Modified files:
	faq            : current.html 

Log message:
and zap extra rm, from raf czlonka


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/24 17:58:33

Modified files:
	sys/sys        : percpu.h 
	sys/kern       : subr_percpu.c uipc_mbuf.c 

Log message:
avoid using realloc in the name of things that dont work like realloc.

cpumem_realloc and counters_realloc actually allocated new per cpu data
for new cpus, they didnt resize the existing allocation.

specifically, this renames cpumem_reallod to cpumem_malloc_ncpus, and
counters_realloc to counters_alloc_ncpus.

ok (and with some fixes by) bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/24 18:03:40

Modified files:
	share/man/man9 : cpumem_get.9 counters_alloc.9 

Log message:
start documenting allocating per cpu data at boot time, and adding
memory for new cpus after theyve attached.

some tweaks from jmc@ who will probably find more things wrong after this.
im putting some suggestions in from bluhm@ shortly


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/24 18:04:59

Modified files:
	sys/arch/armv7/omap: omap_machdep.c 
	sys/arch/armv7/armv7: armv7_machdep.c armv7_machdep.h platform.c 
	sys/arch/armv7/exynos: exynos_machdep.c 

Log message:
Remove now unused disable_l2_if_needed interface.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/24 18:07:29

Modified files:
	share/man/man9 : cpumem_get.9 counters_alloc.9 

Log message:
bluhm@ suggests that it is enough to say that the allocations will
be zeroed, and how they're zeroed is an implementation detail that
doesnt really help the reader.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/24 18:11:06

Modified files:
	share/man/man9 : cpumem_get.9 counters_alloc.9 

Log message:
bluhm@ suggested pointing out that cpumem_malloc_ncpus and
counters_alloc_ncpus preserve the contents of memory used by the
boot cpu.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/24 18:21:05

Modified files:
	share/man/man9 : counters_alloc.9 

Log message:
provide an example based on the mbuf code


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/10/24 21:26:52

Modified files:
	distrib/sets/lists/xbase: mi 
	distrib/sets/lists/xshare: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/24 22:08:13

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
Fix logic in add_local_forward() that inverted a test when code was
refactored out into bind_permitted().  This broke ssh port forwarding
for non-priv ports as a non root user.

ok dtucker@ 'looks good' deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/25 00:04:41

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
bring canaries for > page sized objects from libc to ld.so; ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/25 00:20:41

Modified files:
	sys/dev/ic     : nvme.c nvmevar.h 
	sys/dev/pci    : nvme_pci.c 

Log message:
mask and unmask the interrupt source in an intx specific intr handler.

it seems devices using levelled intx interrupts need to explicitely ack
interrupts by masking and unmasking the source around the completion
ring handling. without this completions can be lost, which in turn
causes long (permanent?) stalls in the block layer under heavy write
load.

ive experienced this problem with an intel nvme part that only has
intx and msix support. because we dont support msix yet we only
use intx on it. it appeared to lock up before this fix.

this has been tested on both that intel board and a samsung with msi.
this fix was based on work found in code by nonaka


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/10/25 00:26:04

Modified files:
	sys/netinet6   : raw_ip6.c 

Log message:
Fix bind(2)ing link local addresses to raw sockets by calling
in6_pcbaddrisavail() which does all the checking for us instead of
hand rolling half of it.
Input & OK bluhm@

bluhm@ also points out that this relaxes the check for valid addresses
a bit, deprecated addresses become valid for raw sockets. This should
be fine, it brings raw sockets in line with udp/tcp sockets and it
might be particularly interesting for debugging purposes.


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/10/25 00:48:58

Modified files:
	sys/dev/acpi   : acpi.c acpiprt.c bytgpio.c chvgpio.c dsdt.c 
	                 dsdt.h dwiic.c sdhc_acpi.c tpm.c 

Log message:
Add the resource index to aml_parse_resource() callback function.

This is needed by an upcoming acpiec commit that handles machines breaking
the current ACPI specifications.

Change suggested by and ok kettenis@, guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/10/25 00:55:59

Modified files:
	sys/dev/acpi   : acpidev.h acpiec.c 

Log message:
Deduplicate the CRS parsing code and handle broken ACPI implementations.

This change was prompted by a report from Ilya Kaliman where acpiec(4)
failed to initialize on his Acer Aspire S7.

Further investigations showed that the machine had 4 instead of 2 resources
defined inside the EC device which is a violation of all existing ACPI
revisions.

We now handle such machines by using the aml resource parser directly, which
lead to the removal of the existing one from acpiec.c, and ignoring extra
resources (although they are reported in the dmesg).

In the process I also done a couple of more style(9) fixes.

Suggested by and ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/25 01:21:02

Modified files:
	sys/netinet    : ip_carp.c 

Log message:
Accept CARP advertisement packets whose destination is not for multicast.
When both "carppeer" and "real mac-address" are used at once and the
BACKUP is to take over the new MASTER, the present MASTER receives
such packets.  Found by and diff from nagasaka at iij.

ok henning bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/25 01:24:10

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

Log message:
Do not handle activity or silence alerts in the current window, reported
by jasper@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/25 01:59:45

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

Log message:
convert usage() to just spit out the normal options list,
instead of trying to list all the fs-specific stuff;

help/ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/25 02:09:22

Modified files:
	share/man/man9 : counters_alloc.9 cpumem_get.9 

Log message:
minor tweaks;


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/25 02:43:15

Modified files:
	usr.sbin/tcpdump: print-ofp.c 

Log message:
Add missing OpenBSD keyword in the first line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2016/10/25 02:57:39

Modified files:
	plan9/plan9port: Makefile 
Added files:
	plan9/plan9port/patches: patch-src_libregexp_regcomp_c 

Log message:
int cannot hold all the values a ptrdiff_t can take
bump REVISION; ok ray@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/25 05:28:05

Modified files:
	sysutils/symon : Makefile 
Added files:
	sysutils/symon/patches: patch-symux_c_smrrds_sh 

Log message:
fix c_smrrds.sh with newer rrdtool, from henning


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/25 05:40:37

Log message:
    Import devel/lua-tz.
    
    A lua library for time and date manipulation.
    
    Features include:
    
    - Normalisation of broken down date objects - allows for complex time/date
    manipulation logic e.g. "What day is it in 2 days, 5 hours from now?"
    - Conversion between locations (time zones) using your local zoneinfo database
    - strftime style formatting
    
    OK jca@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161025
    
    N ports/devel/lua-tz/Makefile
    N ports/devel/lua-tz/distinfo
    N ports/devel/lua-tz/pkg/DESCR
    N ports/devel/lua-tz/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/25 05:43:54

Modified files:
	devel          : Makefile 

Log message:
Add lua-tz.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/25 06:25:32

Modified files:
	net/irssi      : Makefile 
	misc/hfsplus   : Makefile 
	graphics/enblend-enfuse: Makefile 
	security/dante : Makefile 

Log message:
No need to set MODGNU_CONFIG_GUESS_DIRS to its default value.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/25 08:16:32

Modified files:
	faq            : faq15.html 

Log message:
add two missing <b> tags


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/25 08:19:57

Modified files:
	faq            : upgrade60.html 

Log message:
use "update" instead of "upgrade" for minor things.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/10/25 09:13:48

Modified files:
	faq            : faq13.html 

Log message:
fix a broken link; spotted by steven roberts


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/25 10:31:08

Modified files:
	sys/net        : if_vxlan.c 
	sys/dev/usb    : if_umb.c 

Log message:
Make kernel without INET6 compile again.
OK mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/25 11:08:07

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-configure patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_os_rs 
	                   patch-src_test_run-pass_backtrace_rs 
	                   patch-src_tools_compiletest_src_runtest_rs 

Log message:
Update to rust-1.12.1

For release note see https://blog.rust-lang.org/2016/10/20/Rust-1.12.1.html

Please note, semarie rebuilded the bootstrap due to a bug in rustc: 1.12.0
wasn't able to rebuild 1.12.1 without intrusive patches in the build system

From semarie, ok ajacoutot


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/25 11:10:46

Modified files:
	net/libbgpdump : Makefile distinfo 
Removed files:
	net/libbgpdump/patches: patch-bgpdump_lib_c patch-cfile_tools_c 
	                        patch-configure 

Log message:
update to libbgpdump-1.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/25 11:25:55

Modified files:
	databases      : Makefile 
	databases/openldap: Makefile 
	databases/openldap/pkg: DESCR-server 

Log message:
add a gssapi flavour to openldap, based on a diff from William Leuschner


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/25 11:28:15

Modified files:
	graphics/darktable: Makefile distinfo 
Removed files:
	graphics/darktable/patches: 
	                            patch-src_external_rawspeed_RawSpeed_TiffIFD_cpp 

Log message:
Update to darktable-2.0.7


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/25 13:36:11

Modified files:
	sys/dev/pv     : hyperv.c hypervic.c hypervicreg.h hypervvar.h 
	                 if_hvn.c 

Log message:
Channel API users should pick the bufring size

hvn(4) needs to be able to put up to 128 RNDIS data messages on the
channel ring each pointing up to 16 fragments in addition to a small
number of RNDIS control messages.  This simplifies accounting of
available TX descriptors in relation to the available space on the
channel ring and as a results prevents packet drops due to the ring
being full.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/10/25 13:40:57

Modified files:
	sys/netinet6   : raw_ip6.c 

Log message:
bluhm@ pointed out that addr->sin6_port should be forced to zero since
a port doesn't make sense for a raw socket.
I forgot to commit this hunk in the previous commit. Sorry about that.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/10/25 15:08:48

Modified files:
	misc/memcached : Makefile distinfo 
Removed files:
	misc/memcached/patches: patch-items_c 

Log message:
Security update to 1.4.32, one patch applied upstream
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/25 16:39:25

Modified files:
	www/p5-WWW-Mechanize: Makefile distinfo 
Added files:
	www/p5-WWW-Mechanize/patches: patch-t_dump_t 

Log message:
update p5-WWW-Mechanize to 1.83
add workaround to make test pass with our old Test::More in base Perl


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/25 18:41:43

Modified files:
	databases      : Makefile 

Log message:
Unhook luadbi,lua52, broken at runtime and forgotten in previous cleanups.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/25 18:46:01

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

Log message:
make it clear that the s/// numeric flag can contain
more than one digit but cannot start with zero;
feedback and OK jmc@, OK jca@, OK millert@ on an earlier version


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/25 19:00:27

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

Log message:
Polishing together with jmc@:
Avoid the impression that we unconditionally recommend LC_CTYPE=en_US.UTF-8.
Make it clear that not all parts of the system fully support it yet.
Collect the sentences drawing the big picture into a single paragraph,
and move it to a less unusual place, right after the option list.


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2016/10/25 19:15:28

Modified files:
	faq            : current.html 

Log message:
Increase the probability that former uxterm users
can still open terminal windows after uxterm removal.
OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/25 19:20:39

Modified files:
	bin/ps         : ps.1 

Log message:
Document LC_CTYPE.
The lack of this entry was reported by Jan Stary <hans at stare dot cz>.
OK czarkoff@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/25 23:15:13

Modified files:
	sys/arch/amd64/include: vmmvar.h 

Log message:
Don't use a bitfield in the msr store index structure. This may not end up
initializing the unused bits, leading to VMABORTs during vmentry. Found the
hard way on i386 vmm, but the problem could occur on amd64 as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/25 23:22:15

Modified files:
	sys/arch/i386/include: vmmvar.h 
	sys/arch/i386/i386: vmm.c 

Log message:
Fix a few misc bugs in i386 vmm:

1. Include ioctls needed for pledge support (to be used with the upcoming
i386 vmd diff)

2. Don't assume we can enter an IA32e mode guest on entry when the host
doesn't have unrestricted guest capability

3. Don't enable PAE in the guest CR4 when launching on hosts without
unrestricted guest capability (vmd does not set up PAE bootstrap page
tables)

4. Don't use a bitfield for the MSR bitmap index (same fix as just committed
for amd64)

5. Store and restore EFER properly on exit to ensure that the host NXE
is recovered on exit


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/10/25 23:26:36

Modified files:
	usr.sbin/vmctl : Makefile 
	usr.sbin/vmd   : Makefile i8253.c loadfile_elf.c mc146818.c 
	                 ns8250.c vmm.c 

Log message:
vmd(8)/vmctl(8) for i386. Some ugliness in #ifdef __i386__ areas will be
fixed in tree, but the changes required were pretty minimal.

Note that i386 hosts are still presently limited to running i386 guests.

ok deraadt, stefan, jca


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/25 23:45:27

Log message:
    import libewf, a library to access the Expert Witness Compression Format (EWF).
    
    inputs and ok jca@, ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20161026
    
    N ports/security/libewf/Makefile
    N ports/security/libewf/distinfo
    N ports/security/libewf/pkg/DESCR
    N ports/security/libewf/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/10/25 23:47:07

Modified files:
	security       : Makefile 

Log message:
SUBDIR += libewf


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/26 00:22:08

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-BUILD_gn patch-base_BUILD_gn 
	                      patch-base_debug_stack_trace_posix_cc 
	                      patch-base_linux_util_cc 
	                      patch-base_process_launch_h 
	                      patch-base_process_memory_cc 
	                      patch-base_process_process_metrics_h 
	                      patch-base_process_process_metrics_openbsd_cc 
	                      patch-base_process_process_posix_cc 
	                      patch-base_sys_info_posix_cc 
	                      patch-base_threading_platform_thread_linux_cc 
	                      patch-base_threading_platform_thread_posix_cc 
	                      patch-base_trace_event_malloc_dump_provider_cc 
	                      patch-build_config_BUILDCONFIG_gn 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_allocator_gni 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_features_gni 
	                      patch-build_toolchain_gcc_toolchain_gni 
	                      patch-build_toolchain_openbsd_BUILD_gn 
	                      patch-cc_BUILD_gn 
	                      patch-chrome_app_chromium_strings_grd 
	                      patch-chrome_app_generated_resources_grd 
	                      patch-chrome_app_google_chrome_strings_grd 
	                      patch-chrome_browser_BUILD_gn 
	                      patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_after_startup_task_utils_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_download_download_commands_cc 
	                      patch-chrome_browser_download_download_commands_h 
	                      patch-chrome_browser_download_download_shelf_context_menu_cc 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_api_messaging_message_service_cc 
	                      patch-chrome_browser_extensions_bookmark_app_helper_cc 
	                      patch-chrome_browser_extensions_external_provider_impl_cc 
	                      patch-chrome_browser_gpu_gl_string_manager_cc 
	                      patch-chrome_browser_renderer_preferences_util_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_browser_safe_browsing_permission_reporter_cc 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_browser_view_prefs_cc 
	                      patch-chrome_browser_ui_startup_bad_flags_prompt_cc 
	                      patch-chrome_browser_ui_startup_startup_browser_creator_cc 
	                      patch-chrome_browser_ui_toolbar_app_menu_model_cc 
	                      patch-chrome_browser_ui_views_chrome_views_delegate_cc 
	                      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_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_layout_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_strip_cc 
	                      patch-chrome_browser_ui_webui_about_ui_cc 
	                      patch-chrome_browser_ui_webui_options_browser_options_handler_cc 
	                      patch-chrome_browser_ui_webui_options_browser_options_handler_h 
	                      patch-chrome_browser_web_applications_web_app_cc 
	                      patch-chrome_browser_web_applications_web_app_h 
	                      patch-chrome_common_BUILD_gn 
	                      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_url_constants_cc 
	                      patch-chrome_common_url_constants_h 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_metrics_BUILD_gn 
	                      patch-components_os_crypt_os_crypt_h 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-components_storage_monitor_BUILD_gn 
	                      patch-content_app_content_main_runner_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_child_process_launcher_cc 
	                      patch-content_browser_download_base_file_cc 
	                      patch-content_browser_gpu_gpu_data_manager_impl_private_cc 
	                      patch-content_browser_gpu_gpu_internals_ui_cc 
	                      patch-content_browser_media_media_internals_cc 
	                      patch-content_browser_ppapi_plugin_process_host_cc 
	                      patch-content_browser_renderer_host_media_video_capture_device_client_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_utility_process_host_impl_cc 
	                      patch-content_common_BUILD_gn 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_ppapi_plugin_ppapi_plugin_main_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_renderer_renderer_main_cc 
	                      patch-content_renderer_webscrollbarbehavior_impl_gtkoraura_cc 
	                      patch-content_utility_utility_main_cc 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-device_gamepad_gamepad_provider_cc 
	                      patch-device_usb_BUILD_gn 
	                      patch-gpu_config_gpu_info_collector_linux_cc 
	                      patch-gpu_config_gpu_info_collector_x11_cc 
	                      patch-ipc_ipc_message_utils_h 
	                      patch-media_audio_BUILD_gn 
	                      patch-media_audio_audio_manager_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_file_video_capture_device_factory_cc 
	                      patch-media_capture_video_video_capture_device_factory_cc 
	                      patch-net_BUILD_gn 
	                      patch-net_proxy_proxy_service_cc 
	                      patch-net_tools_get_server_time_get_server_time_cc 
	                      patch-net_udp_udp_socket_posix_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-sandbox_linux_BUILD_gn 
	                      patch-skia_ext_SkMemory_new_handler_cpp 
	                      patch-third_party_WebKit_Source_bindings_core_v8_V8ScriptRunner_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                      patch-third_party_WebKit_Source_web_PopupMenuImpl_cpp 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_ffmpeg_BUILD_gn 
	                      patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h 
	                      patch-third_party_libusb_BUILD_gn 
	                      patch-third_party_pdfium_core_fxge_ge_fx_ge_linux_cpp 
	                      patch-third_party_pdfium_fpdfsdk_javascript_JS_Value_cpp 
	                      patch-third_party_skia_src_ports_SkOSFile_stdio_cpp 
	                      patch-third_party_webrtc_BUILD_gn 
	                      patch-third_party_webrtc_base_BUILD_gn 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-tools_gn_args_cc 
	                      patch-tools_gn_bootstrap_bootstrap_py 
	                      patch-tools_gn_bootstrap_build_ninja_template 
	                      patch-ui_app_list_app_list_menu_cc 
	                      patch-ui_app_list_views_app_list_item_view_cc 
	                      patch-ui_app_list_views_app_list_view_cc 
	                      patch-ui_base_ime_input_method_factory_cc 
	                      patch-ui_base_resource_resource_bundle_cc 
	                      patch-ui_events_devices_x11_device_data_manager_x11_cc 
	                      patch-ui_gfx_canvas_skia_cc 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_message_center_message_center_style_h 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_window_custom_frame_view_cc 
	                      patch-ui_views_window_dialog_delegate_cc 
	                      patch-v8_BUILD_gn 
	                      patch-v8_src_base_platform_platform-posix_cc 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: patch-ash_shell_cc 
	                      patch-base_native_library_posix_cc 
	                      patch-chrome_app_chrome_command_ids_h 
	                      patch-chrome_app_mash_mash_runner_cc 
	                      patch-chrome_browser_browser_process_impl_cc 
	                      patch-chrome_browser_browser_process_impl_h 
	                      patch-chrome_browser_plugins_plugins_resource_service_cc 
	                      patch-chrome_browser_profiles_profile_impl_io_data_cc 
	                      patch-chrome_browser_ui_tab_helpers_cc 
	                      patch-chrome_browser_ui_views_frame_system_menu_model_delegate_cc 
	                      patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                      patch-chrome_common_extensions_chrome_extensions_client_cc 
	                      patch-chromecast_browser_cast_content_browser_client_cc 
	                      patch-components_autofill_core_browser_autofill_experiments_cc 
	                      patch-components_filesystem_file_system_app_cc 
	                      patch-components_sync_base_get_session_name_cc 
	                      patch-components_sync_base_get_session_name_linux_cc 
	                      patch-content_shell_browser_shell_browser_context_cc 
	                      patch-content_shell_browser_shell_browser_main_parts_cc 
	                      patch-content_zygote_zygote_main_linux_cc 
	                      patch-device_geolocation_location_arbitrator_impl_cc 
	                      patch-services_ui_public_cpp_gles2_context_cc 
	                      patch-services_ui_surfaces_surfaces_context_provider_cc 
	                      patch-ui_views_corewm_tooltip_aura_cc 
	                      patch-ui_views_examples_widget_example_cc 
	                      patch-ui_views_mus_aura_init_cc 
	                      patch-ui_views_mus_aura_init_h 
Removed files:
	www/chromium/patches: patch-base_message_loop_message_loop_cc 
	                      patch-chrome_browser_task_manager_task_manager_cc 
	                      patch-chrome_browser_ui_app_list_app_list_service_cc 
	                      patch-chrome_browser_ui_panels_panel_manager_cc 
	                      patch-chrome_browser_ui_task_manager_task_manager_columns_cc 
	                      patch-chrome_browser_ui_views_panels_panel_frame_view_cc 
	                      patch-components_audio_modem_modem_impl_cc 
	                      patch-components_mus_public_cpp_lib_gles2_context_cc 
	                      patch-components_mus_surfaces_surfaces_context_provider_cc 
	                      patch-content_browser_geolocation_location_arbitrator_impl_cc 
	                      patch-media_audio_audio_input_controller_cc 
	                      patch-media_capture_video_video_capture_device_cc 
	                      patch-media_capture_video_video_capture_device_h 
	                      patch-sync_util_get_session_name_cc 
	                      patch-sync_util_get_session_name_linux_cc 
	                      patch-third_party_opus_BUILD_gn 
	                      patch-ui_gl_gl_surface_glx_cc 
	                      patch-v8_src_base_platform_platform-openbsd_cc 
	                      patch-v8_src_libsampler_v8-sampler_cc 

Log message:
update to 54.0.2840.71


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 01:43:02

Modified files:
	net/pure-ftpd  : Makefile distinfo 

Log message:
Update to pure-ftpd-1.0.43.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 01:45:09

Modified files:
	multimedia/mkvtoolnix: Makefile distinfo 

Log message:
Update to mkvtoolnix-9.5.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/26 01:50:37

Modified files:
	lang/php/5.6   : Makefile distinfo 

Log message:
update to 5.6.27


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/26 01:53:47

Modified files:
	usr.sbin/makefs: cd9660.c cd9660.h ffs.c makefs.8 makefs.c 
	                 makefs.h msdos.c 
	usr.sbin/makefs/msdos: mkfs_msdos.h 

Log message:
Remove FS-specific option descriptions from the source code. We have a
manual for that. While there document the isolevel option and remove
some dysfunctional cd9660 options.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/26 02:06:59

Modified files:
	www/nginx      : Makefile distinfo 

Log message:
update to 1.10.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 02:32:46

Log message:
    import devel/p5-Test-Needs 0.002005
    OK jca@
    
    Comment:
    skip tests when modules not available
    
    Description:
    Skip test scripts if modules are not available.  The requested
    modules will be loaded, and optionally have their versions checked.
    If the module is missing, the test script will be skipped.  Modules
    that are found but fail to compile will exit with an error rather
    than skip.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20161026
    
    N ports/devel/p5-Test-Needs/Makefile
    N ports/devel/p5-Test-Needs/distinfo
    N ports/devel/p5-Test-Needs/pkg/DESCR
    N ports/devel/p5-Test-Needs/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 02:36:39

Log message:
    import devel/p5-Devel-CheckOS 1.77
    OK jca@
    
    Comment:
    check what OS we are running on
    
    Description:
    Devel::CheckOS provides a more friendly interface to $^O, and also
    lets you check for various OS "families" such as "Unix", which
    includes things like Linux, Solaris, AIX etc.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20161026
    
    N ports/devel/p5-Devel-CheckOS/Makefile
    N ports/devel/p5-Devel-CheckOS/distinfo
    N ports/devel/p5-Devel-CheckOS/pkg/DESCR
    N ports/devel/p5-Devel-CheckOS/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 02:38:46

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

Log message:
Update to libgexiv2-0.10.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 02:39:07

Modified files:
	graphics/shotwell: Makefile distinfo 
Added files:
	graphics/shotwell/patches: patch-Makefile_in 
	                           patch-vapi_misc_vapi 

Log message:
Update to shotwell-0.25.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 02:44:00

Modified files:
	devel          : Makefile 

Log message:
+p5-Devel-CheckOS
+p5-Test-Needs


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 03:18:57

Modified files:
	devel/p5-Devel-CheckOS: Makefile 
	devel/p5-Test-Needs: Makefile 

Log message:
Add PKG_ARCH * for pure Perl modules, I have missed this at import.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/26 05:24:17

Modified files:
	regress/lib/libm/fenv: Makefile 

Log message:
use -ffloat-store to avoid too much precision which breaks the subtle test
on some platforms; suggested by and ok martynas@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/10/26 05:48:07

Modified files:
	usr.bin/tmux   : cmd-load-buffer.c 

Log message:
Buffer name can be NULL, check before strdup().


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 06:35:08

Modified files:
	multimedia/gstreamer-0.10: Makefile.inc 
	multimedia/gstreamer-0.10/core: Makefile 
	multimedia/gstreamer-0.10/plugins-bad: Makefile 
	multimedia/gstreamer-0.10/plugins-base: Makefile 
	multimedia/gstreamer-0.10/plugins-ffmpeg: Makefile 
	multimedia/gstreamer-0.10/plugins-gl: Makefile 
	multimedia/gstreamer-0.10/plugins-good: Makefile 
	multimedia/gstreamer-0.10/plugins-ugly: Makefile 
	multimedia/gstreamer-0.10/py-gstreamer: Makefile 
	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:
http -> https


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 07:16:36

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

Log message:
Update to py-botocore-1.4.67.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 07:16:55

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/26 07:17:17

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/26 07:21:52

Modified files:
	distrib/sets/lists/base: md.i386 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/26 07:42:54

Modified files:
	sys/arch/mips64/mips64: cpu.c 
	sys/arch/octeon/octeon: machdep.c 
	sys/arch/sgi/sgi: ip27_machdep.c ip30_machdep.c 

Log message:
Increment `ncpus' to its final value already during autoconfiguration so
that percpu data areas get allocated properly on mips64 platforms. It is
too late to set the value during launch of secondary CPUs.

ok jasper@ kettenis@ dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2016/10/26 08:06:05

Modified files:
	sbin/ping      : ping.8 

Log message:
Due to 64 bit seconds + 64 bit nano seconds resolution and the
addition of a MAC we need at least 24 bytes packet size these days to
show timing information.
Pointed out by Tamas Horvath, thanks!
OK jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 08:06:33

Modified files:
	regress/sys/net/pflow: Makefile flow.pl gen_traffic.c 
	                       template.pl 

Log message:
Cleanup pflow test before fixing it.  Be more verbose to make
debugging easier.  Handle EINPROGRESS connect(2) error correctly.
Perl pack Q fails on 32 bit machines, add workaround.  Restore
interfaces in END block, works also if script dies.
OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/26 08:06:46

Modified files:
	usr.sbin/makefs: cd9660.c 

Log message:
Use OPT_BOOL, not OPT_INT32 for boolean cd9660 options.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/26 08:14:17

Modified files:
	usr.sbin/makefs: cd9660.c cd9660.h makefs.8 
	usr.sbin/makefs/cd9660: cd9660_eltorito.c 

Log message:
Remove cd9660's chrp-boot option. deraadt confirmed we don't support any
CHRP hardware.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 08:15:59

Modified files:
	sbin/pfctl     : pfctl_parser.c 

Log message:
When using a /32 IPv4 interface address, pfctl(8) reports a 0.0.0.0
as broadcast address.  The kernel does not consider this a broadcast
address and ifconfig(8) has a check to exclude it.  Use the same
check in pfctl(8).
Found by regress/sbin/pfctl pfi2; OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/26 08:17:42

Modified files:
	usr.sbin/makefs: makefs.8 

Log message:
Add the omit-trailing-period cd9660 option to the manual.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/26 09:22:40

Modified files:
	usr.sbin/makefs: makefs.8 
	usr.sbin/makefs/cd9660: cd9660_eltorito.c 

Log message:
mac68k is discontinued


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/26 09:31:13

Modified files:
	usr.sbin/makefs: cd9660.c cd9660.h ffs.c 
	usr.sbin/makefs/cd9660: cd9660_eltorito.c cd9660_write.c 
	usr.sbin/makefs/ffs: buf.c ffs_alloc.c mkfs.c 

Log message:
s/EXIT_FAILURE/1/


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/26 10:18:45

Modified files:
	sbin/ping      : ping.8 

Log message:
in florian;s last commit i urged him to change "twenty-four" to
"twenty four", arguing, i think, that the internet is wrong; well
seemingly i'm wrong, and you should hyphenate numbers when spelled out
- who'd have thought it. apologies to florian and the diff submitter
(and the internet);

still, what i should have advised, and what i've done here, is use "24",
which is much simpler, fits the surrounding text, and agrees with oed
style advice;


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/26 10:25:06

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

Log message:
Section name references are case sensitive


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/10/26 11:24:13

Modified files:
	usr.sbin/bgpctl: bgpctl.8 

Log message:
nicer list width; from julien dhaille


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/26 12:16:49

Modified files:
	graphics/openjpeg: Makefile distinfo 
	graphics/openjpeg/patches: patch-applications_codec_convert_c 
	graphics/openjpeg/pkg: PLIST 
Added files:
	graphics/openjpeg/patches: patch-configure_ac 
Removed files:
	graphics/openjpeg/patches: patch-configure 

Log message:
Update to openjpeg-1.5.2

This doesn't solve all the problems currently affecting openjpeg, but
makes it easier to pick up fixes.  Cheating a bit, as the lib lost two
symbols, but those should never have been included in the library
anyway.

Feedback, tests and ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 13:14:28

Modified files:
	regress/sys/net/pf_forward: Makefile 

Log message:
In addition to forwarding and path MTU discovery with pf, check
that ICMP Time Exceeded packets are generated.  Traceroute output
from packets forwarded through pf and a router must contain 3 hops
and every hop must respond.
Do not test with af-to and reply-to rules as this does not work
right now.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/10/26 13:21:51

Modified files:
	app/xterm      : main.c 

Log message:
With the disabling of Tektronics emulation, the pledge(2) promises could
be reduced a bit: no more "cpath" should be required.
from Sebastien Marie. Thanks.
Reviewed by schwarze@, "put it in" deraadt@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/10/26 14:08:14

Modified files:
	app/xenodm/xenodm: dm.c 

Log message:
Add a "flock" promise.  If there are no local cache files for the user,
fontconfig may try to lock the shared cache files using fcntl(2).

ok matthieu


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/26 14:54:47

Modified files:
	build/mirrors  : openbgpd-ftp.html.head 
	                 openntpd-portable.html.head 

Log message:
add canonical links for openbgpd and openntpd

ok tj, no objection from henning


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/26 14:55:20

Modified files:
	openbgpd       : ftp.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/26 14:56:24

Modified files:
	openbgpd       : goals.html index.html manual.html papers.html 
	                 users.html 
	openntpd       : features.html goals.html index.html manual.html 
	                 papers.html 

Log message:
add canonical links for openbgpd and openntpd

ok tj, no objection from henning


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/26 14:57:07

Modified files:
	.              : testimonials.html 

Log message:
add canonical link


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/26 15:07:22

Modified files:
	sys/net        : if_pflog.c pf.c pf_ioctl.c pf_lb.c pf_norm.c 
	                 pf_osfp.c pf_table.c pfvar.h 
Added files:
	sys/net        : pfvar_priv.h 

Log message:
Put union pf_headers and struct pf_pdesc into separate header file
pfvar_priv.h.  The pf_headers had to be defined in multiple .c files
before.  In pfvar.h it would have unknown storage size, this file
is included in too many places.  The idea is to have a private pf
header that is only included in the pf part of the kernel.  For now
it contains pf_pdesc and pf_headers, it may be extended later.
discussion, input and OK henning@ procter@ sashan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	millert@cvs.openbsd.org	2016/10/26 15:23:10

Modified files:
	security/sudo  : Makefile distinfo 

Log message:
Update to sudo 1.8.18p1


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/26 21:00:35

Modified files:
	sys/kern       : uipc_mbuf.c 
	sys/net        : if.h 

Log message:
add a new pool for 2k + 2 byte (mcl2k2) clusters.

a certain vendor likes to make chips that specify the rx buffer
sizes in kilobyte increments. unfortunately it places the ethernet
header on the start of the rx buffer, which means if you give it a
mcl2k cluster, the ethernet header will not be ETHER_ALIGNed cos
mcl2k clusters are always allocated on 2k boundarys (cos they pack
into pages well). that in turn means the ip header wont be aligned
correctly.

the current workaround on these chips has been to let non-strict
alignment archs just use the normal 2k cluster, but use whatever
cluster can fit 2k + 2 on strict archs. that turns out to be the
4k cluster, meaning we waste nearly 2k of space on every packet.

properly aligning the ethernet header and ip headers gives a
performance boost, even on non-strict archs.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/26 21:06:53

Modified files:
	sys/dev/pci    : if_em.c if_ix.c if_em.h 

Log message:
tell ix and em to use 2k+ETHER_ALIGN clusters for rx on all archs.

this means that the ethernet header and therefore its payload will
be aligned correctly for the stack. without this em and ix are
sufferring a 30 to 40 percent hit in forwarding performance because
the ethernet stack expects to be able to prepend 8 bytes for an
ethernet header so it can gaurantee its alignment. because em and
ix only had 6 bytes where the ethernet header was, it always prepends
an mbuf which turns out to be expensive. this way the prepend will
be cheap because the 8 byte space will exist.

2k+ETHER_ALIGN clusters will end up using the newly created mcl2k2
pool.

the regression was isolated and the fix tested by hrvoje popovski.
ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/26 21:29:55

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
refactor m_pullup a bit.

the most important change is that if the requested data is already
in the first mbuf in the chain, return quickly.

if that isnt true, the code will try to use the first mbuf to fit
the requested data.

if that isnt true, it will prepend an mbuf, and maybe a cluster,
to fit the requested data.

m_pullup will now try to maintain the alignment of the original
payload, even when prepending a new mbuf for it.

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/10/26 22:37:47

Modified files:
	usr.bin/sndiod : dsp.c file.c siofile.c sock.c 

Log message:
Fix many typos in comments, from Michael W. Bombardieri <mb at ii.net>


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/10/26 23:08:23

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Uniformize debug printfs, by using consistently __func__ everywhere.
From Michael W. Bombardieri <mb at ii.net>


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/26 23:36:35

Modified files:
	sys/arch/alpha/alpha: cpu.c 

Log message:
increment ncpus when a cpu is attached, not when its booted.

fixes percpu allocations, like visa@ just did on mips64.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/10/26 23:42:20

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.socppc md.sparc64 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	joris@cvs.openbsd.org	2016/10/27 01:12:02

Modified files:
	usr.bin/cvs    : tag.c 

Log message:
minor whitespace fixes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 01:29:18

Modified files:
	graphics/libgexiv2: Makefile 

Log message:
Give maintainer to the hobbits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 01:33:44

Modified files:
	graphics/goocanvas2: Makefile 
	devel/libglade2: Makefile 

Log message:
Hobbits take maintainer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/27 01:53:24

Log message:
    Import converters/lua-utf8.
    
    UTF-8 support module for Lua and LuaJIT which is mainly compatible with Lua's
    own string module.
    
    It also adds some useful routines against UTF-8 features, such as interfaces
    to escape Unicode sequences in strings and translate Unicode offsets and byte
    offsets.
    
    OK jca@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161027
    
    N ports/converters/lua-utf8/Makefile
    N ports/converters/lua-utf8/distinfo
    N ports/converters/lua-utf8/pkg/PLIST
    N ports/converters/lua-utf8/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/27 01:56:18

Modified files:
	converters     : Makefile 

Log message:
Add converters/lua-utf8.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/10/27 02:21:58

Modified files:
	usr.sbin/bgpd  : rde.h 
	usr.sbin/tcpdump: print-bgp.c 

Log message:
Huawei squatted on BGP Path Attribute 30, and Cisco squatted on 31.  So,
IANA moved the Large Communities attribute to 32, which is a nice pun on
the problem it is solving.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 02:25:00

Modified files:
	devel/harfbuzz : Makefile distinfo 
	devel/harfbuzz/pkg: PLIST-main 

Log message:
Update to harfbuzz-1.3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 02:35:26

Modified files:
	print/hplip    : Makefile distinfo 
	print/hplip/patches: patch-Makefile_in patch-configure 
	                     patch-io_hpmud_musb_c 
	print/hplip/pkg: PLIST-hpijs 

Log message:
Update to hplip-3.16.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 02:37:51

Modified files:
	graphics/openjpeg: Makefile 

Log message:
Needs devel/libtool to build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 02:53:08

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_docker_docker_py 
	                                   patch-platform_gsutil_gslib_commands_config_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-132.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 02:59:40

Modified files:
	misc/osinfo    : Makefile.inc 

Log message:
Make V conditionnal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 02:59:58

Modified files:
	misc/osinfo/osinfo-db-tools: Makefile distinfo 

Log message:
Update to osinfo-db-tools-1.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 03:00:14

Modified files:
	misc/osinfo/osinfo-db: Makefile distinfo 
	misc/osinfo/osinfo-db/pkg: PLIST 

Log message:
Update to osinfo-db-20161026.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/27 03:40:20

Modified files:
	sys/kern       : subr_percpu.c 

Log message:
use ncpusfound to size the percpu allocations.

ncpus is used on half the architectures to indicate the number of
cpus that have been hatched, and is used on them in things like ddb
to figure out how many cpus to shut down again.

ncpusfound is incremented during autoconf on MP machines to show
how big ncpus will probably become. percpu is initted after autoconf
but before cpus are hatched, so this works well.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/27 03:46:14

Modified files:
	sys/arch/alpha/alpha: cpu.c 

Log message:
revert 1.41 now that subr_percpu is using ncpusfound instead of ncpus.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/27 03:48:01

Modified files:
	sys/net        : switchofp.c 

Log message:
Avoid a use after free in swofp_flow_timeout().  The
swofp_flow_entry_delete() call frees the memory pointed to by the swfe
variable which was used later in the loop.

ok rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/27 04:48:25

Modified files:
	sys/kern       : kern_pledge.c 
	lib/libc/sys   : pledge.2 

Log message:
For consistency, allow symlinkat(2) in the same way as symlink(2);
no need to wait until the first program using it breaks...
"could make sense" semarie@ (and thanks for the cluestick)
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/27 05:42:28

Modified files:
	x11/gnome/totem-pl-parser: Makefile distinfo 
	x11/gnome/totem-pl-parser/pkg: PLIST 

Log message:
Update to totem-pl-parser-3.10.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/27 06:53:54

Modified files:
	usr.bin/colrm  : colrm.c 

Log message:
obvious case of s/LC_ALL/LC_CTYPE/, noticed by Jan Stary


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/27 07:19:27

Modified files:
	sys/arch/mips64/mips64: cpu.c 
	sys/arch/octeon/octeon: machdep.c 
	sys/arch/sgi/sgi: ip27_machdep.c ip30_machdep.c 

Log message:
Revert previous `ncpus' change because the percpu code now works
without it.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/10/27 07:55:21

Modified files:
	usr.sbin/tcpdump: print-pfsync.c 

Log message:
Don't assume clr->ifname is a NUL-terminated printable string.
Use vis(3) to safely print ifname and stop at IFNAMSIZ bytes.
Found with afl by jsg@.  OK jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/27 08:04:09

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

Log message:
Improve channel ring locking strategy

Make sure to hold the ring buffer lock for the complete duration
of a channel ring I/O operation.  For read operations this means
peeking and reading is done uninterrupted and for both reads and
writes this places the buffer space availability check under the
same lock as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/27 08:32:10

Modified files:
	usr.sbin/config: ukcutil.c 

Log message:
Remove OLDSCSIBUS conditional. Unused since it was imported 21 years ago.

ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/27 08:33:30

Modified files:
	usr.sbin/config: mkioconf.c 

Log message:
Remove some code that was already disabled when it was committed
20 years ago.  While there, eliminate two dead assignments.

ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/27 10:17:43

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

Log message:
vmm is also available on i386 now, so don't restrict it to amd64.

OK mikeb@ mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/27 11:16:40

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 
	telephony/p5-Net-SIP/pkg: PLIST 

Log message:
update p5-Net-SIP to 0.688


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/27 11:26:09

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS 3.0219


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/27 12:30:42

Modified files:
	www/iridium    : Makefile distinfo 
	www/iridium/files: audio_manager_openbsd.cc 
	                   audio_manager_openbsd.h sndio_input.h 
	                   sndio_output.cc sndio_output.h 
	www/iridium/patches: 
	                     patch-apps_ui_views_app_window_frame_view_cc 
	                     patch-ash_display_mirror_window_controller_cc 
	                     patch-base_atomicops_h 
	                     patch-base_base_paths_posix_cc 
	                     patch-base_debug_debugger_posix_cc 
	                     patch-base_debug_stack_trace_h 
	                     patch-base_debug_stack_trace_posix_cc 
	                     patch-base_posix_unix_domain_socket_linux_cc 
	                     patch-base_process_launch_h 
	                     patch-base_process_memory_cc 
	                     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_posix_cc 
	                     patch-base_sys_info_openbsd_cc 
	                     patch-base_sys_info_posix_cc 
	                     patch-base_threading_platform_thread_linux_cc 
	                     patch-base_threading_platform_thread_posix_cc 
	                     patch-base_trace_event_process_memory_dump_cc 
	                     patch-chrome_app_chrome_main_cc 
	                     patch-chrome_app_chrome_main_delegate_cc 
	                     patch-chrome_app_chrome_main_delegate_h 
	                     patch-chrome_app_chromium_strings_grd 
	                     patch-chrome_app_generated_resources_grd 
	                     patch-chrome_app_google_chrome_strings_grd 
	                     patch-chrome_app_resources_locale_settings_grd 
	                     patch-chrome_browser_about_flags_cc 
	                     patch-chrome_browser_after_startup_task_utils_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_browser_main_posix_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_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_api_image_writer_private_image_writer_private_api_cc 
	                     patch-chrome_browser_extensions_api_input_ime_input_ime_api_h 
	                     patch-chrome_browser_extensions_api_messaging_message_service_cc 
	                     patch-chrome_browser_extensions_api_music_manager_private_device_id_linux_cc 
	                     patch-chrome_browser_extensions_api_omnibox_omnibox_api_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_gpu_gl_string_manager_cc 
	                     patch-chrome_browser_gpu_gpu_feature_checker_cc 
	                     patch-chrome_browser_interstitials_chrome_controller_client_cc 
	                     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_log_uploader_cc 
	                     patch-chrome_browser_memory_details_cc 
	                     patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc 
	                     patch-chrome_browser_net_async_dns_field_trial_cc 
	                     patch-chrome_browser_notifications_message_center_notification_manager_cc 
	                     patch-chrome_browser_platform_util_linux_cc 
	                     patch-chrome_browser_process_singleton_posix_cc 
	                     patch-chrome_browser_renderer_preferences_util_cc 
	                     patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                     patch-chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc 
	                     patch-chrome_browser_speech_tts_controller_impl_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_view_prefs_cc 
	                     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_startup_bad_flags_prompt_cc 
	                     patch-chrome_browser_ui_startup_startup_browser_creator_cc 
	                     patch-chrome_browser_ui_toolbar_app_menu_model_cc 
	                     patch-chrome_browser_ui_views_accelerator_table_cc 
	                     patch-chrome_browser_ui_views_app_list_linux_app_list_linux_cc 
	                     patch-chrome_browser_ui_views_apps_chrome_native_app_window_views_aura_cc 
	                     patch-chrome_browser_ui_views_chrome_views_delegate_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_view_cc 
	                     patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                     patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_layout_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_message_center_message_center_frame_view_cc 
	                     patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                     patch-chrome_browser_ui_views_tabs_tab_strip_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_options_browser_options_handler_cc 
	                     patch-chrome_browser_ui_webui_options_browser_options_handler_h 
	                     patch-chrome_browser_web_applications_web_app_cc 
	                     patch-chrome_browser_web_applications_web_app_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_url_constants_cc 
	                     patch-chrome_common_url_constants_h 
	                     patch-chromecast_browser_cast_browser_main_parts_cc 
	                     patch-components_cookie_config_cookie_store_util_cc 
	                     patch-components_metrics_drive_metrics_provider_linux_cc 
	                     patch-components_neterror_resources_neterror_js 
	                     patch-components_omnibox_browser_omnibox_field_trial_cc 
	                     patch-components_policy_resources_policy_templates_json 
	                     patch-components_policy_tools_generate_policy_source_py 
	                     patch-components_storage_monitor_storage_monitor_openbsd_cc 
	                     patch-components_storage_monitor_storage_monitor_openbsd_h 
	                     patch-content_app_content_main_runner_cc 
	                     patch-content_browser_accessibility_browser_accessibility_h 
	                     patch-content_browser_accessibility_browser_accessibility_manager_h 
	                     patch-content_browser_browser_main_loop_cc 
	                     patch-content_browser_child_process_launcher_cc 
	                     patch-content_browser_devtools_protocol_color_picker_cc 
	                     patch-content_browser_download_base_file_cc 
	                     patch-content_browser_download_base_file_linux_cc 
	                     patch-content_browser_gpu_gpu_data_manager_impl_private_cc 
	                     patch-content_browser_gpu_gpu_internals_ui_cc 
	                     patch-content_browser_media_media_internals_cc 
	                     patch-content_browser_power_usage_monitor_impl_cc 
	                     patch-content_browser_ppapi_plugin_process_host_cc 
	                     patch-content_browser_renderer_host_media_video_capture_device_client_cc 
	                     patch-content_browser_renderer_host_render_process_host_impl_cc 
	                     patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                     patch-content_browser_time_zone_monitor_cc 
	                     patch-content_browser_utility_process_host_impl_cc 
	                     patch-content_common_sandbox_init_openbsd_cc 
	                     patch-content_common_sandbox_init_openbsd_h 
	                     patch-content_common_set_process_title_linux_cc 
	                     patch-content_common_set_process_title_linux_h 
	                     patch-content_gpu_gpu_main_cc 
	                     patch-content_ppapi_plugin_ppapi_plugin_main_cc 
	                     patch-content_public_common_content_switches_cc 
	                     patch-content_public_common_content_switches_h 
	                     patch-content_renderer_devtools_v8_sampling_profiler_cc 
	                     patch-content_renderer_render_thread_impl_cc 
	                     patch-content_renderer_renderer_main_cc 
	                     patch-content_renderer_renderer_main_platform_delegate_linux_cc 
	                     patch-content_renderer_webscrollbarbehavior_impl_gtkoraura_cc 
	                     patch-content_utility_utility_main_cc 
	                     patch-dbus_property_cc 
	                     patch-device_serial_serial_io_handler_posix_cc 
	                     patch-device_serial_serial_service_impl_cc 
	                     patch-extensions_browser_api_serial_serial_api_cc 
	                     patch-gpu_config_gpu_info_collector_linux_cc 
	                     patch-gpu_config_gpu_info_collector_linux_h 
	                     patch-gpu_config_gpu_info_collector_x11_cc 
	                     patch-ipc_ipc_message_utils_cc 
	                     patch-ipc_ipc_message_utils_h 
	                     patch-iridium_trknotify_cpp 
	                     patch-media_audio_audio_manager_cc 
	                     patch-media_audio_audio_manager_h 
	                     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_file_video_capture_device_factory_cc 
	                     patch-media_capture_video_video_capture_device_factory_cc 
	                     patch-native_client_build_compiler_version_py 
	                     patch-net_base_address_tracker_linux_h 
	                     patch-net_base_network_change_notifier_cc 
	                     patch-net_base_network_interfaces_posix_cc 
	                     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_proxy_config_service_linux_cc 
	                     patch-net_proxy_proxy_service_cc 
	                     patch-net_socket_socks5_client_socket_cc 
	                     patch-net_tools_get_server_time_get_server_time_cc 
	                     patch-net_udp_udp_socket_posix_cc 
	                     patch-net_url_request_url_request_context_builder_cc 
	                     patch-pdf_pdfium_pdfium_engine_cc 
	                     patch-ppapi_shared_impl_private_net_address_private_impl_cc 
	                     patch-skia_ext_SkMemory_new_handler_cpp 
	                     patch-third_party_WebKit_Source_bindings_core_v8_V8ScriptRunner_cpp 
	                     patch-third_party_WebKit_Source_platform_fonts_FontCache_cpp 
	                     patch-third_party_WebKit_Source_platform_fonts_FontCache_h 
	                     patch-third_party_WebKit_Source_platform_fonts_SimpleFontData_cpp 
	                     patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                     patch-third_party_WebKit_Source_platform_heap_StackFrameDepth_cpp 
	                     patch-third_party_WebKit_Source_platform_heap_ThreadState_cpp 
	                     patch-third_party_WebKit_Source_platform_heap_ThreadState_h 
	                     patch-third_party_WebKit_Source_web_PopupMenuImpl_cpp 
	                     patch-third_party_WebKit_Source_wtf_MathExtras_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_libXNVCtrl_NVCtrl_c 
	                     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_src_libusb_core_c 
	                     patch-third_party_pdfium_core_fxcrt_include_fx_system_h 
	                     patch-third_party_pdfium_core_fxge_ge_fx_ge_linux_cpp 
	                     patch-third_party_pdfium_fpdfsdk_javascript_JS_Value_cpp 
	                     patch-third_party_pdfium_third_party_libopenjpeg20_opj_malloc_h 
	                     patch-third_party_protobuf_src_google_protobuf_stubs_atomicops_h 
	                     patch-third_party_protobuf_src_google_protobuf_stubs_strutil_h 
	                     patch-third_party_skia_src_gpu_GrAutoLocaleSetter_h 
	                     patch-third_party_skia_src_ports_SkOSFile_stdio_cpp 
	                     patch-third_party_webrtc_base_httpcommon_cc 
	                     patch-third_party_webrtc_base_network_cc 
	                     patch-third_party_webrtc_base_physicalsocketserver_cc 
	                     patch-third_party_webrtc_base_platform_thread_cc 
	                     patch-third_party_webrtc_base_stringutils_h 
	                     patch-third_party_webrtc_system_wrappers_source_timestamp_extrapolator_cc 
	                     patch-third_party_webrtc_voice_engine_voice_engine_defines_h 
	                     patch-third_party_yasm_source_config_openbsd_config_h 
	                     patch-third_party_yasm_source_config_openbsd_libyasm-stdint_h 
	                     patch-tools_gyp_pylib_gyp_generator_make_py 
	                     patch-tools_gyp_pylib_gyp_generator_ninja_py 
	                     patch-ui_accessibility_platform_ax_platform_node_h 
	                     patch-ui_app_list_app_list_constants_cc 
	                     patch-ui_app_list_app_list_constants_h 
	                     patch-ui_app_list_app_list_menu_cc 
	                     patch-ui_app_list_views_app_list_item_view_cc 
	                     patch-ui_app_list_views_app_list_view_cc 
	                     patch-ui_base_ime_ime_engine_handler_interface_h 
	                     patch-ui_base_ime_input_method_factory_cc 
	                     patch-ui_base_ime_input_method_initializer_cc 
	                     patch-ui_base_resource_resource_bundle_cc 
	                     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_canvas_skia_cc 
	                     patch-ui_gfx_codec_png_codec_cc 
	                     patch-ui_gfx_font_fallback_linux_cc 
	                     patch-ui_gfx_font_render_params_h 
	                     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_sync_control_vsync_provider_cc 
	                     patch-ui_message_center_message_center_style_h 
	                     patch-ui_message_center_views_message_center_button_bar_cc 
	                     patch-ui_message_center_views_message_center_button_bar_h 
	                     patch-ui_resources_ui_resources_grd 
	                     patch-ui_views_accessibility_native_view_accessibility_h 
	                     patch-ui_views_controls_textfield_textfield_cc 
	                     patch-ui_views_style_platform_style_cc 
	                     patch-ui_views_views_delegate_cc 
	                     patch-ui_views_views_delegate_h 
	                     patch-ui_views_views_switches_cc 
	                     patch-ui_views_window_custom_frame_view_cc 
	                     patch-ui_views_window_dialog_delegate_cc 
	                     patch-ui_webui_resources_js_cr_js 
	                     patch-v8_src_base_platform_platform-posix_cc 
	                     patch-v8_src_globals_h 
	                     patch-v8_src_log-utils_h 
	www/iridium/pkg: PLIST 
Added files:
	www/iridium/patches: patch-BUILD_gn patch-ash_shell_cc 
	                     patch-base_BUILD_gn 
	                     patch-base_linux_util_cc 
	                     patch-base_native_library_posix_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_trace_event_malloc_dump_provider_cc 
	                     patch-build_config_BUILDCONFIG_gn 
	                     patch-build_config_BUILD_gn 
	                     patch-build_config_allocator_gni 
	                     patch-build_config_compiler_BUILD_gn 
	                     patch-build_config_compiler_compiler_gni 
	                     patch-build_config_features_gni 
	                     patch-build_config_linux_pkg-config_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_mash_mash_runner_cc 
	                     patch-chrome_browser_BUILD_gn 
	                     patch-chrome_browser_browser_process_impl_cc 
	                     patch-chrome_browser_browser_process_impl_h 
	                     patch-chrome_browser_extensions_BUILD_gn 
	                     patch-chrome_browser_platform_util_h 
	                     patch-chrome_browser_plugins_plugins_resource_service_cc 
	                     patch-chrome_browser_profiles_profile_impl_io_data_cc 
	                     patch-chrome_browser_resources_safe_browsing_gen_file_type_proto_py 
	                     patch-chrome_browser_safe_browsing_permission_reporter_cc 
	                     patch-chrome_browser_ui_tab_helpers_cc 
	                     patch-chrome_browser_ui_views_frame_system_menu_model_delegate_cc 
	                     patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                     patch-chrome_common_BUILD_gn 
	                     patch-chrome_common_extensions_chrome_extensions_client_cc 
	                     patch-chromecast_browser_cast_content_browser_client_cc 
	                     patch-components_autofill_core_browser_autofill_experiments_cc 
	                     patch-components_content_settings_core_browser_website_settings_registry_cc 
	                     patch-components_crash_content_app_BUILD_gn 
	                     patch-components_crash_content_browser_BUILD_gn 
	                     patch-components_filesystem_file_system_app_cc 
	                     patch-components_metrics_BUILD_gn 
	                     patch-components_os_crypt_os_crypt_h 
	                     patch-components_storage_monitor_BUILD_gn 
	                     patch-components_sync_base_get_session_name_cc 
	                     patch-components_sync_base_get_session_name_linux_cc 
	                     patch-content_browser_BUILD_gn 
	                     patch-content_browser_device_sensors_data_fetcher_shared_memory_h 
	                     patch-content_common_BUILD_gn 
	                     patch-content_shell_browser_shell_browser_context_cc 
	                     patch-content_shell_browser_shell_browser_main_parts_cc 
	                     patch-content_zygote_zygote_main_linux_cc 
	                     patch-device_bluetooth_BUILD_gn 
	                     patch-device_gamepad_gamepad_provider_cc 
	                     patch-device_geolocation_location_arbitrator_impl_cc 
	                     patch-device_hid_BUILD_gn 
	                     patch-device_media_transfer_protocol_media_transfer_protocol_daemon_client_h 
	                     patch-device_media_transfer_protocol_media_transfer_protocol_manager_h 
	                     patch-device_serial_BUILD_gn 
	                     patch-device_usb_BUILD_gn 
	                     patch-media_audio_BUILD_gn 
	                     patch-media_media_options_gni 
	                     patch-net_BUILD_gn 
	                     patch-printing_backend_print_backend_cups_h 
	                     patch-sandbox_BUILD_gn 
	                     patch-sandbox_linux_BUILD_gn 
	                     patch-services_shell_runner_host_BUILD_gn 
	                     patch-services_ui_public_cpp_gles2_context_cc 
	                     patch-services_ui_surfaces_surfaces_context_provider_cc 
	                     patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_cpp 
	                     patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_h 
	                     patch-third_party_WebKit_Source_wtf_BUILD_gn 
	                     patch-third_party_angle_BUILD_gn 
	                     patch-third_party_ffmpeg_BUILD_gn 
	                     patch-third_party_libusb_BUILD_gn 
	                     patch-third_party_protobuf_src_google_protobuf_stubs_platform_macros_h 
	                     patch-third_party_sqlite_BUILD_gn 
	                     patch-third_party_usrsctp_BUILD_gn 
	                     patch-third_party_webrtc_BUILD_gn 
	                     patch-third_party_webrtc_base_BUILD_gn 
	                     patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                     patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                     patch-third_party_webrtc_system_wrappers_source_atomic32_non_darwin_unix_cc 
	                     patch-third_party_zlib_BUILD_gn 
	                     patch-tools_gn_args_cc 
	                     patch-tools_gn_bootstrap_bootstrap_py 
	                     patch-tools_gn_bootstrap_build_ninja_template 
	                     patch-tools_perf_chrome_telemetry_build_BUILD_gn 
	                     patch-ui_gl_BUILD_gn 
	                     patch-ui_gl_sync_control_vsync_provider_h 
	                     patch-ui_message_center_views_message_view_factory_cc 
	                     patch-ui_views_bubble_bubble_dialog_delegate_cc 
	                     patch-ui_views_corewm_tooltip_aura_cc 
	                     patch-ui_views_examples_widget_example_cc 
	                     patch-ui_views_mus_aura_init_cc 
	                     patch-ui_views_mus_aura_init_h 
	                     patch-ui_webui_resources_js_icon_js 
	                     patch-v8_BUILD_gn 
Removed files:
	www/iridium/patches: patch-apps_apps_gypi patch-base_base_gypi 
	                     patch-base_message_loop_message_loop_cc 
	                     patch-build_all_gyp patch-build_common_gypi 
	                     patch-build_filename_rules_gypi 
	                     patch-chrome_browser_task_manager_task_manager_cc 
	                     patch-chrome_browser_ui_app_list_app_list_service_cc 
	                     patch-chrome_browser_ui_ash_system_tray_delegate_common_cc 
	                     patch-chrome_browser_ui_panels_panel_manager_cc 
	                     patch-chrome_browser_ui_views_ash_chrome_browser_main_extra_parts_ash_cc 
	                     patch-chrome_browser_ui_views_exclusive_access_bubble_views_cc 
	                     patch-chrome_browser_ui_views_panels_panel_frame_view_cc 
	                     patch-chrome_browser_ui_views_task_manager_view_cc 
	                     patch-chrome_chrome_browser_extensions_gypi 
	                     patch-chrome_chrome_browser_gypi 
	                     patch-chrome_chrome_browser_ui_gypi 
	                     patch-chrome_chrome_common_gypi 
	                     patch-chrome_chrome_exe_gypi 
	                     patch-chrome_chrome_utility_gypi 
	                     patch-chrome_common_extensions_api_schemas_gypi 
	                     patch-chrome_common_variations_fieldtrial_testing_config_gyp 
	                     patch-chrome_policy_templates_gypi 
	                     patch-components_audio_modem_modem_impl_cc 
	                     patch-components_metrics_gypi 
	                     patch-components_storage_monitor_gypi 
	                     patch-content_browser_gamepad_gamepad_provider_cc 
	                     patch-content_browser_geolocation_location_arbitrator_impl_cc 
	                     patch-content_browser_renderer_host_render_widget_host_impl_cc 
	                     patch-content_content_browser_gypi 
	                     patch-content_content_common_gypi 
	                     patch-content_content_renderer_gypi 
	                     patch-content_renderer_media_webrtc_audio_renderer_cc 
	                     patch-device_battery_battery_gyp 
	                     patch-device_hid_hid_gyp 
	                     patch-device_serial_serial_gyp 
	                     patch-gpu_gles2_conform_support_gles2_conform_support_gyp 
	                     patch-gpu_gpu_config_gypi 
	                     patch-gpu_gpu_ipc_service_gypi 
	                     patch-gpu_tools_tools_gyp 
	                     patch-media_audio_audio_input_controller_cc 
	                     patch-media_capture_video_video_capture_device_cc 
	                     patch-media_capture_video_video_capture_device_h 
	                     patch-media_media_gyp 
	                     patch-net_net_common_gypi 
	                     patch-net_net_gypi 
	                     patch-printing_backend_print_backend_cups_cc 
	                     patch-printing_printing_gyp 
	                     patch-remoting_remoting_all_gyp 
	                     patch-remoting_remoting_host_gypi 
	                     patch-skia_skia_chrome_gypi 
	                     patch-skia_skia_common_gypi 
	                     patch-sync_util_get_session_name_cc 
	                     patch-sync_util_get_session_name_linux_cc 
	                     patch-third_party_WebKit_Source_core_core_gyp 
	                     patch-third_party_WebKit_Source_platform_blink_platform_gyp 
	                     patch-third_party_WebKit_Source_platform_image-decoders_png_PNGImageDecoder_cpp 
	                     patch-third_party_WebKit_Source_web_web_gyp 
	                     patch-third_party_ffmpeg_ffmpeg_generated_gypi 
	                     patch-third_party_ffmpeg_ffmpeg_gyp 
	                     patch-third_party_ffmpeg_libavutil_autorename_libavutil_cpu_c 
	                     patch-third_party_iccjpeg_iccjpeg_gyp 
	                     patch-third_party_libXNVCtrl_libXNVCtrl_gyp 
	                     patch-third_party_libjingle_libjingle_gyp 
	                     patch-third_party_libjpeg_turbo_libjpeg_gyp 
	                     patch-third_party_libusb_libusb_gyp 
	                     patch-third_party_libyuv_libyuv_gyp 
	                     patch-third_party_pdfium_build_standalone_gypi 
	                     patch-third_party_pdfium_pdfium_gyp 
	                     patch-third_party_skia_gyp_ports_gyp 
	                     patch-third_party_usrsctp_usrsctp_gyp 
	                     patch-third_party_webrtc_base_base_gyp 
	                     patch-third_party_webrtc_build_common_gypi 
	                     patch-third_party_webrtc_system_wrappers_source_atomic32_posix_cc 
	                     patch-ui_accessibility_accessibility_gyp 
	                     patch-ui_base_ui_base_gyp 
	                     patch-ui_gfx_gfx_gyp patch-ui_gl_gl_gyp 
	                     patch-ui_gl_gl_surface_glx_cc 
	                     patch-ui_message_center_views_message_center_view_cc 
	                     patch-ui_message_center_views_notification_view_cc 
	                     patch-ui_touch_selection_ui_touch_selection_gyp 
	                     patch-ui_views_bubble_bubble_delegate_cc 
	                     patch-ui_views_controls_button_label_button_cc 
	                     patch-ui_views_controls_scrollbar_base_scroll_bar_cc 
	                     patch-ui_views_controls_webview_webview_gyp 
	                     patch-ui_views_views_gyp 
	                     patch-ui_webui_resources_js_util_js 
	                     patch-v8_src_base_platform_platform-openbsd_cc 

Log message:
update to 54.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/10/27 14:32:06

Modified files:
	devel/fossil   : Makefile distinfo 

Log message:
Update fossil to 1.36

Release notes: http://fossil-scm.org/index.html/doc/trunk/www/changes.wiki#v1_36


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/27 14:44:20

Modified files:
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	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 

Log message:
We don't generate an eddep script for kernel builds nowadays. The last
reference to eddep in the kernel Makefile I could find is in 4.3BSD,
released some 30 years ago.

ok tb millert


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/10/27 15:41:20

Modified files:
	sys/net        : if_pfsync.c pf.c pfvar.h 

Log message:
Pass a struct pf_pdesc to pf_route() like it is done in the other
pf functions.  That means less parameters, more consistency and
later we can call functions that need a pd from pf_route().
OK sashan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/27 20:15:51

Modified files:
	graphics/openimageio: Makefile 

Log message:
Mark as broken on powerpc: undefined reference to __atomic_fetch_add_8


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/10/27 21:33:52

Modified files:
	usr.bin/ssh    : ssh-pkcs11.c 

Log message:
Improve pkcs11_add_provider() logging: demote some excessively
verbose error()s to debug()s, include PKCS#11 provider name and slot
in log messages where possible.
bz#2610, based on patch from Jakub Jelen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/27 21:59:16

Modified files:
	plan9/drawterm/patches: patch-posix-power_Makefile 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/27 22:01:33

Added files:
	plan9/drawterm/patches: patch-Make_openbsd 

Log message:
fix build on powerpc and sparc64

ok Stanley Lieber (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/27 22:03:36

Modified files:
	plan9/drawterm : Makefile 
	plan9/drawterm/patches: patch-Make_openbsd 

Log message:
Respect CFLAGS/LDFLAGS

ok Stanley Lieber (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/27 23:46:14

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

Log message:
there's a new mbuf cluster pool.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/28 01:22:59

Modified files:
	usr.bin/basename: basename.c 
	usr.bin/cmp    : cmp.c 
	usr.bin/csplit : csplit.c 
	usr.bin/dirname: dirname.c 
	usr.bin/env    : env.c 
	usr.bin/getconf: getconf.c 
	usr.bin/nice   : nice.c 
	usr.bin/tee    : tee.c 
	usr.bin/uname  : uname.c 
	usr.bin/which  : which.c 

Log message:
Delete some useless setlocale(3) calls in /usr/bin, no functional change.
Patches from Jan Stary <hans at stare dot cz>, tweaked by me and tb@.
While here, apply some simple style improvements:
Sort headers, static void __dead usage(), return from main(),
zap case '?', drop /* NOTREACHED */, drop break after usage(), ...
OK tb@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/28 01:28:27

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

Log message:
Document that rev(1) uses LC_CTYPE.
Triggered by an incorrect patch from Jan Stary.
While here, add an .Xr to cut(1).
OK millert@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/28 01:33:57

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

Log message:
Document that "nl -d" uses LC_CTYPE.
Triggered by an incorrect patch from Jan Stary.
Feedback and OK jmc@, OK millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2016/10/28 01:54:19

Modified files:
	sys/net        : pf_ioctl.c pf.c 

Log message:
- once rule should not attempt to remove its parent rule.
(problem pointed out by Petr, fix proposed by Dilli) _at_ oracle


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 02:01:53

Modified files:
	usr.sbin/snmpd : kroute.c mib.c mps.c smi.c snmpd.h snmpe.c 
	                 timer.c trap.c usm.c 

Log message:
Use snmpd_env as the only global variable for env to simplify the daemon
and avoid problems.

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 02:32:12

Modified files:
	multimedia/mkvtoolnix: Makefile 

Log message:
devel/utfcpp is picked up if installed, so add it as a build-dep.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 03:01:49

Modified files:
	sys/net        : if_switch.c if_switch.h switchofp.c 

Log message:
When doing pktout we must run the classifier again, because some action(s)
might want to use it. For buffered packets we probably need to save that
somehow else, but we don't support it now.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 03:04:03

Modified files:
	sys/net        : if_switch.c 

Log message:
Remove unused function, the code is already inlined in action_output
function.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 03:07:08

Modified files:
	usr.sbin/snmpd : proc.c snmpd.c snmpd.h snmpe.c traphandler.c 

Log message:
Sync snmpd(8) with other daemons proc.c and teach him how to fork+exec.

ok jca@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/10/28 04:11:22

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

Log message:
In iwn(4), stop forcing RTS for every frame in 11n mode.
The RTS threshold should be good enough and applies to all modes.
A similar change was made in iwm(4) not long ago.
tested by myself and benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/28 04:14:16

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

Log message:
get rid of the custom pool in myx for jumbo frames.

now it asks the mbuf layer for the 9k from its pools.

a question from chris@ made me go look at the chip doco again and i
realised that the chip only requires 4 byte alignment for rx buffers,
no 4k alignment for jumbo buffers.

i also found that the chip is supposed to be able to rx up to 9400
bytes instead of 9000. ill fix that later though.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/10/28 04:20:39

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

Log message:
Improve protocol version negotiation for Integrated Components
modelled on the upstream version.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/28 06:42:39

Modified files:
	usr.sbin/tcpdump: pf_print_state.c 

Log message:
Don't assume s->ifname is NUL terminated and printable.
As in pfsync_print_clr() use vis(3) in print_state().  This was also
found with afl though with a different input.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/28 06:54:05

Modified files:
	usr.sbin/tcpdump: print-atalk.c 

Log message:
Return early from atalk_print_llap() if the length is less than the
size of a header to avoid an integer underflow.
Found with afl.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:40:04

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/patches: patch-gio_gunixmount_c 
	devel/glib2/pkg: PLIST 

Log message:
Update to glib2-2.50.1.
This starts the GNOME 3.22 update which will be finished next week at b2k16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:40:27

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

Log message:
Update to atk-2.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:40:46

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 
	graphics/gdk-pixbuf2/pkg: PLIST 

Log message:
Update to gdk-pixbuf-2.36.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:41:02

Modified files:
	x11/gnome/at-spi2-core: Makefile distinfo 
	x11/gnome/at-spi2-core/pkg: PLIST 

Log message:
Update to at-spi2-core-2.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:41:16

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

Log message:
Update to x11/gnome/at-spi2-atk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:41:36

Modified files:
	x11/gtk+3      : Makefile distinfo 
	x11/gtk+3/patches: patch-gtk_gtksettings_c 
	x11/gtk+3/pkg  : PLIST-main 

Log message:
Update to gtk+3-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:41:49

Modified files:
	net/glib2-networking: Makefile distinfo 

Log message:
Update to glib2-networking-2.50.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:42:04

Modified files:
	devel/py-gobject3: Makefile distinfo 

Log message:
Update to py-gobject3-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:42:24

Modified files:
	devel/libsigc++-2: Makefile distinfo 
	devel/libsigc++-2/pkg: PLIST 

Log message:
Update to libsigc++-2.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:42:42

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

Log message:
Update to glib2mm-2.50.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:42:58

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

Log message:
Update to gtk3mm-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:43:25

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

Log message:
Update to libsoup-2.56.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:43:46

Modified files:
	x11/gnome/themes-standard: Makefile distinfo 
	x11/gnome/themes-standard/pkg: PLIST 

Log message:
Update to gnome-themes-standard-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:44:25

Modified files:
	www/webkitgtk4 : Makefile distinfo 
	www/webkitgtk4/patches: patch-CMakeLists_txt 
	                        patch-Source_JavaScriptCore_CMakeLists_txt 
	                        patch-Source_JavaScriptCore_heap_MachineStackMarker_cpp 
	                        patch-Source_JavaScriptCore_jit_ExecutableAllocator_h 
	                        patch-Source_WTF_wtf_Platform_h 
	                        patch-Source_cmake_OptionsCommon_cmake 
	www/webkitgtk4/pkg: PLIST 
Added files:
	www/webkitgtk4/patches: 
	                        patch-Source_JavaScriptCore_dfg_DFGOpInfo_h 
Removed files:
	www/webkitgtk4/patches: 
	                        patch-Source_JavaScriptCore_dfg_DFGNode_h 
	                        patch-Source_JavaScriptCore_heap_CopiedBlock_h 

Log message:
Update to webkitgtk4-2.14.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:45:22

Modified files:
	graphics/gfract: Makefile distinfo 
	graphics/gfract/patches: patch-Makefile patch-my_png_cpp 
Added files:
	graphics/gfract/patches: patch-main_cpp 

Log message:
Update to gfract-1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:45:44

Modified files:
	emulators/snes9x: Makefile 

Log message:
Unbreak with glib2>=2.50.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:46:17

Modified files:
	audio/ardour   : Makefile 
	audio/ardour/patches: patch-gtk2_ardour_new_session_dialog_cc 
Added files:
	audio/ardour/patches: patch-gtk2_ardour_editor_cc 
	                      patch-gtk2_ardour_editor_keyboard_cc 
	                      patch-gtk2_ardour_fft_graph_cc 
	                      patch-gtk2_ardour_gain_meter_cc 
	                      patch-gtk2_ardour_panner2d_cc 
	                      patch-gtk2_ardour_route_time_axis_cc 
	                      patch-libs_gtkmm2ext_fastmeter_cc 

Log message:
Unbreak after changes in glib2mm 2.49.x.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:46:59

Modified files:
	x11/gnome/adwaita-icon-theme: Makefile distinfo 
	x11/gnome/adwaita-icon-theme/pkg: PLIST 

Log message:
Update to adwaita-icon-theme-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:47:17

Modified files:
	x11/gnome/user-docs: Makefile distinfo 
	x11/gnome/user-docs/pkg: PLIST 

Log message:
Update to gnome-user-docs-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:47:35

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.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/28 07:47:52

Modified files:
	x11/gnome/devel-docs: Makefile distinfo 
	x11/gnome/devel-docs/pkg: PLIST 

Log message:
Update to gnome-devel-docs-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/28 08:17:20

Modified files:
	textproc/calibre/patches: patch-src_duktape_duktape_duk_config_h 

Log message:
Fix build on (at least) sparc64.

The offending code uses various methods to define the size and limits of
custom *intptr_t types.  Alas, the most generic method, using
inttypes.h, isn't used because the ifdefs assume that cc(1) defines
__STDC_VERSION__ to 199901L by default.  The easiest fix is to always
use inttypes.h.

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/10/28 08:40:50

Modified files:
	lang/racket-minimal: Makefile distinfo 
	lang/racket-minimal/pkg: PLIST 
Removed files:
	lang/racket-minimal/patches: patch-src_racket_src_sfs_c 

Log message:
Update to Racket 6.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/28 08:55:19

Modified files:
	net/hexchat    : Makefile distinfo 

Log message:
Update hexchat to 2.12.3.

From maintainer Florian Stinglmayr.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 09:41:32

Modified files:
	sys/net        : ofp.h 

Log message:
Rename pad fields to have struct prefixes, remove useless whitespaces and
add missing action_set_queue struct.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/28 09:46:48

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
Poison gettext-tools with "echo && exit 1" scripts in WRKDIR/bin if the
dependency is not in BUILD_DEPENDS, to make it more obvious if the dep has
been missed. OK ajacoutot


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 10:06:52

Modified files:
	sys/net        : switchofp.c 

Log message:
Simplify the OFP_FLOW_MOD_MSG_INSTRUCTION_OFFSET() by using another macro
already does exactly what it wants to do.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 10:40:13

Modified files:
	sys/net        : switchofp.c 

Log message:
Change swofp_flow_table_add() malloc() behaviour to be non-blocking like
all others that we can find in switch(4).

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/28 11:00:58

Modified files:
	sys/net        : switchofp.c 

Log message:
The function swofp_flow_entry_put_instructions() doesn't need to receive
a pointer to a mbuf pointer, because it only uses the mbuf for reading.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/28 11:03:22

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
Pages in the malloc cache are either reused quickly or unmapped
quickly. In both cases it does not make sense to set hints on them.
So remove that option, which is just a remainder of old times when
malloc used to hold on to pages. ok stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/28 11:03:47

Modified files:
	share/man/man5 : malloc.conf.5 

Log message:
H is no more


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/10/28 11:07:34

Modified files:
	distrib/miniroot: install.sub 

Log message:
- move SHA256 SHA256.sig h fail from _tmpsrc to /tmp
- cleanup SHA256 and SHA256.sig before download
- move assignment of _cfile and _srclocal to the top

In a later step, this allows verification of local sets without the
need of a prefetch area which is not used in this case anyway.

Idea from and OK naddy@
OK krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/10/28 14:18:06

Modified files:
	devel/fossil   : Makefile 

Log message:
Removing EPOCH markers ist verboten!


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/10/28 14:49:32

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

Log message:
Make snmpctl compile again after the env -> snmpd_env rename in snmpd's
smi.c r1.20.

ok cc(1)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/10/28 15:41:16

Modified files:
	lib/freetype   : CMakeLists.txt ChangeLog Jamfile Makefile 
	                 README modules.cfg shlib_version 
	lib/freetype/builds/unix: config.sub configure configure.ac 
	                          configure.raw 
	lib/freetype/builds/wince/vc2005-ce: freetype.vcproj index.html 
	lib/freetype/builds/wince/vc2008-ce: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2005: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2008: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2010: freetype.vcxproj index.html 
	lib/freetype/builds/windows/visualc: freetype.dsp 
	                                     freetype.vcproj index.html 
	lib/freetype/builds/windows/visualce: freetype.dsp 
	                                      freetype.vcproj index.html 
	lib/freetype/devel: ftoption.h 
	lib/freetype/docs: CHANGES VERSIONS.TXT freetype-config.1 
	lib/freetype/docs/reference: 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-pfr_fonts.html 
	                             ft2-quick_advance.html 
	                             ft2-raster.html ft2-sfnt_names.html 
	                             ft2-sizes_management.html 
	                             ft2-system_interface.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/include/freetype: freetype.h ftautoh.h ftcffdrv.h 
	                               ftimage.h ftmm.h ftoutln.h 
	                               ftttdrv.h 
	lib/freetype/include/freetype/config: ftoption.h ftstdlib.h 
	lib/freetype/include/freetype/internal: ftdriver.h ftmemory.h 
	                                        ftobjs.h tttypes.h 
	lib/freetype/include/freetype/internal/services: svprop.h 
	lib/freetype/src/autofit: afblue.c afblue.dat afblue.h afhints.c 
	                          afhints.h aflatin.c afmodule.c 
	                          afscript.h 
	lib/freetype/src/base: ftdbgmem.c ftinit.c ftobjs.c 
	lib/freetype/src/cff: cf2intrp.c cf2stack.c cffdrivr.c 
	                      cffgload.c cffload.c 
	lib/freetype/src/cid: cidload.c cidparse.c 
	lib/freetype/src/lzw: ftzopen.c 
	lib/freetype/src/sfnt: sfdriver.c sfobjs.c ttcmap.c ttload.c 
	                       ttsbit.c 
	lib/freetype/src/smooth: ftgrays.c 
	lib/freetype/src/tools/ftrandom: Makefile README ftrandom.c 
	lib/freetype/src/truetype: ttdriver.c ttgload.c ttgxvar.c 
	                           ttinterp.c ttinterp.h ttobjs.h 
	lib/freetype/src/type1: t1load.c 
	lib/freetype/src/type42: t42drivr.c t42objs.c 
	lib/freetype/src/winfonts: winfnt.c 
Added files:
	lib/freetype   : ChangeLog.26 

Log message:
Update to FreeType 2.7

Now Subpixel hinting, also known as ClearType hinting, is enabled
by default.

OK matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/10/28 23:14:45

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 01:48:25

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

Log message:
- update to vala-0.34.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 01:48:53

Modified files:
	x11/gnome/anjuta: Makefile 
	x11/gnome/libgda: Makefile 
Added files:
	x11/gnome/anjuta/patches: patch-configure 

Log message:
handle vala 0.34


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 01:49:15

Modified files:
	x11/gnome/gjs  : Makefile distinfo 

Log message:
update to gjs-1.46.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/10/29 02:09:53

Modified files:
	.              : 3RDPARTY 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 02:24:42

Modified files:
	devel/libpeas  : Makefile distinfo 

Log message:
update to libpeas-1.20.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 02:26:11

Modified files:
	x11/gnome/builder: Makefile 
	x11/gnome/code-assistance: Makefile 

Log message:
sync WANTLIB after vala update


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 02:30:27

Modified files:
	graphics/clutter/clutter-gtk: Makefile distinfo 

Log message:
update to clutter-gtk-1.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 02:47:43

Modified files:
	devel/gobject-introspection: Makefile distinfo 
	devel/gobject-introspection/pkg: PLIST 
Removed files:
	devel/gobject-introspection/patches: patch-tests_gi-tester 

Log message:
update to goject-introspection-1.50.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 02:49:35

Modified files:
	audio/moc      : Makefile 

Log message:
devel/utfcpp is picked up at configure time, so add it as a bdep.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 02:53:31

Modified files:
	multimedia/mkvtoolnix: Makefile 
	multimedia/mkvtoolnix/pkg: DESCR 

Log message:
Fix FLAVOR description after the switch from wxGTK2 to qt5.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 03:18:08

Modified files:
	audio/moc      : Makefile 

Log message:
Actually better fix: include WRKSRC before /usr/local/include so that utf8.h
from devel/utfcpp is not picked up.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/29 03:24:54

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

Log message:
Further improve vmm's security model by restricting pledged vmm
processes to only do VMM_IOC_ ioctls on their associated VM (these
ioctls are _RUN, _RESETCPU, _INTR, _READREGS, or _WRITEREGS at
present).  The vmm monitor (parent) process or any non-pledged
processes can still do ioctls on any VM.  For example, a VM can only
terminate itself but vmctl or the monitor can terminate any VM.

This prevents reachover into other VMs: while escaping from a VM to
the host side (eg. through a bug in virtio etc.) pledge already kept
the attacker in a pledged and privsep'ed process, but now it also
prevents vmm ioctls on "other VMs".

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/29 03:32:47

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

Log message:
sync with -r1.95 of amd64/vmm.c:

Further improve vmm's security model by restricting pledged vmm
processes to only do VMM_IOC_ ioctls on their associated VM (these
ioctls are _RUN, _RESETCPU, _INTR, _READREGS, or _WRITEREGS at
present).  The vmm monitor (parent) process or any non-pledged
processes can still do ioctls on any VM.  For example, a VM can only
terminate itself but vmctl or the monitor can terminate any VM.

This prevents reachover into other VMs: while escaping from a VM to
the host side (eg. through a bug in virtio etc.) pledge already kept
the attacker in a pledged and privsep'ed process, but now it also
prevents vmm ioctls on "other VMs".

OK mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 04:35:45

Modified files:
	devel/utfcpp   : Makefile 
	devel/utfcpp/pkg: PLIST 

Log message:
Install headers in a non-default directory so that applications stop
picking them up.

discussed with jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 04:36:01

Modified files:
	productivity/ledger: Makefile 

Log message:
Fix UTFCPP_PATH.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 04:37:12

Modified files:
	multimedia/mkvtoolnix: Makefile 
	audio/moc      : Makefile 

Log message:
utfcpp can not be automatically picked up anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/29 05:00:19

Modified files:
	sys/arch/octeon/dev: cn30xxgmx.c 
	sys/arch/octeon/include: octeonvar.h 

Log message:
Make PHY address lookups fail instead of using CAM-0100 entries
when the system board is unhandled.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/10/29 05:20:27

Modified files:
	sys/arch/octeon/dev: cn30xxgmx.c 

Log message:
If the system has fdt, use it for locating network PHYs.
Skip a network port if its PHY cannot be found.

Tested on Lanner MR-326B (has fdt) by pirofti@, and
on EdgeRouter Pro (has fdt) and on EdgeRouter Lite (no fdt) by me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/29 05:39:39

Modified files:
	mail/neomutt   : Makefile distinfo 

Log message:
update to neomutt-20161028


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/29 05:42:07

Modified files:
	.              : INDEX 

Log message:
sync; 9680


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 05:55:28

Modified files:
	x11/gnome/builder: Makefile 
Added files:
	x11/gnome/builder/patches: patch-configure 
	                           patch-plugins_vala-pack_Makefile_in 
	                           patch-plugins_vala-pack_config_vapi 
	                           patch-plugins_vala-pack_ide-vala-index_vala 

Log message:
add patches partly based on upstream commits that will be part of 3.22.1 to
actually build with vala 0.34


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2016/10/29 06:07:21

Modified files:
	lib/freetype/docs/tutorial: step3.html 
Added files:
	lib/freetype/docs/tutorial: example5.cpp example5.svg 

Log message:
Update to freetype-doc-2.7


CVSROOT:	/cvs
Module name:	src
Changes by:	edd@cvs.openbsd.org	2016/10/29 08:56:05

Modified files:
	usr.sbin/vmd   : config.c parse.y priv.c vmd.c vmd.h vmm.c 

Log message:
Separate parsing vms and switches from starting them in vmd(8).

Brings us one step closer to having disabled by default vms is vm.conf(5),
which can be started with vmctl(8).

Input, testing and OK reyk@. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/10/29 08:58:54

Modified files:
	usr.sbin/vmd   : parse.y 

Log message:
Simple grammar tweak: allow to specify interface options in a single line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/29 09:15:07

Modified files:
	mail/geary     : Makefile 
Added files:
	mail/geary/patches: 
	                    patch-src_client_application_geary-application_vala 
	                    patch-src_client_components_conversation-find-bar_vala 
	                    patch-src_client_dialogs_attachment-dialog_vala 
	                    patch-src_console_main_vala 

Log message:
unbreak after recent vala update; patches from upstream git


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 09:35:27

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.11.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/10/29 10:32:44

Modified files:
	net/syncthing  : Makefile distinfo 

Log message:
Update to Syncthing 0.14.9

OK czarkoff@, edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 12:05:55

Modified files:
	x11/gnome/backgrounds: Makefile distinfo 
	x11/gnome/backgrounds/pkg: PLIST 

Log message:
Update to gnome-backgrounds-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 12:07:03

Modified files:
	x11/gnome/dconf-editor: Makefile distinfo 

Log message:
Update to dconf-editor-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 12:10:04

Modified files:
	x11/gnome/baobab: Makefile distinfo 
	x11/gnome/baobab/pkg: PLIST 

Log message:
Update to baobab-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 12:11:39

Modified files:
	x11/gnome/yelp : Makefile distinfo 
	x11/gnome/yelp/pkg: PLIST 

Log message:
Update to yelp-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 12:14:29

Modified files:
	x11/gnome/devhelp: Makefile distinfo 
	x11/gnome/devhelp/pkg: PLIST 

Log message:
Update to devhelp-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/29 12:16:40

Modified files:
	x11/gnome/orca : Makefile distinfo 
	x11/gnome/orca/pkg: PLIST 

Log message:
Update to orca-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/29 12:24:07

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

Log message:
Update to py-setuptools-28.6.1

This breaks security/py-bcrypt,python3 and security/py-cryptography,python3,
they will be fix in a separate commit.

Thanks naddy@ for running a bulk

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/29 12:25:01

Modified files:
	lang/python    : python.port.mk 

Log message:
Update MODPY_SETUPUTILS_DEPEND after py-setuptools update

This commit also introduces MODPY_ABI_TAG for when, an ABI tag is also
used for names of compiled extensions (idea and name from sthen@)

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/29 12:25:56

Modified files:
	security/py-bcrypt: Makefile 
	security/py-bcrypt/pkg: PLIST 
	security/py-cryptography: Makefile 
	security/py-cryptography/pkg: PLIST 

Log message:
Unbreak after py-setuptools update. This makes use of MODPY_ABI_TAG

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2016/10/29 12:27:34

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Update the man page after the addition of MODPY_ABI_TAG

From sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/10/29 12:36:12

Modified files:
	distrib/miniroot: install.sub 

Log message:
Fix an issue found by naddy@ where the installer was not able
to fetch local sets without a SHA256.sig file in a directory
unreachable by the unprivileged users. The missing SHA256.sig
file caused an early exit from the for-loop where the _unpriv
variable is unset in case of local sets.

- Move the check of the set location (local/net) to the top
- Set the ftp command title based on the _srclocal variable
- Remove the now unnecessary second _unpriv=

OK naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/10/29 13:21:14

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/pkg: PLIST-main 

Log message:
update to asterisk-13.12.1


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/29 14:19:09

Modified files:
	faq            : current.html 

Log message:
spell out 'cvs up' as 'cvs -q up -Pd' so the kernel compilation directories
are created.

prompted by a question by patrick keshishian


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/29 15:13:36

Modified files:
	faq            : current.html 

Log message:
fix a validator warning


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/29 22:03:29

Modified files:
	usr.sbin/tcpdump: print-ip.c 

Log message:
Replace a snapend test in ip_print() with a call to TCHECK2 as there
is already a trunc label with the same printf in the function.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/29 22:10:21

Modified files:
	usr.sbin/tcpdump: print-ip.c 

Log message:
If a length from an ip packet encapsulated in gre or etherip would cause
the position to go past snapend truncate.  Found with afl.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/10/29 22:16:34

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/patches: patch-include_configs_omap3_beagle_h 
	                         patch-include_configs_ti_omap5_common_h 
Added files:
	sysutils/u-boot/patches: patch-include_compiler_h 

Log message:
fix the build of u-boot on big endian hosts

u-boot contains a static crc table with endian calls which requires the
endian calls to be macros.

lib/crc32.c:87: error: braced-group within expression allowed only inside a function

Define the glibc names in u-boot compiler.h as at least some parts of
the non-cross build assumes those names are present (ie crc32.c).

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/10/29 23:07:06

Modified files:
	lib/libc/stdio : vfscanf.c vfwscanf.c 

Log message:
include float.h for the LDBL_MAX_EXP cpp test in floatio.h


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/30 02:10:55

Modified files:
	multimedia/libass: Makefile distinfo 

Log message:
Update to libass-0.13.4.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/10/30 07:27:05

Modified files:
	distrib/miniroot: install.sub 

Log message:
Search for and create a prefetch area only for nonlocal sources.

This enables the installer to verify local set files even if the
prefetch area would not fit on the local disk.

OK krw@ on a similar diff
Idea from and OK naddy@
Feedback and OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/30 10:11:14

Modified files:
	security/pwsafe: Makefile 

Log message:
Remove NO_TEST, tests do exist.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/30 10:11:55

Modified files:
	security/pwsafe: Makefile 

Log message:
More precise license marker.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/30 10:12:19

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

Log message:
update to gtksourceview-3.22.0


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/10/30 10:50:22

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

Log message:
large-community needs to have an argument


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/10/30 11:46:34

Modified files:
	sys/net        : bpf.h 

Log message:
add __BEGIN_DECLS/__END_DECLS to the public userland side of net/bpf.h,
so c++ programs can use them.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/10/30 17:13:03

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.690


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/30 19:23:46

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

Log message:
revert 1.97 where i moved myx to using the system pools

my early revision board doesnt like it at all


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/10/30 19:38:57

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

Log message:
turns out these chips can handle buffers up to 9400 bytes in length.

raise the mtu to 9380 bytes so we can take advantage of the extra space.

i need to revisit the macro names at some point.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/10/30 20:57:27

Modified files:
	usr.sbin/vmd   : log.c 

Log message:
Pass the errno value to vfatal(), renaming it to vfatalc() to match,
intead of using errno as an implicit argument

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/10/30 22:17:17

Modified files:
	lib/libcrypto  : opensslv.h 

Log message:
bump to LibreSSL 2.5.1


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/10/30 22:20:42

Modified files:
	.              : hackathons.html 
Added files:
	images/hackathons: b2k16-s.gif b2k16.gif l2k16-s.gif l2k16.gif 

Log message:
dueling hackathons over the next week: b2k16 in budapest will bring
a flood of ports commits, l2k16 in toulouse will continue efforts to
improve libressl.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/31 01:55:10

Modified files:
	sys/net        : switchofp.c 

Log message:
Change validation functions prototypes: use the parameter variable to
return the error code and the return value to signal if the validation
was successful or not. With this we can signal some errors in the spec
that uses the value 0 (zero).

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/10/31 02:06:27

Modified files:
	sys/net        : switchofp.c 

Log message:
Improve ofp_error message accurateness: use parameterized error type
instead of hardcoding it. With this we can change the error type to
something else and get a more accurate description of what happened.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 03:19:36

Modified files:
	devel/gsettings-desktop-schemas: Makefile distinfo 
	devel/gsettings-desktop-schemas/pkg: PLIST 

Log message:
Update to gsettings-desktop-schemas-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 03:22:00

Modified files:
	x11/gnome/tweak-tool: Makefile distinfo 

Log message:
Update to gnome-tweak-tool-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/31 03:27:17

Modified files:
	sysutils/borgbackup: Makefile distinfo 
	sysutils/borgbackup/pkg: PLIST 

Log message:
Update to borgbackup-1.0.8

From Björn Ketelaars (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 03:28:24

Modified files:
	x11/gnome/desktop: Makefile distinfo 
	x11/gnome/desktop/patches: patch-libgnome-desktop_Makefile_in 

Log message:
Update to gnome-desktop-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/31 03:28:43

Modified files:
	fonts/adobe-fonts/source-code-pro: Makefile distinfo 
	fonts/adobe-fonts/source-code-pro/pkg: PLIST 
	fonts/adobe-fonts/source-sans-pro: Makefile distinfo 
	fonts/adobe-fonts/source-sans-pro/pkg: PLIST 

Log message:
Update source code/sans pro fonts to their latest releases.

From Nils Reuße.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 03:28:56

Modified files:
	meta/gnome     : Makefile 

Log message:
Welcome GNOME 3.22.1!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:34:58

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 
	x11/gnome/online-accounts/pkg: PLIST 

Log message:
update to gnome-online-accounts-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:40:05

Log message:
    import pcre2-10.22
    
    PCRE2 is a revised API for the PCRE library, which is a set of functions,
    written in C, that implement regular expression pattern matching using the same
    syntax and semantics as Perl, with just a few differences. Some features that
    appeared in Python and the original PCRE before they appeared in Perl are also
    available using the Python syntax. There is also some support for one or two
    .NET and Oniguruma syntax items, and there are options for requesting some minor
    changes that give better ECMAScript (aka JavaScript) compatibility.
    
    initial port by czarkoff@
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20163110
    
    N ports/devel/pcre2/Makefile
    N ports/devel/pcre2/distinfo
    N ports/devel/pcre2/pkg/DESCR
    N ports/devel/pcre2/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:40:51

Modified files:
	devel          : Makefile 

Log message:
+pcre2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:41:02

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

Log message:
update to vte-0.46.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 03:41:26

Modified files:
	x11/gnome/desktop: Makefile 

Log message:
--disable-udev for reference.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 03:43:10

Modified files:
	x11/gnome/gvfs : Makefile distinfo 

Log message:
Update to gvfs-1.30.1.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:44:10

Modified files:
	x11/gnome/characters: Makefile distinfo 
	x11/gnome/characters/pkg: PLIST 

Log message:
update to gnome-characters-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:44:54

Modified files:
	x11/gnome/zenity: Makefile distinfo 
	x11/gnome/zenity/pkg: PLIST 

Log message:
update to zenity-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:48:22

Modified files:
	x11/gnome/font-viewer: Makefile distinfo 

Log message:
update to gnome-font-viewer-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 03:48:28

Modified files:
	x11/gnome/screenshot: Makefile distinfo 

Log message:
update to gnome-screenshot-3.22.0


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/31 04:06:56

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
remove some old option letters and also make P non-settable.  It has
been the default for ages, and I see no valid reason to be able to
disable it. ok natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/31 04:07:18

Modified files:
	share/man/man5 : malloc.conf.5 

Log message:
P is not settable enymore


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/10/31 04:08:09

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
sync to libc: malloc_move is not an option anymore


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 04:18:32

Modified files:
	databases/evolution-data-server: Makefile distinfo 
	databases/evolution-data-server/pkg: PLIST 

Log message:
Update to evolution-data-server-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 04:19:02

Modified files:
	x11/gnome/settings-daemon: Makefile distinfo 
	x11/gnome/settings-daemon/pkg: PLIST 

Log message:
Update to gnome-settings-daemon-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 04:23:19

Modified files:
	www/epiphany   : Makefile distinfo 
	www/epiphany/pkg: PLIST 

Log message:
update to epiphany-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/31 04:24:52

Log message:
    Import www/kore
    
    Kore is an easy to use web application framework for writing scalable
    web APIs in C.
    
    Its main goals are security, scalability and allowing rapid development
    and deployment of such APIs. Because of this Kore is an ideal candidate
    for building robust, scalable and secure web things.
    
    OK juanfra@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161031
    
    N ports/www/kore/Makefile
    N ports/www/kore/distinfo
    N ports/www/kore/pkg/DESCR
    N ports/www/kore/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/10/31 04:30:04

Modified files:
	www            : Makefile 

Log message:
Add kore.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 04:31:13

Modified files:
	x11/gnome/power-manager: Makefile distinfo 
	x11/gnome/power-manager/pkg: PLIST 

Log message:
Update to gnome-power-manager-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 04:34:16

Modified files:
	x11/gnome/color-manager: Makefile distinfo 
	x11/gnome/color-manager/patches: patch-configure 
	x11/gnome/color-manager/pkg: PLIST 

Log message:
Update to gnome-color-manager-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 04:38:26

Modified files:
	x11/gnome/gedit: Makefile distinfo 
	x11/gnome/gedit/pkg: PLIST 

Log message:
update to gedit-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 04:38:35

Modified files:
	x11/gnome/settings-daemon: Makefile 
	x11/gnome/settings-daemon/pkg: PLIST 

Log message:
Re-add sharing for now; it won't work without systemd but it's better to
hide it from the user in gnome-c-c.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 04:42:41

Modified files:
	x11/gnome/calculator: Makefile distinfo 
	x11/gnome/calculator/pkg: PLIST 
Removed files:
	x11/gnome/calculator/patches: patch-data_history-entry_ui 
	                              patch-data_history-view_ui 

Log message:
update to gnome-calculator-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/10/31 04:46:08

Modified files:
	games/cpat     : Makefile distinfo 

Log message:
update to cpat-1.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 04:48:33

Modified files:
	x11/gnome/calendar: Makefile distinfo 
	x11/gnome/calendar/pkg: PLIST 

Log message:
update to gnome-calendar-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 04:52:01

Modified files:
	x11/gnome/session: Makefile distinfo 
	x11/gnome/session/patches: patch-gnome-session_main_c 
	x11/gnome/session/pkg: PLIST 

Log message:
Update to gnome-session-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:07:25

Modified files:
	x11/gnome/tracker: Makefile distinfo 
	x11/gnome/tracker/patches: patch-configure 
	                           patch-src_libtracker-sparql_Makefile_in 
	x11/gnome/tracker/pkg: PLIST 
Removed files:
	x11/gnome/tracker/patches: 
	                           patch-src_libtracker-common_tracker-file-utils_c 
	                           patch-src_libtracker-control_tracker-miner-manager_c 
	                           patch-src_libtracker-miner_tracker-monitor_c 

Log message:
Update to meta-tracker-1.10.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 05:08:16

Modified files:
	lang/python    : python.port.mk 

Log message:
wrap overly-long SUBST_VARS line


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 05:08:34

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
silence the creation of the msgfmt wrapper just like the other wrapper scripts


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:12:04

Modified files:
	converters/libpst: Makefile distinfo 
	converters/libpst/patches: patch-configure 

Log message:
Update to libpst-0.6.69.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:23:46

Modified files:
	x11/gnome/nautilus: Makefile distinfo 
	x11/gnome/nautilus/pkg: PLIST 
Added files:
	x11/gnome/nautilus/patches: 
	                            patch-src_nautilus-canvas-container_c 
	                            patch-src_nautilus-file-operations_c 
	                            patch-src_nautilus-ui-utilities_c 

Log message:
Update to nautilus-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 05:24:53

ports/x11/xfce4/xfce4-notifyd/patches

Update of /cvs/ports/x11/xfce4/xfce4-notifyd/patches
In directory cvs.openbsd.org:/tmp/cvs-serv893/patches

Log Message:
Directory /cvs/ports/x11/xfce4/xfce4-notifyd/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:26:36

Modified files:
	textproc/gspell: Makefile distinfo 
	textproc/gspell/pkg: PLIST 

Log message:
Update to gspell-1.2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:26:51

Modified files:
	x11/gnome/latexila: Makefile distinfo 

Log message:
Update to latexila-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:31:29

Modified files:
	x11/gnome/clocks: Makefile distinfo 
	x11/gnome/clocks/pkg: PLIST 

Log message:
Update to gnome-clocks-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 05:31:55

Modified files:
	graphics/gthumb: Makefile distinfo 

Log message:
update to gthumb-3.4.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/10/31 05:43:20

Modified files:
	regress/usr.bin/make: Makefile 

Log message:
fix a few suspicious (according to emacs) lines


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:45:00

Modified files:
	x11/gnome/music: Makefile distinfo 
	x11/gnome/music/pkg: PLIST 

Log message:
Update to gnome-music-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/31 05:45:07

Modified files:
	lang/mono      : Makefile distinfo 
	lang/mono/patches: patch-mono_Makefile_in 
	                   patch-mono_dis_Makefile_in 
	                   patch-mono_mini_test_op_il_seq_point_sh 
	                   patch-mono_profiler_Makefile_in 
	                   patch-mono_profiler_decode_c 
	                   patch-mono_utils_mono-proclib_c 
	lang/mono/pkg  : PLIST 
Added files:
	lang/mono/patches: 
	                   patch-mono_mini_test_op_il_seq_point_headerfooter_sh 
	                   patch-mono_utils_networking-posix_c 
Removed files:
	lang/mono/patches: 
	                   patch-mcs_tools_xbuild_targets_Microsoft_Portable_Common_targets 

Log message:
update to 4.6.1.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:48:38

Modified files:
	net/telepathy/folks: Makefile 

Log message:
Regen WANTLIB to unbreak.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:55:35

Modified files:
	productivity/glabels: Makefile 

Log message:
Regen WANTLIB to unbreak.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 05:55:52

Modified files:
	x11/gnome/maps : Makefile distinfo 
	x11/gnome/maps/pkg: PLIST 

Log message:
Update to gnome-maps-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 05:58:20

Modified files:
	x11/gnome/gedit-plugins: Makefile distinfo 
	x11/gnome/gedit-plugins/pkg: PLIST 

Log message:
update to gedit-plugins-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:01:07

Modified files:
	x11/gnome/todo : Makefile 

Log message:
Regen WANTLIB to unbreak.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 06:02:49

Removed files:
	lang/ruby/2.0  : Makefile distinfo 
	lang/ruby/2.0/patches: patch-common_mk patch-compile_c 
	                       patch-configure patch-ext_etc_etc_c 
	                       patch-ext_openssl_extconf_rb 
	                       patch-ext_openssl_ossl_ssl_c 
	                       patch-ext_tk_extconf_rb 
	                       patch-lib_fileutils_rb 
	                       patch-lib_rubygems_commands_install_command_rb 
	                       patch-lib_rubygems_dependency_installer_rb 
	                       patch-lib_rubygems_ext_builder_rb 
	                       patch-lib_rubygems_ext_ext_conf_builder_rb 
	lang/ruby/2.0/pkg: DESCR-gdbm DESCR-main DESCR-ri_docs DESCR-tk 
	                   MESSAGE-main PLIST-gdbm PLIST-main 
	                   PLIST-ri_docs PLIST-tk UNMESSAGE-main 

Log message:
Send ruby 2.0 to the Attic

It was unhooked from the build back in September.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:03:18

Modified files:
	x11/gnome/bijiben: Makefile 

Log message:
Regen WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:05:35

Modified files:
	x11/gnome/contacts: Makefile 

Log message:
Regen WANTLIB to unbreak.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 06:10:07

Modified files:
	x11/gnome/file-roller: Makefile distinfo 
	x11/gnome/file-roller/pkg: PLIST 

Log message:
- update to file-roller-3.22.1
- nautilus extension's functionality is now part of nautilus proper


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:15:40

Modified files:
	mail/evolution : Makefile distinfo 
	mail/evolution/pkg: PLIST 
Removed files:
	mail/evolution/patches: patch-configure 
	                        patch-data_org_gnome_evolution_shell_gschema_xml_in 
	                        patch-e-util_e-attachment-store_c 
	                        patch-e-util_e-attachment_c 

Log message:
Update to evolution-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 06:16:20

Modified files:
	x11/gnome/contacts: Makefile distinfo 

Log message:
update to gnome-contacts-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 06:18:17

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

Log message:
update to evince-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:27:15

Modified files:
	mail/evolution-ews: Makefile distinfo 

Log message:
Update to evolution-ews-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:32:24

Modified files:
	x11/gnome/contacts: Makefile 

Log message:
Re-regen WANTLIB, webkit,-gtk3 is not needed, e-d-s uses webkitgtk4 now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:34:30

Modified files:
	mail/evolution-rss: Makefile 
Added files:
	mail/evolution-rss/patches: patch-configure_ac 
	                            patch-src_e-mail-formatter-evolution-rss_c 
	                            patch-src_rss_c 

Log message:
Adapt to changes in evolution 3.21.90 (upstream).


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 06:38:49

Modified files:
	www            : Makefile 
Removed files:
	www/drupal6    : Makefile Makefile.inc drupal6.port.mk 
	www/drupal6/CKeditor: Makefile distinfo 
	www/drupal6/CKeditor/pkg: DESCR PLIST 
	www/drupal6/FCKeditor: Makefile distinfo 
	www/drupal6/FCKeditor/pkg: DESCR PLIST 
	www/drupal6/admin-menu: Makefile distinfo 
	www/drupal6/admin-menu/pkg: DESCR PLIST 
	www/drupal6/advanced_help: Makefile distinfo 
	www/drupal6/advanced_help/pkg: DESCR PLIST 
	www/drupal6/advanced_user: Makefile distinfo 
	www/drupal6/advanced_user/pkg: DESCR PLIST 
	www/drupal6/alternate_login: Makefile distinfo 
	www/drupal6/alternate_login/pkg: DESCR PLIST 
	www/drupal6/auto_nodetitle: Makefile distinfo 
	www/drupal6/auto_nodetitle/pkg: DESCR PLIST 
	www/drupal6/backup_migrate: Makefile distinfo 
	www/drupal6/backup_migrate/pkg: DESCR PLIST 
	www/drupal6/blocks404: Makefile distinfo 
	www/drupal6/blocks404/pkg: DESCR PLIST 
	www/drupal6/bookmadesimple: Makefile distinfo 
	www/drupal6/bookmadesimple/pkg: DESCR PLIST 
	www/drupal6/bueditor: Makefile distinfo 
	www/drupal6/bueditor/pkg: DESCR PLIST 
	www/drupal6/captcha: Makefile distinfo 
	www/drupal6/captcha/pkg: DESCR PLIST 
	www/drupal6/cck: Makefile distinfo 
	www/drupal6/cck/pkg: DESCR PLIST 
	www/drupal6/cck_blocks: Makefile distinfo 
	www/drupal6/cck_blocks/pkg: DESCR PLIST 
	www/drupal6/ckeditor-link: Makefile distinfo 
	www/drupal6/ckeditor-link/pkg: DESCR PLIST 
	www/drupal6/compact_forms: Makefile distinfo 
	www/drupal6/compact_forms/pkg: DESCR PLIST 
	www/drupal6/contemplate: Makefile distinfo 
	www/drupal6/contemplate/pkg: DESCR PLIST 
	www/drupal6/content_access: Makefile distinfo 
	www/drupal6/content_access/pkg: DESCR PLIST 
	www/drupal6/core6: Makefile distinfo 
	www/drupal6/core6/files: drupal.conf 
	www/drupal6/core6/patches: patch-includes_locale_inc 
	                           patch-includes_unicode_inc 
	www/drupal6/core6/pkg: DESCR PLIST README UNMESSAGE 
	www/drupal6/ctools: Makefile distinfo 
	www/drupal6/ctools/pkg: DESCR PLIST 
	www/drupal6/date: Makefile distinfo 
	www/drupal6/date/pkg: DESCR PLIST 
	www/drupal6/devel: Makefile distinfo 
	www/drupal6/devel/pkg: DESCR PLIST 
	www/drupal6/dhtml_menu: Makefile distinfo 
	www/drupal6/dhtml_menu/pkg: DESCR PLIST 
	www/drupal6/diff: Makefile distinfo 
	www/drupal6/diff/pkg: DESCR PLIST 
	www/drupal6/draft: Makefile distinfo 
	www/drupal6/draft/patches: patch-draft_install 
	www/drupal6/draft/pkg: DESCR PLIST 
	www/drupal6/faq: Makefile distinfo 
	www/drupal6/faq/pkg: DESCR PLIST 
	www/drupal6/filefield: Makefile distinfo 
	www/drupal6/filefield/pkg: DESCR PLIST 
	www/drupal6/filefield_sources: Makefile distinfo 
	www/drupal6/filefield_sources/pkg: DESCR PLIST 
	www/drupal6/genpass: Makefile distinfo 
	www/drupal6/genpass/pkg: DESCR PLIST 
	www/drupal6/globalredirect: Makefile distinfo 
	www/drupal6/globalredirect/pkg: DESCR PLIST 
	www/drupal6/image: Makefile distinfo 
	www/drupal6/image/pkg: DESCR PLIST 
	www/drupal6/imageapi: Makefile distinfo 
	www/drupal6/imageapi/pkg: DESCR PLIST 
	www/drupal6/imagecache: Makefile distinfo 
	www/drupal6/imagecache/pkg: DESCR PLIST 
	www/drupal6/imagecache_profiles: Makefile distinfo 
	www/drupal6/imagecache_profiles/pkg: DESCR PLIST 
	www/drupal6/imagefield: Makefile distinfo 
	www/drupal6/imagefield/pkg: DESCR PLIST 
	www/drupal6/jquery_ui: Makefile distinfo 
	www/drupal6/jquery_ui/pkg: DESCR PLIST 
	www/drupal6/ldap_integration: Makefile distinfo 
	www/drupal6/ldap_integration/patches: patch-ldapauth_install 
	www/drupal6/ldap_integration/pkg: DESCR PLIST 
	www/drupal6/lightbox2: Makefile distinfo 
	www/drupal6/lightbox2/pkg: DESCR PLIST 
	www/drupal6/link: Makefile distinfo 
	www/drupal6/link/pkg: DESCR PLIST 
	www/drupal6/linkchecker: Makefile distinfo 
	www/drupal6/linkchecker/pkg: DESCR PLIST 
	www/drupal6/locale-de: Makefile distinfo 
	www/drupal6/locale-de/pkg: DESCR PLIST 
	www/drupal6/locale-fr: Makefile distinfo 
	www/drupal6/locale-fr/patches: 
	                               patch-modules_system_translations_modules-system_fr_po 
	www/drupal6/locale-fr/pkg: DESCR PLIST 
	www/drupal6/locale-it: Makefile distinfo 
	www/drupal6/locale-it/pkg: DESCR PLIST 
	www/drupal6/locale-ja: Makefile distinfo 
	www/drupal6/locale-ja/pkg: DESCR PLIST 
	www/drupal6/masquerade: Makefile distinfo 
	www/drupal6/masquerade/pkg: DESCR PLIST 
	www/drupal6/menu_force: Makefile distinfo 
	www/drupal6/menu_force/pkg: DESCR PLIST 
	www/drupal6/meta-tags: Makefile distinfo 
	www/drupal6/meta-tags/pkg: DESCR PLIST 
	www/drupal6/modalframe: Makefile distinfo 
	www/drupal6/modalframe/pkg: DESCR PLIST 
	www/drupal6/nodeaccess_userreference: Makefile distinfo 
	www/drupal6/nodeaccess_userreference/pkg: DESCR PLIST 
	www/drupal6/noderelationships: Makefile distinfo 
	www/drupal6/noderelationships/pkg: DESCR PLIST 
	www/drupal6/nodetype: Makefile distinfo 
	www/drupal6/nodetype/pkg: DESCR PLIST 
	www/drupal6/notify: Makefile distinfo 
	www/drupal6/notify/pkg: DESCR PLIST 
	www/drupal6/override_node_options: Makefile distinfo 
	www/drupal6/override_node_options/pkg: DESCR PLIST 
	www/drupal6/panels: Makefile distinfo 
	www/drupal6/panels/pkg: DESCR PLIST 
	www/drupal6/password_strength: Makefile distinfo 
	www/drupal6/password_strength/pkg: DESCR PLIST 
	www/drupal6/pathauto: Makefile distinfo 
	www/drupal6/pathauto/pkg: DESCR PLIST 
	www/drupal6/phpmailer: Makefile distinfo 
	www/drupal6/phpmailer/patches: 
	                               patch-phpmailer_class_phpmailer_php 
	www/drupal6/phpmailer/pkg: DESCR PLIST 
	www/drupal6/pngfix: Makefile distinfo 
	www/drupal6/pngfix/pkg: DESCR PLIST 
	www/drupal6/poormanscron: Makefile distinfo 
	www/drupal6/poormanscron/pkg: DESCR PLIST 
	www/drupal6/printer-friendly: Makefile distinfo 
	www/drupal6/printer-friendly/pkg: DESCR PLIST 
	www/drupal6/publishcontent: Makefile distinfo 
	www/drupal6/publishcontent/pkg: DESCR PLIST 
	www/drupal6/relevant_content: Makefile distinfo 
	www/drupal6/relevant_content/pkg: DESCR PLIST 
	www/drupal6/rolereference: Makefile distinfo 
	www/drupal6/rolereference/pkg: DESCR PLIST 
	www/drupal6/rules: Makefile distinfo 
	www/drupal6/rules/pkg: DESCR PLIST 
	www/drupal6/scheduler: Makefile distinfo 
	www/drupal6/scheduler/pkg: DESCR PLIST 
	www/drupal6/schema: Makefile distinfo 
	www/drupal6/schema/pkg: DESCR PLIST 
	www/drupal6/search_config: Makefile distinfo 
	www/drupal6/search_config/pkg: DESCR PLIST 
	www/drupal6/securelogin: Makefile distinfo 
	www/drupal6/securelogin/pkg: DESCR PLIST 
	www/drupal6/session_api: Makefile distinfo 
	www/drupal6/session_api/pkg: DESCR PLIST 
	www/drupal6/spamspan: Makefile distinfo 
	www/drupal6/spamspan/pkg: DESCR PLIST 
	www/drupal6/tables: Makefile distinfo 
	www/drupal6/tables/pkg: DESCR PLIST 
	www/drupal6/theme-acquia-marina: Makefile distinfo 
	www/drupal6/theme-acquia-marina/pkg: DESCR PLIST 
	www/drupal6/theme-newsflash: Makefile distinfo 
	www/drupal6/theme-newsflash/pkg: DESCR PLIST 
	www/drupal6/theme-zen: Makefile distinfo 
	www/drupal6/theme-zen/pkg: DESCR PLIST 
	www/drupal6/themesettingsapi: Makefile distinfo 
	www/drupal6/themesettingsapi/pkg: DESCR PLIST 
	www/drupal6/token: Makefile distinfo 
	www/drupal6/token/pkg: DESCR PLIST 
	www/drupal6/transliteration: Makefile distinfo 
	www/drupal6/transliteration/pkg: DESCR PLIST 
	www/drupal6/ubercart: Makefile distinfo 
	www/drupal6/ubercart/pkg: DESCR PLIST 
	www/drupal6/user_import: Makefile distinfo 
	www/drupal6/user_import/patches: patch-supported_alt_login_inc 
	www/drupal6/user_import/pkg: DESCR PLIST 
	www/drupal6/user_pic_perm: Makefile distinfo 
	www/drupal6/user_pic_perm/pkg: DESCR PLIST 
	www/drupal6/user_readonly: Makefile distinfo 
	www/drupal6/user_readonly/pkg: DESCR PLIST 
	www/drupal6/view_unpublished: Makefile distinfo 
	www/drupal6/view_unpublished/pkg: DESCR PLIST 
	www/drupal6/views: Makefile distinfo 
	www/drupal6/views/pkg: DESCR PLIST 
	www/drupal6/views_bonus: Makefile distinfo 
	www/drupal6/views_bonus/pkg: DESCR PLIST 
	www/drupal6/views_bulk_operations: Makefile distinfo 
	www/drupal6/views_bulk_operations/pkg: DESCR PLIST 
	www/drupal6/webform: Makefile distinfo 
	www/drupal6/webform/pkg: DESCR PLIST 
	www/drupal6/workflow: Makefile distinfo 
	www/drupal6/workflow/pkg: DESCR PLIST 

Log message:
Retire drupal6 (and its modules), it's been EOL upstream since 8 months.

https://www.drupal.org/drupal-6-eol

ok espie-@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/31 06:40:18

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

Log message:
Update to py-httpie-0.9.6 and switch to python3

ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 06:40:19

Removed files:
	lang/io        : Makefile distinfo 
	lang/io/patches: patch-addons_CMakeLists_txt 
	                 patch-addons_Clutter_CMakeLists_txt 
	                 patch-addons_Font_CMakeLists_txt 
	                 patch-addons_Font_source_IoFont_c 
	                 patch-addons_Socket_CMakeLists_txt 
	                 patch-libs_CMakeLists_txt 
	                 patch-libs_coroutine_source_Coro_c 
	                 patch-libs_coroutine_source_asm_S 
	lang/io/pkg    : DESCR PLIST 

Log message:
Remove lang/io

Broken since the introduction of setjmp cookies (May on amd64, June on
i386).  Was i386/amd64 only.  I couldn't get newer versions to work,
and it's unlikely that the setjmp cookie issue could be worked around
without rewriting the coroutine code.

OK landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 06:42:36

Modified files:
	lang           : Makefile 

Log message:
-io


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:44:52

Modified files:
	x11/gnome/photos: Makefile distinfo 
	x11/gnome/photos/pkg: PLIST 

Log message:
Update to gnome-photos-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/31 06:46:13

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

Log message:
Maintenance update to py-werkzeug-0.11.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:48:27

Modified files:
	x11/gnome/totem: Makefile distinfo 
	x11/gnome/totem/pkg: PLIST 

Log message:
Update to totem-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 06:53:25

Modified files:
	x11/gnome/file-roller: Makefile 
	x11/gnome/file-roller/pkg: DESCR 

Log message:
Fix DESCR, the nautilus plugin is gone.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 07:16:07

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add quirk for lang/io removal

Reminded by landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 08:04:58

Modified files:
	mail/evolution : Makefile 
	mail/evolution/pkg: PLIST 

Log message:
Tweaks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 08:05:35

Modified files:
	converters     : Makefile 

Log message:
Unhook ruby-json


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 08:09:41

Removed files:
	converters/ruby-json: Makefile distinfo 
	converters/ruby-json/pkg: DESCR PLIST 

Log message:
Remove converters/ruby-json

Nothing depends on the port, and all ruby ports in the tree except
ruby 1.8 ship with json.  None of the ports in the tree that still
depend on ruby 1.8 need the json library.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 08:14:35

Modified files:
	x11/gnome/gdl  : Makefile distinfo 
Removed files:
	x11/gnome/gdl/patches: patch-gdl_gdl-dock-item_c 
	                       patch-gdl_gdl-dock_c 

Log message:
Update to gdl-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 08:23:11

Modified files:
	x11/gnome/vinagre: Makefile distinfo 

Log message:
Update to vinagre-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 08:24:56

Modified files:
	x11/gnome/anjuta: Makefile distinfo 

Log message:
update to anjuta-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 08:27:55

Modified files:
	x11/gnome/online-miners: Makefile distinfo 

Log message:
Update to gnome-online-miners-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 08:31:56

Modified files:
	x11/gnome/quadrapassel: Makefile distinfo 

Log message:
update to quadrapassel-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 08:33:42

Modified files:
	x11/gnome/system-monitor: Makefile distinfo 
	x11/gnome/system-monitor/pkg: PLIST 

Log message:
- update to gnome-system-monitor-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 08:57:48

Log message:
    Import libgepub-0.4.
    
    libgepub is a GObject based library for handling and rendering epub documents.
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161031
    
    N ports/x11/gnome/libgepub/distinfo
    N ports/x11/gnome/libgepub/Makefile
    N ports/x11/gnome/libgepub/pkg/DESCR
    N ports/x11/gnome/libgepub/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 08:58:13

Modified files:
	x11/gnome      : Makefile 

Log message:
+libgepub


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 08:59:05

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Mark all pkgnames matching ^drupal(-6|6-) as obsolete/unmaintained upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 09:02:09

Modified files:
	x11/gnome/builder: Makefile distinfo 
	x11/gnome/builder/pkg: PLIST 
Added files:
	x11/gnome/builder/patches: patch-contrib_gstyle_Makefile_in 
	                           patch-libide_util_ide-posix_c 
Removed files:
	x11/gnome/builder/patches: patch-configure 
	                           patch-plugins_vala-pack_Makefile_in 
	                           patch-plugins_vala-pack_config_vapi 
	                           patch-plugins_vala-pack_ide-vala-index_vala 

Log message:
Update to gnome-builder-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/31 09:05:52

Modified files:
	lang/php       : Makefile.inc 
	lang/php/5.5   : Makefile 
	lang/php/5.6   : Makefile 

Log message:
fix wantlib for some subpackages


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/31 09:06:10

Modified files:
	lang/php/7.0   : Makefile distinfo 
	lang/php/7.0/patches: patch-ext_pcre_php_pcre_c 
	                      patch-php_ini-development 
	                      patch-php_ini-production 

Log message:
update to 7.0.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/10/31 09:07:30

Modified files:
	mail/z-push    : Makefile distinfo 

Log message:
update to 2.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 09:20:33

Modified files:
	x11/gnome/documents: Makefile distinfo 
	x11/gnome/documents/pkg: PLIST 

Log message:
Update to gnome-documents-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:34:48

Modified files:
	x11/xfce4/xfconf: Makefile distinfo 
	x11/xfce4/xfconf/pkg: PLIST 

Log message:
Update to xfconf 4.12.1.

Bump minor for the addition of bindings for GdkRGBAs


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:35:49

Modified files:
	x11/xfce4/ristretto: Makefile distinfo 
	x11/xfce4/ristretto/pkg: PLIST 

Log message:
Bugfix update to ristretto 0.8.1, preparing the groundwork for Gtk3
migration.

See
https://mail.xfce.org/pipermail/xfce-announce/2016-October/000466.html
for details.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:36:27

Modified files:
	x11/xfce4/xfce4-settings: Makefile distinfo 

Log message:
Update to xfce4-settings 4.12.1.

See
https://mail.xfce.org/pipermail/xfce-announce/2016-September/000464.html
for details.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:38:18

Modified files:
	x11/xfce4/xfce4-panel: Makefile distinfo 

Log message:
Bugfix update to xfce4-panel 4.12.1.

See https://mail.xfce.org/pipermail/xfce/2016-October/035311.html for details


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:40:12

Modified files:
	x11/xfce4/terminal: Makefile distinfo 
	x11/xfce4/terminal/pkg: PLIST 

Log message:
Update to xfce4-terminal 0.8.1.

Moves to vte3/Gtk3, been running various dev versions since a good while.

See for details
https://mail.xfce.org/pipermail/xfce-announce/2016-October/000467.html
and https://mail.xfce.org/pipermail/xfce/2016-October/035316.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:40:58

Modified files:
	x11/xfce4/xfce4-clipman: Makefile distinfo 
	x11/xfce4/xfce4-clipman/pkg: PLIST 

Log message:
Update to xfce4-clipman 1.4.0, converted to Gtk3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:44:35

Modified files:
	geo/gdal       : Makefile distinfo 

Log message:
Bugfix update to gdal 2.1.2.

See for details: https://trac.osgeo.org/gdal/wiki/Release/2.1.2-News


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:46:36

Modified files:
	geo/merkaartor : Makefile distinfo 
	geo/merkaartor/patches: patch-src_src_pro 
	geo/merkaartor/pkg: PLIST 

Log message:
Update to merkaartor 0.18.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 09:47:58

Modified files:
	geo/mapserver  : Makefile distinfo 

Log message:
Update to mapserver 7.0.2.

See for details:
http://mapserver.org/development/changelog/changelog-7-0.html#changelog-7-0-2


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/31 09:56:05

Modified files:
	www/py-httpie  : Makefile 

Log message:
Change PKGNAME to httpie
suggested by sthen@ as a Quirks entry is needed anyway with the switch
to py3

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/10/31 09:56:50

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
py-httpie -> httpie

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2016/10/31 10:01:22

Modified files:
	net/py-pcapy   : Makefile distinfo 
	net/py-pcapy/patches: patch-pcap_pkthdr_cc patch-setup_py 
	net/py-pcapy/pkg: PLIST 

Log message:
update pcapy to a version that can run in python3

Reviewed and help by Rafael Sadowski and jca@
OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2016/10/31 10:02:00

Modified files:
	net            : Makefile 

Log message:
add python3 flavor of py-pcapy


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 10:08:08

Modified files:
	geo/postgis    : Makefile distinfo 
	geo/postgis/patches: patch-liblwgeom_varint_h 
	geo/postgis/pkg: PLIST 

Log message:
Major update to postgis 2.3.0.

See http://postgis.net/2016/09/26/postgis-2.3.0/


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 10:14:27

Modified files:
	x11/gnome/mutter: Makefile distinfo 
	x11/gnome/mutter/pkg: PLIST 

Log message:
update to mutter-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 10:15:09

Modified files:
	x11/gnome/shell: Makefile distinfo 
	x11/gnome/shell/patches: patch-js_misc_loginManager_js 
	x11/gnome/shell/pkg: PLIST 

Log message:
update to gnome-shell-3.22.1

there may be some runtime issues that will be dealt with shortly,
as discussed with aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 10:15:23

Modified files:
	x11/gnome/shell-extensions: Makefile distinfo 

Log message:
update to gnome-shell-extensions-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 10:15:37

Modified files:
	x11/gnome/terminal: Makefile distinfo 
	x11/gnome/terminal/pkg: PLIST 

Log message:
update to gnome-terminal-3.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 10:15:46

Modified files:
	x11/gnome/gdm  : Makefile distinfo 
	x11/gnome/gdm/patches: patch-configure_ac 
	                       patch-daemon_gdm-local-display-factory_c 
	x11/gnome/gdm/pkg: PLIST 
Added files:
	x11/gnome/gdm/patches: patch-Makefile_am 
Removed files:
	x11/gnome/gdm/files: gdm-autologin 

Log message:
Update to gdm-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 10:27:39

Modified files:
	x11/gnome/aisleriot: Makefile distinfo 
	x11/gnome/aisleriot/pkg: PLIST 

Log message:
Update to aisleriot-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 10:30:17

Modified files:
	x11/gnome/initial-setup: Makefile distinfo 
	x11/gnome/initial-setup/patches: patch-configure_ac 
	                                 patch-gnome-initial-setup_Makefile_in 
	                                 patch-gnome-initial-setup_gnome-initial-setup_c 
	                                 patch-gnome-initial-setup_pages_Makefile_in 
	                                 patch-gnome-initial-setup_pages_account_Makefile_in 
	                                 patch-gnome-initial-setup_pages_password_Makefile_in 
	x11/gnome/initial-setup/pkg: PLIST 

Log message:
Update to gnome-initial-setup-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 10:39:26

Modified files:
	devel/liblouis : Makefile distinfo 
	devel/liblouis/patches: patch-python_louis_Makefile_in 
	devel/liblouis/pkg: PLIST 
Added files:
	devel/liblouis/patches: patch-tools_lou_compare_c 

Log message:
update to liblouis-3.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 11:03:35

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
- sync OpenBSDVirtual with what's been merged upstream
- implement virtualization_type and virtualization_role for vmm


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 11:07:30

Modified files:
	x11/pekwm      : Makefile distinfo 
	x11/pekwm/pkg  : PLIST 
Added files:
	x11/pekwm/patches: patch-data_scripts_pekwm_screenshot_sh 

Log message:
Update to pekwm-0.1.17.

from new maintainer Timo Myyra


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 11:10:59

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
- Enable VMM detection
- Drop processor_cores fact with bogus value (hardcoded 'NA')
- Implement DMI facts (product_name, product_version, product_uuid,
product_serial and system_vendor)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 11:11:06

Log message:
    Import gradio 5.0.0beta2
    
    A desktop application for finding and listening to internet radio
    stations. The radio library is populated from a crowdsourced radio
    streams database at http://www.radio-browser.info,
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20161031
    
    N ports/audio/gradio/Makefile
    N ports/audio/gradio/distinfo
    N ports/audio/gradio/pkg/PLIST
    N ports/audio/gradio/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 11:11:47

Modified files:
	audio          : Makefile 

Log message:
+gradio


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/10/31 11:22:07

Modified files:
	usr.bin/at     : at.c 

Log message:
Delete setlocale(LC_TIME, "").
The only place where this could potentially get used was the
strftime(3) for fprintf(3) "job %s at %s\n" to stderr.  We don't
want base system utilities to talk to users in foreign languages.
No functional change on OpenBSD which doesn't provide any non-standard
LC_TIME locale anyway.
Patch from Jan Stary <hans at stare dot cz>.
In main(), exit -> return while here.
OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 11:23:13

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
swap the values of the distribution_release and distribution_version facts

this is more in line with other platforms where the version fact is a numerical
value and the release an identification string:

"ansible_facts": {
"ansible_distribution": "OpenBSD",
"ansible_distribution_release": "current",
"ansible_distribution_version": "6.0"
},


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 11:28:47

Log message:
    import py-ghmi-1.0.11
    
    Pyghmi is a pure Python (mostly IPMI) server management library.
    
    tested with ipmi_power and ipmi_boot modules from ansible 2.2
    ok aja@ a while back
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20163110
    
    N ports/sysutils/py-ghmi/distinfo
    N ports/sysutils/py-ghmi/Makefile
    N ports/sysutils/py-ghmi/pkg/PLIST
    N ports/sysutils/py-ghmi/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 11:29:47

Modified files:
	sysutils       : Makefile 

Log message:
+py-ghmi


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 11:49:30

Modified files:
	x11/lumina     : Makefile 
Added files:
	x11/lumina     : distinfo 
	x11/lumina/patches: patch-src-qt5_OS-detect_pri 
	x11/lumina/pkg : DESCR PLIST 
Removed files:
	x11/lumina     : Makefile.inc 
	x11/lumina/i18n: Makefile distinfo 
	x11/lumina/i18n/pkg: DESCR PLIST 
	x11/lumina/lumina: Makefile distinfo 
	x11/lumina/lumina/pkg: DESCR PLIST 

Log message:
Update to lumina-1.1.0.
- i18n merged into lumina

from Bryan C. Everly (maintainer) with a few tweaks


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/10/31 11:50:45

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
simplify resolution of ansible_processor by using hw.model and hw.ncpu.
previously /var/run/dmesg.boot or dmesg(8) would be parsed however that could
lead to bogus values (e.g. the full "Enhanced SpeedStep" line) if the buffer
contained multiple (partial) dmesgs


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/10/31 11:59:01

Modified files:
	geo/pgrouting  : Makefile distinfo 
	geo/pgrouting/pkg: PLIST 

Log message:
Update to pgrouting 2.3.0.

http://docs.pgrouting.org/2.3/en/doc/src/changelog/release_notes.html#changelog-2-3-0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/31 12:46:09

Modified files:
	lang/lua       : lua.port.mk 

Log message:
Stop automatic addition of lua5x FLAVORS.

Now if a port wants to declare support for lua52/lua53, it must do so
explicitely.  Hopefully this will result in lua libraries being better
tested with the lua versions we support.

Agreement from sthen@ when discussed on ports@, bulk build tests by
ajacoutot@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/10/31 12:51:42

Modified files:
	lang           : Makefile 

Log message:
Unhook luajit,lua52 until a decision is made.

This FLAVOR has been proposed for removal by jsg@ some time ago.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/31 14:45:14

Modified files:
	share/man/man8 : release.8 

Log message:
Update to reflect the changes necessary for noperm releases.  Trim some
more fat and avoid introducing unnecessary variables.

with & ok tj, ok deraadt, prodded by robert


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/31 14:50:11

Modified files:
	etc/skel       : dot.cvsrc 

Log message:
Add the -d flag to the update command, so directories are created
with 'cvs up'.  Prompted by a question by patrick keshishian, diff
by Raf Czlonka.

ok phessler, jca; mild opposition from schwarze


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/31 14:52:22

Modified files:
	opensmtpd      : donations.html goals.html index.html list.html 
	                 manual.html papers.html portable.html 
	                 report.html security.html 
	opensmtpd/faq  : certificates.html config.html example1.html 
	                 filters.html index.html options.html rules.html 

Log message:
Add canonical links.

verified by & ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/31 14:53:12

Modified files:
	opencvs        : goals.html index.html manual.html press.html 

Log message:
Add canonical links.

verified by & ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/31 14:59:33

Modified files:
	faq            : faq5.html 

Log message:
XXXrelease marker for the sample .cvsrc file


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 15:30:38

Modified files:
	databases      : Makefile 

Log message:
Unhook dbic++ and ruby-swift


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 15:32:11

Removed files:
	databases/dbic++: Makefile distinfo 
	databases/dbic++/patches: patch-CMakeLists_txt 
	                          patch-inc_dbic++_h 
	                          patch-pkgconfig_dbic++_pc 
	                          patch-src_dbic++_cc 
	databases/dbic++/pkg: DESCR PLIST 

Log message:
Remove dbic++

Originally added to support ruby-swift, which is also being removed. Dead
upstream for the last four years, and no known users.

OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 15:33:08

Removed files:
	databases/ruby-swift: Makefile distinfo 
	databases/ruby-swift/pkg: DESCR PLIST 

Log message:
Remove ruby-swift

Upstream development stopped 2 years ago, and there are no known users.

OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/10/31 15:35:28

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add quirk for removal of dbic++


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/31 16:08:55

Modified files:
	openssh        : portable.html 

Log message:
Link to RELEASE_KEY.asc on the main distribution site.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/10/31 16:14:45

Modified files:
	build/mirrors  : openssh-portable.html.head 

Log message:
Link to RELEASE_KEY.asc on the main distribution site.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/31 16:33:39

Modified files:
	.              : hackathons.html 

Log message:
zap stray v

from rafael sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 16:53:34

Modified files:
	lang/guile2    : Makefile 
Added files:
	lang/guile2/patches: patch-doc_ref_guile-invoke_texi 
	                     patch-doc_ref_posix_texi 
	                     patch-libguile_filesys_c 
	                     patch-module_ice-9_ftw_scm 
	                     patch-module_system_repl_coop-server_scm 
	                     patch-module_system_repl_server_scm 

Log message:
SECURITY fix for CVE-2016-8606 and CVE-2016-8605.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/31 17:05:42

Modified files:
	regress/usr.bin/make: Makefile 

Log message:
MALLOC_OPTION 'A' no longer exists.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/10/31 17:13:07

Modified files:
	lang/guile2    : Tag: OPENBSD_6_0 Makefile 
Added files:
	lang/guile2/patches: Tag: OPENBSD_6_0 
	                     patch-doc_ref_guile-invoke_texi 
	                     patch-doc_ref_posix_texi 
	                     patch-libguile_filesys_c 
	                     patch-module_system_repl_coop-server_scm 
	                     patch-module_system_repl_server_scm 

Log message:
SECURITY fix for CVE-2016-8606 and CVE-2016-8605.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/31 17:45:09

Modified files:
	regress/usr.bin/ssh: Makefile connect-privsep.sh 
	regress/usr.bin/ssh/unittests/bitmap: Makefile 
	regress/usr.bin/ssh/unittests/hostkeys: Makefile 
	regress/usr.bin/ssh/unittests/kex: Makefile 
	regress/usr.bin/ssh/unittests/match: Makefile 
	regress/usr.bin/ssh/unittests/sshbuf: Makefile 
	regress/usr.bin/ssh/unittests/sshkey: Makefile 
	regress/usr.bin/ssh/unittests/utf8: Makefile 

Log message:
Remove the obsolete A and P flags from MALLOC_OPTIONS.

ok dtucker


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/31 18:08:35

Modified files:
	faq            : faq5.html 

Log message:
the faq documents -release and -stable, so link to the 6.0 version
of the release(8) manual.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/10/31 18:35:34

Modified files:
	regress/usr.bin/m4: Makefile 

Log message:
MALLOC_OPTIONS=A no longer exists.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/10/31 19:13:19

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

Log message:
Use x2APIC if it is enabled by BIOS.  It is expected that this doesn't
change the behavior on the system whose x2apic is disabled by BIOS.

ok sf


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/10/31 22:13:52

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/pkg: PLIST 

Log message:
disable the clearfog target until kwbimage is fixed

There is a use after free in kwbimage, found by building u-boot with the
use after free detection enabled in malloc.  When building the clearfog target:

MKIMAGE u-boot-spl.kwb
Segmentation fault (core dumped)

kwbimage_generate -> image_version_file (alloc and free image_cfg global)
kwbimage_generate -> image_headersz_v1 -> image_count_options (image_cfg used)

It isn't clear to me if image_version_file should be inlined or another
approach taken, but as it stands it is clearly wrong.

The result of image_version_file is also never checked for -1 which multiple
paths in the function return.

I reported this on the u-boot list a week or so ago but no one has responded
so far.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/10/31 23:10:48

Modified files:
	.              : stable.html 

Log message:
link to the 6.0 version instead of the -current version of release(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/01 00:53:52

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 01:12:57

Modified files:
	x11/gnome/control-center: Makefile distinfo 
	x11/gnome/control-center/patches: 
	                                  patch-panels_user-accounts_Makefile_in 
	x11/gnome/control-center/pkg: PLIST 

Log message:
Update to gnome-control-center-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 01:31:32

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.11.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 02:11:21

Modified files:
	net/libgadu    : Makefile 

Log message:
don't pickup protobuf; spotted by nigel@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/01 03:07:18

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

Log message:
Clear window alert flags after setting winlink alert flags, fixes problem
reported by Tommy Allen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/01 03:07:19

Modified files:
	databases/redis: Makefile distinfo 
	databases/redis/patches: patch-src_Makefile 

Log message:
Update to redis-3.2.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 03:10:41

Modified files:
	mail/archiveopteryx: Makefile distinfo 
	mail/archiveopteryx/patches: patch-Jamfile patch-Jamrules 
	                             patch-Jamsettings 
	                             patch-aox_servers_cpp 
	                             patch-db_postgres_cpp 
	                             patch-doc_archiveopteryx_conf_man 
	                             patch-doc_archiveopteryx_man 
	                             patch-doc_readme_README 
	                             patch-server_tlsthread_cpp 
	mail/archiveopteryx/pkg: PLIST README 
Removed files:
	mail/archiveopteryx/patches: patch-db_database_cpp 
	                             patch-db_schema_cpp 
	                             patch-doc_Jamfile 

Log message:
Update to archiveopteryx 3.2.0 and drop MAINTAINERship.

Been lying in mystuff for the past two years, pending actual testing.
For the record:

Archiveopteryx is a mail server system optimised for long-term storage
and heavy access. It comprises a set of server programs that provide
access to mail stored in a relational database (PostgreSQL).


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 03:11:31

Added files:
	mail/archiveopteryx/patches: 
	                             patch-archiveopteryx_archiveopteryx_cpp 
	                             patch-core_md5_cpp 

Log message:
Forgot to cvs add those.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 03:12:46

Modified files:
	x11/gnome/file-roller: Makefile 

Log message:
i accidentally the whole MODGNOME_TOOLS

spotted by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 03:18:13

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-debian_qgis_desktop 
	                  patch-src_app_qgisapp_cpp 
	                  patch-src_core_CMakeLists_txt 
	geo/qgis/pkg   : PLIST 

Log message:
Update to QGIS 2.18.0.

See http://changelog.qgis.org/en/qgis/version/2.18.0/ for a visual list
of changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/01 03:31:57

Modified files:
	audio/ncmpcpp  : Makefile distinfo 
	audio/ncmpcpp/patches: patch-src_ncmpcpp_cpp 

Log message:
Update to ncmpcpp 0.7.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 03:44:46

Modified files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
submitted upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 04:18:34

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 
	devel/ruby-rspec/specinfra/pkg: PLIST 

Log message:
update to specinfra-2.64.0


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 04:25:43

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
We don't want to run on -stable (i.e. locally built release) but only on
official release.
Remove the half cooked rollback patch if we run into an error.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 04:25:53

Modified files:
	lang/abcl      : Makefile distinfo 
	lang/abcl/files: abcl_completions 
	lang/abcl/pkg  : PLIST 

Log message:
update to abcl-1.4.0

from Timo Myyra (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 04:30:01

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
install_patch -> apply_patch to remove confusion with install_kernel and
install_file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 04:40:50

Modified files:
	archivers/libarchive: Makefile distinfo 
	archivers/libarchive/patches: patch-configure 
Removed files:
	archivers/libarchive/patches: 
	                              patch-libarchive_test_test_write_format_gnutar_filenames_c 

Log message:
SECURITY update to 3.2.2.
Numerous bugs appear to have been fixed, but there is no log of changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 04:52:20

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-scripts_mysqld_safe_sh 
	                           patch-storage_connect_reldef_cpp 
	databases/mariadb/pkg: PLIST-tests 
Removed files:
	databases/mariadb/patches: patch-sql_signal_handler_cc 

Log message:
update to MariaDB 10.0.28, from Brad (who also tested it on ppc): fixes
CVE-2016-5616, CVE-2016-5624, CVE-2016-5626, CVE-2016-3492, CVE-2016-5629,
CVE-2016-8283, CVE-2016-7440, CVE-2016-5584 and CVE-2016-6663.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 04:55:14

Modified files:
	audio/gradio   : Makefile 

Log message:
Missing bdep on autoconf/automake.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 04:59:17

Modified files:
	sysutils/py-ghmi: Makefile 

Log message:
Missing bdep on devel/py-pbr.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 05:10:24

Modified files:
	x11/gnome/music: Makefile 

Log message:
devel/py-gobject3${MODPY_FLAVOR} is also needed at build time.

spotted by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 05:12:57

Modified files:
	archivers/libarchive: Tag: OPENBSD_6_0 Makefile distinfo 
	archivers/libarchive/patches: Tag: OPENBSD_6_0 patch-configure 
Removed files:
	archivers/libarchive/patches: Tag: OPENBSD_6_0 
	                              patch-libarchive_test_test_write_format_gnutar_filenames_c 

Log message:
SECURITY update to 3.2.2.
Numerous bugs appear to have been fixed, but there is no log of changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/11/01 05:56:29

Modified files:
	editors/libreoffice: Makefile distinfo 
	editors/libreoffice/pkg: PLIST-main 

Log message:
update to 5.2.2.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 06:01:10

Modified files:
	security/clamav: Makefile 
Added files:
	security/clamav/patches: patch-m4_reorganization_libs_pcre_m4 

Log message:
Prevent picking up pcre2 (for now).

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 06:27:07

Modified files:
	audio/mpg123   : Makefile distinfo 

Log message:
Security update to 1.23.8:
Fix an out-of-bounds memory read in the ID3v2 parser for tags that claim an
unrealistically small length.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 06:41:46

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Add a few error messages so we know where we fail.
Regular operation is mostly quiet, i.e:
Applying syspatch-60-001_cp.tgz 100% |***********************| 65247       00:03

Move trap after we create the temporary directory so that we can remove it
on failure and fix a typo in readonly vars.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/01 07:03:14

Modified files:
	games/scummvm  : Makefile distinfo 
	games/scummvm/patches: patch-Makefile_common patch-configure 
	games/scummvm/pkg: PLIST 

Log message:
update to scummvm 1.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/01 07:04:15

Modified files:
	games/scummvm-tools: Makefile distinfo 
	games/scummvm-tools/patches: patch-configure 

Log message:
update to scummvm-tools 1.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/01 07:20:11

Log message:
    import py-minidb
    
    minidb is a simple SQLite3 store for Python objects.
    
    OK aja@ sthen@
    
    Status:
    
    Vendor Tag:	rpe
    Release Tags:	rpe_20161101
    
    N ports/databases/py-minidb/Makefile
    N ports/databases/py-minidb/distinfo
    N ports/databases/py-minidb/pkg/PLIST
    N ports/databases/py-minidb/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/01 07:23:21

Modified files:
	databases      : Makefile 

Log message:
+py-minidb


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 07:40:17

Modified files:
	audio/mpg123   : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
Security update to 1.23.8:
Fix an out-of-bounds memory read in the ID3v2 parser for tags that claim an
unrealistically small length.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/01 07:43:27

Modified files:
	regress/usr.bin/ssh: Makefile connect-privsep.sh 
	regress/usr.bin/ssh/unittests: Makefile.inc 
	regress/usr.bin/ssh/unittests/bitmap: Makefile 
	regress/usr.bin/ssh/unittests/hostkeys: Makefile 
	regress/usr.bin/ssh/unittests/kex: Makefile 
	regress/usr.bin/ssh/unittests/match: Makefile 
	regress/usr.bin/ssh/unittests/sshbuf: Makefile 
	regress/usr.bin/ssh/unittests/sshkey: Makefile 
	regress/usr.bin/ssh/unittests/utf8: Makefile 

Log message:
Clean up MALLOC_OPTIONS.  For the unittests, move MALLOC_OPTIONS and
TEST_ENV to unittets/Makefile.inc.

ok otto


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/01 07:49:51

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

Log message:
Reset the ucode interrupt flag in the softc before loading iwm(4) 8k firmware.
Makes firmware load work reliably without the horrid tsleep() workaround hack.
Patch by Imre Vadasz


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 07:56:30

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

Log message:
update to xscreensaver-5.36


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 08:12:04

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot/patches: patch-doc_example-config_Makefile_in 
	                      patch-doc_example-config_conf_d_Makefile_in 
	                      patch-src_auth_password-scheme-crypt_c 
	mail/dovecot/pkg: PLIST-ldap PLIST-server 

Log message:
update to Dovecot 2.2.26.0, ok brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/11/01 08:14:49

Modified files:
	sysutils/firmware/iwm: Makefile distinfo 
	sysutils/firmware/iwm/pkg: PLIST 

Log message:
Remove obsolete iwm(4) firmware files for API version 9 (unused since 6.0).
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/11/01 08:16:44

Modified files:
	sysutils/firmware/iwm: Makefile 

Log message:
Sync a comment with reality.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 08:18:49

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

Log message:
BDEP on intltool for share/aclocal/intltool.m4; ok aja


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/01 08:20:15

Modified files:
	www/urlwatch   : Makefile distinfo 
	www/urlwatch/pkg: PLIST 
Removed files:
	www/urlwatch/patches: patch-lib_urlwatch_html2txt_py 

Log message:
Update www/urlwatch to version 2.

This is a major update for urlwatch which is now a python3 program.
Consider looking at the README.md at https://github.com/thp/urlwatch
if you are migrating from version 1.

Noteable changes:
- the urls file is now in PyYaml format and will be auto-convertert
- watching ftp:// URLs needs a workaround like:
kind: shell
command: curl ftp://url/path/
- custom hooks are different and need rewriting

Feedback from and OK sthen@ aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 08:24:11

Modified files:
	mail/dovecot-pigeonhole: Makefile distinfo 
	mail/dovecot-pigeonhole/patches: 
	                                 patch-src_managesieve-login_Makefile_in 
	mail/dovecot-pigeonhole/pkg: PLIST 

Log message:
update to Pigeonhole 0.4.16, the final version is out and as pointed out
by Brad there's a problem with older Pigeonhole with Dovecot 2.2.26.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 08:45:46

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Simplify fetch_and_verify(), no need for a loop here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:23:28

Modified files:
	x11/xfce4/xfce4-battery: Makefile distinfo 
	x11/xfce4/xfce4-battery/pkg: PLIST 

Log message:
Update to xfce4-battery 1.1.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:23:48

Modified files:
	x11/xfce4/xfce4-datetime: Makefile distinfo 
	x11/xfce4/xfce4-datetime/pkg: PLIST 

Log message:
Update xfce4-datetime 0.7.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:24:03

Modified files:
	x11/xfce4/xfce4-diskperf: Makefile distinfo 
	x11/xfce4/xfce4-diskperf/pkg: PLIST 

Log message:
Update to xfce4-diskperf 2.6.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:24:18

Modified files:
	x11/xfce4/xfce4-fsguard: Makefile distinfo 
	x11/xfce4/xfce4-fsguard/pkg: PLIST 

Log message:
Update to xfce4-fsguard 1.1.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:24:33

Modified files:
	x11/xfce4/xfce4-netload: Makefile distinfo 
	x11/xfce4/xfce4-netload/pkg: PLIST 

Log message:
Update to xfce4-netload 1.3.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:24:47

Modified files:
	x11/xfce4/xfce4-smartbookmark: Makefile distinfo 
	x11/xfce4/xfce4-smartbookmark/pkg: PLIST 

Log message:
Update to xfce4-smartbookmark 0.5.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:25:01

Modified files:
	x11/xfce4/xfce4-systemload: Makefile distinfo 
	x11/xfce4/xfce4-systemload/pkg: PLIST 

Log message:
Update to xfce4-systemload 1.2.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:26:02

Modified files:
	x11/xfce4/xfce4-wavelan: Makefile distinfo 

Log message:
Update to xfce4-wavelan 0.6.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 09:27:24

Modified files:
	www/urlwatch   : Makefile 
	www/urlwatch/patches: patch-urlwatch 

Log message:
regen patch (no pkg change)
enable tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 09:28:30

Modified files:
	x11/xfce4/xfce4-mpc: Makefile distinfo 
	x11/xfce4/xfce4-mpc/pkg: PLIST 

Log message:
Update to xfce4-mpc 0.5.0, ported to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/01 09:34:39

Modified files:
	infrastructure/bin: register-plist 

Log message:
When there is a package with a matching name, but with a different
pkgpath, print a message showing the packages that weren't matched
due to the differing pkgpath.

Help and OK espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/01 09:48:00

Added files:
	infrastructure/db: .cvsignore 

Log message:
Ignore network.conf

db/network.conf can be used to override MASTER_SITE* entries in
templates/network.conf.template, let cvs(1) be silent about it.

ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 09:51:04

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Add a cleanup function to remove non matching release content from
/var/syspatch and the rollback kernel if all kernel syspatches have been
reverted.

While here, make sure _RELINT and _REL are declared properly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/01 09:58:18

Modified files:
	devel/spice-protocol: Makefile 
	devel/spice-protocol/patches: patch-spice_macros_h 

Log message:
Simplify endianness goo.

spice-gtk breaks on sparc64 because endianness can't be detected,
because not all source files in spice-gtk include the same config.h
file.  So instead of requiring consumer ports to define HAVE_ENDIAN_H,
let's just assume that we have it.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/01 10:00:05

Modified files:
	x11/spice-gtk  : Makefile 
Removed files:
	x11/spice-gtk/patches: patch-configure_ac 

Log message:
Drop unneeded patch

... and bump REVISION Just In Case (tm)


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 10:05:53

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Also remove non matching release rollback kernel.
Temporary unhook the cleanup function during tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 10:21:47

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Only run sp_cleanup() when applying or reverting a patch (needs root).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 10:26:11

Modified files:
	sysutils/consul: Makefile distinfo 
Removed files:
	sysutils/consul/patches: patch-temporary_hack-stat_openbsd_go 
	                         patch-temporary_hack_stat_unsupported_go 

Log message:
- update to consul 0.7.0: https://www.hashicorp.com/blog/consul-0-7.html

ok aja@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 10:31:57

Modified files:
	shells/bash    : Makefile distinfo 

Log message:
update to 4.3 patchlevel 48


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 10:34:57

Modified files:
	security/letsencrypt/client: Makefile 

Log message:
py-psutil no longer needed, spotted by landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 10:38:27

Modified files:
	sysutils/py-psutil: Makefile distinfo 
	sysutils/py-psutil/patches: patch-psutil_tests___init___py 

Log message:
Update to py-psutil 4.4.2.

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 10:43:51

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

Log message:
update to intellij-2016.2.5

from Caspar Schutijser (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 10:50:34

Modified files:
	infrastructure/db: user.list 

Log message:
add _consul-template


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 10:51:30

Log message:
    import consul-template-0.16.0
    
    This project provides a convenient way to populate values from Consul
    into the file system using the consul-template daemon.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20160111
    
    N ports/sysutils/consul-template/Makefile
    N ports/sysutils/consul-template/distinfo
    N ports/sysutils/consul-template/files/default.conf
    N ports/sysutils/consul-template/pkg/consul_template.rc
    N ports/sysutils/consul-template/pkg/DESCR
    N ports/sysutils/consul-template/pkg/PLIST
    N ports/sysutils/consul-template/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 10:52:07

Modified files:
	sysutils       : Makefile 

Log message:
+consul-template


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/11/01 10:55:13

Modified files:
	math/R         : Makefile distinfo 
	math/R/patches : patch-configure 
	math/R/pkg     : PLIST 

Log message:
Update to R 3.3.2

ok dcoppa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 10:58:19

Modified files:
	productivity/grisbi: Makefile 

Log message:
Touche pas au grisbi, salope!

(set PORTROACH annotation so that it stops bothering me about the
instable/broken snapshot hosted on the garbage dump^Wsourceforge)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/01 11:04:10

ports/net/openvpn-auth-ldap/patches

Update of /cvs/ports/net/openvpn-auth-ldap/patches
In directory cvs.openbsd.org:/tmp/cvs-serv11949/patches

Log Message:
Directory /cvs/ports/net/openvpn-auth-ldap/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/01 11:11:55

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

Log message:
Update to py-ConfigArgParse-0.11.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 11:29:38

Modified files:
	graphics/png   : Makefile distinfo 

Log message:
maintenance update to 1.6.26; from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 11:46:09

Modified files:
	graphics/povray: Makefile distinfo 

Log message:
use the latest release from the png 1.2 branch, 1.2.56


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/01 11:53:44

Modified files:
	devel/py-jsonrpclib: Makefile distinfo 

Log message:
Update to py-jsonrpclib-0.1.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/01 12:04:06

Modified files:
	productivity/grisbi: Makefile distinfo 
Removed files:
	productivity/grisbi/patches: patch-src_bet_data_c 

Log message:
Actually, grisbi moved to github, so just update to the 1.0.1 found
there. Add plumbing to run autogen.sh and the necessary BDEPs on autohell.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 12:05:56

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_man_nano_1 
Removed files:
	editors/nano/patches: patch-doc_man_nanorc_5 

Log message:
update to 2.7.1: add the ability to display line numbers in front of the text


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 12:12:44

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Add an XXX.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/11/01 12:14:05

Modified files:
	lang/ghc       : Makefile 

Log message:
Instead of setting USE_WXNEEDED=Yes, explicitely pass  -Wl,-z,wxneeded
the linker again. Otherwise, the ld wrapper script installed when
USE_WXNEEDED=Yes will be used by the installed ghc package.

Problem noticed by Karel Gardas.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/01 12:19:17

Modified files:
	devel/py-nosexcover: Makefile distinfo 

Log message:
Update to py-nosexcover-1.0.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 14:43:14

Modified files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
dmi facts merged upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 14:46:02

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Tap SIGINT while install(1)ing so that we can properly rollback and not
be left in an inconsistent state.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/01 14:53:21

Modified files:
	sysutils/ggrep : Makefile distinfo 

Log message:
maintenance update to 2.26


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 15:02:03

Modified files:
	net/isc-bind   : Makefile distinfo 
Removed files:
	net/isc-bind/patches: patch-lib_isc_unix_socket_c 

Log message:
update to BIND 9.10.4-P1, fixing a resolver DoS in DNAME handling. CVE-2016-8864


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/01 15:05:37

Modified files:
	net/isc-bind   : Tag: OPENBSD_6_0 Makefile distinfo 
Removed files:
	net/isc-bind/patches: Tag: OPENBSD_6_0 
	                      patch-lib_isc_unix_socket_c 

Log message:
update to BIND 9.10.4-P1, fixing a resolver DoS in DNAME handling. CVE-2016-8864


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 15:07:18

Modified files:
	x11/gnome/todo : Makefile distinfo 
	x11/gnome/todo/pkg: PLIST 

Log message:
Update to gnome-todo-3.22.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 15:07:25

Modified files:
	editors/joe    : Makefile distinfo 
	editors/joe/pkg: PLIST 

Log message:
update to joe-4.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 15:15:23

Modified files:
	games/xcowsay  : Makefile distinfo 

Log message:
update to xcowsay-1.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 15:25:05

Modified files:
	graphics/gprof2dot: Makefile distinfo 

Log message:
update to gprof2dot-2016.10.13


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 15:51:44

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Simplify.


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2016/11/01 15:55:04

ports/devel/ocaml-pcre/patches

Update of /cvs/ports/devel/ocaml-pcre/patches
In directory cvs.openbsd.org:/tmp/cvs-serv89499/patches

Log Message:
Directory /cvs/ports/devel/ocaml-pcre/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2016/11/01 16:02:59

Modified files:
	devel/coccinelle: Makefile 
	devel/ocaml-net: Makefile 
	devel/ocaml-pcre: Makefile distinfo 
	textproc/ocaml-text: Makefile 
Added files:
	devel/ocaml-pcre/patches: patch-_oasis patch-myocamlbuild_ml 
	                          patch-setup_ml 

Log message:
Update ocaml-pcre to 7.2.3. Bump revision of ports depending on ocaml-pcre.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/01 16:10:24

Modified files:
	devel/py-setproctitle: Makefile distinfo 
	devel/py-setproctitle/patches: patch-Makefile 
	                               patch-tests_pyrun_c 
	                               patch-tests_setproctitle_test_py 
	devel/py-setproctitle/pkg: PLIST 

Log message:
Update to py-setproctitle-1.1.10

ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2016/11/01 16:11:23

Modified files:
	devel/ocaml-dose: Makefile 

Log message:
Oops. Missed one REVISION bump.

Update ocaml-pcre to 7.2.3. Bump revision of ports depending on ocaml-pcre.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/01 16:17:55

Modified files:
	devel/py-tox   : Makefile distinfo 

Log message:
Update to py-tox-2.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 16:18:36

Modified files:
	devel/pcre2    : Makefile 

Log message:
update pkgconfig files to propagate wxneeded to dependant ports


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 16:19:23

Modified files:
	devel/vte3     : Makefile 
	x11/gnome/terminal: Makefile 

Log message:
update LDEP to use the fixed pcre2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/01 16:20:46

Modified files:
	devel/pcre2    : Makefile 

Log message:
move USE_WXNEEDED to the top of the file as per common practice


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/11/01 16:26:18

Modified files:
	editors/zile   : Makefile distinfo 

Log message:
Update for Zile to 2.4.13:

OK naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/01 16:26:34

Modified files:
	x11/gnome/anjuta: Makefile 
	x11/gnome/builder: Makefile 
	x11/gnome/color-manager: Makefile 
	x11/gnome/vinagre: Makefile 

Log message:
Bump GNOME ports that have pcre2 in WANTLIB so that they get updated.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/11/01 17:50:23

Modified files:
	net/ucspi-tcp  : Makefile distinfo 

Log message:
New revision of ipv6 patch removes duplicate text in tcpclient.1 and
tcpsetver.1 manual pages.  No changes in generated binaries.

OK MAINTAINER


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/01 19:20:50

Modified files:
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c 

Log message:
add per cpu caches for free pool items.

this is modelled on whats described in the "Magazines and Vmem:
Extending the Slab Allocator to Many CPUs and Arbitrary Resources"
paper by Jeff Bonwick and Jonathan Adams.

the main semantic borrowed from the paper is the use of two lists
of free pool items on each cpu, and only moving one of the lists
in and out of a global depot of free lists to mitigate against a
cpu thrashing against that global depot.

unlike slabs, pools do not maintain or cache constructed items,
which allows us to use the items themselves to build the free list
rather than having to allocate arrays to point at constructed pool
items.

the per cpu caches are build on top of the cpumem api.

this has been kicked a bit by hrvoje popovski and simon mages (thank you).
im putting it in now so it is easier to work on and test.
ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/01 19:29:43

Modified files:
	sys/arch/octeon/dev: if_cnmac.c 

Log message:
Make possible to change the link layer address of a cnmac(4) interface.

Asked by and ok stsp@, ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/01 19:58:07

Modified files:
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c 

Log message:
use a TAILQ to maintain the list of item lists used by the percpu code.

it makes it more readable, and fixes a bug in pool_list_put where it
was returning the next item in the current list rather than the next
list to be freed.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/01 21:29:48

Modified files:
	sys/kern       : subr_pool.c 

Log message:
add poisoning of items on the per cpu caches.

it copies the existing pool code, except it works on pool_list
structures instead of pool_item structures.

after this id like to poison the words used by the TAILQ_ENTRY in
the pool_list struct that arent used until a list of items is moved
into the global depot.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/02 00:26:16

Modified files:
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c 

Log message:
poison the TAILQ_ENTRY in items in the per cpu pool cache.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/02 00:46:20

Modified files:
	misc/mc        : Makefile distinfo 
	misc/mc/patches: patch-src_diffviewer_ydiff_c 
	misc/mc/pkg    : PLIST 

Log message:
update to mc-4.8.18
ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 01:36:52

Modified files:
	x11/gnome/builder: Makefile 
Added files:
	x11/gnome/builder/patches: 
	                           patch-plugins_terminal_gb-terminal-view_c 

Log message:
We don't have ptsname_r.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/02 01:42:56

Modified files:
	plan9/drawterm : Makefile distinfo 
	plan9/drawterm/patches: patch-Make_openbsd 
Removed files:
	plan9/drawterm/patches: patch-posix-mips_Makefile 
	                        patch-posix-mips_tas_s 
	                        patch-posix-power_Makefile 

Log message:
Update to drawterm-20161101

Switch from hg tarballs to proper releases, and remove a few patches
merged upstream.

From Stanley Lieber (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/02 01:43:40

Modified files:
	plan9/drawterm : Makefile 

Log message:
No need to set WRKDIST any more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 01:46:33

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-include_llvm_Support_Threading_h 

Log message:
Sync with what was committed upstream (Disable the use of std::call_once
on OpenBSD with libstdc++).

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 02:13:58

Modified files:
	x11/gnome/builder: Makefile distinfo 
	x11/gnome/builder/patches: patch-contrib_gstyle_Makefile_in 
	                           patch-plugins_terminal_gb-terminal-view_c 
	x11/gnome/builder/pkg: PLIST 

Log message:
Update to gnome-builder-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 02:20:27

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.68.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 02:20:43

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 02:28:33

Modified files:
	sysutils/py-ghmi: Makefile distinfo 

Log message:
update to py-ghmi-1.0.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/02 03:01:13

Modified files:
	www/puppetboard: Makefile 
	www/puppetboard/pkg: PLIST puppetboard.rc 

Log message:
Remove py3 flavor but make it default. For the rationale, see
https://marc.info/?l=openbsd-ports-cvs&m=147393010423200&w=2

While there, fix wrong substitution in the PLIST

test and OK sebastia@ (who noticed the rc script needed to be updated)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 03:07:03

Modified files:
	sysutils/ansible: Makefile distinfo 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 
	sysutils/ansible/pkg: PLIST 
Removed files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_modules_extras_packaging_os_openbsd_pkg_py 

Log message:
update to ansible 2.2.0.0

- https://groups.google.com/forum/#!topic/ansible-announce/cLN64qQ_yoo
- https://www.ansible.com/blog/ansible-network-updates


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/02 03:11:53

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: DES_set_key.3 DH_generate_key.3 
	                   DH_generate_parameters.3 
	                   DH_get_ex_new_index.3 DH_new.3 
	                   DH_set_method.3 DH_size.3 
Removed files:
	lib/libcrypto/doc: DES_set_key.pod DH_generate_key.pod 
	                   DH_generate_parameters.pod 
	                   DH_get_ex_new_index.pod DH_new.pod 
	                   DH_set_method.pod DH_size.pod 

Log message:
convert DES and DH manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 03:27:15

Modified files:
	net/gnugk      : Makefile 

Log message:
Drop PORTROACH marker.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/02 03:33:46

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
Use secure defaults for TLS - instead of accepting TLSv1.0 and any cipher
suite, use the libtls defaults and require TLSv1.2 with an AEAD+PFS cipher
suite - given who we're talking to one would hope that they meet these
requirements...

ok benno@ deraadt@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/02 03:54:47

Modified files:
	lib/libssl     : ssl_sess.c 

Log message:
Wrap some >80 char lines.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/02 04:14:14

Modified files:
	www/sope       : Makefile distinfo 
	www/sope/patches: patch-configure 

Log message:
Update to 2.3.17
similar diff and ok sebastia@ (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/02 04:16:20

Modified files:
	www/sogo       : Makefile distinfo 
	www/sogo/pkg   : PLIST sogod.rc 

Log message:
Update to 2.3.17
similar diff and ok sebastia@ (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/02 04:41:42

Modified files:
	productivity/osmo: Makefile 

Log message:
regen WANTLIB


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

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
Expand IMPLEMENT_LHASH_COMP_FN/IMPLEMENT_LHASH_HASH_FN macros - the only
change to generated assembly results from a difference in line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/02 04:52:30

Modified files:
	lib/libssl     : ssl.h 

Log message:
Expand DECLARE_PEM_rw macro.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/02 04:55:48

Modified files:
	lib/libssl     : ssl.h 

Log message:
Expand DECLARE_LHASH_OF and LHASH_OF macros.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/02 04:59:25

Modified files:
	lib/libssl     : ssl.h 

Log message:
Expand another LHASH_OF macro.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/02 05:21:05

Modified files:
	lib/libssl     : ssl_lib.c ssl_sess.c 

Log message:
Expand LHASH_OF, IMPLEMENT_LHASH_DOALL_ARG_FN and LHASH_DOALL_ARG_FN
macros. Only change in generated assembly is due to line numbering.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/02 05:57:56

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: DSA_SIG_new.3 DSA_do_sign.3 DSA_dup_DH.3 
	                   DSA_generate_key.3 DSA_generate_parameters.3 
	                   DSA_get_ex_new_index.3 DSA_new.3 
	                   DSA_set_method.3 DSA_sign.3 DSA_size.3 
	                   EC_GFp_simple_method.3 EC_GROUP_copy.3 
	                   EC_GROUP_new.3 EC_KEY_new.3 EC_POINT_add.3 
	                   EC_POINT_new.3 
Removed files:
	lib/libcrypto/doc: DSA_SIG_new.pod DSA_do_sign.pod 
	                   DSA_dup_DH.pod DSA_generate_key.pod 
	                   DSA_generate_parameters.pod 
	                   DSA_get_ex_new_index.pod DSA_new.pod 
	                   DSA_set_method.pod DSA_sign.pod DSA_size.pod 
	                   EC_GFp_simple_method.pod EC_GROUP_copy.pod 
	                   EC_GROUP_new.pod EC_KEY_new.pod 
	                   EC_POINT_add.pod EC_POINT_new.pod 

Log message:
convert DSA and EC manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/02 06:30:39

Log message:
    Import converters/lua-iconv.
    
    Lua-iconv is POSIX 'iconv' binding for the Lua Programming Language. The iconv
    library converts a sequence of characters from one codeset into a sequence of
    corresponding characters in another codeset. The codesets are those specified
    in the iconv.new() call that returned the conversion descriptor, cd.
    
    OK jca@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161102
    
    N ports/converters/lua-iconv/Makefile
    N ports/converters/lua-iconv/distinfo
    N ports/converters/lua-iconv/patches/patch-test_iconv_lua
    N ports/converters/lua-iconv/pkg/PLIST
    N ports/converters/lua-iconv/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/02 06:33:06

Modified files:
	converters     : Makefile 

Log message:
Add lua-iconv.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/02 06:41:14

Modified files:
	x11/gnome/photos: Makefile 

Log message:
build x11/gnome/photos with -march=i686 on i386; requires 64-bit atomics
(__sync_add_and_fetch_8).  ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/02 07:26:07

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

Log message:
Update to sbcl-1.3.0, and add a 'threads' FLAVOR.

This is a FLAVOR for now since the code is still not enabled by default
upstream.  Threads are not supported on powerpc yet.

Diff from Solene Rapenne, maintainer timeout.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/02 07:27:55

Modified files:
	lang           : Makefile 

Log message:
Hook up sbcl,threads


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/02 07:35:36

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

Log message:
Make an empty state on error rather than leaving something partially
created (which now is now a fatal() later).


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/11/02 08:33:47

Modified files:
	editors/libreoffice/patches: patch-configure 

Log message:
add missing patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/02 09:02:34

Modified files:
	audio/gradio   : Makefile 

Log message:
add missing BDEP on vala, noticed by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/02 09:18:42

Modified files:
	usr.bin/nc     : netcat.c 
	lib/libtls     : Makefile tls.c tls.h tls_client.c tls_init.3 
	                 tls_internal.h 
Added files:
	lib/libtls     : tls_ocsp.c 

Log message:
Add OCSP client side support to libtls.
- Provide access to certificate OCSP URL
- Provide ability to check a raw OCSP reply against an
established TLS ctx
- Check and validate OCSP stapling info in the TLS handshake
if a stapled OCSP response is provided.`

Add example code to show OCSP URL and stapled info
into netcat.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/02 09:19:53

Modified files:
	lib/libtls     : shlib_version 

Log message:
bump minor for ocsp api additions


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/02 09:23:41

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: ERR.3 ERR_GET_LIB.3 ERR_clear_error.3 
	                   ERR_error_string.3 ERR_get_error.3 
	                   ERR_load_crypto_strings.3 ERR_load_strings.3 
	                   ERR_print_errors.3 ERR_put_error.3 
	                   ERR_remove_state.3 ERR_set_mark.3 
Removed files:
	lib/libcrypto/doc: ERR.pod ERR_GET_LIB.pod ERR_clear_error.pod 
	                   ERR_error_string.pod ERR_get_error.pod 
	                   ERR_load_crypto_strings.pod 
	                   ERR_load_strings.pod ERR_print_errors.pod 
	                   ERR_put_error.pod ERR_remove_state.pod 
	                   ERR_set_mark.pod 

Log message:
convert ERR manuals from pod to mdoc; while reading this,
i wtfed, laughed, puked, and cried in more or less that order...


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 09:24:53

Modified files:
	databases      : Makefile 

Log message:
Unhook ruby-jdbc-{h2,mysql,postgres,sqlite3}


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 09:26:58

Removed files:
	databases/ruby-jdbc-h2: Makefile distinfo 
	databases/ruby-jdbc-h2/pkg: DESCR PLIST 
	databases/ruby-jdbc-mysql: Makefile distinfo 
	databases/ruby-jdbc-mysql/pkg: DESCR PLIST 
	databases/ruby-jdbc-postgres: Makefile distinfo 
	databases/ruby-jdbc-postgres/pkg: DESCR PLIST 
	databases/ruby-jdbc-sqlite3: Makefile distinfo 
	databases/ruby-jdbc-sqlite3/pkg: DESCR PLIST 

Log message:
Remove ruby-jdbc-{h2,mysql,postgres,sqlite3}

These are pure ruby/java ports, haven't been updated in 4 years, and are
out of date.  jruby -S gem install if you need them.

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 09:28:10

Modified files:
	x11            : Makefile 

Log message:
Unhook ruby-profligacy


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 09:31:49

Removed files:
	x11/ruby-profligacy: Makefile distinfo 
	x11/ruby-profligacy/pkg: DESCR PLIST 

Log message:
Remove ruby-profligacy

This is a pure ruby/java port.  Untouched basically since being
imported in 2011, and apparently upstream development stopped in 2007.
jruby -S gem install if you need it.

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/02 09:37:26

Modified files:
	productivity/grisbi: Makefile 

Log message:
add libtool to BDEP, autogen.sh uses libtoolize. Noticed by naddy@ again..


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/02 10:50:02

Modified files:
	www/py-flask   : Makefile distinfo 
	www/py-flask/patches: patch-docs_conf_py 
	www/py-flask/pkg: PLIST 
Removed files:
	www/py-flask/patches: patch-flask_testsuite_signals_py 

Log message:
Update to py-flask-0.11.1 and take maintainership

ok landry@ rpointel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 10:55:22

Modified files:
	mail           : Makefile 

Log message:
Unhook ruby-mailfactory


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 10:56:12

Removed files:
	mail/ruby-mailfactory: Makefile distinfo 
	mail/ruby-mailfactory/pkg: DESCR PLIST 

Log message:
Remove ruby-mailfactory

Pure ruby gem, last updated January 2009, last release in August 2008,
in the way of a ruby-mime-types update.

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 10:57:31

Log message:
    Import asciinema-1.3.0.
    
    asciinema is a free and open source solution for recording terminal sessions and
    sharing them on the web.
    
    regress test part from danj@
    ok danj@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161102
    
    N ports/textproc/asciinema/Makefile
    N ports/textproc/asciinema/distinfo
    N ports/textproc/asciinema/pkg/DESCR
    N ports/textproc/asciinema/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 10:58:22

Modified files:
	textproc       : Makefile 

Log message:
+asciinema


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 11:01:31

Modified files:
	www/ruby-wasabi: Makefile 

Log message:
Fix RDEPs and bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 11:04:24

Modified files:
	mail/ruby-mail : Makefile distinfo 
	mail/ruby-mail/pkg: PLIST 

Log message:
Update to mail-2.6.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/02 11:32:42

Modified files:
	lib/libtls     : tls_init.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/02 11:35:10

Modified files:
	lib/libtls     : tls_ocsp.c 

Log message:
Ensure handshake is complete before processing an ocsp response for a ctx
ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 11:39:58

Modified files:
	sysutils/salt  : Makefile 

Log message:
Set TEST_IS_INTERACTIVE.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/02 11:41:15

Modified files:
	lib/libtls     : tls_ocsp.c 

Log message:
fix shadow declaration of time in parameter list.
ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/02 11:41:24

Modified files:
	mail/dovecot   : Makefile 
Added files:
	mail/dovecot/patches: patch-src_lib-dcrypt_dcrypt-openssl_c 
	                      patch-src_lib-ssl-iostream_dovecot-openssl-common_c 

Log message:
Patch Dovecot to handle openssl 1.1 api #ifdefs, e.g.

-+#elif OPENSSL_VERSION_NUMBER < 0x10100000L
++#elif OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)

Looks good to jca.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 11:41:48

Modified files:
	sysutils/salt-testing: Makefile 

Log message:
Needs sysutils/py-psutil.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/02 11:50:12

Modified files:
	proto/x11proto : ChangeLog Xfuncproto.h.in compile configure.ac 

Log message:
Update to x11proto 7.0.31


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/02 11:57:36

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

Log message:
Update to py-simplejson 3.10.0


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 12:04:50

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Be verbose when reverting a patch.

committing now to please espie@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/02 12:05:56

Log message:
    Import libXfont2 version 2.0.1
    
    Status:
    
    Vendor Tag:	XORG
    Release Tags:	V2_0_1
    
    N xenocara/lib/libXfont2/install-sh
    N xenocara/lib/libXfont2/xfont2.pc.in
    N xenocara/lib/libXfont2/aclocal.m4
    N xenocara/lib/libXfont2/Makefile.in
    N xenocara/lib/libXfont2/INSTALL
    N xenocara/lib/libXfont2/Makefile.am
    N xenocara/lib/libXfont2/README
    N xenocara/lib/libXfont2/ltmain.sh
    N xenocara/lib/libXfont2/configure.ac
    N xenocara/lib/libXfont2/devbook.am
    N xenocara/lib/libXfont2/config.guess
    N xenocara/lib/libXfont2/COPYING
    N xenocara/lib/libXfont2/AUTHORS
    N xenocara/lib/libXfont2/config.h.in
    N xenocara/lib/libXfont2/compile
    N xenocara/lib/libXfont2/config.sub
    N xenocara/lib/libXfont2/configure
    N xenocara/lib/libXfont2/missing
    N xenocara/lib/libXfont2/depcomp
    N xenocara/lib/libXfont2/ChangeLog
    N xenocara/lib/libXfont2/doc/Makefile.am
    N xenocara/lib/libXfont2/doc/fontlib.xml
    N xenocara/lib/libXfont2/doc/Makefile.in
    N xenocara/lib/libXfont2/m4/attributes.m4
    N xenocara/lib/libXfont2/include/libxfontint.h
    N xenocara/lib/libXfont2/include/X11/fonts/fontencc.h
    N xenocara/lib/libXfont2/include/X11/fonts/fntfilst.h
    N xenocara/lib/libXfont2/include/X11/fonts/fontutil.h
    N xenocara/lib/libXfont2/include/X11/fonts/fontxlfd.h
    N xenocara/lib/libXfont2/include/X11/fonts/bitmap.h
    N xenocara/lib/libXfont2/include/X11/fonts/fontmisc.h
    N xenocara/lib/libXfont2/include/X11/fonts/fontshow.h
    N xenocara/lib/libXfont2/include/X11/fonts/fntfilio.h
    N xenocara/lib/libXfont2/include/X11/fonts/libxfont2.h
    N xenocara/lib/libXfont2/include/X11/fonts/bdfint.h
    N xenocara/lib/libXfont2/include/X11/fonts/bufio.h
    N xenocara/lib/libXfont2/include/X11/fonts/pcf.h
    N xenocara/lib/libXfont2/include/X11/fonts/fntfil.h
    N xenocara/lib/libXfont2/src/FreeType/xttcap.c
    N xenocara/lib/libXfont2/src/FreeType/fttools.c
    N xenocara/lib/libXfont2/src/FreeType/ftfuncs.h
    N xenocara/lib/libXfont2/src/FreeType/xttcap.h
    N xenocara/lib/libXfont2/src/FreeType/ftenc.c
    N xenocara/lib/libXfont2/src/FreeType/ftfuncs.c
    N xenocara/lib/libXfont2/src/FreeType/ft.h
    N xenocara/lib/libXfont2/src/stubs/libxfontstubs.c
    N xenocara/lib/libXfont2/src/stubs/atom.c
    N xenocara/lib/libXfont2/src/bitmap/fontink.c
    N xenocara/lib/libXfont2/src/bitmap/snfread.c
    N xenocara/lib/libXfont2/src/bitmap/pcfwrite.c
    N xenocara/lib/libXfont2/src/bitmap/bdfutils.c
    N xenocara/lib/libXfont2/src/bitmap/bitmap.c
    N xenocara/lib/libXfont2/src/bitmap/pcfread.c
    N xenocara/lib/libXfont2/src/bitmap/bitmaputil.c
    N xenocara/lib/libXfont2/src/bitmap/bitscale.c
    N xenocara/lib/libXfont2/src/bitmap/bitmapfunc.c
    N xenocara/lib/libXfont2/src/bitmap/snfstr.h
    N xenocara/lib/libXfont2/src/bitmap/bdfread.c
    N xenocara/lib/libXfont2/src/fontfile/fontfile.c
    N xenocara/lib/libXfont2/src/fontfile/bitsource.c
    N xenocara/lib/libXfont2/src/fontfile/filewr.c
    N xenocara/lib/libXfont2/src/fontfile/bunzip2.c
    N xenocara/lib/libXfont2/src/fontfile/register.c
    N xenocara/lib/libXfont2/src/fontfile/catalogue.c
    N xenocara/lib/libXfont2/src/fontfile/renderers.c
    N xenocara/lib/libXfont2/src/fontfile/defaults.c
    N xenocara/lib/libXfont2/src/fontfile/fontencc.c
    N xenocara/lib/libXfont2/src/fontfile/bufio.c
    N xenocara/lib/libXfont2/src/fontfile/fileio.c
    N xenocara/lib/libXfont2/src/fontfile/dirfile.c
    N xenocara/lib/libXfont2/src/fontfile/gunzip.c
    N xenocara/lib/libXfont2/src/fontfile/fontscale.c
    N xenocara/lib/libXfont2/src/fontfile/decompress.c
    N xenocara/lib/libXfont2/src/fontfile/fontdir.c
    N xenocara/lib/libXfont2/src/util/fontxlfd.c
    N xenocara/lib/libXfont2/src/util/patcache.c
    N xenocara/lib/libXfont2/src/util/fontutil.c
    N xenocara/lib/libXfont2/src/util/fontaccel.c
    N xenocara/lib/libXfont2/src/util/miscutil.c
    N xenocara/lib/libXfont2/src/util/format.c
    N xenocara/lib/libXfont2/src/util/utilbitmap.c
    N xenocara/lib/libXfont2/src/util/fontnames.c
    N xenocara/lib/libXfont2/src/util/private.c
    N xenocara/lib/libXfont2/src/builtins/render.c
    N xenocara/lib/libXfont2/src/builtins/file.c
    N xenocara/lib/libXfont2/src/builtins/buildfont
    N xenocara/lib/libXfont2/src/builtins/fonts.c
    N xenocara/lib/libXfont2/src/builtins/builtin.h
    N xenocara/lib/libXfont2/src/builtins/fpe.c
    N xenocara/lib/libXfont2/src/builtins/dir.c
    N xenocara/lib/libXfont2/src/fc/fsio.c
    N xenocara/lib/libXfont2/src/fc/fslibos.h
    N xenocara/lib/libXfont2/src/fc/fserve.c
    N xenocara/lib/libXfont2/src/fc/fservestr.h
    N xenocara/lib/libXfont2/src/fc/fsconvert.c
    N xenocara/lib/libXfont2/src/fc/fstrans.c
    N xenocara/lib/libXfont2/src/fc/fserve.h
    N xenocara/lib/libXfont2/src/fc/fsio.h
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/02 12:19:05

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

Log message:
Update to flake8 3.0.4, from frantisek holop


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/11/02 12:21:14

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 54.0.2840.87


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/02 12:26:14

Modified files:
	lib/libtls     : tls_init.3 

Log message:
bit more cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/02 12:27:33

Log message:
    Import py-entrypoints 0.2.2, ok danj@
    
    Entry points are a way for Python packages to advertise objects with some
    common interface. The most common examples are console_scripts entry points,
    which define shell commands by identifying a Python function to run.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161102
    
    N ports/devel/py-entrypoints/Makefile
    N ports/devel/py-entrypoints/distinfo
    N ports/devel/py-entrypoints/patches/patch-setup_py
    N ports/devel/py-entrypoints/pkg/PLIST
    N ports/devel/py-entrypoints/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/02 12:28:30

Modified files:
	lib/libXfont2  : configure.ac 
Removed files:
	lib/libXfont2/m4: attributes.m4 

Log message:
Patch from upstreams to actually let this build


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/11/02 12:28:30

Modified files:
	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 to 1.9.11 and 1.10.3.
More information: https://www.djangoproject.com/weblog/2016/nov/01/security-releases/
ok danj@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/02 12:29:24

Added files:
	lib/libXfont2  : Makefile.bsd-wrapper 

Log message:
add Makefile.bsd-wrapper


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/02 12:30:52

Modified files:
	devel          : Makefile 

Log message:
+py-entrypoints
+py-entrypoints,python3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/02 12:32:02

Modified files:
	lib/libXfont2  : Makefile.in aclocal.m4 config.guess config.sub 
	                 configure depcomp install-sh ltmain.sh missing 
	lib/libXfont2/doc: Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/11/02 12:50:41

Modified files:
	net/syncthing  : Makefile distinfo 

Log message:
Update to Syncthing 0.14.10

OK edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/02 13:06:05

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

Log message:
Fixup a wait channel used during VMBus channel discovery

Clang static analyser has found that a tsleep was using an uninitialised
pointer value as a wait channel.  An associated wakeup wasn't doing the
right thing either.


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/11/02 13:07:39

Modified files:
	sys/arch/octeon/stand/boot: Makefile 

Log message:
when CONSPEED moved from libsa.h to Makefile it lost a leading '1',
reinstate the original of 115200

spotted by brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 13:25:58

Modified files:
	archivers/p5-Archive-Extract: Makefile distinfo 

Log message:
update to p5-Archive-Extract-0.78


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/02 13:27:54

Modified files:
	geo/py-shapely : Makefile distinfo 

Log message:
Update to py-shapely-1.5.17


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 13:29:32

Log message:
    Import ruby-mime-types-data
    
    This is necessary for newer versions of mime-types, and contains the
    mime types data, split from ruby-mime-types (which contains the
    related code for querying the data).
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	jeremy
    Release Tags:	jeremy_2016-Nov-02
    
    N ports/mail/ruby-mime-types-data/Makefile
    N ports/mail/ruby-mime-types-data/distinfo
    N ports/mail/ruby-mime-types-data/pkg/DESCR
    N ports/mail/ruby-mime-types-data/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 13:30:58

Modified files:
	mail           : Makefile 

Log message:
Hook up ruby-mime-types-data


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 13:31:33

Modified files:
	mail/ruby-mime-types: Makefile distinfo 
	mail/ruby-mime-types/pkg: PLIST 

Log message:
Update to mime-types 3.1


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/02 13:56:25

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

Log message:
Inline the macro that is used only once


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/02 13:57:44

Modified files:
	sys/dev/pv     : hypervreg.h 

Log message:
Add Windows 10 VMBus protocol version


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/02 14:52:17

Modified files:
	net/py-ipaddress: Makefile distinfo 

Log message:
Update to py-ipaddress-1.0.17


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/02 15:05:38

Modified files:
	devel/cbmc     : Makefile 

Log message:
fix WANTLIB, it was totally missing


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/02 15:08:29

Modified files:
	sysutils/bacula: Makefile 

Log message:
fix WANTLIB-sqlite3, missing pthread


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/02 15:09:44

Modified files:
	security/py-gnupg: Makefile distinfo 
	security/py-gnupg/pkg: PLIST 

Log message:
Update to py-gnupg-0.3.9 and add a py3 flavor


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/02 15:10:56

Modified files:
	security       : Makefile 

Log message:
+ py-gnupg,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/11/02 15:17:11

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/02 15:31:37

Modified files:
	infrastructure/man/man1: portbump.1 

Log message:
fix typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/02 15:34:08

Modified files:
	www/sogo       : Makefile 

Log message:
Fix crasher rendering the calendar web interface, as pointed out
by giovanni@ seems NSNull doesn't like to receive messages it doesn't understand


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/02 15:57:58

Modified files:
	www/py-urllib3 : Makefile 

Log message:
Update to 1.18.1, fixing CVE-2016-9015, not sure if it also affects
us with libressl, but better on the safe side.

6.0 is not affected, since there urllib3 version < 1.17


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:18:39

Modified files:
	multimedia/gstreamer1: Makefile.inc 

Log message:
Bump to 1.10.0.


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

Modified files:
	multimedia/gstreamer1/core: Makefile distinfo 
	multimedia/gstreamer1/core/pkg: PLIST 

Log message:
Update to gstreamer1-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:19:21

Modified files:
	multimedia/gstreamer1/plugins-base: Makefile distinfo 
	multimedia/gstreamer1/plugins-base/patches: patch-configure_ac 
	multimedia/gstreamer1/plugins-base/pkg: PLIST 

Log message:
Update to gstreamer1-plugins-base-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:19:52

Modified files:
	multimedia/gstreamer1/plugins-good: Makefile distinfo 
	multimedia/gstreamer1/plugins-good/patches: 
	                                            patch-sys_oss_Makefile_in 
	multimedia/gstreamer1/plugins-good/pkg: PLIST-main 

Log message:
Update to gstreamer1-plugins-good-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:20:15

Modified files:
	multimedia/gstreamer1/plugins-ugly: Makefile distinfo 

Log message:
Update to gstreamer1-plugins-ugly-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:20:35

Modified files:
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad/patches: patch-configure_ac 
	multimedia/gstreamer1/plugins-bad/pkg: PLIST 

Log message:
Update to gstreamer1-plugins-bad-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:20:55

Modified files:
	multimedia/gstreamer1/py-gstreamer: Makefile distinfo 

Log message:
Update to py3-gstreamer1-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:21:35

Modified files:
	multimedia/gstreamer1/plugins-libav: Makefile distinfo 
	multimedia/gstreamer1/plugins-libav/patches: 
	                                             patch-ext_libav_Makefile_in 
	                                             patch-gst-libs_ext_libav_configure 

Log message:
Update to gstreamer1-plugins-libav-1.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:22:05

Modified files:
	multimedia/gstreamer1/mm: Makefile 

Log message:
Bump after using the clang MODULE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 16:28:53

Modified files:
	archivers/p5-Archive-Zip: Makefile distinfo 
	archivers/p5-Archive-Zip/patches: 
	                                  patch-lib_Archive_Zip_Member_pm 
	archivers/p5-Archive-Zip/pkg: PLIST 

Log message:
update to p5-Archive-Zip-1.59


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/02 16:37:42

Modified files:
	x11/gnome/builder/patches: 
	                           patch-plugins_terminal_gb-terminal-view_c 

Log message:
Committed the wrong patch in previous.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 16:38:10

Modified files:
	devel/py-curtsies: Makefile distinfo 

Log message:
update to py-curtsies-0.2.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 16:38:40

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

Log message:
update to bpython-0.15 and lift restriction on py-curtsies<2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/02 16:43:13

Modified files:
	sysutils/supervisor: Makefile distinfo 
	sysutils/supervisor/pkg: PLIST 

Log message:
Update to supervisor-3.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 16:44:20

Modified files:
	editors/moe    : Makefile distinfo 

Log message:
update to moe-1.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 16:48:30

Modified files:
	geo/libchamplain: Makefile 

Log message:
sync WANTLIB


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/02 17:20:26

Modified files:
	faq/ports      : testing.html 

Log message:
faq5.html#Flavors explains -current better than the empty plus.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/02 17:25:46

Modified files:
	devel/pcre2    : Makefile 

Log message:
disable the jit bits; it's optional, disabled by default and required us to
mark pcre2 with USE_WXNEEDED

prompted by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 17:39:39

Log message:
    Import sass, a CSS extension language
    
    Status:
    
    Vendor Tag:	jeremy
    Release Tags:	jeremy_2016-Nov-03
    
    N ports/www/sass/distinfo
    N ports/www/sass/Makefile
    N ports/www/sass/pkg/DESCR
    N ports/www/sass/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/02 18:01:49

Modified files:
	faq/ports      : testing.html index.html 

Log message:
merge the "how" and "first step" sections into the introduction and
tweak some wording while there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/02 18:22:12

Modified files:
	www            : Makefile 

Log message:
Hookup sass


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/03 01:39:03

Modified files:
	devel/luacheck : Makefile distinfo 

Log message:
update to luacheck 0.16.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/03 01:45:29

Modified files:
	net/munin      : Makefile distinfo 
	net/munin/patches: patch-node__bin_munin-asyncd_in 

Log message:
bugfix update to munin-2.0.26


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/03 02:15:22

Modified files:
	lib/libssl     : ssl_locl.h t1_enc.c 

Log message:
Clean up the TLS handshake digest handling - this refactors some of the
code for improved readability, however it also address two issues.

The first of these is a hard-to-hit double free that will occur if
EVP_DigestInit_ex() fails. To avoid this and to be more robust, ensure
that tls1_digest_cached_records() either completes successfully and sets
up all of the necessary digests, or it cleans up and frees everything
that was allocated.

The second issue is that EVP_DigestUpdate() can fail - detect and handle
this in tls1_finish_mac() and change the return type to an int so that a
failure can be propagated to the caller (the callers still need to be
fixed to handle this, in a later diff).

The double-free was reported by Matthew Dillon.

ok beck@ doug@ miod@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 02:37:35

Modified files:
	x11/xfce4/xfce4-whiskermenu/patches: 
	                                     patch-panel-plugin_settings_cpp 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/03 02:51:56

Modified files:
	lib/libtls     : tls_ocsp.c 

Log message:
Fix handshake failures:
split out internals of OCSP verification to allow callback
to verify before TLS handshake is complete


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/03 03:04:06

Modified files:
	sys/net        : netisr.h 

Log message:
The networking code no longer runs off software interrupts.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 03:13:41

Modified files:
	meta/xfce      : Makefile 

Log message:
Remove modemlights and quicklauncher from xfce-extras, they're dead
upstream since years, and depend on the deprecated libxfcegui4.

While here remove the alternative to use notification-daemon-xfce
instead of xfce4-notifyd, the latter is maintained,
notification-daemon-xfce is dead since years.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/03 03:17:47

Modified files:
	sys/net        : switchofp.c 

Log message:
Always call if_put() during the interface iteration on port status multipart
reply to avoid reference leaks.

ok mikeb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 03:28:22

Modified files:
	lib/libXi      : ChangeLog configure configure.ac 
	lib/libXi/man  : XListInputDevices.man XListInputDevices.txt 
	lib/libXi/src  : XISelEv.c XListDev.c 

Log message:
Update to libXi 1.7.8


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/03 03:35:34

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: EVP_BytesToKey.3 EVP_DigestInit.3 
	                   EVP_DigestSignInit.3 EVP_DigestVerifyInit.3 
	                   EVP_EncryptInit.3 EVP_OpenInit.3 
	                   EVP_PKEY_CTX_ctrl.3 EVP_PKEY_CTX_new.3 
	                   EVP_PKEY_cmp.3 EVP_PKEY_decrypt.3 
	                   EVP_PKEY_derive.3 EVP_PKEY_encrypt.3 
	                   EVP_PKEY_get_default_digest.3 
	                   EVP_PKEY_keygen.3 EVP_PKEY_new.3 
	                   EVP_PKEY_print_private.3 EVP_PKEY_set1_RSA.3 
	                   EVP_PKEY_sign.3 EVP_PKEY_verify.3 
	                   EVP_PKEY_verify_recover.3 EVP_SealInit.3 
	                   EVP_SignInit.3 EVP_VerifyInit.3 evp.3 
Removed files:
	lib/libcrypto/doc: EVP_BytesToKey.pod EVP_DigestInit.pod 
	                   EVP_DigestSignInit.pod 
	                   EVP_DigestVerifyInit.pod EVP_EncryptInit.pod 
	                   EVP_OpenInit.pod EVP_PKEY_CTX_ctrl.pod 
	                   EVP_PKEY_CTX_new.pod EVP_PKEY_cmp.pod 
	                   EVP_PKEY_decrypt.pod EVP_PKEY_derive.pod 
	                   EVP_PKEY_encrypt.pod 
	                   EVP_PKEY_get_default_digest.pod 
	                   EVP_PKEY_keygen.pod EVP_PKEY_new.pod 
	                   EVP_PKEY_print_private.pod 
	                   EVP_PKEY_set1_RSA.pod EVP_PKEY_sign.pod 
	                   EVP_PKEY_verify.pod 
	                   EVP_PKEY_verify_recover.pod EVP_SealInit.pod 
	                   EVP_SignInit.pod EVP_VerifyInit.pod evp.pod 

Log message:
convert EVP manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 03:37:19

Modified files:
	games/typespeed: Makefile 

Log message:
Don't obfuscate maintainer email addresses and don't put non-ascii
characters in the Makefile

ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 03:38:20

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-133.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 03:42:45

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.69.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 03:42:57

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 03:44:24

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.294.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 03:46:44

Modified files:
	x11/dunst      : Makefile 
	games/mnemosyne: Makefile 

Log message:
Don't put non-ascii characters in the Makefile


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/03 04:02:57

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: HMAC.3 MD5.3 
Removed files:
	lib/libcrypto/doc: HMAC.pod MD5.pod 

Log message:
convert HMAC and MD5 manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/03 04:05:32

Modified files:
	lib/libtls     : tls.c tls_internal.h 

Log message:
Only set an error from libssl related code, if an error has not already
been set by libtls code. This avoids the situation where a libtls callback
has set an error, only to have it replaced by a less useful libssl based
error.

ok beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	florian@cvs.openbsd.org	2016/11/03 04:10:38

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

Log message:
update to 1.3; tweaks & OK danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 04:12:34

Modified files:
	www/py-webpy   : Makefile distinfo 

Log message:
Update to py-webpy-0.38


CVSROOT:	/cvs
Module name:	ports
Changes by:	florian@cvs.openbsd.org	2016/11/03 04:12:50

Modified files:
	net/py-websocket-client: Makefile distinfo 

Log message:
update to 0.37;  OK danj@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 04:19:11

Removed files:
	lib/libX11/src : x11_trans.c udcInf.c 

Log message:
Remove stale files


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 04:20:14

xenocara/lib/libX11/nls/pt_PT.UTF-8

Update of /cvs/xenocara/lib/libX11/nls/pt_PT.UTF-8
In directory cvs.openbsd.org:/tmp/cvs-serv98150/nls/pt_PT.UTF-8

Log Message:
Directory /cvs/xenocara/lib/libX11/nls/pt_PT.UTF-8 added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	florian@cvs.openbsd.org	2016/11/03 04:21:04

Modified files:
	net/py-socketio-client: Makefile distinfo 

Log message:
update to 0.6.7; tweaks & OK danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:21:26

Modified files:
	x11/xfce4      : Makefile 

Log message:
Winter cleanup, unhook the following:

- libxfcegui4
- notification-daemon-xfce
- xfprint
- xfce4-modemlights
- xfce4-wmdock
- xfce4-quicklauncher


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 04:21:32

Modified files:
	lib/libX11     : ChangeLog compile configure configure.ac 
	lib/libX11/include/X11: Xlib.h Xlibint.h 
	lib/libX11/man : XFree.man 
	lib/libX11/modules/im/ximcp: imExten.c imLcIm.c imLcPrs.c 
	lib/libX11/modules/om/generic: omGeneric.c omImText.c 
	lib/libX11/nls : compose.dir.pre locale.alias.pre locale.dir.pre 
	lib/libX11/nls/en_US.UTF-8: Compose.pre 
	lib/libX11/specs/libX11: CH04.xml 
	lib/libX11/src : ClDisplay.c Font.c FontNames.c GetAtomNm.c 
	                 GetFPath.c GetWAttrs.c IntAtom.c ListExt.c 
	                 Makefile.am Makefile.in OpenDis.c PutImage.c 
	                 XlibAsync.c XlibInt.c Xxcbint.h config.h.in 
	                 xcb_io.c 
	lib/libX11/src/xcms: HVC.c IdOfPr.c LRGB.c Lab.c Luv.c XYZ.c 
	                     cmsColNm.c cmsTrig.c uvY.c xyY.c 
	lib/libX11/src/xkb: XKBGetByName.c XKBNames.c 
	lib/libX11/src/xlibi18n: ICWrap.c XDefaultIMIF.c XDefaultOMIF.c 
	                         XlcDL.c lcPrTxt.c lcPubWrap.c 
Added files:
	lib/libX11/nls/pt_PT.UTF-8: Compose.pre XI18N_OBJS 
	                            XLC_LOCALE.pre 

Log message:
Update to libX11 1.6.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:22:50

Removed files:
	x11/xfce4/xfprint: Makefile distinfo 
	x11/xfce4/xfprint/patches: patch-printing-systems_cups_cups_c 
	                           patch-xfprint-manager_main_c 
	x11/xfce4/xfprint/pkg: DESCR PLIST 

Log message:
Remove xfprint, dead upstream since 8 years, nowadays it seems cool
kids use cups. If you really need a GTK UI for printing, try print/gtklp.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 04:23:01

Modified files:
	usr.bin/libtool/LT/Mode: Link.pm 

Log message:
Also ignore --no-undefined (we already ignore -no-undefined) which is
starting to show up more and more.

ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/03 04:24:26

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: OBJ_nid2obj.3 d2i_ASN1_OBJECT.3 
Removed files:
	lib/libcrypto/doc: OBJ_nid2obj.pod d2i_ASN1_OBJECT.pod 

Log message:
convert remaining ASN1 object manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:24:27

Removed files:
	x11/xfce4/xfce4-wmdock: Makefile distinfo 
	x11/xfce4/xfce4-wmdock/pkg: DESCR PLIST 

Log message:
Remove xfce4-wmdock, dormant upstream since 3 years, and still uses
deprecated libxfcegui4.

If you want to embed windowmaker dockapps into your Xfce desktop, i
guess you're better directly using windowmaker...


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:26:50

Removed files:
	x11/xfce4/xfce4-modemlights: Makefile distinfo 
	x11/xfce4/xfce4-modemlights/patches: 
	                                     patch-panel-plugin_panel-plugin_c 
	x11/xfce4/xfce4-modemlights/pkg: DESCR PLIST 

Log message:
Remove xfce4-modemlights, dead upstream since 9 years. Still uses
libxfcegui4, and i guess not that many people are still using ppp modems
those days... you're better using xfce4-genmon with <txtclick> feature
now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/03 04:27:16

Modified files:
	audio/openal   : Makefile distinfo 
	audio/openal/patches: patch-Alc_alcConfig_c patch-CMakeLists_txt 
	                      patch-utils_makehrtf_c 
	audio/openal/pkg: PLIST 

Log message:
- update to openal-1.16.0
- remove BROKEN-arm marker

from David Carlier (MAINTAINER)
tested in a bulk and ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/03 04:27:38

Added files:
	audio/openal/patches: patch-OpenAL32_alBuffer_c 

Log message:
add missing patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:28:48

Removed files:
	x11/xfce4/xfce4-quicklauncher: Makefile distinfo 
	x11/xfce4/xfce4-quicklauncher/patches: 
	                                       patch-panel-plugin_callbacks_c 
	                                       patch-panel-plugin_quicklauncher_desktop_in_in 
	x11/xfce4/xfce4-quicklauncher/pkg: DESCR PLIST 

Log message:
Remove xfce4-quicklauncher, dead upstream since 10 years, and still uses
libxfcegui4. I tried porting it to libxfce4ui/gtk3, and failed/gave up.
Most of the functionality is achievable with a regular panel and
launchers now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:29:24

Removed files:
	x11/xfce4/libxfcegui4: Makefile distinfo 
	x11/xfce4/libxfcegui4/patches: patch-libxfcegui4_xfce-exec_c 
	x11/xfce4/libxfcegui4/pkg: DESCR PLIST 

Log message:
Remove libxfcegui4, deprecated upstream since 5 years, and nothing uses
it anymore.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 04:30:05

Modified files:
	lib/libXfixes  : ChangeLog compile configure configure.ac 

Log message:
Update to libXfixes 5.0.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:31:02

Removed files:
	x11/xfce4/notification-daemon-xfce: Makefile distinfo 
	x11/xfce4/notification-daemon-xfce/patches: 
	                                            patch-src_settings_main_c 
	x11/xfce4/notification-daemon-xfce/pkg: DESCR PLIST 

Log message:
Remove notification-daemon-xfce, dead upstream since 10 years. Use
xfce4-notifyd instead, which *is* developed, and much more modern.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:31:41

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add quirks entries for libxfcegui4, notification-daemon-xfce, xfprint,
xfce4-wmdock, xfce4-quicklauncher and xfce4-modemlights.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 04:33:32

Modified files:
	sysutils/accountsservice: Makefile 

Log message:
Add a reference as to why we cannot update to 0.6.43 yet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 04:37:34

Modified files:
	x11/gnome/builder: Makefile 
	x11/gnome/builder/patches: 
	                           patch-plugins_terminal_gb-terminal-view_c 
Removed files:
	x11/gnome/builder/patches: patch-contrib_gstyle_Makefile_in 

Log message:
Add BZ link.
Drop no-uneeded patch (requires a new libtool(1)).


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:37:48

Modified files:
	x11/xfce4      : xfce4.port.mk 
	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-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-screenshooter: Makefile 
	x11/xfce4/xfce4-session: Makefile 
	x11/xfce4/xfce4-settings: Makefile 
	x11/xfce4/xfce4-smartbookmark: 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 

Log message:
Drop gettext MODULE.

Fix some WANTLIB while here, and bump REVISION accordingly when needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:45:07

Modified files:
	net            : Makefile 
Removed files:
	net/twitux     : Makefile distinfo 
	net/twitux/patches: patch-src_twitux-app_c 
	                    patch-src_twitux-parser_c 
	net/twitux/pkg : DESCR PLIST 

Log message:
Remove twitux, it's been dead upstream since its import in 2009, and
there are plenty of other ways to brag about your boring life on the
interwebs.
discussed with jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:47:29

Modified files:
	x11            : Makefile 
Removed files:
	x11/libsexy    : Makefile distinfo 
	x11/libsexy/pkg: DESCR PLIST 

Log message:
This is a sad day, OpenBSD isn't sexy anymore.

(Nothing uses libsexy, and it's dead upstream since 2007)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 04:48:03

Modified files:
	lib/libXrandr  : ChangeLog Makefile.in config.h.in configure 
	                 configure.ac 
	lib/libXrandr/src: XrrMonitor.c XrrScreen.c 
Added files:
	lib/libXrandr  : compile 

Log message:
Update to libXrandr 1.5.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 04:55:16

Modified files:
	lib/libXrender : ChangeLog compile configure configure.ac 
	lib/libXrender/doc: libXrender.txt 

Log message:
Update to libXrender 0.9.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/03 04:57:23

Log message:
    Import emulators/atari800.
    
    Atari 8-bit computer systems and 5200 game console emulator.
    
    Emulated machines: Atari 400, 800, 1200XL, 600XL, 800XL, 65XE, 130XE,
    800XE, XE Game System, 5200 SuperSystem.
    
    OK bentley@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161103
    
    N ports/emulators/atari800/Makefile
    N ports/emulators/atari800/distinfo
    N ports/emulators/atari800/pkg/DESCR
    N ports/emulators/atari800/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 04:59:05

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
add quirks entries for libsexy and twitux


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/03 04:59:51

Modified files:
	emulators      : Makefile 

Log message:
Add atari800.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 05:00:48

Modified files:
	lib/libXv      : ChangeLog configure configure.ac 
	lib/libXv/src  : Makefile.am Makefile.in 

Log message:
Update to libXv 1.0.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 05:05:06

ports/www/py-wtools/patches

Update of /cvs/ports/www/py-wtools/patches
In directory cvs.openbsd.org:/tmp/cvs-serv27853/patches

Log Message:
Directory /cvs/ports/www/py-wtools/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 05:07:54

Modified files:
	www/py-wtools  : Makefile distinfo 
	www/py-wtools/pkg: PLIST 
Added files:
	www/py-wtools/patches: patch-setup_py 

Log message:
Update to py-wstools-0.4.4 and add a py3 flavor


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 05:10:01

Modified files:
	www            : Makefile 

Log message:
+ py-wtools,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/03 05:40:11

Modified files:
	net/ircII/patches: patch-Makefile_in 

Log message:
fix parallel fake


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 05:45:12

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

Log message:
Update to py-jonpy-0.13


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/03 06:20:14

Modified files:
	www/py-urllib3 : distinfo 

Log message:
Doh! Also update distinfo as pointed out by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/03 06:21:50

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: OPENSSL_VERSION_NUMBER.3 OPENSSL_config.3 
	                   OPENSSL_load_builtin_modules.3 
	                   OpenSSL_add_all_algorithms.3 
Removed files:
	lib/libcrypto/doc: OPENSSL_VERSION_NUMBER.pod OPENSSL_config.pod 
	                   OPENSSL_load_builtin_modules.pod 
	                   OpenSSL_add_all_algorithms.pod 

Log message:
convert configuration manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 06:22:55

Modified files:
	lib/libXvMC    : ChangeLog compile configure configure.ac 

Log message:
Update to libXvMC 1.0.10


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/03 06:26:59

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

Log message:
Let Integrated Components allocate the receive buffer themselves
since they have a better clue how to size it.

While here, cleanup the kernel output a bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 06:27:35

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Simplify for loops; prompted by a comment from rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 06:40:08

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Use hw.ncpufound.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/03 06:54:16

Modified files:
	lib/libtls     : tls_init.3 tls_ocsp.c 

Log message:
Don't do OCSP validation when we have disabled certificate verification
or certificate validation.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/03 06:56:02

Modified files:
	sys/dev/pv     : hypervic.c hypervicreg.h 

Log message:
Implement a Key-Value Pair exchange interface

The implemented abstraction allows us to query and set little
endian UTF-16 keys exchanged between the Host and the Guest via
a text based pvbus(4) interface.

All keys are attached to one of several key pools: Auto, Guest,
External or Guest/Parameters.  The hostctl(8) is able to modify
values for keys in the Auto pool as well as set new keys in the
Guest pool while the Host provides its keys in External and
Guest/Parameters pools.

Discussed with reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/03 07:07:06

Modified files:
	audio/aqualung : Makefile 
	audio/aqualung/patches: patch-src_decoder_dec_mac_cpp 

Log message:
Simplify and fix patch to mac decoder by just denamespacing
GetUTF16FromANSI, fixes SIGSEGV at runtime.

OK naddy@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 07:11:40

Modified files:
	lib/xcb-util-cursor: ChangeLog Makefile.bsd-wrapper NEWS 
	                     configure configure.ac 
	lib/xcb-util-cursor/cursor: load_cursor.c 

Log message:
Update to xcb-util-cursor to 0.1.3.

This will give applications using this library the same X cursor search path
as the ones that use the legacy libXcursor.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/03 07:20:35

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Split ssl3_get_key_exchange() into separate functions for DHE/ECDHE.

ok beck@ (who was struggling to keep lunch down while reviewing the diff)


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/03 07:26:51

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

Log message:
Document the KVP interface


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/03 07:36:07

Modified files:
	devel/flake8   : Makefile 

Log message:
Add missing BDEP, spotted by sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/03 07:37:19

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

Log message:
Identify as an OSPlatformID 131 with a kernel version of 6


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/03 08:00:57

src/lib/libcrypto/ec/asm

Update of /cvs/src/lib/libcrypto/ec/asm
In directory cvs.openbsd.org:/tmp/cvs-serv40013/asm

Log Message:
Directory /cvs/src/lib/libcrypto/ec/asm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 08:13:15

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Merge ls_avail() into ls_missing(), it's only used once.
While here, cope with a missing index.txt or other ftp(1) error.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 08:22:39

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
Update to webkitgtk4-2.14.2.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/03 08:25:07

Modified files:
	app/xterm      : Imakefile MANIFEST Makefile Tekparse.h 
	                 VTparse.h charproc.c ctlseqs.ms ctlseqs.txt 
	                 main.c misc.c ptyx.h resize.man termcap trace.c 
	                 trace.h util.c version.h xterm.appdata.xml 
	                 xterm.log.html xterm.man 
	app/xterm/package: xterm.spec 
	app/xterm/package/debian: changelog 
	app/xterm/package/freebsd: Makefile 
Added files:
	app/xterm      : NEWS 

Log message:
Update to xterm 327


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 08:36:54

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Make sure PATCH_PATH is an URL that ftp(1) can cope with.


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2016/11/03 08:46:48

Modified files:
	distrib/syspatch: bsd.syspatch.mk 

Log message:
switch to using BUILDUSER and add more error checking


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/11/03 08:50:06

Modified files:
	games/extremetuxracer: Makefile distinfo 

Log message:
Update to etracer 0.7.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/03 09:01:36

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

Log message:
Add locks to key-value pair pools

We need to ensure list and data consistency during concurrent
accesses since the interrupt handler is not executed under the
kernel lock and may add or modify entries while userland process
is reading the value or traversing the list.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/03 09:01:53

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix debug message to print the presence of more flag correctly.

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/03 09:20:14

Modified files:
	archivers/unrar: Makefile distinfo 
	archivers/unrar/patches: patch-makefile 

Log message:
update to 5.40


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/03 09:20:36

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: PEM_read_bio_PrivateKey.3 
	                   PEM_write_bio_PKCS7_stream.3 PKCS12_create.3 
	                   PKCS12_parse.3 PKCS5_PBKDF2_HMAC.3 
	                   PKCS7_decrypt.3 PKCS7_encrypt.3 PKCS7_sign.3 
	                   PKCS7_sign_add_signer.3 PKCS7_verify.3 
	                   SMIME_read_PKCS7.3 SMIME_write_PKCS7.3 
	                   i2d_PKCS7_bio_stream.3 
Removed files:
	lib/libcrypto/doc: PEM_read_bio_PrivateKey.pod 
	                   PEM_write_bio_PKCS7_stream.pod 
	                   PKCS12_create.pod PKCS12_parse.pod 
	                   PKCS5_PBKDF2_HMAC.pod PKCS7_decrypt.pod 
	                   PKCS7_encrypt.pod PKCS7_sign.pod 
	                   PKCS7_sign_add_signer.pod PKCS7_verify.pod 
	                   SMIME_read_PKCS7.pod SMIME_write_PKCS7.pod 
	                   i2d_PKCS7_bio_stream.pod 

Log message:
convert PEM and PKCS manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/03 09:31:30

Modified files:
	lib/libcrypto/man: Makefile 
Removed files:
	lib/libcrypto/doc: RAND.pod 

Log message:
zap the overview manual page of the RAND subsystem
that contained nothing but duplicate and misleading information;
OK jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 09:34:31

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Hardlinks are properly handled; for the rest, we'll see if we need to care
or not (XXX).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/03 09:48:22

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: RAND_add.3 RAND_bytes.3 RAND_cleanup.3 
	                   RAND_load_file.3 RAND_set_rand_method.3 
Removed files:
	lib/libcrypto/doc: RAND_add.pod RAND_bytes.pod RAND_cleanup.pod 
	                   RAND_load_file.pod RAND_set_rand_method.pod 

Log message:
convert RAND manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 09:48:44

Modified files:
	x11/xfce4/libxfce4util: Makefile 

Log message:
Bump to unbreak (gettext WANTLIB change).


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/03 09:52:10

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
Make OCSP Stapling: only appear if there is stapling info present.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 09:54:10

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
XXX match with installed sets (comp, x...)?


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/03 09:54:39

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
make OCSP_URL only show up when an OCSP url is actually present in the cert


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/11/03 10:08:15

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/03 10:09:22

Modified files:
	archivers/unrar: Makefile 

Log message:
oops, restore EPOCH


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 10:12:23

Modified files:
	usr.sbin/syspatch: syspatch.8 syspatch.sh 

Log message:
rollback -> revert where it makes sense.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/03 10:20:22

Modified files:
	net/ruby-msgpack: Makefile distinfo 
	net/ruby-msgpack/pkg: PLIST 

Log message:
Update to msgpack-1.0.2

OK sebastia@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/03 10:20:41

Modified files:
	x11/xfce4/exo  : Makefile 
	x11/xfce4/garcon: Makefile 
	x11/xfce4/gtk-xfce-engine: Makefile 
	x11/xfce4/libxfce4ui: Makefile 
	x11/xfce4/mousepad: Makefile 
	x11/xfce4/orage: Makefile 
	x11/xfce4/parole: Makefile 
	x11/xfce4/thunar: Makefile 
	x11/xfce4/thunar-media-tags: Makefile 
	x11/xfce4/tumbler: Makefile 
	x11/xfce4/xfce4-appfinder: Makefile 
	x11/xfce4/xfce4-battery: Makefile 
	x11/xfce4/xfce4-clipman: 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-mailwatch: Makefile 
	x11/xfce4/xfce4-mixer: Makefile 
	x11/xfce4/xfce4-mount: Makefile 
	x11/xfce4/xfce4-mpc: 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-screenshooter: Makefile 
	x11/xfce4/xfce4-session: Makefile 
	x11/xfce4/xfce4-settings: Makefile 
	x11/xfce4/xfce4-smartbookmark: Makefile 
	x11/xfce4/xfce4-systemload: Makefile 
	x11/xfce4/xfce4-taskmanager: Makefile 
	x11/xfce4/xfce4-verve: Makefile 
	x11/xfce4/xfce4-wavelan: Makefile 
	x11/xfce4/xfce4-weather: Makefile 
	x11/xfce4/xfce4-xkb: Makefile 
	x11/xfce4/xfconf: Makefile 
	x11/xfce4/xfdesktop: Makefile 
	x11/xfce4/xfmpc: Makefile 
	x11/xfce4/xfwm4: Makefile 

Log message:
Bump REVISION, because i'm stupid.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/03 10:23:30

Modified files:
	lib/libssl     : s3_pkt.c 

Log message:
In ssl3_read_bytes(), do not process more than three consecutive TLS
records, otherwise a peer can potentially cause us to loop indefinately.
Return with an SSL_ERROR_WANT_READ instead, so that the caller can choose
when they want to handle further processing for this connection.

ok beck@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/03 10:27:16

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_5_9 s3_pkt.c 

Log message:
MFC: In ssl3_read_bytes(), do not process more than three consecutive TLS
records, otherwise a peer can potentially cause us to loop indefinately.
Return with an SSL_ERROR_WANT_READ instead, so that the caller can choose
when they want to handle further processing for this connection.

ok beck@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/03 10:28:36

Modified files:
	lib/libssl/src/ssl: Tag: OPENBSD_6_0 s3_pkt.c 

Log message:
MFC: In ssl3_read_bytes(), do not process more than three consecutive TLS
records, otherwise a peer can potentially cause us to loop indefinately.
Return with an SSL_ERROR_WANT_READ instead, so that the caller can choose
when they want to handle further processing for this connection.

ok beck@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 10:39:29

Modified files:
	usr.sbin       : Makefile 

Log message:
Hook up syspatch(8).

expectations elevation encouragement from deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 10:42:47

Modified files:
	share/man/man7 : hier.7 

Log message:
Re-add the Xr macro to syspatch now that it's hooked up.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/03 11:09:59

Modified files:
	www/py-wtools  : Makefile 

Log message:
Add py-six as a BDEP

Reported by and fix tested by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2016/11/03 11:13:40

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
Add a proper annotation for portroach documentation link

OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 11:14:31

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Missing local.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/11/03 11:30:33

Log message:
    import of sdlpop -- an open source port of prince of persia
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20161103
    
    N ports/games/sdlpop/Makefile
    N ports/games/sdlpop/distinfo
    N ports/games/sdlpop/patches/patch-src_Makefile
    N ports/games/sdlpop/patches/patch-src_seg009_c
    N ports/games/sdlpop/pkg/DESCR
    N ports/games/sdlpop/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/11/03 11:30:52

Modified files:
	games          : Makefile 

Log message:
+sdlpop


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/03 12:34:37

Modified files:
	sys/dev/pv     : hypervic.c hypervicreg.h 

Log message:
Support for key removal and value update operations

This change makes it possible for the Host to update the value
of an existing key via a Set operation as well as to remove the
key completely with a Delete message.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/03 12:42:35

Modified files:
	sys/netinet    : udp_usrreq.c 

Log message:
Remove obsolete vxlan_lookup return value handling

With input from reyk@, OK mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/11/03 12:51:49

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
small tweak to also check canaries if F is in effect


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/11/03 12:52:40

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
small tweak to also check canaries if F is in effect


CVSROOT:	/cvs
Module name:	src
Changes by:	joris@cvs.openbsd.org	2016/11/03 14:13:41

Modified files:
	usr.bin/cvs    : status.c 

Log message:
Don't use ce_time if we are running as a server, it won't be present.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/03 15:10:57

Modified files:
	security/clamav: Makefile 
Removed files:
	security/clamav/patches: patch-m4_reorganization_libs_pcre_m4 

Log message:
move clamav to using pcre2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/03 15:50:51

Modified files:
	databases/mariadb: Tag: OPENBSD_6_0 Makefile distinfo 
	databases/mariadb/patches: Tag: OPENBSD_6_0 
	                           patch-scripts_mysqld_safe_sh 
	                           patch-storage_connect_reldef_cpp 
	databases/mariadb/pkg: Tag: OPENBSD_6_0 PLIST-main PLIST-tests 
Removed files:
	databases/mariadb/patches: Tag: OPENBSD_6_0 
	                           patch-sql_signal_handler_cc 

Log message:
MFC update to MariaDB 10.0.28

CVE-2016-5616, CVE-2016-5624, CVE-2016-5626, CVE-2016-3492, CVE-2016-5629,
CVE-2016-8283, CVE-2016-7440, CVE-2016-5584 and CVE-2016-6663.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/03 15:52:59

Modified files:
	www/sogo       : Makefile 
Added files:
	www/sogo/patches: patch-UI_Scheduler_UIxCalListingActions_m 

Log message:
Really add the patch to fix the empty calendar, and bump again.

yesterday really wasn't my day, as pointed out by giovanni@ ;)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/03 15:54:04

Modified files:
	databases/puppetdb4: Makefile distinfo 
	databases/puppetdb4/pkg: PLIST-main 

Log message:
Minor bugfix update to 4.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/03 18:40:07

Modified files:
	games/sdlpop   : Makefile 
	games/sdlpop/patches: patch-src_Makefile 

Log message:
PREFIX -> LOCALBASE in this particular case.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/11/03 19:29:17

Modified files:
	plan9/plan9port: Makefile distinfo 
Removed files:
	plan9/plan9port/patches: patch-src_libregexp_regcomp_c 

Log message:
update to latest github commit, includes several fixes to libregexp,
get rid of patches/ merged upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/03 23:13:13

Modified files:
	usr.bin/nc     : nc.1 netcat.c 
	lib/libtls     : tls.h tls_config.c tls_init.3 tls_internal.h 
	                 tls_ocsp.c 

Log message:
Add ocsp_require_stapling config option for tls - allows a connection
to indicate that it requires the peer to provide a stapled OCSP response
with the handshake.  Provide a "-T muststaple" for nc that uses it.
ok jsing@, guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/03 23:14:15

Modified files:
	lib/libtls     : shlib_version 

Log message:
bump minor for ocsp_require_stapling addition


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/04 01:12:33

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

Log message:
Update to py-xdis 3.2.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/04 01:13:36

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

Log message:
Update to py-uncompyle6 2.9.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/04 01:34:17

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

Log message:
new sentence, new line, and zap trailing whitespace;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/04 02:07:53

Modified files:
	devel/py-hypothesis: Makefile distinfo 

Log message:
Update to py-hypothesis 3.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/04 02:08:07

Modified files:
	net/munin      : Makefile distinfo 

Log message:
bugfix update to munin-2.0.27


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 02:17:43

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
There's not much point in casting a void * to a specific type just before
calling free().

ok beck@ ingo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 02:40:47

Removed files:
	audio/openal/patches: patch-Alc_mixer_sse_c 

Log message:
Drop bogus patch to unbreak.

spotted by nigel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/04 02:57:31

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

Log message:
Update to feh-2.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 03:04:24

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.70.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 03:04:35

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.13.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/11/04 03:11:20

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
MALLOC_STATS tweaks, by default not compiled in


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/04 03:34:22

Modified files:
	devel/cmake    : Makefile distinfo 

Log message:
maintenance update to cmake-3.6.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/04 03:43:30

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-Makefile patch-t_test-lib_sh 

Log message:
Update to git-2.10.2
ok benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/04 04:00:21

Modified files:
	www/midori     : Makefile 

Log message:
Since removing gettext MODULE from xfce4.port.mk broke this, take the
opportunity to fix WANTLIB and bump REVISION.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/04 04:00:36

Modified files:
	x11/gigolo     : Makefile 

Log message:
Since removing gettext MODULE from xfce4.port.mk broke this, take the
opportunity to fix WANTLIB and bump REVISION.
CVS: ----------------------------------------------------------------------
CVS: Enter Log.  Lines beginning with `CVS:' are removed automatically
CVS:
CVS: Committing in .
CVS:
CVS: Modified Files:
CVS: 	Makefile
CVS: ----------------------------------------------------------------------


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/04 04:02:03

Modified files:
	x11/xfce4/thunar-archive: Makefile 
	x11/xfce4/xfce4-netload: Makefile 

Log message:
Herp derp missed REVISION bumps, thx naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/04 04:10:47

Modified files:
	audio/deadbeef : Makefile 
Added files:
	audio/deadbeef/patches: patch-plugins_alac_demux_c 

Log message:
alac: fixed demuxer mdat/moov parser
(upstream git commit 550488a10db0acfbe149a4910a9a7170da2a770a)


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

Modified files:
	x11/gnome/shell: Makefile 
	x11/gnome/shell/patches: patch-js_misc_loginManager_js 
Added files:
	x11/gnome/shell/patches: patch-js_ui_screenShield_js 

Log message:
Drop a systemd specific function that's in the way.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/04 04:17:17

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: RSA_blinding_on.3 RSA_check_key.3 
	                   RSA_generate_key.3 RSA_get_ex_new_index.3 
	                   RSA_new.3 RSA_padding_add_PKCS1_type_1.3 
	                   RSA_print.3 RSA_private_encrypt.3 
	                   RSA_public_encrypt.3 RSA_set_method.3 
	                   RSA_sign.3 RSA_sign_ASN1_OCTET_STRING.3 
	                   RSA_size.3 d2i_RSAPublicKey.3 rsa.3 
Removed files:
	lib/libcrypto/doc: RSA_blinding_on.pod RSA_check_key.pod 
	                   RSA_generate_key.pod RSA_get_ex_new_index.pod 
	                   RSA_new.pod RSA_padding_add_PKCS1_type_1.pod 
	                   RSA_print.pod RSA_private_encrypt.pod 
	                   RSA_public_encrypt.pod RSA_set_method.pod 
	                   RSA_sign.pod RSA_sign_ASN1_OCTET_STRING.pod 
	                   RSA_size.pod d2i_RSAPublicKey.pod rsa.pod 

Log message:
convert RSA manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/04 04:22:26

Modified files:
	mail/sympa     : Makefile distinfo 
	mail/sympa/patches: patch-configure 
	                    patch-src_etc_script_sympa_in 
	mail/sympa/pkg : PLIST README UNMESSAGE 
Removed files:
	mail/sympa/files: httpd-sympa.conf 
	mail/sympa/patches: patch-Makefile_in patch-doc_man8_Makefile_in 
	                    patch-doc_man8_alias_manager_pod_in 
	                    patch-doc_man8_archived_pod_in 
	                    patch-doc_man8_bounced_pod_in 
	                    patch-doc_man8_sympa_pod_in 
	                    patch-soap_Makefile_in patch-src_Makefile_in 
	                    patch-src_etc_script_create_db_SQLite 
	                    patch-src_lib_Language_pm 
	                    patch-src_lib_List_pm 
	                    patch-src_lib_confdef_pm 
	                    patch-wwsympa_Makefile_in 
	                    patch-wwsympa_icons_Makefile_in 

Log message:
Update to sympa 6.2.16 and drop MAINTAINERship.

- remove apache1 sample config, and provide an nginx vhost in README
- cleanup/remove most patches

Refer to https://www.sympa.org/faq/upgrade-to-v6.2 and
http://www.sympa.org/manual/upgrading for how to upgrade.


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

Modified files:
	www/c-icap/modules: Makefile 

Log message:
regen WANTLIB following clamav move to pcre2, reminded by ajacoutot


CVSROOT:	/cvs
Module name:	www
Changes by:	landry@cvs.openbsd.org	2016/11/04 04:27:16

Modified files:
	faq            : current.html 

Log message:
add a note about mail/sympa update


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/04 04:27:27

Added files:
	games/warmux/patches: 
	                      patch-tools_servers_game_server_Makefile_in 

Log message:
don't rely on libcurl bringing in libintl; spotted by sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/04 04:29:20

Modified files:
	lib/libcrypto/x509: x_all.c x509.h 

Log message:
Add X509_up_ref, from boring
ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/04 04:31:45

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

Log message:
Update to py-pip-9.0.0

ok shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/04 04:45:38

Modified files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
vmm detection merged upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 04:50:32

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Rename the internal bio related functions so that they have a common
prefix. Makes the code more readable and removes shadowing.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 04:51:35

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Do not mix declarations and code.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 04:54:25

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
There's not much point having three static functions that do a cast and
assign a pointer, when we can just inline the three and do one cast
followed by three pointer assignments.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 05:00:13

Log message:
    Import ruby-pledge, ruby support for the pledge(2) system call
    
    OK pirofti@
    
    Status:
    
    Vendor Tag:	jeremy
    Release Tags:	jeremy_2016-Nov-04
    
    N ports/security/ruby-pledge/Makefile
    N ports/security/ruby-pledge/distinfo
    N ports/security/ruby-pledge/pkg/DESCR
    N ports/security/ruby-pledge/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 05:15:14

Modified files:
	games/hedgewars: Makefile 
	games/hedgewars/pkg: hedgewars_server.rc 

Log message:
Drop the no_server PSEUDO FLAVOR which fails intermittently in bulks.

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 05:18:00

Modified files:
	security       : Makefile 

Log message:
Hookup ruby-pledge


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/04 05:33:34

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

Log message:
Security update to 7.51.0.
CVE-2016-8615: cookie injection for other servers
CVE-2016-8616: case insensitive password comparison
CVE-2016-8617: OOB write via unchecked multiplication
CVE-2016-8618: double-free in curl_maprintf
CVE-2016-8619: double-free in krb5 code
CVE-2016-8620: glob parser write/read out of bounds
CVE-2016-8621: curl_getdate read out of bounds
CVE-2016-8622: URL unescape heap overflow via integer truncation
CVE-2016-8623: Use-after-free via shared cookies
CVE-2016-8624: invalid URL parsing with '#'
CVE-2016-8625: IDNA 2003 makes curl use wrong host

Note that this drops support for internationalized domain names.
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/04 05:35:21

Modified files:
	audio/ario     : Makefile 
	audio/deadbeef : Makefile 
	audio/gimmix   : Makefile 
	audio/grip     : Makefile 
	audio/moc      : Makefile 
	audio/ncmpcpp  : Makefile 
	audio/tremor-tools: Makefile 
	audio/vagalume : Makefile 
	audio/vorbis-tools: Makefile 
	databases/apache-couchdb: Makefile 
	databases/evolution-data-server: Makefile 
	devel/libgdata : Makefile 
	devel/libgit2/libgit2-glib: Makefile 
	devel/libvirt-glib: Makefile 
	editors/abiword: Makefile 
	games/bzflag   : Makefile 
	games/crossfire-client: Makefile 
	games/f1spirit : Makefile 
	games/freeciv  : Makefile 
	games/gnubg    : Makefile 
	games/manaplus : Makefile 
	games/megaglest/base: Makefile 
	geo/foxtrotgps : Makefile 
	geo/gdal       : Makefile 
	geo/postgis    : Makefile 
	geo/spatialite/librasterlite2: Makefile 
	geo/spatialite/librewms: Makefile 
	geo/viking     : Makefile 
	graphics/gimp/stable: Makefile 
	japanese/gwaei : Makefile 
	lang/php       : Makefile.inc 
	lang/php/5.5   : Makefile 
	lang/php/5.6   : Makefile 
	lang/php/7.0   : Makefile 
	mail/claws-mail: Makefile 
	mail/libetpan  : Makefile 
	math/R         : Makefile 
	math/octave    : Makefile 
	multimedia/gstreamer-0.10/plugins-bad: Makefile 
	multimedia/mediatomb: Makefile 
	net/castget    : Makefile 
	net/centerim   : Makefile 
	net/flickcurl  : Makefile 
	net/freeradius3: Makefile 
	net/icecast    : Makefile 
	net/megatools  : Makefile 
	net/nepenthes  : Makefile 
	net/py-curl    : Makefile 
	net/quvi/libquvi: Makefile 
	net/quvi/quvi  : Makefile 
	net/rtorrent   : Makefile 
	net/seafile/seafile: Makefile 
	net/tclcurl    : Makefile 
	net/transmission: Makefile 
	net/xmlrpc-c   : Makefile 
	net/zabbix     : Makefile 
	productivity/libgcal: Makefile 
	security/clamav: Makefile 
	security/gnupg : Makefile 
	security/yubico/yubico-c-client: Makefile 
	sysutils/collectd: Makefile 
	sysutils/conky : Makefile 
	sysutils/curlftpfs: Makefile 
	sysutils/libvirt: Makefile 
	telephony/asterisk: Makefile 
	telephony/kamailio: Makefile 
	textproc/html-xml-utils: Makefile 
	textproc/liblrdf: Makefile 
	textproc/libnxml: Makefile 
	textproc/mupdf : Makefile 
	textproc/raptor: Makefile 
	textproc/rasqal: Makefile 
	textproc/redland: Makefile 
	www/cclive     : Makefile 
	www/p5-WWW-Curl: Makefile 
	www/pecl-http  : Makefile 
	www/ruby-passenger: Makefile 
	www/uget       : Makefile 
	x11/e17/e      : Makefile 
	x11/e17/e_dbus : Makefile 
	x11/e17/ecore  : Makefile 
	x11/e17/edje   : Makefile 
	x11/e17/efreet : Makefile 
	x11/e17/elementary: Makefile 
	x11/e17/emotion: Makefile 
	x11/e17/ethumb : Makefile 
	x11/ede/desktop: Makefile 
	x11/gaia       : Makefile 
	x11/gnome/builder: Makefile 
	x11/gnome/documents: Makefile 
	x11/gnome/eog-plugins: Makefile 
	x11/gnome/grilo: Makefile 
	x11/gnome/grilo-plugins: Makefile 
	x11/gnome/gvfs : Makefile 
	x11/gnome/online-miners: Makefile 
	x11/gnome/photos: Makefile 
	x11/gnome/totem-pl-parser: Makefile 
	x11/nx/opennx  : Makefile 
	x11/pinot      : Makefile 
	x11/virt-viewer: Makefile 
	x11/xfce4/tumbler: Makefile 

Log message:
sync WANTLIB (and in one case, add gettext to LIB_DEPENDS) in dependent ports
now that internationalised domain name support has been removed from net/curl


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 05:42:14

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Use 'rm -f' to remove the rollback tarball if we have an errir; it may
be because we have a read-only /var.


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/04 07:53:06

Modified files:
	lib/libcrypto  : x86cpuid.pl 

Log message:
In OPENSSL_wipe_cpu() on i386, which noone uses anyway, check the proper
flag for the presence of a FPU before deciding to wipe the fpu registers.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/04 07:56:05

Modified files:
	lib/libcrypto  : cryptlib.c md32_common.h 
	lib/libcrypto/arch/alpha: opensslconf.h 
	lib/libcrypto/arch/amd64: opensslconf.h 
	lib/libcrypto/arch/arm: opensslconf.h 
	lib/libcrypto/arch/hppa: opensslconf.h 
	lib/libcrypto/arch/i386: opensslconf.h 
	lib/libcrypto/arch/m88k: opensslconf.h 
	lib/libcrypto/arch/mips64: opensslconf.h 
	lib/libcrypto/arch/powerpc: opensslconf.h 
	lib/libcrypto/arch/sh: opensslconf.h 
	lib/libcrypto/arch/sparc: opensslconf.h 
	lib/libcrypto/arch/sparc64: opensslconf.h 
	lib/libcrypto/engine: eng_padlock.c 
	lib/libcrypto/evp: e_aes.c 
	lib/libcrypto/modes: gcm128.c modes_lcl.h 
	lib/libcrypto/sha: sha512.c 

Log message:
Remove I386_ONLY define. It was only used to prefer a
faster-on-genuine-80386-but-slower-on-80486-onwards innstruction sequence in
the SHA512 code, and had not been enabled in years, if at all.

ok tom@ bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/04 07:57:38

Modified files:
	lib/libcrypto  : Makefile 

Log message:
No need to reach libssl private headers and to define TERMIOS anymore.

ok bcook@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/04 08:09:36

Modified files:
	net/curl       : Tag: OPENBSD_6_0 Makefile distinfo 
	net/curl/pkg   : Tag: OPENBSD_6_0 PLIST 
Removed files:
	net/curl/patches: Tag: OPENBSD_6_0 patch-lib_escape_c 
	                  patch-lib_multi_c patch-lib_url_c 
	                  patch-lib_urldata_h patch-lib_vtls_vtls_c 

Log message:
Security update to 7.51.0.
CVE-2016-8615: cookie injection for other servers
CVE-2016-8616: case insensitive password comparison
CVE-2016-8617: OOB write via unchecked multiplication
CVE-2016-8618: double-free in curl_maprintf
CVE-2016-8619: double-free in krb5 code
CVE-2016-8620: glob parser write/read out of bounds
CVE-2016-8621: curl_getdate read out of bounds
CVE-2016-8622: URL unescape heap overflow via integer truncation
CVE-2016-8623: Use-after-free via shared cookies
CVE-2016-8624: invalid URL parsing with '#'
CVE-2016-8625: IDNA 2003 makes curl use wrong host

Note that this drops support for internationalized domain names.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 08:18:45

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Make sure our filesystems are local and not read-only.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/04 08:33:26

Modified files:
	games/manaplus : Makefile 
Added files:
	games/manaplus/patches: patch-src_Makefile_am 

Log message:
Don't rely on libcurl bringing in libintl; spotted by sthen@
Work around bad autoconf macros to link against the shared libintl.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/04 08:47:38

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

Log message:
enum values need to fit in 32 bits; we only use enum for numbering and
Unicode characters fit in 24 bits, so we can leave key_code as 64 bits
and change KEYC_BASE down to 0x10000000.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 08:55:29

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Zap extra space.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/04 09:01:10

Modified files:
	www/sogo       : Tag: OPENBSD_6_0 Makefile 
Added files:
	www/sogo/patches: Tag: OPENBSD_6_0 
	                  patch-UI_Scheduler_UIxCalListingActions_m 

Log message:
Fix empty calendar in web gui
patch and ok sebastia@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:05:29

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Convert ssl3_get_server_kex_dhe() to CBS.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/04 09:07:26

Modified files:
	usr.sbin/vmd   : config.c parse.y vmd.c vmd.h vmm.c 

Log message:
Update the config/register/get VM methods to match the config_set/get
style that is used in other places.  Also keep the vmid from the parent.

OK edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:09:29

Modified files:
	lib/libssl     : ssl_asn1.c 

Log message:
Completely rewrite the session handling ASN.1 code using CBB and CBS. This
addresses two 2038 related issues and also adds support for allocation in
the i2d function, which will allow for simplification in the callers.

ok beck@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/04 09:16:44

Modified files:
	usr.sbin/vmd   : config.c parse.y vmd.c vmd.h 

Log message:
Pass the internal vmid or 0 to vm_register() instead of changing it
once again after setting the next available id.

Suggested by edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/04 09:20:53

Modified files:
	net/curl       : Tag: OPENBSD_5_9 Makefile distinfo 
	net/curl/pkg   : Tag: OPENBSD_5_9 PLIST 
Removed files:
	net/curl/patches: Tag: OPENBSD_5_9 
	                  patch-docs_examples_getredirect_c 
	                  patch-lib_escape_c patch-lib_multi_c 
	                  patch-lib_url_c patch-lib_urldata_h 
	                  patch-lib_vtls_vtls_c 

Log message:
Security update to 7.51.0.
CVE-2016-8615: cookie injection for other servers
CVE-2016-8616: case insensitive password comparison
CVE-2016-8617: OOB write via unchecked multiplication
CVE-2016-8618: double-free in curl_maprintf
CVE-2016-8619: double-free in krb5 code
CVE-2016-8620: glob parser write/read out of bounds
CVE-2016-8621: curl_getdate read out of bounds
CVE-2016-8622: URL unescape heap overflow via integer truncation
CVE-2016-8623: Use-after-free via shared cookies
CVE-2016-8624: invalid URL parsing with '#'
CVE-2016-8625: IDNA 2003 makes curl use wrong host

Note that this drops support for internationalized domain names.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/04 09:29:04

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_NAME_ENTRY_get_object.3 
	                   X509_NAME_add_entry_by_txt.3 
	                   X509_NAME_get_index_by_NID.3 
	                   X509_NAME_print_ex.3 
	                   X509_STORE_CTX_get_error.3 
	                   X509_STORE_CTX_get_ex_new_index.3 
	                   X509_STORE_CTX_new.3 
	                   X509_STORE_CTX_set_verify_cb.3 
	                   X509_STORE_set_verify_cb_func.3 
	                   X509_VERIFY_PARAM_set_flags.3 X509_new.3 
	                   X509_verify_cert.3 d2i_X509.3 
	                   d2i_X509_ALGOR.3 d2i_X509_CRL.3 
	                   d2i_X509_NAME.3 d2i_X509_REQ.3 d2i_X509_SIG.3 
	                   x509.3 
Removed files:
	lib/libcrypto/doc: X509_NAME_ENTRY_get_object.pod 
	                   X509_NAME_add_entry_by_txt.pod 
	                   X509_NAME_get_index_by_NID.pod 
	                   X509_NAME_print_ex.pod 
	                   X509_STORE_CTX_get_error.pod 
	                   X509_STORE_CTX_get_ex_new_index.pod 
	                   X509_STORE_CTX_new.pod 
	                   X509_STORE_CTX_set_verify_cb.pod 
	                   X509_STORE_set_verify_cb_func.pod 
	                   X509_VERIFY_PARAM_set_flags.pod X509_new.pod 
	                   X509_verify_cert.pod d2i_X509.pod 
	                   d2i_X509_ALGOR.pod d2i_X509_CRL.pod 
	                   d2i_X509_NAME.pod d2i_X509_REQ.pod 
	                   d2i_X509_SIG.pod x509.pod 

Log message:
convert X509 manuals from pod to mdoc


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 09:32:13

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
One more XXX.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:32:40

Modified files:
	lib/libtls     : tls_verify.c 

Log message:
Avoid signed vs unsigned comparisons.

ok miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:37:49

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Use a consistent name for a BIO *, rather than having four different names
in the same file.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:39:16

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Do not cast a pointer to a struct, to a char * when assigning to a void *.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:42:29

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Rename struct bio_cb_st to struct bio_cb.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:43:46

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Use a consistent name for struct bio_cb * variables.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/04 09:44:14

Modified files:
	infrastructure/mk: font.port.mk 

Log message:
Remove NO_TEST.
It's not honored from within modules.

discussed with jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:45:55

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Assign and test, as is consistent with the rest of the libtls code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/04 09:48:13

Modified files:
	audio/mpg123   : Tag: OPENBSD_5_9 Makefile 
Added files:
	audio/mpg123/patches: Tag: OPENBSD_5_9 patch-src_libmpg123_id3_c 

Log message:
Fix an out-of-bounds memory read in the ID3v2 parser for tags that claim an
unrealistically small length.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/04 09:48:14

Modified files:
	fonts/comic-neue: Makefile distinfo 

Log message:
- update fonts/comic-neue to 2.3
- adjust FONT_DISTDIR to changed archive layout.
- add NO_TEST

OK aja@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/04 09:49:38

Modified files:
	textproc/mupdf : Makefile 

Log message:
remove hardcoded -lidn (curl libs)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/04 09:51:43

Modified files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 

Log message:
sync with what's been merged upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/04 09:51:55

Modified files:
	sysutils/ansible: Makefile 

Log message:
and bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/04 09:53:59

Modified files:
	fonts/abyssinica: Makefile 
	fonts/andika   : Makefile 
	fonts/arabeyes-ttf: Makefile 
	fonts/blockzone: Makefile 
	fonts/charis   : Makefile 
	fonts/doulos   : Makefile 
	fonts/ecoliercourt-fonts: Makefile 
	fonts/farsi-bfonts-ttf: Makefile 
	fonts/farsifonts-ttf: Makefile 
	fonts/gentium  : Makefile 
	fonts/hermit-font: Makefile 
	fonts/inconsolata-font: Makefile 
	fonts/spranq-ecofont-ttf: Makefile 
	fonts/zh-wqy-bitmapfont: Makefile 
	fonts/zh-wqy-zenhei-ttf: Makefile 

Log message:
Add NO_TEST to all font ports that use the font.port.mk module.

discussed with jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/04 09:58:34

Modified files:
	mail/getmail   : Makefile distinfo 

Log message:
Update mail/getmail to 4.52.0

OK aja@ tim@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 09:59:16

Modified files:
	lib/libtls     : tls_util.c 

Log message:
Address some signed vs unsigned warnings and check that an integer value
is positive before passing it to several functions as a size_t.
Additionally, in tls_load_file() there is not much point using calloc(),
when we're immediately reading into the buffer (having an extra byte for
NUL termination seems pointless given the API).

ok beck@ miod@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/11/04 10:01:40

Modified files:
	archivers/pigz : Makefile distinfo 

Log message:
Update archivers/pigz to 2.3.4

OK aja@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/04 10:03:45

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Be verbose when PATCH_PATH is not set (that is temporary until we agree on
a way to point to a syspatch mirror).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 11:03:29

Modified files:
	lang/ruby/2.1  : Makefile 
	lang/ruby/2.1/pkg: PLIST-main 
	lang/ruby/2.2  : Makefile 
	lang/ruby/2.2/pkg: PLIST-main 
	lang/ruby/2.3  : Makefile 
	lang/ruby/2.3/pkg: PLIST-main 

Log message:
Add a couple directories to the PLIST

These directories are needed to that installing a ruby gem ext port and
then remove the ruby package doesn't leave directories around. This is
only a partial fix, the ruby gem ext ports all need a similar fix.

Problem pointed out by and feedback from pirofti@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/04 11:06:12

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

Log message:
update to birdfont-2.17.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/04 11:17:14

Removed files:
	lang/obc/patches: patch-test_bigtest_in 
	math/py-numpy/patches: patch-numpy_core_tests_test_umath_py 

Log message:
remove empty patches


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/04 11:17:38

Removed files:
	x11/gnustep/base/patches: patch-Source_Additions_Unicode_m 
	                          patch-Tools_AGSOutput_m 

Log message:
remove some more empty patches


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/04 11:30:30

Modified files:
	lib/libcrypto  : cryptlib.c cryptlib.h x86_64cpuid.pl 
	                 x86cpuid.pl 
	lib/libcrypto/aes/asm: aes-586.pl aes-x86_64.pl 
	                       aesni-sha1-x86_64.pl 
	lib/libcrypto/bn/asm: bn-586.pl x86-gf2m.pl x86-mont.pl 
	                      x86_64-gf2m.pl 
	lib/libcrypto/engine: eng_aesni.c 
	lib/libcrypto/evp: e_aes.c e_aes_cbc_hmac_sha1.c 
	                   e_rc4_hmac_md5.c 
	lib/libcrypto/modes: gcm128.c 
	lib/libcrypto/perlasm: x86_64-xlate.pl x86asm.pl x86gas.pl 
	lib/libcrypto/rc4/asm: rc4-586.pl rc4-x86_64.pl 
	lib/libcrypto/sha/asm: sha1-586.pl sha1-x86_64.pl sha512-586.pl 
	lib/libcrypto/whrlpool: wp_block.c 
Added files:
	lib/libcrypto  : x86_arch.h 

Log message:
Replace all uses of magic numbers when operating on OPENSSL_ia32_P[] by
meaningful constants in a private header file, so that reviewers can actually
get a chance to figure out what the code is attempting to do without knowing
all cpuid bits.

While there, turn it from an array of two 32-bit ints into a properly aligned
64-bit int.

Use of OPENSSL_ia32_P is now restricted to the assembler parts. C code will
now always use OPENSSL_cpu_caps() and check for the proper bits in the
whole 64-bit word it returns.

i386 tests and ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/04 11:33:20

Modified files:
	lib/libcrypto/ec: ec.h ec_curve.c ec_lcl.h 
Added files:
	lib/libcrypto/ec: ecp_nistz256.c ecp_nistz256_table.h 
	lib/libcrypto/ec/asm: ecp_nistz256-armv4.pl 
	                      ecp_nistz256-sparcv9.pl 
	                      ecp_nistz256-x86.pl ecp_nistz256-x86_64.pl 

Log message:
Add assembler code for the nist 256-bit GFp curve, written initially by
Intel. Obtained from BoringSSL, with some integration work borrowed from
OpenSSL 1.0.2; assembler code for arm and sparc64 borrowed from OpenSSL 1.1.0.

None of this code is enabled in libcrypto yet.

ok beck@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/04 11:51:54

Modified files:
	regress/lib/libssl/bytestring: Makefile 
	regress/lib/libssl/unit: Makefile 
	regress/lib/libtls/verify: Makefile 
Added files:
	regress/lib/libssl: Makefile.inc 

Log message:
Some tests require internal symbols; have them link with the static
libssl or libtls so they can continue to see them after the shared
library namespace is cleaned up

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/04 11:58:19

Modified files:
	lib/libssl     : ssl.h 

Log message:
Fix some linewrapping glitches

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/04 12:00:12

Modified files:
	lib/libssl     : ssl_locl.h d1_pkt.c 

Log message:
Make do_dtls1_write() static to d1_pkt.c and delete declarations for
three functions that were removed a while ago

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/04 12:07:24

Modified files:
	lib/libcrypto  : shlib_version 
	lib/libcrypto/asn1: a_time_tm.c asn1.h 
	lib/libcrypto/man: Makefile 
	lib/libcrypto/ocsp: ocsp_cl.c 
	lib/libcrypto/x509: x509_lcl.h x509_vfy.c 
	lib/libssl     : shlib_version 
	lib/libtls     : shlib_version tls_conninfo.c tls_internal.h 
	                 tls_ocsp.c 
Added files:
	lib/libcrypto/man: ASN1_time_parse.3 
	lib/libcrypto/x509: vpm_int.h 

Log message:
make public ASN1_time_parse and ASN1_time_tm_cmp to replace former hidden
functions.. document with a man page.
bump majors on libtls, libssl, libcrypto
ok jsing@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/04 12:12:14

Modified files:
	lib/libcrypto/arch/amd64: Makefile.inc 
	lib/libcrypto/arch/arm: Makefile.inc 
	lib/libcrypto/arch/i386: Makefile.inc 
	lib/libcrypto/arch/sparc64: Makefile.inc 

Log message:
Ride the current major bump and enable assembler code for nist 256p curve,
on amd64 only for now. Stanzas to enable it on arm, i386 and sparc64 are
provided but commented out for lack of testing due to the machine room
being currently in storage.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 12:12:50

Modified files:
	lib/libcrypto  : Makefile 
Removed files:
	lib/libcrypto/krb5: krb5_asn.c krb5_asn.h 

Log message:
Nuke the KRB5 ASN.1 code from orbit.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/04 12:23:32

Modified files:
	lib/libtls     : Makefile tls_internal.h 
Added files:
	lib/libtls     : Symbols.list 

Log message:
Add an explict list of exported symbols with just the functions declared
in <tls.h>, and use __{BEGIN,END}_HIDDEN_DECLS in tls_internal.h to
optimize internal functions

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/04 12:28:58

Modified files:
	lib/libssl     : Makefile bytestring.h pqueue.h ssl_locl.h 
Added files:
	lib/libssl     : Symbols.list 

Log message:
Add an explict list of exported symbols with just the functions
declared in the public headers, and use __{BEGIN,END}_HIDDEN_DECLS
in the internal headers to optimize internal functions

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/04 12:30:21

Modified files:
	lib/libssl     : d1_clnt.c d1_meth.c d1_srvr.c t1_clnt.c 
	                 t1_meth.c t1_srvr.c 

Log message:
The *_method_data structures can be static

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/04 12:33:11

Modified files:
	lib/libssl     : d1_lib.c s23_srvr.c 

Log message:
Mark a couple local functions as static

ok jsing@ beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 12:35:30

Modified files:
	lib/libcrypto/dh: dh.h dh_asn1.c 
	lib/libcrypto/dsa: dsa.h dsa_asn1.c 
	lib/libcrypto/ocsp: ocsp.h ocsp_asn.c 
	lib/libcrypto/ts: ts_asn1.c 

Log message:
Kill a bunch of OLD_ASN1 usage by replacing ASN1_{d2i,i2d}_* with
ASN1_item_{d2i,i2d}_* equivalents.

ok guenther@ miod@


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

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Tidy up the usage of peer_ecdh_tmp, following the fixed ECDH removal.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/04 12:56:25

Modified files:
	usr.bin/tmux   : cmd-set-option.c 

Log message:
Do not try to set the CHANGED flag on windows with no active pane, fixes
problem reported by Nelo-T Wallus.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 12:59:35

Modified files:
	lib/libtls     : tls_config.c 

Log message:
Avoid another signed vs unsigned comparison.

ok miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 13:01:04

Modified files:
	lib/libtls     : tls_config.c 

Log message:
Make the tls_keypair_new() function a valid prototype.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 13:01:29

Modified files:
	lib/libtls     : tls_server.c 

Log message:
Avoid shadowing the socket global.

ok miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 13:01:54

Modified files:
	lib/libtls     : Makefile 

Log message:
Build with WARNINGS=Yes.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/04 13:06:22

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.socppc md.sparc64 mi 
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 13:11:43

Modified files:
	lib/libssl     : d1_clnt.c s3_clnt.c ssl_locl.h 

Log message:
Rename ssl3_get_key_exchange() to ssl3_get_server_key_exchange(), since
that's what it really is.

ok miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/04 13:41:48

src/regress/usr.bin/mandoc/db/mlinks

Update of /cvs/src/regress/usr.bin/mandoc/db/mlinks
In directory cvs.openbsd.org:/tmp/cvs-serv64846/mlinks

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/db/mlinks added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 13:42:07

src/regress/lib/libssl/pqueue

Update of /cvs/src/regress/lib/libssl/pqueue
In directory cvs.openbsd.org:/tmp/cvs-serv7971/libssl/pqueue

Log Message:
Directory /cvs/src/regress/lib/libssl/pqueue added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/04 13:45:12

Modified files:
	regress/lib/libcrypto: Makefile 
	regress/lib/libssl: Makefile 
Added files:
	regress/lib/libssl/pqueue: Makefile expected.txt pq_test.c 
Removed files:
	regress/lib/libcrypto/pqueue: Makefile expected.txt pq_test.c 

Log message:
Move pqueue regress from libcrypto to libssl, since that's where the pqueue
code now lives. Also unbreak the regress following the symbol hiding
changes in libssl.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/04 13:57:27

Added files:
	regress/usr.bin/mandoc/db/mlinks: Makefile mlinks.1 mlinks.c 

Log message:
a new utility for bcook@: find mlinks for portable LibreSSL


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:25:10

Modified files:
	lang/ruby      : rubygems-ext.PLIST 

Log message:
Add directory containing gem.build_complete file to ruby gem ext packages

This is needed so that the packages do not leave around the directories
when they are removed.

This requires bumping all ruby gem ext ports, which will happen shortly.

Problem discovered by pirofti@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:26:38

Modified files:
	audio/ruby-id3lib: Makefile 
	audio/ruby-taglib: Makefile 
	audio/ruby-vorbis_comment: Makefile 
	databases/ruby-do_mysql: Makefile 
	databases/ruby-do_postgres: Makefile 
	databases/ruby-do_sqlite3: Makefile 
	databases/ruby-mysql: Makefile 
	databases/ruby-pg: Makefile 
	databases/ruby-sequel_pg: Makefile 
	databases/ruby-swift-db-mysql: Makefile 
	databases/ruby-swift-db-postgres: Makefile 
	databases/ruby-swift-db-sqlite3: Makefile 
	devel/ruby-atomic: Makefile 
	devel/ruby-kgio: Makefile 
	devel/ruby-ncurses: Makefile 
	devel/ruby-racc: Makefile 
	devel/ruby-subset_sum: Makefile 
	devel/ruby-therubyracer: Makefile 
	net/ruby-msgpack: Makefile 
	sysutils/ruby-augeas: Makefile 
	sysutils/ruby-posix-spawn: Makefile 
	sysutils/ruby-shadow: Makefile 
	textproc/ruby-fast-stemmer: Makefile 
	textproc/ruby-fast_xs: Makefile 
	textproc/ruby-hpricot: Makefile 
	www/ruby-capybara-webkit: Makefile 
	www/ruby-fcgi  : Makefile 

Log message:
Bump ruby gem ext ports after change to PLISTs

This does not include all ruby gem ext ports, but the remaining ones have
updates that will be committed separately.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:27:44

Modified files:
	databases/ruby-amalgalite: Makefile distinfo 
	databases/ruby-amalgalite/pkg: PLIST 

Log message:
Update to amalgalite 1.5.0

Update HOMEPAGE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:28:51

Modified files:
	databases/ruby-ldap: Makefile distinfo 
	databases/ruby-ldap/pkg: PLIST 

Log message:
Update to ruby-ldap 0.9.19

Remove testing infrastructure that doesn't work, and unnecessary pre-build
step.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:29:27

Modified files:
	databases/ruby-mysql2: Makefile distinfo 

Log message:
Update to mysql2 0.4.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:30:02

Modified files:
	databases/ruby-sequel: Makefile distinfo 
	databases/ruby-sequel/pkg: PLIST 

Log message:
Update to sequel 4.40.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:30:37

Modified files:
	databases/ruby-sqlite3: Makefile distinfo 
	databases/ruby-sqlite3/pkg: PLIST 

Log message:
Update to ruby-sqlite3 1.3.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:31:10

Modified files:
	databases/ruby-tiny_tds: Makefile distinfo 
	databases/ruby-tiny_tds/pkg: PLIST 

Log message:
Update to tiny_tds 1.0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:31:46

Modified files:
	devel/ruby-ffi : Makefile distinfo 
	devel/ruby-ffi/pkg: PLIST 

Log message:
Update to ruby-ffi 1.9.14


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:34:36

Modified files:
	devel/ruby-narray: Makefile distinfo 
	devel/ruby-narray/pkg: PLIST 

Log message:
Update to narray 0.6.1.2

Remove extension related files.

HOMEPAGE update from Rafael Sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:35:25

Modified files:
	devel/ruby-prof: Makefile distinfo 
	devel/ruby-prof/pkg: PLIST 

Log message:
Update to ruby-prof 0.16.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:37:14

Modified files:
	devel/ruby-rb-gsl: Makefile distinfo 
	devel/ruby-rb-gsl/pkg: PLIST 
Added files:
	devel/ruby-rb-gsl/patches: patch-ext_gsl_native_error_c 

Log message:
Update to ruby-gsl 2.1.0.1

Allow tests to work.

Add patch so this will work on upcoming ruby 2.4 release.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:38:34

Modified files:
	graphics/ruby-rmagick: Makefile distinfo 
	graphics/ruby-rmagick/pkg: PLIST 

Log message:
Update rmagick to 2.16.0

Update HOMEPAGE.  Remove extension source files.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:39:12

Modified files:
	net/ruby-eventmachine: Makefile distinfo 
	net/ruby-eventmachine/pkg: PLIST 

Log message:
Update to eventmachine 1.2.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:40:12

Modified files:
	security/ruby-bcrypt: Makefile distinfo 
	security/ruby-bcrypt/pkg: PLIST 

Log message:
Update to ruby-bcrypt 3.1.11

Update HOMEPAGE.  Remove java test file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:41:14

Modified files:
	sysutils/ruby-libvirt: Makefile distinfo 
	sysutils/ruby-libvirt/pkg: PLIST 

Log message:
Update to ruby-libvirt 0.7.0

Remove extension source files from package.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:41:54

Modified files:
	textproc/ruby-nokogiri: Makefile distinfo 
	textproc/ruby-nokogiri/patches: patch-_metadata 
	textproc/ruby-nokogiri/pkg: PLIST 

Log message:
Update to nokogiri 1.6.8.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:43:47

Modified files:
	textproc/ruby-rdiscount: Makefile distinfo 

Log message:
Update to rdiscount 2.2.0.1

Make tests work if the package is not already installed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:45:04

Modified files:
	textproc/ruby-redcarpet: Makefile distinfo 

Log message:
Update to redcarpet 3.3.4

Make tests work if package is not already installed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:45:45

Modified files:
	textproc/ruby-redcloth: Makefile distinfo 
	textproc/ruby-redcloth/pkg: PLIST 

Log message:
Update to redcloth 4.3.2

Remove extension source files from package.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:46:12

Modified files:
	www/ruby-puma  : Makefile distinfo 
	www/ruby-puma/pkg: PLIST 

Log message:
Update to puma 3.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:46:42

Modified files:
	www/ruby-raindrops: Makefile distinfo 
	www/ruby-raindrops/pkg: PLIST 

Log message:
Update to raindrops 0.17.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:47:24

Modified files:
	www/ruby-thin  : Makefile distinfo 

Log message:
Update to thin 1.7.0

Remove unworking test code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:48:33

Modified files:
	www/ruby-unicorn: Makefile distinfo 
Added files:
	www/ruby-unicorn/patches: patch-test_exec_test_exec_rb 

Log message:
Update to unicorn 5.2.0

Add patch to skip a test that doesn't complete.

HOMEPAGE update from Rafael Sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 15:49:09

Modified files:
	www/ruby-websocket-driver: Makefile distinfo 
	www/ruby-websocket-driver/pkg: PLIST 

Log message:
Update to websocket-driver 0.6.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 16:08:19

Modified files:
	www/ruby-passenger: Makefile distinfo 
	www/ruby-passenger/files: nginx-passenger.conf.sample 
	www/ruby-passenger/pkg: PLIST 
Added files:
	www/ruby-passenger/patches: 
	                            patch-src_agent_Core_ApplicationPool_Pool_AnalyticsCollection_cpp 
	                            patch-src_cxx_supportlib_vendor-modified_boost_predef_detail_endian_compat_h 
	                            patch-src_cxx_supportlib_vendor-modified_boost_smart_ptr_detail_sp_has_sync_hpp 
	                            patch-src_helper-scripts_download_binaries_extconf_rb 
	                            patch-src_nginx_module_config 
	                            patch-src_ruby_supportlib_phusion_passenger_config_agent_compiler_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_config_install_agent_command_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_config_install_standalone_runtime_command_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_config_installation_utils_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_config_nginx_engine_compiler_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_native_support_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_platform_info_apache_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_platform_info_compiler_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_standalone_start_command_nginx_engine_rb 
	                            patch-src_ruby_supportlib_phusion_passenger_vendor_daemon_controller_rb 
Removed files:
	www/ruby-passenger/patches: patch-ext_boost_detail_endian_hpp 
	                            patch-ext_boost_smart_ptr_detail_sp_has_sync_hpp 
	                            patch-ext_common_ApplicationPool2_Pool_AnalyticsCollection_cpp 
	                            patch-ext_nginx_config 
	                            patch-helper-scripts_download_binaries_extconf_rb 
	                            patch-lib_phusion_passenger_config_install_agent_command_rb 
	                            patch-lib_phusion_passenger_config_install_standalone_runtime_command_rb 
	                            patch-lib_phusion_passenger_native_support_rb 
	                            patch-lib_phusion_passenger_platform_info_apache_rb 
	                            patch-lib_phusion_passenger_platform_info_compiler_rb 
	                            patch-lib_phusion_passenger_rb 
	                            patch-lib_phusion_passenger_standalone_start_command_nginx_engine_rb 
	                            patch-lib_phusion_passenger_vendor_daemon_controller_rb 

Log message:
Update to passenger 5.0.30

Update embedded nginx to 1.10.2.

Support nginx dynamic modules.

All files that were patched previously got moved, add patches for the
new locations.

Remove all of the pointless hiding of build steps behind progress bars.

OK robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/11/04 16:12:46

Modified files:
	etc            : rc 

Log message:
spacing


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 16:13:43

Modified files:
	www/nginx      : Makefile distinfo 
	www/nginx/patches: patch-conf_nginx_conf 
Added files:
	www/nginx/pkg  : DESCR-geoip DESCR-image_filter DESCR-lua 
	                 DESCR-mailproxy DESCR-main DESCR-naxsi 
	                 DESCR-passenger DESCR-perl DESCR-stream 
	                 DESCR-xslt PLIST-geoip PLIST-image_filter 
	                 PLIST-lua PLIST-mailproxy PLIST-main 
	                 PLIST-naxsi PLIST-passenger PLIST-perl 
	                 PLIST-stream PLIST-xslt README-main 
Removed files:
	www/nginx/patches: 
	                   lua-lua-nginx-module_src_ngx_http_lua_socket_udp_c 
	                   lua-lua-nginx-module_src_ngx_http_lua_socket_udp_h 
	www/nginx/pkg  : DESCR PLIST README 

Log message:
Update nginx to use new dynamic modules feature

Switch all extrnal modules to be dynamic modules, and update them to use the
latest versions.  Use separate subpackages for all dynamic modules, so you
can easily choose which nginx features you want without rebuilding nginx
with a specific combination of FLAVORs.

Switch all internal modules that can be built dynamically to use dynamic
modules.

Start building the image_filter, geoip, perl, and xlst modules as dynamic
modules.

This requires changes to your nginx configuration if you were previously
using a FLAVORed version of nginx, or using the mail or stream features.

OK robert@ (MAINTAINER)
positive feedback from william@ (MAINTAINER), landry@, sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	jeremy@cvs.openbsd.org	2016/11/04 16:20:11

Modified files:
	faq            : current.html 

Log message:
Add entry for www/nginx dynamic module switch


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/04 16:27:08

Modified files:
	usr.sbin/switchd: ofp.c ofp13.c ofp_common.c switchd.h 

Log message:
Move ofp_output() into ofp_common.c and few function prototypes into
switchd.h.  No functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/04 16:33:04

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Empty -> empty in log messages


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/04 16:53:26

Modified files:
	lib/libcrypto/man: ASN1_time_parse.3 

Log message:
tweak previous


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/04 17:07:20

Modified files:
	faq            : current.html 

Log message:
split up some long sentences and start new sentences on new lines.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/04 23:09:49

Modified files:
	sys/arch/octeon/dev: if_cnmac.c 

Log message:
Do not show a device unit number in the cnmac interrupt name. The same
interrupt drives all the cnmac ports.

ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/04 23:14:18

Modified files:
	sys/arch/octeon/dev: if_cnmac.c 

Log message:
Drop unnecessary #ifdef MBUF_TIMESTAMP.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/04 23:28:39

Modified files:
	sys/arch/loongson/dev: bonitoreg.h 
	sys/arch/loongson/include: autoconf.h 

Log message:
Move the definition of REGVAL into a common header to make it usable
outside bonito(4).

ok miod@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/11/04 23:49:54

Modified files:
	security/burpsuite: Makefile distinfo 

Log message:
update burpsuite to 1.7.10.
More information: http://releases.portswigger.net/2016/11/1710.html


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/05 01:56:26

Modified files:
	games/fortune/datfiles: fortunes2 

Log message:
spelling fix from eric van gyzen, freebsd r308293;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 02:12:22

Modified files:
	lib/libssl     : Makefile 
	lib/libtls     : Makefile 

Log message:
Remove generated Symbols.map on make clean.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 02:26:37

Modified files:
	lib/libssl     : s3_clnt.c ssl_locl.h t1_lib.c 

Log message:
Convert ssl3_get_server_kex_ecdhe() to CBS, simplifying tls1_check_curve()
in the process. This also fixes a long standing bug where
tls1_ec_curve_id2nid() is called with only one byte of the curve ID.

ok beck@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 02:45:51

Modified files:
	regress/usr.bin/mandoc/db/mlinks: mlinks.1 

Log message:
add EXAMPLES and tweak some wording


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/11/05 03:04:05

Log message:
    import X11::Protocol::Other, some extensions to X11::Protocol
    
    feedback and ok jca@
    
    Status:
    
    Vendor Tag:	steven
    Release Tags:	steven-20161105
    
    N ports/x11/p5-X11-Protocol-Other/Makefile
    N ports/x11/p5-X11-Protocol-Other/distinfo
    N ports/x11/p5-X11-Protocol-Other/pkg/DESCR
    N ports/x11/p5-X11-Protocol-Other/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/05 03:13:56

Modified files:
	lib/libcrypto/man: ASN1_time_parse.3 

Log message:
further tweakage, with an improvement from joel;
ok jsing schwarze


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/11/05 03:14:37

Modified files:
	distrib/miniroot: group install.sub 
	distrib/sets/lists/base: mi 
	etc            : Makefile 

Log message:
Remove the obj, xobj and src directories from the base set.
The installer will create these directories during install.
So local setups will not get overwritten during upgrades.

idea from and OK deraadt@
with help from and OK tb@
feedback from and no objections halex@


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2016/11/05 04:14:44

Modified files:
	www            : Makefile 

Log message:
Remove nginx flavors


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/05 04:29:38

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

Log message:
Update to cython-0.25.1

bulk by and ok aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 04:47:16

Modified files:
	lib/libcrypto/bn: bn_mod.c 

Log message:
Stop abusing the ternary operator to decide which function to call in a
return statement.
ok beck@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 04:47:57

Modified files:
	lib/libcrypto/evp: e_aes_cbc_hmac_sha1.c e_rc4_hmac_md5.c 

Log message:
No need to duplicate definitions from evp.h locally.

ok bock@ jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/05 05:12:58

Modified files:
	sysutils/gitolite: Makefile distinfo 

Log message:
update to gitolite-3.6.6


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 05:32:45

Modified files:
	lib/libcrypto/pem: pem_seal.c 

Log message:
Make sure PEM_SealInit() will correctly destroy the PEM_ENCODE_SEAL_CTX
upon error, as there is no way to do this outside of PEM_SealFinal(), which
can only work if PEM_SealInit() succeeded...

ok beck@ jsing@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/05 05:33:17

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 06:45:26

Modified files:
	regress/lib/libcrypto/ocsp: Makefile 

Log message:
Set PROG so that the binary correctly gets recompiled when the libraries
it is linked against change.

ok beck@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 07:02:34

Modified files:
	lib/libcrypto/pkcs12: p12_key.c 

Log message:
Do not leak the ressources possibly allocated by EVP_MD_CTX_init() in the
trivial error path of PKCS12_key_gen_uni().

ok beck@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 07:27:53

Modified files:
	lib/libcrypto/ocsp: ocsp_vfy.c 

Log message:
X509_STORE_CTX_set_*() may fail, so check for errors.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 07:36:33

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: RC4.3 RIPEMD160.3 SHA1.3 bn.3 d2i_DHparams.3 
	                   d2i_DSAPublicKey.3 d2i_ECPKParameters.3 dh.3 
	                   dsa.3 ec.3 engine.3 lh_stats.3 
Removed files:
	lib/libcrypto/doc: RC4.pod RIPEMD160.pod SHA1.pod bn.pod 
	                   d2i_DHparams.pod d2i_DSAPublicKey.pod 
	                   d2i_ECPKParameters.pod dh.pod dsa.pod ec.pod 
	                   engine.pod lh_stats.pod 

Log message:
convert the remaining manual pages from pod to mdoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/05 07:46:21

Modified files:
	devel/ruby-yajl: Makefile 

Log message:
Bump:
+lib/ruby/gems/2.2/extensions/x86_64-openbsd/2.2/yajl-ruby-1.2.1/


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/11/05 07:49:29

Modified files:
	x11            : Makefile 

Log message:
+p5-X11-Protocol-Other


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 08:24:29

Modified files:
	lib/libcrypto/pkcs12: p12_utl.c 

Log message:
Stricter validation of inputs of OPENSSL_asc2uni() and OPENSSL_uni2asc().
While there, try to make these slightly less obfuscated.

ok beck@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 08:35:59

Modified files:
	lib/libcrypto/man: PKCS7_decrypt.3 

Log message:
add the missing content, sorry for committing an empty file


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 08:41:31

Modified files:
	lib/libcrypto/man: ASN1_generate_nconf.3 EVP_AEAD_CTX_init.3 
	                   EVP_PKEY_verify_recover.3 

Log message:
minor mandoc -Tlint nits


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 08:45:27

src/lib/libcrypto/curve25519

Update of /cvs/src/lib/libcrypto/curve25519
In directory cvs.openbsd.org:/tmp/cvs-serv57913/curve25519

Log Message:
Directory /cvs/src/lib/libcrypto/curve25519 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/05 08:50:05

Modified files:
	lib/libtls     : tls.c tls_internal.h tls_ocsp.c 

Log message:
rename ocsp_ctx to ocsp
ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/05 08:50:19

Modified files:
	x11/gnome/photos: Makefile distinfo 

Log message:
Update to gnome-photos-3.22.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 08:57:29

Modified files:
	lib/libcrypto  : Makefile 
Added files:
	lib/libcrypto/curve25519: curve25519-generic.c curve25519.c 
	                          curve25519.h curve25519_internal.h 

Log message:
Add support for X25519.

This brings in code from BoringSSL, which is mostly taken from SUPERCOP.

ok beck@ bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 09:01:55

Modified files:
	lib/libcrypto  : Makefile 
	lib/libcrypto/man: Makefile 
	lib/libssl     : Makefile 
Added files:
	lib/libssl/doc : Makefile 
Removed files:
	lib/libssl/man : Makefile 

Log message:
after getting rid of the pod files, clean up the Makefiles; ok bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 09:07:52

src/regress/lib/libcrypto/curve25519

Update of /cvs/src/regress/lib/libcrypto/curve25519
In directory cvs.openbsd.org:/tmp/cvs-serv40203/curve25519

Log Message:
Directory /cvs/src/regress/lib/libcrypto/curve25519 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 09:09:02

Modified files:
	regress/lib/libcrypto: Makefile 
Added files:
	regress/lib/libcrypto/curve25519: Makefile x25519test.c 

Log message:
Add regress for X25519, converted from BoringSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/05 09:13:26

Modified files:
	usr.bin/nc     : nc.1 netcat.c 
	lib/libtls     : Symbols.list tls.h tls_config.c tls_init.3 
	                 tls_internal.h tls_ocsp.c tls_server.c 

Log message:
Add support for server side OCSP stapling to libtls.
Add support for server side OCSP stapling to netcat.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/05 09:13:54

Modified files:
	archivers/libtar: Makefile distinfo 
Removed files:
	archivers/libtar/patches: patch-lib_Makefile_in 
	                          patch-lib_block_c 
	                          patch-libtar_Makefile_in 

Log message:
Update to libtar-1.2.20, new upstream.

Tweaked diff from Rafael Sadowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/05 09:16:49

Modified files:
	lib/libtls     : shlib_version 
	lib/libssl     : shlib_version 
	lib/libcrypto  : shlib_version 

Log message:
bump minors for symbol addition for ocsp and x25519 symbol additions


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 09:19:07

Modified files:
	lib/libcrypto/pkcs7: pk7_doit.c pk7_smime.c 
	lib/libcrypto/ts: ts_rsp_verify.c 

Log message:
More X509_STORE_CTX_set_*() return value checks.

ok beck@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 09:21:20

Modified files:
	lib/libcrypto/ocsp: ocsp_ht.c 
	lib/libcrypto/x509v3: pcy_tree.c 

Log message:
Check BIO_new*() for failure.

ok beck@ jsing@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/11/05 09:31:20

Modified files:
	.              : errata59.html errata60.html 

Log message:
release libssl errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 09:32:20

Modified files:
	lib/libssl     : Makefile 
Added files:
	lib/libssl/man : BIO_f_ssl.3 Makefile SSL_CIPHER_get_name.3 
	                 SSL_COMP_add_compression_method.3 
	                 SSL_CTX_add_extra_chain_cert.3 
	                 SSL_CTX_add_session.3 SSL_CTX_ctrl.3 
	                 SSL_CTX_flush_sessions.3 SSL_CTX_free.3 
	                 SSL_CTX_get_ex_new_index.3 
	                 SSL_CTX_get_verify_mode.3 
	                 SSL_CTX_load_verify_locations.3 SSL_CTX_new.3 
	                 SSL_CTX_sess_number.3 
	                 SSL_CTX_sess_set_cache_size.3 
	                 SSL_CTX_sess_set_get_cb.3 SSL_CTX_sessions.3 
	                 SSL_CTX_set_cert_store.3 
	                 SSL_CTX_set_cert_verify_callback.3 
	                 SSL_CTX_set_cipher_list.3 
	                 SSL_CTX_set_client_CA_list.3 
	                 SSL_CTX_set_client_cert_cb.3 
	                 SSL_CTX_set_default_passwd_cb.3 
	                 SSL_CTX_set_generate_session_id.3 
	                 SSL_CTX_set_info_callback.3 
	                 SSL_CTX_set_max_cert_list.3 SSL_CTX_set_mode.3 
	                 SSL_CTX_set_msg_callback.3 
	                 SSL_CTX_set_options.3 
	                 SSL_CTX_set_psk_client_callback.3 
	                 SSL_CTX_set_quiet_shutdown.3 
	                 SSL_CTX_set_session_cache_mode.3 
	                 SSL_CTX_set_session_id_context.3 
	                 SSL_CTX_set_ssl_version.3 SSL_CTX_set_timeout.3 
	                 SSL_CTX_set_tmp_dh_callback.3 
	                 SSL_CTX_set_tmp_rsa_callback.3 
	                 SSL_CTX_set_verify.3 SSL_CTX_use_certificate.3 
	                 SSL_CTX_use_psk_identity_hint.3 
	                 SSL_SESSION_free.3 
	                 SSL_SESSION_get_ex_new_index.3 
	                 SSL_SESSION_get_time.3 SSL_accept.3 
	                 SSL_alert_type_string.3 SSL_clear.3 
	                 SSL_connect.3 SSL_do_handshake.3 SSL_free.3 
	                 SSL_get_SSL_CTX.3 SSL_get_ciphers.3 
	                 SSL_get_client_CA_list.3 
	                 SSL_get_current_cipher.3 
	                 SSL_get_default_timeout.3 SSL_get_error.3 
	                 SSL_get_ex_data_X509_STORE_CTX_idx.3 
	                 SSL_get_ex_new_index.3 SSL_get_fd.3 
	                 SSL_get_peer_cert_chain.3 
	                 SSL_get_peer_certificate.3 
	                 SSL_get_psk_identity.3 SSL_get_rbio.3 
	                 SSL_get_session.3 SSL_get_verify_result.3 
	                 SSL_get_version.3 SSL_library_init.3 
	                 SSL_load_client_CA_file.3 SSL_new.3 
	                 SSL_pending.3 SSL_read.3 SSL_rstate_string.3 
	                 SSL_session_reused.3 SSL_set_bio.3 
	                 SSL_set_connect_state.3 SSL_set_fd.3 
	                 SSL_set_session.3 SSL_set_shutdown.3 
	                 SSL_set_verify_result.3 SSL_shutdown.3 
	                 SSL_state_string.3 SSL_want.3 SSL_write.3 
	                 d2i_SSL_SESSION.3 ssl.3 
Removed files:
	lib/libssl/doc : BIO_f_ssl.3 Makefile SSL_CIPHER_get_name.3 
	                 SSL_COMP_add_compression_method.3 
	                 SSL_CTX_add_extra_chain_cert.3 
	                 SSL_CTX_add_session.3 SSL_CTX_ctrl.3 
	                 SSL_CTX_flush_sessions.3 SSL_CTX_free.3 
	                 SSL_CTX_get_ex_new_index.3 
	                 SSL_CTX_get_verify_mode.3 
	                 SSL_CTX_load_verify_locations.3 SSL_CTX_new.3 
	                 SSL_CTX_sess_number.3 
	                 SSL_CTX_sess_set_cache_size.3 
	                 SSL_CTX_sess_set_get_cb.3 SSL_CTX_sessions.3 
	                 SSL_CTX_set_cert_store.3 
	                 SSL_CTX_set_cert_verify_callback.3 
	                 SSL_CTX_set_cipher_list.3 
	                 SSL_CTX_set_client_CA_list.3 
	                 SSL_CTX_set_client_cert_cb.3 
	                 SSL_CTX_set_default_passwd_cb.3 
	                 SSL_CTX_set_generate_session_id.3 
	                 SSL_CTX_set_info_callback.3 
	                 SSL_CTX_set_max_cert_list.3 SSL_CTX_set_mode.3 
	                 SSL_CTX_set_msg_callback.3 
	                 SSL_CTX_set_options.3 
	                 SSL_CTX_set_psk_client_callback.3 
	                 SSL_CTX_set_quiet_shutdown.3 
	                 SSL_CTX_set_session_cache_mode.3 
	                 SSL_CTX_set_session_id_context.3 
	                 SSL_CTX_set_ssl_version.3 SSL_CTX_set_timeout.3 
	                 SSL_CTX_set_tmp_dh_callback.3 
	                 SSL_CTX_set_tmp_rsa_callback.3 
	                 SSL_CTX_set_verify.3 SSL_CTX_use_certificate.3 
	                 SSL_CTX_use_psk_identity_hint.3 
	                 SSL_SESSION_free.3 
	                 SSL_SESSION_get_ex_new_index.3 
	                 SSL_SESSION_get_time.3 SSL_accept.3 
	                 SSL_alert_type_string.3 SSL_clear.3 
	                 SSL_connect.3 SSL_do_handshake.3 SSL_free.3 
	                 SSL_get_SSL_CTX.3 SSL_get_ciphers.3 
	                 SSL_get_client_CA_list.3 
	                 SSL_get_current_cipher.3 
	                 SSL_get_default_timeout.3 SSL_get_error.3 
	                 SSL_get_ex_data_X509_STORE_CTX_idx.3 
	                 SSL_get_ex_new_index.3 SSL_get_fd.3 
	                 SSL_get_peer_cert_chain.3 
	                 SSL_get_peer_certificate.3 
	                 SSL_get_psk_identity.3 SSL_get_rbio.3 
	                 SSL_get_session.3 SSL_get_verify_result.3 
	                 SSL_get_version.3 SSL_library_init.3 
	                 SSL_load_client_CA_file.3 SSL_new.3 
	                 SSL_pending.3 SSL_read.3 SSL_rstate_string.3 
	                 SSL_session_reused.3 SSL_set_bio.3 
	                 SSL_set_connect_state.3 SSL_set_fd.3 
	                 SSL_set_session.3 SSL_set_shutdown.3 
	                 SSL_set_verify_result.3 SSL_shutdown.3 
	                 SSL_state_string.3 SSL_want.3 SSL_write.3 
	                 d2i_SSL_SESSION.3 ssl.3 

Log message:
move manual pages from doc/ to man/ for consistency with other
libraries, in particular considering that there are unrelated
files in doc/; requested by jsing@ and beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/05 09:45:41

Modified files:
	lib/libtls     : tls_init.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/05 09:48:54

Modified files:
	sys/arch/alpha/compile: Makefile.inc 
	sys/arch/amd64/compile: Makefile.inc 
	sys/arch/armv7/compile: Makefile.inc 
	sys/arch/hppa/compile: Makefile.inc 
	sys/arch/i386/compile: Makefile.inc 
	sys/arch/landisk/compile: Makefile.inc 
	sys/arch/loongson/compile: Makefile.inc 
	sys/arch/luna88k/compile: Makefile.inc 
	sys/arch/macppc/compile: Makefile.inc 
	sys/arch/octeon/compile: Makefile.inc 
	sys/arch/sgi/compile: Makefile.inc 
	sys/arch/socppc/compile: Makefile.inc 
	sys/arch/sparc64/compile: Makefile.inc 

Log message:
Two tweaks for compile/Makefile.inc:

1) Replace '.elif !exists(${OBJDIR}/Makefile)' with just '.else'. espie
pointed out, that if the file existed, make wouldn't be reading this
file, so the check is superflous. Less clutter.

2) Unconditionally define the 'clean' and 'cleandir' targets, also when
obj doesn't exist. This changes the behaviour of 'make clean' to be
successful (doing nothing) without obj@ or obj/.

ok tb millert deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/11/05 09:59:11

Modified files:
	regress/sys/net/vxlan: Makefile vxlan_subr 
Added files:
	regress/sys/net/vxlan: vxlan_2.sh 

Log message:
Add regress tests for multicasts and dynamic vxlans


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/05 10:01:55

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/05 10:03:09

Modified files:
	usr.bin/nc     : nc.1 netcat.c 

Log message:
zap trailing whitespace, and add -o to usage() and help (-h);


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/11/05 10:06:12

Modified files:
	regress/usr.bin/mandoc/db/mlinks: mlinks.1 

Log message:
update example directory


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/11/05 10:21:56

Modified files:
	usr.bin/vi/build: recover 

Log message:
Remove syscall.ph from vi.recover

since perl-5.10 chdir supports fchdir

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 10:35:31

Modified files:
	regress/usr.bin/mandoc/db/mlinks: mlinks.c 

Log message:
don't skip names that match the beginning of the file name;
joint work with bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 10:43:50

Modified files:
	regress/usr.bin/mandoc/db/mlinks: mlinks.c 

Log message:
fix previous; looks good to bcook@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/05 10:45:43

Modified files:
	www            : Makefile 
Removed files:
	www/gnash      : Makefile distinfo 
	www/gnash/patches: patch-configure_ac 
	                   patch-libbase_GnashImageGif_cpp 
	                   patch-libmedia_ffmpeg_AudioDecoderFfmpeg_cpp 
	                   patch-libmedia_ffmpeg_AudioResamplerFfmpeg_cpp 
	                   patch-libmedia_ffmpeg_AudioResamplerFfmpeg_h 
	                   patch-libmedia_ffmpeg_MediaParserFfmpeg_cpp 
	                   patch-libmedia_ffmpeg_MediaParserFfmpeg_h 
	                   patch-libmedia_ffmpeg_VideoDecoderFfmpegVaapi_cpp 
	                   patch-libmedia_ffmpeg_VideoDecoderFfmpegVaapi_h 
	                   patch-libmedia_ffmpeg_VideoDecoderFfmpeg_cpp 
	                   patch-libmedia_ffmpeg_VideoDecoderFfmpeg_h 
	                   patch-libmedia_ffmpeg_ffmpegHeaders_h 
	                   patch-macros_ffmpeg_m4 patch-macros_pango_m4 
	www/gnash/pkg  : DESCR PLIST 

Log message:
Remove www/gnash because... well :-)
General agreement from the b2k16 hackroom a couple days ago and Brad is ok
to remove it as well.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/05 10:46:44

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register gnash removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/05 11:42:53

Modified files:
	x11/gnome/builder: Makefile 
	x11/gnome/builder/patches: 
	                           patch-plugins_terminal_gb-terminal-view_c 

Log message:
Sync with BZ.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/11/05 12:30:02

Modified files:
	lib/libtls     : tls_init.3 

Log message:
fix misplaced quote by tls_peer_ocsp_this_update


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 13:03:39

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Do a partial CBB conversion of ssl3_send_server_key_exchange(), which will
make it easier to do further clean up.

ok beck@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/05 13:59:01

Modified files:
	lib/libssl     : ssl_asn1.c 

Log message:
One of the error paths would attempt to access not-yet-initialized locals.
Simply return since there is nothing more to do.

Spotted by coverity. ok jsing@ beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/05 14:01:54

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

Log message:
Add objects for X25519, X448, Ed25519 and Ed448.

ok miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/05 14:14:59

Modified files:
	lib/libcrypto/x509: vpm_int.h x509_vfy.h x509_vpm.c 

Log message:
Part one of the alt chains changes, bring in newer modifications to
VERIFY_PARAMS - based on boringssl.
ok jsing@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/05 14:36:11

Modified files:
	lib/libcrypto/man: BN_add.3 BN_set_bit.3 BN_zero.3 Makefile bn.3 
Added files:
	lib/libcrypto/man: BN_set_negative.3 

Log message:
document BN_set_negative() and BN_is_negative();
feedback and OK bcook@, OK jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/05 15:27:26

Modified files:
	audio/pianobar : Makefile 
Added files:
	audio/pianobar/patches: patch-src_player_c 

Log message:
Turn off ffmpeg's non-fatal error messages.

"Skipping 0 bytes of junk" is useless to the user, and essentially
indicates a NOP.

upstream git commit 7c2d9ebb7f61cf04d75e28ca5cd6932002c4357b


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/05 16:31:28

Log message:
    Import mruby 1.2.0
    
    mruby is a lightweight, easy to embed version of ruby.
    
    Help from juanfra@ and pirofti@
    OK juanfra@
    
    Status:
    
    Vendor Tag:	jeremy
    Release Tags:	jeremy_2016-Nov-05
    
    N ports/lang/mruby/Makefile
    N ports/lang/mruby/distinfo
    N ports/lang/mruby/pkg/DESCR
    N ports/lang/mruby/pkg/PLIST
    N ports/lang/mruby/patches/patch-tasks_mruby_build_rake
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/05 16:33:49

Modified files:
	lang           : Makefile 

Log message:
Hookup mruby


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/05 17:50:48

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/05 19:32:32

Modified files:
	devel/elftoolchain: Makefile 
Added files:
	devel/elftoolchain/patches: patch-common_elfdefinitions_h 

Log message:
Fix build on alpha.

On alpha, <machine/exec.h> defines ELF_TARG_MACH to EM_ALPHA_EXP,
unknown to elftoolchain.  Add a define, value from <sys/exec_elf.h>.

ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/05 19:39:54

Modified files:
	security/dante : Makefile 
Added files:
	security/dante/patches: patch-lib_hostcache_c 

Log message:
Stop accessing free'd memory; fixes programs running under socksify.

Discussed with upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/05 23:44:21

Modified files:
	lang/luajit    : Makefile 

Log message:
Remove the lua52 FLAVOR of luajit which build with LUAJIT_ENABLE_LUA52COMPAT
defined and wrongly patched luajit to set the abi to lua 5.2.
luajit can not load lua modules built against the lua 5.2 headers even
when build with LUAJIT_ENABLE_LUA52COMPAT.

Even without LUAJIT_ENABLE_LUA52COMPAT luajit has some 5.2 semantics,
the define enables a few other things such making unpack() available
as table.unpack().

No system vendors seem to ship a version of luajit with the define set
and the consensus is to just remove the FLAVOR.

Remove abieber@ as MAINTAINER at his request.

ok jca@ abieber@ juanfra@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/05 23:46:37

Modified files:
	usr.bin/ssh    : auth.c match.c servconf.c 

Log message:
Validate address ranges for AllowUser/DenyUsers at configuration load
time and refuse to accept bad ones. It was previously possible to
specify invalid CIDR address ranges (e.g. djm@127.1.2.3/55) and these
would always match.

Thanks to Laurence Parry for a detailed bug report. ok markus (for
a previous diff version)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/06 00:53:05

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

Log message:
Update to libconfuse-3.0

Tweaked diff from Davide Gerhard.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/06 00:53:32

Modified files:
	www/py-beautifulsoup4: Makefile distinfo 

Log message:
Update to py-beautifulsoup4 4.5.1

ok danj@, frantisek holop (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/06 00:54:54

Modified files:
	x11/tilda      : Makefile distinfo 
	x11/tilda/patches: patch-src-tilda_c 
	x11/tilda/pkg  : PLIST 
Removed files:
	x11/tilda/patches: patch-Makefile_in patch-src_key_grabber_c 
	                   patch-src_tomboykeybinder_h 
	                   patch-src_wizard_c 

Log message:
Update to tilda-1.3.3

Tweaked diff from Davide Gerhard.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/06 00:54:57

Modified files:
	textproc/py-sphinx: Makefile distinfo 
	textproc/py-sphinx/pkg: PLIST 

Log message:
Update to py-sphinx 1.4.8

ok danj@, frantisek holop (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/06 01:31:09

Modified files:
	devel/py-codestyle: Makefile distinfo 

Log message:
Update to py-codestyle 2.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/06 01:33:10

Modified files:
	devel/flake8   : Makefile 
	devel/flake8/patches: patch-setup_py 

Log message:
Unbreak after update py-codestyle


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 01:33:47

Modified files:
	lib/libcrypto/man: bn.3 

Log message:
add an .Xr that was missing


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 02:17:47

Modified files:
	app/xenodm/include: dm.h 
	app/xenodm/xenodm: auth.c dm.c file.c server.c 

Log message:
Remove the displayType member of struct display.

xenodm only manages Local Permanent FromFile X servers.
No need to keep the checks for that.
For now the Xservers file keeps the location field, but ignores its


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 02:24:27

Modified files:
	app/xenodm/man : xenodm.man 

Log message:
Remove more mentions of remote and foreign X servers


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 02:26:48

Modified files:
	app/xenodm/greeter: greet.c verify.c 
	app/xenodm/include: dm.h greet.h 
	app/xenodm/man : xenodm.man 
	app/xenodm/xenodm: resource.c session.c 

Log message:
Add an autologin mode to xenodm.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/11/06 02:28:25

Modified files:
	lib/libcrypto/x509: x509_vpm.c 

Log message:
use the correct function for free
ok beck@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 02:32:15

Modified files:
	app/xenodm/xenodm: auth.c 

Log message:
Remove special handling of Kerberos auth that will never happen.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/11/06 02:44:51

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
remove unused variable


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 02:45:34

Modified files:
	app/xenodm/man : xenodm.man 

Log message:
Remove display class from Xserver examples.
They are of little interest in xenodm.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/06 02:58:16

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

Log message:
dont issue sas config page requests against raid targets.

doing requests like that causes lockups on boot.

reported by and this fix test by simon mages


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 03:07:40

Modified files:
	app/xenodm/xenodm: dm.c 

Log message:
Remove a server reset that was there for compatilibity with "old" servers


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/06 03:16:10

Modified files:
	graphics/babl  : Makefile distinfo 

Log message:
Update to babl-0.1.20.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/06 03:16:21

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

Log message:
Update to gegl03-0.3.10.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 03:17:38

Modified files:
	app/xenodm/greeter: verify.c 
	app/xenodm/xenodm: session.c 

Log message:
Remove useless endpwent() calls


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 03:17:49

Modified files:
	lib/libcrypto/x509: x509_vpm.c 

Log message:
Commit a reminder that the default is not the default. This needs to
be revisited.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/06 03:20:33

Modified files:
	sys/arch/loongson/conf: files.loongson 
	sys/arch/loongson/include: intr.h 
Added files:
	sys/arch/loongson/include: loongson3.h 
	sys/arch/loongson/loongson: loongson3_intr.c 
	sys/arch/mips64/include: loongson3.h 

Log message:
Add interrupt handling routines for Loongson 3A.

Feedback from miod@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 03:21:29

Modified files:
	app/xenodm/greeter: verify.c 

Log message:
Check strdup return value


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 03:31:34

Modified files:
	lib/libcrypto/x509: x509_trs.c 

Log message:
The upcoming x509 alt chains diff tightens the trust requirements
for certificates. This (from OpenSSL) ensures that the current
"default" behaviour remains the same.  We should revisit this
later
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 03:37:38

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
Rework X509_verify_cert to support alt chains on certificate verification,
via boringssl.
ok jsing@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/11/06 03:45:17

Modified files:
	lib/libcrypto/curve25519: curve25519.c 

Log message:
adjust guards to elide unused Bi array

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 03:49:38

Modified files:
	usr.sbin/httpd : config.c httpd.conf.5 httpd.h parse.y server.c 

Log message:
Add OCSP stapling support to httpd
ok jsing@ bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/06 04:27:04

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

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 04:29:33

Modified files:
	lib/libcrypto/curve25519: curve25519.c 

Log message:
Avoid compiling in an unused function.

Spotted by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2016/11/06 04:56:43

Modified files:
	regress/usr.bin/openssl: Makefile README 
Added files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Add regress test script for openssl command.
ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 04:58:14

Modified files:
	lib/libssl     : s3_lib.c ssl_ciph.c 

Log message:
unifdef -m -UOPENSSL_NO_CHACHA -UOPENSSL_NO_POLY1305

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 05:08:32

Modified files:
	lib/libssl     : s3_lib.c ssl_algs.c ssl_ciph.c 

Log message:
Remove the single IDEA cipher suite. There is no good reason to support
this.

ok beck@ bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/06 05:16:14

Modified files:
	distrib/sets   : makeetcset 

Log message:
Pass -peam to pax(1), so ownership and permissions that were set by
etc/Makefile during 'make distribution-etc-root-var' are explicitly
honored on the build machine.

ok rpe


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/06 05:32:16

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 

Log message:
update to specinfra-2.66.0


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/06 05:33:30

Modified files:
	usr.sbin/makefs: ffs.c ffs.h 

Log message:
Remove unused fields from ffs_opt_t.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 05:41:24

Modified files:
	app/xenodm/greeter: greet.c 
	app/xenodm/include: greet.h 
	app/xenodm/xenodm: session.c 

Log message:
GreetUser() doen't need to return the X display pointer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/06 05:43:33

Modified files:
	x11/gtksourceview3: Makefile distinfo 

Log message:
update to gtksourceview3-3.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/06 05:48:11

Modified files:
	textproc/gspell: Makefile distinfo 
	textproc/gspell/pkg: PLIST 

Log message:
Update to gspell-1.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/06 05:56:02

Modified files:
	x11/gnome/orca : Makefile 

Log message:
Missing dependency on multimedia/gstreamer1/plugins-good.

reported by l dot nardou at wanadoo dot fr


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 05:56:31

Modified files:
	app/xenodm/xenodm: file.c 

Log message:
Rework the Xservers parsing code to correctly reject
non local display types.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/06 05:58:02

Modified files:
	sys/dev/usb    : if_atu.c if_cue.c if_mos.c if_otus.c if_ral.c 
	                 if_uath.c if_upgt.c if_upl.c if_url.c uberry.c 
	                 udl.c udsbr.c uipaq.c uow.c usps.c 

Log message:
Avoid calling usbd_set_config_no() in *_attach() and let the stack do
it instead.

If anything bad happen due to a malformed descriptor it makes no sense
to try to attach a driver, and bail before probing.

This is similar to the change to avoid calling usbd_set_config_index().


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/06 06:09:50

Modified files:
	www/qutebrowser: Makefile distinfo 
	www/qutebrowser/pkg: PLIST 

Log message:
update to qutebrowser-0.8.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 06:09:55

Modified files:
	regress/lib/libssl/client: clienttest.c 

Log message:
Update regress for IDEA cipher suite removal.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 06:11:40

Modified files:
	lib/libssl     : s3_lib.c 

Log message:
Adjust cipher suite strengths - move MD5 to LOW, RC4 to LOW and 3DES to
MEDIUM.

ok beck@ bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 06:16:50

Modified files:
	usr.bin/ftp    : main.c 

Log message:
Bump ftp(1)'s cipher default from "all" to "legacy" - this really should
be "compat", but that will require further testing.

ok beck@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 06:30:15

Modified files:
	app/xenodm/greeter: greet.c 

Log message:
Use explicit_bzero(). With BSD auth these data have already been
wiped when we reach those points but just in case.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 06:33:30

Modified files:
	usr.bin/nc     : nc.1 netcat.c 

Log message:
rename tlslegacy to tlsall, and better describe what it does.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 06:35:32

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Split out the DHE and ECDHE code paths from
ssl3_send_server_key_exchange().

ok beck@ bcook@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 06:37:28

Modified files:
	app/xenodm/include: dm.h 

Log message:
Good bye <setjmp.h> and associated definitions.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 06:40:33

Modified files:
	app/xenodm/include: dm.h 

Log message:
The SIGFUNC type definition is unused now


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/06 06:42:57

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

Log message:
Update to py-terminado 0.6. Add py3 flavor and take maintainership.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/06 06:45:26

Modified files:
	www            : Makefile 

Log message:
+py-terminado,python3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 06:48:48

Modified files:
	app/xenodm/include: dm.h 

Log message:
Remove a number of unused prototypes


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/06 07:00:37

Modified files:
	app/xenodm/include: dm.h 
	app/xenodm/xenodm: auth.c 

Log message:
More unused code, when xdm-authorization is not used.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/11/06 07:00:49

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

Log message:
simplify error handling in c2i_ASN1_OBJECT

ok beck@, miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/06 07:40:37

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

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 07:44:35

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Remove pointless check - without fixed ECDH, there is only one way to reach
this code path.

ok beck@ bcook@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 07:53:02

Modified files:
	infrastructure/bin: portbump 

Log message:
Tweak the RE used to parse make dump-vars output.

This fixes the annoying problem with REVISIONs not being added for ports
that have default FLAVOR other than "" (empty one).

Brought to my eyes by jeremy@, initial ideas from him and afresh1@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 07:53:55

Modified files:
	tests/portbump : t4.sample 

Log message:
Sync expected test output with source Makefile after CONFIGURE_SHARED removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 07:55:23

ports/tests/portbump/t8

Update of /cvs/ports/tests/portbump/t8
In directory cvs.openbsd.org:/tmp/cvs-serv16164/t8

Log Message:
Directory /cvs/ports/tests/portbump/t8 added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 07:55:27

ports/tests/portbump/t9

Update of /cvs/ports/tests/portbump/t9
In directory cvs.openbsd.org:/tmp/cvs-serv33351/t9

Log Message:
Directory /cvs/ports/tests/portbump/t9 added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 07:59:15

Added files:
	tests/portbump : t8.sample t9.sample 
	tests/portbump/t8: Makefile Makefile.inc 
	tests/portbump/t9: Makefile 

Log message:
Two more portbump tests.

The t8 currently fails on "-c++" subpackage name.

The t9 is for recently fixed issue with subpackage name in dump-vars output.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 07:59:28

Modified files:
	tests/portbump : Makefile 

Log message:
Hook up t8 and t9 tests for portbump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 08:02:02

Modified files:
	tests/portbump : t1.sample 

Log message:
One more CONFIGURE_SHARED in sample test output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 08:06:52

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Split ssl3_get_client_key_exchange() into separate per algorithm functions.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 08:27:36

Modified files:
	lib/libcrypto/man: rsa.3 

Log message:
delete prototypes available in other pages and add two missing .Xr links


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 08:44:00

Modified files:
	lib/libcrypto/man: dsa.3 

Log message:
delete prototypes available in other pages and add three missing .Xr links


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 08:50:47

Modified files:
	usr.sbin/httpd : parse.y 

Log message:
since ocsp stapling is optional, make sure we guard if we do not have it.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/06 08:52:50

Modified files:
	lib/libcrypto/man: ASN1_OBJECT_new.3 ASN1_STRING_length.3 
	                   ASN1_STRING_new.3 ASN1_STRING_print_ex.3 
	                   ASN1_generate_nconf.3 BF_set_key.3 BIO.3 
	                   BIO_ctrl.3 BIO_f_base64.3 BIO_f_cipher.3 
	                   BIO_f_md.3 BIO_f_null.3 BIO_find_type.3 
	                   BIO_new.3 BIO_push.3 BIO_read.3 
	                   BIO_s_accept.3 BIO_s_bio.3 BIO_s_connect.3 
	                   BIO_s_fd.3 BIO_s_file.3 BIO_s_mem.3 
	                   BIO_s_null.3 BIO_s_socket.3 
	                   BIO_set_callback.3 BIO_should_retry.3 
	                   BN_BLINDING_new.3 BN_CTX_new.3 BN_CTX_start.3 
	                   BN_add.3 BN_add_word.3 BN_bn2bin.3 BN_cmp.3 
	                   BN_copy.3 BN_generate_prime.3 
	                   BN_mod_inverse.3 BN_mod_mul_montgomery.3 
	                   BN_mod_mul_reciprocal.3 BN_new.3 
	                   BN_num_bytes.3 BN_rand.3 BN_set_bit.3 
	                   BN_swap.3 BN_zero.3 BUF_MEM_new.3 
	                   CONF_modules_free.3 CONF_modules_load_file.3 
	                   CRYPTO_set_ex_data.3 
	                   CRYPTO_set_locking_callback.3 DES_set_key.3 
	                   DH_generate_key.3 DH_generate_parameters.3 
	                   DH_get_ex_new_index.3 DH_new.3 
	                   DH_set_method.3 DH_size.3 DSA_SIG_new.3 
	                   DSA_do_sign.3 DSA_dup_DH.3 DSA_generate_key.3 
	                   DSA_generate_parameters.3 
	                   DSA_get_ex_new_index.3 DSA_new.3 
	                   DSA_set_method.3 DSA_sign.3 DSA_size.3 
	                   ECDSA_SIG_new.3 EC_GFp_simple_method.3 
	                   EC_GROUP_copy.3 EC_GROUP_new.3 EC_KEY_new.3 
	                   EC_POINT_add.3 EC_POINT_new.3 ERR.3 
	                   ERR_GET_LIB.3 ERR_clear_error.3 
	                   ERR_error_string.3 ERR_get_error.3 
	                   ERR_load_crypto_strings.3 ERR_load_strings.3 
	                   ERR_print_errors.3 ERR_put_error.3 
	                   ERR_remove_state.3 ERR_set_mark.3 
	                   EVP_BytesToKey.3 EVP_DigestInit.3 
	                   EVP_DigestSignInit.3 EVP_DigestVerifyInit.3 
	                   EVP_EncryptInit.3 EVP_OpenInit.3 
	                   EVP_PKEY_CTX_ctrl.3 EVP_PKEY_CTX_new.3 
	                   EVP_PKEY_cmp.3 EVP_PKEY_decrypt.3 
	                   EVP_PKEY_derive.3 EVP_PKEY_encrypt.3 
	                   EVP_PKEY_get_default_digest.3 
	                   EVP_PKEY_keygen.3 EVP_PKEY_new.3 
	                   EVP_PKEY_print_private.3 EVP_PKEY_set1_RSA.3 
	                   EVP_PKEY_sign.3 EVP_PKEY_verify.3 
	                   EVP_PKEY_verify_recover.3 EVP_SealInit.3 
	                   EVP_SignInit.3 EVP_VerifyInit.3 HMAC.3 MD5.3 
	                   OBJ_nid2obj.3 OPENSSL_VERSION_NUMBER.3 
	                   OPENSSL_config.3 
	                   OPENSSL_load_builtin_modules.3 
	                   OpenSSL_add_all_algorithms.3 
	                   PEM_read_bio_PrivateKey.3 
	                   PEM_write_bio_PKCS7_stream.3 PKCS12_create.3 
	                   PKCS12_parse.3 PKCS5_PBKDF2_HMAC.3 
	                   PKCS7_decrypt.3 PKCS7_encrypt.3 PKCS7_sign.3 
	                   PKCS7_sign_add_signer.3 PKCS7_verify.3 
	                   RAND_add.3 RAND_bytes.3 RAND_cleanup.3 
	                   RAND_load_file.3 RAND_set_rand_method.3 RC4.3 
	                   RIPEMD160.3 RSA_blinding_on.3 RSA_check_key.3 
	                   RSA_generate_key.3 RSA_get_ex_new_index.3 
	                   RSA_new.3 RSA_padding_add_PKCS1_type_1.3 
	                   RSA_print.3 RSA_private_encrypt.3 
	                   RSA_public_encrypt.3 RSA_set_method.3 
	                   RSA_sign.3 RSA_sign_ASN1_OCTET_STRING.3 
	                   RSA_size.3 SHA1.3 SMIME_read_PKCS7.3 
	                   SMIME_write_PKCS7.3 UI_new.3 
	                   X509_NAME_ENTRY_get_object.3 
	                   X509_NAME_add_entry_by_txt.3 
	                   X509_NAME_get_index_by_NID.3 
	                   X509_NAME_print_ex.3 
	                   X509_STORE_CTX_get_error.3 
	                   X509_STORE_CTX_get_ex_new_index.3 
	                   X509_STORE_CTX_new.3 
	                   X509_STORE_CTX_set_verify_cb.3 
	                   X509_STORE_set_verify_cb_func.3 
	                   X509_VERIFY_PARAM_set_flags.3 X509_new.3 
	                   X509_verify_cert.3 bn.3 crypto.3 
	                   d2i_ASN1_OBJECT.3 d2i_DHparams.3 
	                   d2i_DSAPublicKey.3 d2i_ECPKParameters.3 
	                   d2i_PKCS8PrivateKey_bio.3 d2i_RSAPublicKey.3 
	                   d2i_X509.3 d2i_X509_ALGOR.3 d2i_X509_CRL.3 
	                   d2i_X509_NAME.3 d2i_X509_REQ.3 d2i_X509_SIG.3 
	                   des_read_pw.3 dh.3 dsa.3 ec.3 engine.3 evp.3 
	                   i2d_PKCS7_bio_stream.3 lh_new.3 lh_stats.3 
	                   rsa.3 x509.3 

Log message:
first pass; ok schwarze


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 08:57:38

Modified files:
	lib/libcrypto/man: EC_KEY_new.3 d2i_ECPKParameters.3 dh.3 ec.3 

Log message:
delete prototypes available in other pages and add two missing .Xr links


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/06 09:04:21

Modified files:
	sys/arch/amd64/stand: Makefile.inc 
	sys/arch/hppa/stand: Makefile.inc 
	sys/arch/i386/stand: Makefile.inc 
	sys/arch/landisk/stand: Makefile.inc 
	sys/arch/macppc/stand: Makefile.inc 
	sys/arch/sgi/stand/boot: Makefile 
	sys/arch/sgi/stand/libsa: Makefile 
	sys/arch/sparc64/stand/bootblk: Makefile 
	sys/arch/sparc64/stand/libsa: Makefile 
	sys/arch/sparc64/stand/ofwboot: Makefile 

Log message:
Do not create machine@ symlinks in obj as root during includes:, but
defer their creation to later, so that they are owned by BUILDUSER.
This eliminates the last root-owned files in obj/ from 'make build'.
In addition, place a MACHINE == hppa test in hppa/stand/Makefile.inc
to avoid creating bogus symlinks on all other archs.

joint work with & ok natano, "let's try it" deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 09:05:02

Modified files:
	usr.sbin/httpd : server.c 

Log message:
conditionalize ocsp load properly
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 09:12:53

Modified files:
	lib/libcrypto/man: ERR.3 

Log message:
delete prototypes available in other pages and add a missing .Xr link


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 09:14:32

Modified files:
	infrastructure/bin: portbump 

Log message:
Add copyright & license; missing since initial import in 2014.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/06 09:36:08

Modified files:
	graphics/py3-cairo: Makefile 
	graphics/py3-cairo/pkg: PLIST 

Log message:
- fix license
- fix .pyc file
- simplify test (without install package)
- refresh WANTLIB
- kill the gettext module
- regen PLIST, _cairo.a and _cairo.la (already commented out) aren't
installed any more

ok and tweaks jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/06 09:42:00

Modified files:
	sys/arch/armv7/stand/efiboot: Makefile 
	sys/arch/loongson/stand/boot: Makefile.inc 
	sys/arch/loongson/stand/libsa: Makefile 
	sys/arch/luna88k/stand/boot: Makefile 
	sys/arch/octeon/stand/boot: Makefile.inc 
	sys/arch/octeon/stand/libsa: Makefile 
	sys/arch/socppc/stand/boot: Makefile 

Log message:
Do not create machine@ symlinks in obj as root during includes:, but
defer their creation to later, so that they are owned by BUILDUSER.
This eliminates the last root-owned files in obj/ from 'make build'.
In addition, place a MACHINE == hppa test in hppa/stand/Makefile.inc
to avoid creating bogus symlinks on all other archs.

joint work with & ok natano, "let's try it" deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 09:43:53

Modified files:
	lib/libcrypto/man: BIO_s_fd.3 BIO_s_socket.3 

Log message:
document BIO_set_fd() and BIO_get_fd() in one manual page, not in two;
general direction discussed yesterday with bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 09:49:02

Modified files:
	lib/libcrypto/man: engine.3 

Log message:
document ENGINE_add_conf_module(3) in one page, not in two


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/06 09:54:58

Modified files:
	lib/libcrypto/man: EC_KEY_new.3 d2i_ECPKParameters.3 

Log message:
spacing between macro args and punctuation;


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/06 09:55:16

Modified files:
	lib/libtls     : tls_server.c 

Log message:
Set the callback on the correct ssl_ctx for the SNI case, instead of
the master only.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/06 09:56:46

Modified files:
	lib/libcrypto/man: ASN1_OBJECT_new.3 ASN1_STRING_length.3 
	                   ASN1_STRING_new.3 ASN1_STRING_print_ex.3 
	                   ASN1_generate_nconf.3 

Log message:
some minor cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/06 09:58:08

Modified files:
	lib/libcrypto/man: EVP_PKEY_CTX_ctrl.3 
	                   EVP_PKEY_get_default_digest.3 

Log message:
document EVP_PKEY_get_default_digest_nid(3) in one page, not in two


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2016/11/06 10:04:48

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

Log message:
don't dereference a if NULL


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/06 10:21:04

Modified files:
	lib/libssl     : s3_cbc.c ssl_locl.h t1_enc.c 

Log message:
Remove unused SSLv3 from ssl3_cbc_record_digest_supported().

From Markus Uhlin <markus.uhlin at bredband dot net>

ok beck@ bcooK@


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2016/11/06 10:24:19

Modified files:
	libressl       : index.html releases.html 

Log message:
update for 2.4.4, 2.3.9


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/06 10:25:25

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.socppc md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/06 10:28:06

Modified files:
	lib/libcrypto/man: engine.3 

Log message:
sort SEE ALSO;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/06 11:07:54

Modified files:
	graphics/py3-cairo: Makefile 

Log message:
No need to depend on gettext, pointed out by ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 11:11:40

Modified files:
	infrastructure/bin: portbump 

Log message:
Print actual error text on die(), makes debugging a bit easier.

This diff rotted in a tree of one slacker for quiet a few months.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 11:26:04

Modified files:
	infrastructure/bin: portbump 

Log message:
Polish variable name parsing REs a bit: make them look similar, and allow '+'.

Makes tests/portbump/t8 progress a bit; now it fails due some inconsistent
REVISION handling.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/06 11:54:34

Modified files:
	lib/libcrypto/man: BF_set_key.3 

Log message:
some cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/11/06 12:12:58

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Rework the cleanup trap handling using the EXIT trap;

trap 'cleanup; goes; here' EXIT
trap exit HUP INT TERM ERR FOO BAR BAZ

This makes sure the cleanup is always done (unless we exec), and
preserves the exit code, such as SIGINT => 130.

Also trap less signals. Special signals are special.

tested and OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/06 13:51:35

Modified files:
	devel          : Makefile 
Removed files:
	devel/eclipse  : Makefile 
	devel/eclipse/plugins: Makefile Makefile.inc 
	devel/eclipse/plugins/emf: Makefile distinfo 
	devel/eclipse/plugins/emf/pkg: DESCR PLIST 
	devel/eclipse/plugins/epic: Makefile distinfo 
	devel/eclipse/plugins/epic/pkg: DESCR PLIST 
	devel/eclipse/plugins/findbugs: Makefile distinfo 
	devel/eclipse/plugins/findbugs/pkg: DESCR PLIST 
	devel/eclipse/plugins/gef: Makefile distinfo 
	devel/eclipse/plugins/gef/pkg: DESCR PLIST 
	devel/eclipse/plugins/ivyde: Makefile distinfo 
	devel/eclipse/plugins/ivyde/pkg: DESCR PLIST 
	devel/eclipse/plugins/py-dev: Makefile distinfo 
	devel/eclipse/plugins/py-dev/pkg: DESCR MESSAGE PLIST 
	devel/eclipse/plugins/rdt: Makefile distinfo 
	devel/eclipse/plugins/rdt/pkg: DESCR PLIST 
	devel/eclipse/plugins/struts-console: Makefile distinfo 
	devel/eclipse/plugins/struts-console/pkg: DESCR PLIST 
	devel/eclipse/plugins/subclipse: Makefile distinfo 
	devel/eclipse/plugins/subclipse/pkg: DESCR PLIST 
	devel/eclipse/plugins/uml2: Makefile distinfo 
	devel/eclipse/plugins/uml2/pkg: DESCR PLIST 
	devel/eclipse/plugins/wtp: Makefile distinfo 
	devel/eclipse/plugins/wtp/pkg: DESCR PLIST 
	devel/eclipse/sdk: Makefile distinfo 
	devel/eclipse/sdk/files: eclipse.desktop prepatch.sh 
	devel/eclipse/sdk/patches: patch-142api_package-list 
	                           patch-15api_package-list patch-build 
	                           patch-build_xml patch-eclipse_in 
	                           patch-features_org_eclipse_jdt_build_xml 
	                           patch-features_org_eclipse_jdt_source_build_xml 
	                           patch-features_org_eclipse_pde_build_xml 
	                           patch-features_org_eclipse_pde_source_build_xml 
	                           patch-features_org_eclipse_platform_build_xml 
	                           patch-features_org_eclipse_platform_launchers_customBuildCallbacks_xml 
	                           patch-features_org_eclipse_platform_launchers_library_eclipseMozilla_c 
	                           patch-features_org_eclipse_platform_launchers_library_eclipseShm_c 
	                           patch-features_org_eclipse_platform_launchers_library_gtk_build_sh 
	                           patch-features_org_eclipse_platform_launchers_library_gtk_make_openbsd_mak 
	                           patch-features_org_eclipse_platform_launchers_target_build_properties 
	                           patch-features_org_eclipse_platform_launchers_target_build_xml 
	                           patch-features_org_eclipse_platform_source_build_xml 
	                           patch-features_org_eclipse_platform_source_feature_xml 
	                           patch-features_org_eclipse_rcp_build_xml 
	                           patch-features_org_eclipse_rcp_source_build_xml 
	                           patch-features_org_eclipse_sdk_build_xml 
	                           patch-jdtcoresrc_compilejdtcore_xml 
	                           patch-jdtcoresrc_compilejdtcorewithjavac_xml 
	                           patch-plugins_org_eclipse_core_resources_build_xml 
	                           patch-plugins_org_eclipse_core_resources_component_xml 
	                           patch-plugins_org_eclipse_core_resources_javaCompiler___args 
	                           patch-plugins_org_eclipse_core_resources_javaCompiler_ant_tasks_resources-ant_jar_args 
	                           patch-plugins_org_eclipse_jdt_doc_isv_jdtOptions_txt 
	                           patch-plugins_org_eclipse_jdt_doc_isv_jdtaptOptions_txt 
	                           patch-plugins_org_eclipse_osgi_JavaSE-1_7_profile 
	                           patch-plugins_org_eclipse_osgi_profile_list 
	                           patch-plugins_org_eclipse_pde_doc_user_buildDoc_xml 
	                           patch-plugins_org_eclipse_pde_doc_user_pdeOptions 
	                           patch-plugins_org_eclipse_platform_doc_isv_buildDoc_xml 
	                           patch-plugins_org_eclipse_platform_doc_isv_platformOptions_txt 
	                           patch-plugins_org_eclipse_platform_source_openbsd_gtk_x86_64_build_xml 
	                           patch-plugins_org_eclipse_platform_source_openbsd_gtk_x86_build_xml 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_Mozilla_common_library_xpcom_cpp 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_Mozilla_common_library_xpcom_h 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_Mozilla_common_library_xpcom_profile_h 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_Mozilla_common_library_xpcom_stats_cpp 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_Mozilla_common_library_xpcom_stats_h 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_Mozilla_common_org_eclipse_swt_internal_mozilla_XPCOM_java 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_Mozilla_gtk_org_eclipse_swt_browser_Browser_java 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_PI_gtk_library_build_sh 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_PI_gtk_library_build_xml 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_PI_gtk_library_make_openbsd_mak 
	                           patch-plugins_org_eclipse_swt_Eclipse_SWT_PI_gtk_library_os_custom_h 
	                           patch-plugins_org_eclipse_swt_gtk_linux_ia64_build_xml 
	                           patch-plugins_org_eclipse_swt_gtk_linux_x86_64_build_xml 
	                           patch-plugins_org_eclipse_swt_gtk_openbsd_x86_64_build_xml 
	                           patch-plugins_org_eclipse_swt_gtk_openbsd_x86_build_xml 
	                           patch-plugins_org_eclipse_update_core_openbsd_build_xml 
	                           patch-plugins_org_eclipse_update_core_openbsd_src_build_xml 
	                           patch-plugins_org_eclipse_update_core_openbsd_src_update_c 
	                           patch-r4_package-list 
	                           patch-too_long_XPCOM_PROFILE_properties 
	                           patch-too_long_XPCOM_properties 
	devel/eclipse/sdk/pkg: DESCR-gnome DESCR-main DESCR-swt 
	                       PLIST-gnome PLIST-main PLIST-swt 

Log message:
Retire devel/eclipse, 3.2.2 is from 2007, and probably doesn't cope well
with 'modern java' we have now. Oh, and it also depends on ruby/1.8.

It might come back as there's a 4.2.2 port in openbsd-wip, but it isn't
from 2013 and not finished yet.

If you need a fullblown java IDE, there's intellij (maintained) and
netbeans (updated in 2010, but pending work by rafael sadowski ?).

'light the torch' ian@ & agreed by kili@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/06 14:24:00

Modified files:
	sysutils/ruby-shadow: Makefile 
	sysutils/ruby-shadow/pkg: PLIST 

Log message:
Remove extension source files and extension directories from PLIST,
fixes packaging.

Noticed by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 14:24:35

Modified files:
	infrastructure/bin: portbump 

Log message:
Finally fix the tests/portbump/t8.

We now force the place for new revisions to be after REVISION mark,
if it exists. This way we don't get extra (and wrong!) REVISION-foo=0
in updated port Makefile.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/06 14:25:19

Modified files:
	devel/ruby-yajl: Makefile distinfo 
	devel/ruby-yajl/pkg: PLIST 

Log message:
Update to yajl 1.3.0

Fix tests and remove extension source files.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 14:36:54

Modified files:
	infrastructure/bin: portbump 

Log message:
Oops, that change in flavor-removing RE was wrong.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/11/06 14:37:55

Modified files:
	infrastructure/bin: portbump 

Log message:
whitespace nit


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/06 14:48:38

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add quirks entries for eclipse removal


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/06 14:54:35

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Set ac_cv_path_ax_enable_builddir_sed=/usr/bin/sed in CONFIGURE_ENV,
should prevent a build failure experienced by naddy@. libffi's configure
checks for gsed, picks it up if found, and libffi's libtool (ugh) would
fail at runtime if dpb had junked gsed..

Looking why libffi's build system doesnt respect USE_LIBTOOL will
hopefully happen later. Or switch to system libffi, since it has been
updated...


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2016/11/06 15:42:59

Modified files:
	security/clusterssh: Makefile distinfo 

Log message:
maintenance update to 4.08


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/06 17:26:33

Modified files:
	sys/sys        : proc.h selinfo.h sysctl.h 
	sys/kern       : exec_elf.c init_main.c kern_exit.c kern_fork.c 
	                 kern_kthread.c kern_ktrace.c kern_proc.c 
	                 kern_prot.c kern_sysctl.c sys_generic.c 
	                 sys_process.c vfs_lockf.c 
	sys/ufs/ffs    : ffs_softdep.c 
	sys/ufs/mfs    : mfs_vfsops.c mfs_vnops.c mfsnode.h 
	sys/uvm        : uvm_map.c uvm_page.c uvm_page.h 
	sys/arch/sparc64/sparc64: db_interface.c 
	sys/dev/pci/drm: drm_irq.c 
	sys/dev/wscons : wsdisplay.c 
	lib/libkvm     : kvm_file2.c kvm_proc.c kvm_proc2.c 

Log message:
Split PID from TID, giving processes a PID unrelated to the TID of their
initial thread

ok jsing@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/06 19:50:33

Modified files:
	sys/sys        : proc.h 

Log message:
Fix typo in comment


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/06 20:30:58

Modified files:
	sys/arch/alpha/include: ptrace.h 

Log message:
Hide FIX_SSTEP() behind #ifdef _KERNEL

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/07 01:38:41

Modified files:
	lang/fsharp    : Makefile 
	devel/mono-addins: Makefile 

Log message:
mark BROKEN-i386 (though maybe they're broken everywhere)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/07 01:41:34

Modified files:
	security/libewf: Makefile 

Log message:
don't let libewf pick up libuuid


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 01:47:57

Modified files:
	productivity/tryton/proteus: Makefile distinfo 

Log message:
Update to proteus-3.2.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 01:48:50

Modified files:
	productivity/tryton/stock: Makefile distinfo 

Log message:
Update to trytond-module-stock-3.2.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 01:49:48

Modified files:
	productivity/tryton/tryton: Makefile distinfo 

Log message:
Update to tryton-3.2.19.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/07 02:08:06

Modified files:
	sys/netinet    : tcp_input.c tcp_timer.c 

Log message:
Use goto for consistently instead of splx() and return.

This will allow to have a single lock/unlock dance per timer.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/07 02:19:46

Modified files:
	sys/netinet    : if_ether.c 
	sys/netinet6   : nd6.c 

Log message:
ARP and NDP timeouts mess with the routing table, so they need a process
context.

Convert them to timeout_set_proc(9).


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/07 02:46:29

Modified files:
	x11/qt4        : Makefile 
	x11/qt4/patches: patch-src_dbus_qdbusintegrator_cpp 
	                 patch-src_gui_dialogs_qprintdialog_unix_cpp 
	                 patch-src_gui_painting_qprinter_cpp 
	                 patch-src_tools_moc_main_cpp 

Log message:
$ file /usr/local/lib/qt4/bin/{findtr,syncqt}
/usr/local/lib/qt4/bin/findtr: a /usr/bin/perl -w script text executable
/usr/local/lib/qt4/bin/syncqt: a /usr/bin/perl -w script text executable

These are both perl scripts, so use INSTALL_SCRIPT instead of
INSTALL_PROGRAM.

While here: qt-project.org -> qt.io in some comments.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/07 03:04:57

Modified files:
	sys/net        : pfkey.c 

Log message:
Kill duplicated declarations.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/07 03:36:50

Modified files:
	lang/fsharp    : Makefile 
	devel/mono-addins: Makefile 

Log message:
ajacoutot confirms these are broken everywhere


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 03:38:25

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 03:38:45

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 03:39:02

Modified files:
	mail/evolution-ews: Makefile distinfo 

Log message:
Update to evolution-ews-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 03:44:15

Modified files:
	x11/gnome/color-manager: Makefile distinfo 

Log message:
Update to gnome-color-manager-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/07 03:51:36

Modified files:
	editors/abiword: Makefile 
	audio/ario     : Makefile 
	www/aria2      : Makefile 
	games/armagetronad: Makefile 
	mail/bogofilter: Makefile 
	textproc/clo++ : Makefile 
	mail/claws-mail: Makefile 
	sysutils/collectd: Makefile 
	security/cyrus-sasl2: Makefile 
	graphics/delaboratory: Makefile 
	net/dnscrypt-proxy: Makefile 
	multimedia/dvdauthor: Makefile 
	x11/dzen2      : Makefile 
	databases/evolution-data-server: Makefile 

Log message:
sync WANTLIB (readding idn to some where I was overzealous, plus some lzma/pthread)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 03:53:39

Modified files:
	x11/gnome/power-manager: Makefile distinfo 

Log message:
Update to gnome-power-manager-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 04:23:49

Modified files:
	x11/mono-gtk2  : Makefile distinfo 
Removed files:
	x11/mono-gtk2/patches: patch-glib_glue_thread_c 

Log message:
Update to mono-gtk2-2.12.42.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/07 04:42:55

Modified files:
	lang/luajit    : Makefile 

Log message:
bump REVISION after previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 04:52:25

Modified files:
	lang/mono      : Makefile 
Removed files:
	lang/mono/patches: patch-libgc_misc_c 
	                   patch-libgc_pthread_support_c 

Log message:
Fix DLLMAP_FILES, some files have moved.
Drop heap limit patches which never helped anything.
Set ac_cv_header_pthread_np_h=yes.

ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 06:13:30

Modified files:
	x11/gnome/gvfs : Makefile distinfo 

Log message:
Update to gvfs-1.30.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/07 06:15:19

Modified files:
	sys/net        : switchofp.c 

Log message:
Change swofp_flow_entry_put_instructions() parameters to be like the other
validations functions so it can returns errors with code 0. While here
fix some minor details: memory leak on duplicated instructions, remove
unused goto label, fix some whitespace/tab issues.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/07 06:18:18

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Fix a small parsing error in packet-in: don't count ofp_match header bytes
when iterating over the OXMs. It only works because the last bytes are
either padding or something that looks like OXM.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/07 06:21:55

Modified files:
	sys/net        : switchofp.c 

Log message:
Remove duplicated call for splnet() inside the swofp_mp_recv_port_stats()
and swofp_mp_recv_port_desc(). We already have splnet() before calling
swofp_input().

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/07 06:27:11

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Implement support for flow-mod messages validation, this includes:
action and instructions validation.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/07 06:42:16

Modified files:
	databases/hs-HDBC-mysql: Makefile distinfo 
	databases/hs-HDBC-mysql/patches: patch-HDBC-mysql_cabal 

Log message:
Update to HDBC-mysql-0.7.1.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/07 08:10:16

Modified files:
	distrib/sets/lists/base: md.loongson 
	distrib/sets/lists/comp: md.loongson 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/07 08:14:24

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.691


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 08:22:38

Modified files:
	lang/mono      : Makefile 
	lang/mono/patches: patch-libgc_dyn_load_c 
	                   patch-libgc_include_private_gc_priv_h 
Removed files:
	lang/mono/patches: patch-configure_ac 

Log message:
Pass --without-sigaltstack instead of patching.
Remove checks for old OpenBSD.

ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/07 08:52:47

Modified files:
	lib/libcrypto/man: BIO.3 BIO_ctrl.3 BIO_f_base64.3 
	                   BIO_f_buffer.3 BIO_f_cipher.3 BIO_f_md.3 
	                   BIO_f_null.3 BIO_find_type.3 BIO_new.3 
	                   BIO_push.3 BIO_read.3 BIO_s_accept.3 
	                   BIO_s_bio.3 BIO_s_connect.3 BIO_s_fd.3 
	                   BIO_s_file.3 BIO_s_mem.3 BIO_s_null.3 
	                   BIO_s_socket.3 BIO_set_callback.3 
	                   BIO_should_retry.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 09:16:50

Modified files:
	x11/gnome/baobab: Makefile distinfo 
	x11/gnome/baobab/pkg: PLIST 

Log message:
Update to baobab-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 09:24:59

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

Log message:
Update to glib2-2.50.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 09:42:08

Modified files:
	lang/python    : python.port.mk 

Log message:
Pass ALL_TEST_ENV, not just MAKE_ENV, to the default target.

ok shadchin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/07 09:49:42

Modified files:
	sys/dev/pv     : hypervic.c hypervicreg.h 

Log message:
Handle IP address information requests

This adds the last required bit of the KVP interface: providing
IP address info back to the Host on request.  Normally the Host
is not specifying the address family and in this case we prefer
to report back the first IPv4 address we can find and resort to
IPv6 only when no IPv4 addresses are configured.

It also appears that the 5th version of the message format is
not publicly documented yet and IP address information request
messages differ from the 4th version so we have to take the
negotiated protocol version down a notch.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/07 10:36:09

Modified files:
	sys/net        : switchofp.c 

Log message:
Add validation for input data that we use as switch configuration, like:
OXM matchs, switch actions and switch instructions. With this validations
we don't have to rely on having a flawless controller and then we don't
need to restrict switch(4) usage with just switchd(8).

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 11:04:05

Modified files:
	x11/gnome/desktop: Makefile distinfo 

Log message:
Update to gnome-desktop-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 11:05:55

Modified files:
	meta/gnome     : Makefile 

Log message:
Welcome GNOME 3.22.2!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/07 11:30:14

Modified files:
	x11/gnome/gucharmap: Makefile distinfo 

Log message:
update to gucharmap-9.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/07 11:31:59

Modified files:
	x11/gnome/aisleriot: Makefile distinfo 

Log message:
Update to aisleriot-3.22.1.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:18:21

xenocara/lib/xcb-util-xrm

Update of /cvs/xenocara/lib/xcb-util-xrm
In directory cvs.openbsd.org:/tmp/cvs-serv32516/xcb-util-xrm

Log Message:
Directory /cvs/xenocara/lib/xcb-util-xrm added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:18:32

xenocara/lib/xcb-util-xrm/include

Update of /cvs/xenocara/lib/xcb-util-xrm/include
In directory cvs.openbsd.org:/tmp/cvs-serv10554/include

Log Message:
Directory /cvs/xenocara/lib/xcb-util-xrm/include added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:18:32

xenocara/lib/xcb-util-xrm/m4

Update of /cvs/xenocara/lib/xcb-util-xrm/m4
In directory cvs.openbsd.org:/tmp/cvs-serv10554/m4

Log Message:
Directory /cvs/xenocara/lib/xcb-util-xrm/m4 added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:18:32

xenocara/lib/xcb-util-xrm/src

Update of /cvs/xenocara/lib/xcb-util-xrm/src
In directory cvs.openbsd.org:/tmp/cvs-serv10554/src

Log Message:
Directory /cvs/xenocara/lib/xcb-util-xrm/src added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:20:36

Added files:
	lib/xcb-util-xrm: COPYING Makefile.am Makefile.bsd-wrapper 
	                  README autogen.sh configure.ac xcb-xrm.pc.in 
	                  xcb_xrm_intro.in 
	lib/xcb-util-xrm/include: database.h entry.h externals.h match.h 
	                          resource.h util.h xcb_xrm.h 
	lib/xcb-util-xrm/m4: ax_compare_version.m4 xcb_util_common.m4 
	                     xcb_util_m4_with_include_path.m4 
	lib/xcb-util-xrm/src: database.c entry.c match.c resource.c 
	                      util.c 

Log message:
add xcb-util-xrm-1.0

ok matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:22:59

Modified files:
	lib/xcb-util-xrm: Makefile.am 

Log message:
remove unneeded bits


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:25:35

Added files:
	lib/xcb-util-xrm: Makefile.in aclocal.m4 config.guess config.sub 
	                  configure depcomp install-sh ltmain.sh missing 
	lib/xcb-util-xrm/m4: libtool.m4 ltoptions.m4 ltsugar.m4 
	                     ltversion.m4 lt~obsolete.m4 

Log message:
add generated autoconf bits


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:31:57

Modified files:
	lib            : Makefile 

Log message:
enter xcb-util-xrm/


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:32:28

Modified files:
	.              : 3RDPARTY 

Log message:
track xcb-util-xrm


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:34:11

Modified files:
	distrib/sets/lists/xbase: mi 
	distrib/sets/lists/xshare: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:46:23

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
update to epiphany-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/07 12:53:41

Modified files:
	audio/gradio   : Makefile 

Log message:
- use intltool module (requires intlize for starters)
- drop BDEP on gettext-tools (pulled in by above)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 13:03:59

Modified files:
	textproc/py-unidecode: Makefile distinfo 
	textproc/py-unidecode/pkg: PLIST 

Log message:
Update to Unidecode-0.04.19 & add python3 FLAVOR

From frantisek holop.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 13:04:58

Modified files:
	textproc       : Makefile 

Log message:
+py-unidecode,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/07 14:26:06

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
Remove fcntl.ph use from DPB::Locks

Replace with a hardcoded constant as Fcntl doesn't provide it.

Fix suggested by espie@ fine with millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/07 14:29:56

Modified files:
	mail/perdition : Makefile distinfo 

Log message:
Update to 2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/07 14:30:42

Modified files:
	lib/libcrypto/curve25519: curve25519_internal.h 

Log message:
Use __{BEGIN,END}_HIDDEN_DECLS to avoid exporting the internal symbols

ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 14:39:58

Modified files:
	audio/libsamplerate: Makefile distinfo 

Log message:
Update to libsamplerate-0.1.9

from maintainer Jan Stary


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/07 14:51:23

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0222


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 14:52:53

Modified files:
	audio/libsndfile: Makefile distinfo 

Log message:
Update to libsndfile-1.0.27

from maintainer Jan Stary


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/07 14:53:42

Modified files:
	devel/p5-Devel-CheckOS: Makefile distinfo 

Log message:
update p5-Devel-CheckOS to 1.79


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/07 15:07:28

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

Log message:
update p5-Test-TrailingSpace to 0.0301


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/07 15:18:22

Modified files:
	libexec/spamd  : spamd.c 

Log message:
Replace bzero(3) with memset(3)

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/07 16:04:55

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

Log message:
- Remove -? since parameters don't make sense for this command (but still keep
default case to have usage() explaining that)
- Replace exit(3) with return to enable SSP


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 16:26:05

Modified files:
	converters/enca: Makefile distinfo 

Log message:
Update to enca-1.19


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 16:31:52

Modified files:
	converters/p5-Unicode-String: Makefile distinfo 

Log message:
Maintenance update to Unicode-String-2.10


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/07 16:45:27

Modified files:
	sys/sys        : pool.h 
	sys/kern       : subr_pool.c 

Log message:
rename some types and functions to make the code easier to read.

pool_item_header is now pool_page_header. the more useful change
is pool_list is now pool_cache_item. that's what items going into
the per cpu pool caches are cast to, and they get linked together
to make a list.

the functions operating on what is now pool_cache_items have been
renamed to make it more obvious what they manipulate.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 16:53:38

Modified files:
	converters/py-html2text: Makefile distinfo 

Log message:
Update to html2text-2016.9.19


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/07 16:56:32

Modified files:
	converters/py-html2text: Makefile 

Log message:
More readable post-install target


CVSROOT:	/cvs
Module name:	ports
Changes by:	tsg@cvs.openbsd.org	2016/11/07 17:12:14

Modified files:
	security/py-pbkdf2: Makefile 

Log message:
Be consistent and use my openbsd.org address in MAINTAINER, bump REVISION.

Thanks to jca@ for the reminder.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2016/11/07 18:40:22

Modified files:
	lib/libcrypto/bn: bn_sqrt.c 

Log message:
Reduce the ternary operator abuse

ok miod@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/07 22:36:14

Modified files:
	devel/vte3     : Makefile distinfo 

Log message:
update to vte-0.46.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/07 22:39:02

Modified files:
	x11/gnome/terminal: Makefile distinfo 
	x11/gnome/terminal/pkg: PLIST 

Log message:
update to gnome-terminal-3.22.1


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/11/07 23:04:25

Modified files:
	sys/dev        : audio.c 

Log message:
Log start/stop of DMA if AUDIO_DEBUG is defined and be less verbose
about buffer parameters. No behaviour change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/11/07 23:09:56

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Remove dead store. From Michael W. Bombardieri <mb at ii.net>. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/11/08 00:10:55

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

Log message:
fix debug build


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 01:46:06

Modified files:
	x11/gnome/session: Makefile distinfo 

Log message:
Update to gnome-session-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 01:50:21

Modified files:
	x11/gnome/maps : Makefile distinfo 

Log message:
Update to gnome-maps-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 02:03:44

Modified files:
	x11/gnome/orca : Makefile distinfo 

Log message:
Update to orca-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 02:04:19

Modified files:
	graphics/shotwell: Makefile distinfo 
Removed files:
	graphics/shotwell/patches: patch-vapi_misc_vapi 

Log message:
Update to shotwell-0.25.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/08 02:31:55

Modified files:
	libexec/spamd  : spamd.c 

Log message:
Remove redundant & when clearing hostname variable, as per otto@'s request


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/08 02:43:59

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

Log message:
pledge for "stdio rpath wpath cpath" promises since it only needs to
read/write/create files

OK natano@ and tb@, thank you both for noticing the bad indentation


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/08 03:31:30

Modified files:
	sys/dev/usb    : ehci.c xhci.c 

Log message:
Remove superfluous DMA synchronization now that the stack is doing it for
all HCs.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/08 03:39:32

Modified files:
	sys/net        : route.c 

Log message:
Use rtalloc(9) instead of ifa_ifwithnet().

ifa_ifwithnet() checks if a given address is directly connected.  This
function predates the introduction of the BSD routing table.  Nowdays
we can check if the route for the given address is marked as RTF_GATEWAY.

This works on OpenBSD because we always install RTF_CONNECTED routes
for subnets a and RTF_HOST route per p2p link.

ok vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/08 03:45:08

Modified files:
	sys/netinet    : ip_input.c 

Log message:
Only use the routing table for source address selection when processing IP
options.

Make sure the next hop is directly reachable if IPOPT_SSRR is set.

Input from and ok vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/08 03:46:05

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

Log message:
RIP ifa_ifwithnet()

ok vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/08 03:47:10

Modified files:
	sys/net        : if.c 

Log message:
No longer need radix.h


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 05:05:04

Modified files:
	textproc/mupdf : Makefile 
Added files:
	textproc/mupdf/patches: patch-thirdparty_mujs_jslex_c 

Log message:
add an upstream patch to mupdf's javascript code for a heap buffer
overflow write and oob read. (js is disabled in the default flavour in
OpenBSD ports/packages, it's only in the mupdf-XX-js package).


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 05:11:22

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Few fixes and consistency.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 05:52:32

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.6.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 05:57:29

Modified files:
	x11/gnome/music: Makefile distinfo 

Log message:
Update to gnome-music-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/11/08 06:18:47

Modified files:
	net/tkirc      : Makefile 
Removed files:
	net/tkirc/patches: patch-tkirc2 

Log message:
use right ircII executable by default


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 06:22:02

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.3.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	czarkoff@cvs.openbsd.org	2016/11/08 06:22:55

Modified files:
	app/video      : video.c 

Log message:
Fix X11 property retrieval code

Just stop when reaching the end of property list instead of reading
forever past its end.

Issue was introduced in my previous commit and reported by deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 07:23:59

Modified files:
	security/fwbuilder: Makefile 
	www/snownews   : Makefile 
	misc/srcpd     : Makefile 
	textproc/TclXML: Makefile 
	x11/tellico-kde4: Makefile 
	games/xmoto    : Makefile 
	x11/gnustep/base: Makefile 
	print/foomatic-db-engine: Makefile 
	telephony/kamailio: Makefile 
	print/lss      : Makefile 

Log message:
WANTLIB += lzma and bump


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/08 07:37:20

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
- Declare usage() as __dead void (remaining prototypes are not declared as
static, so keep it that way for consistency)
- s/usage(1)/usage() and inside call exit(1) explicitly since all usage() calls
always use that value (also update comment to reflect this change)
- Remove main() prototype
- s/exit/return in main() to enable SSP

Feedback from jca@ and tb@ and OK from both (with their remarks in)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 07:38:55

Modified files:
	graphics/gimp/stable: Makefile 
	x11/gnome/builder: Makefile 
	x11/gnome/documents: Makefile 
	x11/gnome/gvfs : Makefile 
	sysutils/libvirt: Makefile 
	devel/libvirt-glib: Makefile 
	x11/virt-viewer: Makefile 
	textproc/html-xml-utils: Makefile 
	www/pecl-http  : Makefile 

Log message:
re-add idn to WANTLIB for a few where it didn't just come from curl


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 07:39:57

Modified files:
	x11/sakura     : Makefile 

Log message:
WANTLIB+=pcre2-8


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 07:41:59

Modified files:
	graphics/ruby-rmagick: Makefile 

Log message:
WANTLIB += MagickWand-6.Q16


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 07:47:22

Modified files:
	net/p5-Net-Z3950-Zoom: Makefile 
	emulators/openmsx: Makefile 
	textproc/p5-XML-LibXML: Makefile 
	textproc/p5-XML-LibXSLT: Makefile 
	graphics/pdf2djvu: Makefile 
	security/rarcrack: Makefile 
	x11/qt5        : Makefile 
	textproc/ruby-nokogiri: Makefile 

Log message:
WANTLIB += lzma


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/08 08:27:06

Modified files:
	usr.bin/mandoc : tag.c 

Log message:
support more than one tag entry for the same search term;
general idea discussed with bcook@ during l2k16


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 08:36:50

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
Simplify.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 08:37:59

Modified files:
	security/py-cryptography: Makefile 
Added files:
	security/py-cryptography/patches: 
	                                  patch-src__cffi_src_openssl_x509_vfy_py 

Log message:
Add a hack to allow building py-cryptography following the VERIFY_PARAMS
changes in libressl.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/08 08:57:12

Modified files:
	usr.bin/mandoc : tag.c 

Log message:
skip leading \& and \e in tags


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/08 09:04:40

Modified files:
	usr.bin/mandoc : mdoc_term.c 

Log message:
generate two tag entries from list entries of the form
.It Macro tag1 ... | Macro tag2 ...
written on the TGV Toulouse-Paris


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/08 09:15:25

Modified files:
	textproc/ruby-pygments.rb: Makefile 
Added files:
	textproc/ruby-pygments.rb/patches: patch-_metadata 

Log message:
Modify yajl dependency version so pygments.rb works with in-tree ruby-yajl

Problem noticed by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/08 09:23:37

Modified files:
	usr.bin/mandoc : mdoc_term.c tag.c 

Log message:
implement tag priority 0, which will tag only keys that appear as
tag candidates exactly once, and use it for .Em and .Sy;
written on the TGV Toulouse-Paris


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/08 09:29:19

Modified files:
	usr.bin/mandoc : mdoc_term.c 

Log message:
tag leading .Dv, .Li, and .No in .It;
written on the TGV Paris-Strassbourg


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/08 09:37:42

Modified files:
	usr.bin/mandoc : mdoc_term.c 

Log message:
use .Fn in custom sections for tagging, in addition to in DESCRIPTION;
written on the TGV Paris-Strassbourg


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/08 09:39:57

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
syspatch-60-001_foobar -> syspatch60-001_foobar to match base system sets name.

Should be transparent to the early testers as long as you have the most recent
syspatch.sh checkout from cvs(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 09:47:17

Modified files:
	mail/neomutt   : Makefile distinfo 

Log message:
update to neomutt-20161104, notably including a fix for a crash that could
occur if the imap connection dies.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/08 10:02:21

Modified files:
	usr.bin/mandoc : man.1 

Log message:
document improved tagging functionality


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/08 10:39:12

Modified files:
	gnu/usr.bin/cc/cc: Makefile 
	gnu/usr.bin/cc/doc: Makefile 
	gnu/usr.bin/cc/include: Makefile 
	gnu/usr.bin/cc/libobjc: Makefile 

Log message:
Set the permissions of the specs file explicitly so that they don't
depend on the umask.  Install headers and info files with group bin
like all the other headers and info files.

ok stefan


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/08 11:04:59

Modified files:
	x11/gnome/system-monitor: Makefile distinfo 

Log message:
update to gnome-system-monitor-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/08 11:07:30

Modified files:
	x11/gnome/calculator: Makefile distinfo 

Log message:
update to gnome-calculator-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/08 11:07:39

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 

Log message:
update to gnome-online-accounts-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/08 11:07:46

Modified files:
	x11/gnome/file-roller: Makefile distinfo 

Log message:
update to file-roller-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/08 11:08:40

Modified files:
	sysutils/rofi  : Makefile distinfo 

Log message:
update to rofi-1.2.0

requires fairly new snapshot with xcb-xrm


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/08 12:04:49

Modified files:
	lib/csu        : Makefile 
	share/mk       : bsd.lib.mk 

Log message:
Use sed -i to post-process .depend. This avoids permission issues caused
by the file being created in /tmp.

tweaks and ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/08 12:11:57

Modified files:
	sys/net        : if_switch.h switchctl.c 

Log message:
Teach switch(4) device read(2) operations to behave like a stream socket,
so the userland programs can use it without having to do any special
treatment (e.g. having to read() whole packets with just 1 call or lose it).
This also allows userland to read more than one ofp header/payload with one
syscall.

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/08 12:22:29

Modified files:
	usr.sbin/makefs: ffs.c ffs.h 

Log message:
Add a disklabel option that creates a disklabel with the info provided
by disktab. This is one piece of the puzzle that will allow use to build
install media without vnd.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/11/08 12:25:44

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for sun9i-a80, the Allwinner A80.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/08 12:31:52

Modified files:
	usr.sbin/makefs: makefs.8 

Log message:
Describe -o disklabel=name.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/08 12:33:58

Modified files:
	distrib/sets   : Makefile 
	share/man      : Makefile 

Log message:
Set permissions of src.db and mandoc.db explicitly to 644 so
they don't depend on the umask during make build.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/11/08 12:36:41

Modified files:
	sys/arch/armv7/sunxi: sxipio.c sxipio_pins.h 

Log message:
Add support for sun9i-a80, the Allwinner A80.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/08 12:38:57

Modified files:
	usr.sbin/makefs: ffs.c 

Log message:
Respect -Ooffset for the disklabel location.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/11/08 12:44:42

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for "allwinner,sun9i-a80-mmc-clk" compatible clocks.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/08 12:56:56

Modified files:
	include        : Makefile 

Log message:
Set owners and permissions only after all headers are installed. Add the -P
flag to chown to change the symlinks themselves instead of their targets.
Also change permissions of all symlinks, so they don't depend on the umask
during make build.

ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/08 13:01:06

Modified files:
	lib/libcrypto/evp: p5_crpt.c p5_crpt2.c 
	lib/libcrypto/pkcs12: p12_crpt.c p12_mutl.c 
	lib/libcrypto/x509v3: v3_purp.c 

Log message:
Stricter checks of ASN1_INTEGER to reject ASN1_NEG_INTEGER in places when
they don't make sense.

ok beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/08 13:10:02

Modified files:
	net/py-ripe.atlas.cousteau: Makefile distinfo 
	net/py-ripe.atlas.cousteau/pkg: PLIST 

Log message:
Update to py-ripe.atlas.cousteau-1.3 and add a py3 flavor.
While there, enable tests.

ok florian@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/08 13:11:27

Modified files:
	net/py-ripe.atlas.sagan: Makefile distinfo 
	net/py-ripe.atlas.sagan/pkg: PLIST 

Log message:
Update to py-ripe.atlas.sagan-1.1.11 and add a py3 flavor

ok florian@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/08 13:13:46

Modified files:
	net            : Makefile 

Log message:
+ py-ripe.atlas.cousteau,python3
+ py-ripe.atlas.sagan,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/08 13:20:06

Modified files:
	lib/libcrypto/lhash: lhash.c 

Log message:
Use more homogeneous types and avoid a possible right shift by 32 in
lh_strhash().

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/11/08 13:22:26

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add a few more easy sun9i-a80 clocks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/08 13:22:26

Modified files:
	net/py-ripe.atlas.tools: Makefile distinfo 
	net/py-ripe.atlas.tools/pkg: PLIST 

Log message:
Update to ripe.atlas.tools-2.0.2 and switch to py3. This removes the py
prefix from PKGNAME.

ok florian@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/08 13:28:04

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
py-ripe.atlas.tools -> ripe.atlas.tools
ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/08 14:22:56

Modified files:
	lib/libcrypto/x509: x509_lu.c 

Log message:
Check for stack push failure, and correctly destroy the object we failed
to push in that case. While there replace an inline version of
X509_OBJECT_free_contents() by a call to said function.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/08 14:25:01

Modified files:
	lib/libssl     : s3_cbc.c 

Log message:
When using an union including a type known for having strong alignment
constraints, in order to force the union to have the same constraint,
use the actual type instead of `double'. And add a comment explaining why we
want such an alignment in there.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/08 14:43:24

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

Log message:
Reserve extra space for the bufring header structure


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 14:53:16

Modified files:
	net/ircd-ratbox: Makefile 
	devel/kyua-cli : Makefile 
	databases/libdbi-drivers: Makefile 
	mail/opensmtpd-extras: Makefile 
	security/pecl-libsodium: Makefile 

Log message:
WANTLIB += pthread


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 14:56:38

Modified files:
	databases/libdbi-drivers: Makefile 

Log message:
sync WANTLIB-freetds, chasing old move of freetds to gnutls


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/08 14:57:50

Modified files:
	games/supertuxkart: Makefile 

Log message:
WANTLIB += freetype


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/08 15:04:34

Modified files:
	usr.bin/ssh    : auth.c 

Log message:
unbreak DenyUsers; reported by henning@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/08 15:19:45

Modified files:
	lib/libcrypto/man: BN_BLINDING_new.3 BN_CTX_new.3 BN_CTX_start.3 
	                   BN_bn2bin.3 BN_mod_inverse.3 
	                   BN_mod_mul_montgomery.3 
	                   BN_mod_mul_reciprocal.3 BN_new.3 
	                   BN_num_bytes.3 BN_set_negative.3 BN_zero.3 

Log message:
some cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/08 15:31:45

Modified files:
	share/zoneinfo : Makefile 

Log message:
Most directories in /usr/share/zoneinfo are created by zic(8), hence their
permissions are subject to the umask.  Set them explicitly to a=rx.

ok millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/08 16:02:29

Log message:
    Import devel/libbinio.
    
    The binary I/O stream class library presents a platform-independent way
    to access binary data streams in C++.
    
    The library is hardware independent in the form that it transparently
    converts between the different forms of machine-internal binary data
    representation. It further employs no special I/O protocol and can be
    used on arbitrary binary data sources.
    
    OK abieber@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161109
    
    N ports/devel/libbinio/Makefile
    N ports/devel/libbinio/distinfo
    N ports/devel/libbinio/pkg/DESCR
    N ports/devel/libbinio/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/08 16:10:17

Modified files:
	devel          : Makefile 

Log message:
Add libbinio.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/08 16:22:32

Log message:
    Import audio/adplug.
    
    AdPlug is a free, multi-platform, hardware independent AdLib sound
    player library, mainly written in C++. AdPlug plays sound data,
    originally created for the AdLib (OPL2/3) audio board, on top of an
    OPL2/3 emulator. No OPL2/3 chips are required for playback.
    
    OK abieber@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161109
    
    N ports/audio/adplug/Makefile
    N ports/audio/adplug/distinfo
    N ports/audio/adplug/pkg/PLIST
    N ports/audio/adplug/pkg/DESCR
    N ports/audio/adplug/patches/patch-src_Makefile_in
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/08 16:24:53

Log message:
    Import audio/adplay.
    
    AdPlay/UNIX is AdPlug's UNIX console-based frontend. AdPlug is a free,
    universal OPL2 audio playback library. AdPlay/UNIX supports the full range
    of AdPlug's file format playback features.
    
    OK abieber@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161109
    
    N ports/audio/adplay/Makefile
    N ports/audio/adplay/distinfo
    N ports/audio/adplay/pkg/PLIST
    N ports/audio/adplay/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/08 16:27:25

Modified files:
	audio          : Makefile 

Log message:
Add adplay and adplug.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/08 16:43:09

Modified files:
	.              : books.html 

Log message:
use a link that actually works for the long out-of-print "bsd mit methode"
and remove a pointless second link with the same target.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/08 17:27:21

Modified files:
	distrib/sets/lists/base: md.octeon md.sgi 
	distrib/sets/lists/comp: md.octeon md.sgi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/08 18:29:17

Modified files:
	regress/sys/netinet/pmtu: Makefile 

Log message:
Use variable REMOTE_SSH to check the setup of the remote machine.
This was a copy & paste bug from another test.  Found by mpi@.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/11/08 20:03:27

Modified files:
	gnu/usr.bin/perl: Makefile.bsd-wrapper 

Log message:
Stop installing perl .ph files

It's finally time


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/08 20:48:09

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.socppc md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/09 01:55:11

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
Do not dereference a variable without initializing it beforehand.

Fix a typo introduced in m_pullup(9) refactoring and found the hard
way by semarie@ while testing another diff.

ok mikeb@, dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/09 02:04:48

Modified files:
	sys/netinet    : ip_icmp.c 
	sys/netinet6   : icmp6.c 
	sys/net        : route.c 

Log message:
Do not call splsoftnet() recursively, this won't work with a lock.

Timers configured via rt_timer_add(9) always run at IPL_SOFTNET, so
assert that rather than calling splsoftnet().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/09 02:39:43

Modified files:
	sys/kern       : uipc_syscalls.c 

Log message:
Do not call splsoftnet() recursively, this won't work with a lock.

closef() on a socket will call soclose() which call splsoftnet().  So
make sure we release the IPL level first in error paths.

Found by Nils Frohberg while testing another diff.

ok mikeb@, bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/09 03:28:19

Modified files:
	www/goaccess   : Makefile distinfo 

Log message:
update to goaccess-1.1


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

Modified files:
	lang/mono      : Makefile distinfo 

Log message:
Update to mono-4.6.2.6.

ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/09 04:18:37

Modified files:
	x11/gnome/mono-gnome: Makefile 
Added files:
	x11/gnome/mono-gnome/patches: patch-gconf_GConf_ClientBase_cs 
	                              patch-gconf_GConf_Client_cs 
	                              patch-gconf_GConf_gconf-sharp_dll_config_in 
	                              patch-gnome_CanvasPathDef_custom 

Log message:
Fix build with mono-gtk2 >=2.12.42.
Fix GConf initialization.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/09 04:46:28

Modified files:
	security/py-cryptography: Makefile distinfo 
	security/py-cryptography_vectors: Makefile distinfo 

Log message:
update to py-cryptography 1.5.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/09 04:58:20

Modified files:
	games/chocolate-doom: Makefile 
Added files:
	games/chocolate-doom/patches: patch-src_i_sdlsound_c 

Log message:
add upstream patch to unbreak chocolate-doom following libsamplerate update

From 15b8e6e1e47e4f733f862c16a5c18a3485bd22d4 Mon Sep 17 00:00:00 2001
From: Fabian Greffrath <fabian@greffrath.com>
Date: Mon, 24 Oct 2016 15:30:18 +0200
Subject: [PATCH] i_sdlsound.c: fix compilation with libsamplerate 0.1.9


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/09 05:26:55

Modified files:
	sys/net        : switchctl.c 

Log message:
Simplify the switchread loop and fix the case where only first mbuf in
the chain was being read. While here rename mbuf variable and remove
unused ones.

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/09 05:43:36

Modified files:
	regress/sys/net/pf_forward: Makefile 
	regress/sys/net/pf_state: Makefile 
	regress/sys/netinet/pmtu: Makefile 

Log message:
Use netstat -n in target check-setup to avoid DNS timeout.
Requested by mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/09 06:08:51

Modified files:
	regress/sys/net/pf_forward: Makefile 

Log message:
Split the pf forwarding test into more subtests to make debugging
specific failures easier.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/09 06:21:25

Modified files:
	sysutils/ruby-puppet/4: Makefile 
	sysutils/ruby-puppet/4/pkg: PLIST 

Log message:
VARBASE -> LOCALSTATEDIR.
Don't hardcode /var.
Create the complete hierarchy of @sampled files to allow proper cleanup at
deinstall time.

ok sebastia@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/09 06:25:12

Modified files:
	comms/fldigi   : Makefile distinfo 

Log message:
update to fldigi-3.23.15, including a fix for libsamplerate change


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/11/09 06:50:22

Modified files:
	security/lynis : Makefile distinfo 
	security/lynis/pkg: PLIST 

Log message:
Update for Lynis to 2.4.0:

https://www.cisofy.com/changelog/lynis/2.4.0/

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/09 07:43:35

Modified files:
	regress/sys/net/pf_forward: Makefile 

Log message:
Remove the path MTU workaround in the af-to tcp test.  This subtest
passes without it.  For ping with af-to the expected mtu is special.
Adapt although pf is still broken here and this subtest is disabled.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/09 07:45:56

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

Log message:
Update to pycparser-2.17


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/09 07:53:00

Modified files:
	graphics/imlib2: Makefile distinfo 
	graphics/imlib2/pkg: PLIST 
Removed files:
	graphics/imlib2/patches: patch-src_lib_ellipse_c 
	                         patch-src_lib_font_load_c 
	                         patch-src_lib_image_h 
	                         patch-src_lib_updates_c 
	                         patch-src_modules_filters_Makefile_in 
	                         patch-src_modules_loaders_Makefile_in 
	                         patch-src_modules_loaders_loader_gif_c 

Log message:
Update to imlib2-1.4.9

Drop patches:
- gcc 2.95
- .a modules support
- CVEs fixed upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/09 08:43:22

Modified files:
	distrib/syspatch: bsd.syspatch.mk 

Log message:
Use https to get the patches.
Fix syspatch naming.

ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/09 08:45:28

Modified files:
	distrib/syspatch: bsd.syspatch.mk 

Log message:
oops, OSREV -> OSrev.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/09 08:59:37

Modified files:
	net/samba      : Makefile distinfo 
	net/samba/patches: patch-buildtools_wafsamba_samba_autoconf_py 
	                   patch-lib_replace_wscript 
	                   patch-python_samba_provision___init___py 
	                   patch-source3_wscript 
	net/samba/pkg  : PLIST-main 

Log message:
Update to samba-4.5.1

Changes:
https://www.samba.org/samba/history/samba-4.5.0.html
https://www.samba.org/samba/history/samba-4.5.1.html

powerpc build test kirby@, ok Ian McWilliam


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/09 09:01:33

Modified files:
	faq            : current.html 

Log message:
The perl headers are no more. Issue

rm -rf /usr/libdata/perl5/site_perl/*

ok sthen; confirmed by espie and millert


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/09 09:24:18

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.socppc md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/11/09 10:04:34

Modified files:
	etc/mtree      : 4.4BSD.dist 

Log message:
Remove /usr/libdata/perl5/site_perl, it is no longer needed.
OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/11/09 10:09:56

Modified files:
	gnu/usr.bin/perl: config.over 

Log message:
Remove /usr/libdata/perl5/site_perl from sitelib and sitearch, now
that we don't install .ph files we only want to search for these
under /usr/local/libdata/perl5/site_perl.  OK afresh1@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/09 10:12:46

Modified files:
	faq            : current.html 

Log message:
millert and afresh1 made sure that the site_perl directory is no longer
needed either: rm -rf /usr/libdata/perl5/site_perl


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/09 12:02:58

Modified files:
	devel/py-xdis  : Makefile distinfo 

Log message:
Update to py-xdis 3.2.3


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/11/09 12:09:52

Modified files:
	lib/libc/gen   : ttyname.c 

Log message:
Fix a use after free error introduced in rev 1.18 by only calling
closedir() outside the loop.  OK deraadt@ guenther@ markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/09 12:18:39

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/09 12:21:39

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

Log message:
Update to py-country 16.11.8


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/09 13:31:56

Modified files:
	usr.sbin/snmpd : parse.y snmpd.conf.5 snmpd.h snmpe.c trap.c 
	                 util.c 

Log message:
Improve source IP address handling.

- send replies using a source address equal to the destination address
of queries, using IP_SENDSRCADDR.  This help in multihomed setups and
can remove the need to explicitely configure a bind address.
- config knob to set the source address of packets sent to trap
receivers.  "trap receiver" gains an optional "source-address"
setting.

Source address issues reported by Andy Lemin.  ok benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/11/09 16:14:31

Modified files:
	security/stunnel: Makefile distinfo 
	security/stunnel/patches: patch-src_ctx_c patch-src_options_c 
	                          patch-src_verify_c 
	                          patch-tools_stunnel_conf-sample_in 
Added files:
	security/stunnel/patches: patch-src_common_h 
	                          patch-src_prototypes_h patch-src_ssl_c 
	                          patch-src_sthreads_c 

Log message:
update to 5.37
OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/09 22:41:53

Modified files:
	games/sdlpop   : Makefile 
	games/sdlpop/pkg: PLIST 

Log message:
Install Readme.txt, contains documentation about keybindings.

ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/09 23:01:45

Modified files:
	security/heimdal: Makefile 
Added files:
	security/heimdal/patches: patch-tools_krb5-config_in 

Log message:
Tweak krb5-config to fix rpath and search /usr/local/lib for libcom_err

Problem reported by Jiri B.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/09 23:05:53

Modified files:
	devel/py-test-mock: Makefile distinfo 
	devel/py-test-mock/pkg: PLIST 

Log message:
Update to py-test-mock 1.4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/09 23:40:49

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

Log message:
Update to py-dateutil 2.6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/10 01:26:38

Modified files:
	usr.sbin/makefs: ffs.c ffs.h 

Log message:
Remove the unused cpg field from ffs_opt_t.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/10 01:33:11

Modified files:
	usr.sbin/makefs: ffs.c 

Log message:
Sync bsize and fsize defaults with newfs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 01:54:43

Modified files:
	security/heimdal: Makefile 
	security/heimdal/patches: patch-tools_krb5-config_in 

Log message:
Use SUBST_CMD at pre-configure time instead of a home made substitution.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 02:03:07

ports/print/unpaper/patches

Update of /cvs/ports/print/unpaper/patches
In directory cvs.openbsd.org:/tmp/cvs-serv28902/patches

Log Message:
Directory /cvs/ports/print/unpaper/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 02:03:26

Modified files:
	print/unpaper  : Makefile distinfo 
	print/unpaper/pkg: PLIST 
Added files:
	print/unpaper/patches: patch-file_c patch-tests_runtestG3_sh 

Log message:
Update to unpaper-6.1.

from Jiri B with tweaks by sthen@ and myself


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 02:07:54

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-bin_git-credential-gcloud_sh 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-134.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 02:14:07

Modified files:
	www/owncloud   : Makefile distinfo 
	www/owncloud/patches: patch-version_php 
	www/owncloud/pkg: PLIST 

Log message:
Update to owncloud-9.1.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/11/10 02:18:33

Modified files:
	usr.sbin/bgpd  : rde.c 

Log message:
draft-ietf-idr-optional-transitive-00 became RFC 7606

changes from the draft to the RFC:
- PARTIAL flag is no longer considered protection
- for some attrs, a length of 0 is invalid

OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 02:19:20

Modified files:
	www/owncloud   : Tag: OPENBSD_6_0 Makefile distinfo 
	www/owncloud/patches: Tag: OPENBSD_6_0 patch-version_php 
	www/owncloud/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
Maintenance update to owncloud-9.0.6; keeping up-to-date on the previous
release to ease upgrade to 9.1.X for 6.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/11/10 02:20:51

Modified files:
	usr.sbin/bgpd  : rde_filter.c 

Log message:
properly check if large-community was set before

reported by Job Snijders


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/11/10 03:01:33

Modified files:
	usr.sbin/bgpd  : bgpd.8 

Log message:
update reference to the RFC now numbered 7606

reminded by jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/10 03:08:04

Modified files:
	devel/sdl2     : Makefile distinfo 
	devel/sdl2/patches: patch-Makefile_in 
Added files:
	devel/sdl2/patches: 
	                    patch-src_filesystem_unix_SDL_sysfilesystem_c 

Log message:
Update to sdl2-2.0.5

Initial diff from David Carlier.  Add a patch to disable SDL_GetBasePath
support, as we don't have kernel support for that feature.  Ports bulk
and ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/11/10 03:10:50

Modified files:
	security/stunnel: Makefile 
	security/stunnel/patches: patch-src_prototypes_h 
	                          patch-src_sthreads_c 
	                          patch-src_verify_c 

Log message:
enable cert_check_subject()


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 03:20:48

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Create the bsd rollback kernel in create_rollback() (it is contained in
the rollback tarball anyway but that's impractical if the new bsd does
not boot ;-)).
While here, make sure /bsd actually exists before saving it.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 03:27:31

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Remove redundant check.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 03:39:09

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Extend mtree(8) comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 04:30:07

Modified files:
	lib/libcrypto/man: ASN1_OBJECT_new.3 

Log message:
Add the correct Copyright and license.
Mention that ASN1_OBJECT_free(NULL) is OK.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 04:44:52

Modified files:
	lib/libcrypto/man: ASN1_STRING_length.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 04:50:32

Modified files:
	lib/libcrypto/man: ASN1_STRING_new.3 

Log message:
Add the correct Copyright and license.
Mention that ASN1_STRING_free(NULL) is OK.
Delete the obvious statement that a void function returns no value.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/10 04:50:40

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Apple NVMe controller


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/10 04:51:10

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/10 04:56:41

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

Log message:
Match Apple NVMe controller by product ID, yes apple is different.

Reported and tested by gonzalo@ on a Macbookair7,1.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/10 05:15:30

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

Log message:
Don't forget to set the descriptor ready flag after decapsulation


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 05:47:05

Modified files:
	usr.bin/mandoc : read.c 

Log message:
warn about trailing whitespace at the end of comments;
missing feature noticed by jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/10 05:48:46

Modified files:
	x11/gnome/gvfs : Makefile 

Log message:
Unbreak after the tevent-unix-util removal.

Spotted by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/10 05:50:35

Modified files:
	x11/kde/base3  : Makefile 

Log message:
Unbreak after the tevent-unix-util removal.

Spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 06:06:24

Modified files:
	lib/libcrypto/man: ASN1_STRING_print_ex.3 ASN1_generate_nconf.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/10 06:19:49

Modified files:
	sys/sys        : ctf.h 

Log message:
Typo in the guard


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/10 06:21:58

Modified files:
	usr.sbin/relayd: relay.c relay_udp.c 
	usr.sbin/httpd : server.c 

Log message:
Fix tcp ip ttl / minttl on IPv6 sockets.

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 06:56:57

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Simplify checkfs() and fix read-only/remote fs detection.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/10 07:10:48

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix swofp_send_error mbuf handling so it doesn't leak mbufs and set the
proper mbuf header length.

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 07:24:26

Modified files:
	devel/py-test-mock: Makefile 

Log message:
Missing bdep on devel/py-setuptools_scm${MODPY_FLAVOR}.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/10 07:30:47

Modified files:
	sysutils/ansible-lint: Makefile distinfo 
	sysutils/ansible-lint/pkg: PLIST 

Log message:
update to ansible-lint 3.4.3


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/10 07:34:18

Modified files:
	lib/libcrypto/man: ASN1_OBJECT_new.3 BUF_MEM_new.3 
	                   CONF_modules_free.3 CONF_modules_load_file.3 
	                   CRYPTO_set_ex_data.3 
	                   CRYPTO_set_locking_callback.3 DES_set_key.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2016/11/10 07:36:04

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
The simple UTF-16 decode routine stopped too early due to wrong calculation
of the output buffer size. Thus elements like subscriber-id, ICC-id, IMEI
were shown truncated.

Some modules report a phone number that already has the '+' prefix.
Don't add another one when printing it.

Patch from Bryan Vyhmeister
ok otto


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 07:42:21

Added files:
	lib/libcrypto/man: ASN1_TIME_set.3 

Log message:
import from OpenSSL,
deleting ASN1_TIME_diff() which we don't have


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2016/11/10 07:45:43

Modified files:
	sys/dev/usb    : if_umb.c 

Log message:
Use the NdpIndex of the NCM header as the offset of the NCM pointer instead
of assuming tha the NCM pointer will follow immediately after the header.

Tested by Bryan Vyhmeister and Otte Moerbeek
ok otto


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/10 08:08:13

Modified files:
	lib/libcrypto/man: ASN1_TIME_set.3 

Log message:
minor cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/11/10 09:00:40

Modified files:
	usr.bin/doas   : parse.y 

Log message:
missing semicolon at end of rule. yacc doesn't seem to mind, though.
from Edakawa


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 09:14:47

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
Extend documentation a bit. It'll probably need some adjustments soon.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/10 09:54:02

Modified files:
	net/avahi      : Makefile 

Log message:
Drop the gettext MODULE.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/10 10:32:40

Modified files:
	sys/net        : if_switch.c if_switch.h switchctl.c switchofp.c 

Log message:
Add support for partial writes in switchwrite so we can use multiple
write() to write one packet. With this we also get support for writing
multiple ofp packets with a single write.

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/10 10:42:46

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

Log message:
RNDIS data command is always the same and can be reused


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/10 10:44:34

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

Log message:
Restart the IFQ transmit routine only once per interrupt


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/10 10:45:29

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

Log message:
Set the reserved field to zero


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/10 12:28:08

Modified files:
	x11/gnome/mutter: Makefile distinfo 

Log message:
update to mutter-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/10 12:28:13

Modified files:
	x11/gnome/shell: Makefile distinfo 

Log message:
update to gnome-shell-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/10 12:28:18

Modified files:
	x11/gnome/shell-extensions: Makefile distinfo 

Log message:
update to gnome-shell-extensions-3.22.2


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/11/10 12:59:22

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for "allwinner,sun9i-a80-apb1-clk" compatible clocks.

This makes the serial console work properly and makes Cubieboard4 go
multi-user.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/10 14:58:41

Modified files:
	audio/py-mutagen: Makefile 
	devel/py-argcomplete: Makefile 
	devel/py-babel : Makefile 
	devel/py-codestyle: Makefile 
	devel/py-isort : Makefile 
	devel/py-jsonschema: Makefile 
	devel/py-logilab-common: Makefile 
	devel/py-nose  : Makefile 
	devel/py-robotframework: Makefile 
	devel/py-test  : Makefile 
	devel/py-tox   : Makefile 
	devel/py-uncompyle6: Makefile 
	devel/py-xdis  : Makefile 
	graphics/py-Pillow: Makefile 
	security/py-crypto: Makefile 
	security/py-keyring: Makefile 
	security/py-keyring/pkg: PFRAG.python3 
	security/py-rsa: Makefile 
	textproc/py-chardet: Makefile 
	textproc/py-demjson: Makefile 
	textproc/py-docutils: Makefile 
	textproc/py-pygments: Makefile 
	textproc/py-sphinx: Makefile 
	www/py-flask   : Makefile 
	www/py-gunicorn: Makefile 
	www/py-mako    : Makefile 

Log message:
Remove superfluous if ${FLAVOR:Mpython3}

tweaks and ok rpointel@ shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/10 15:18:18

Modified files:
	cad/xtrkcad    : Makefile distinfo 
	cad/xtrkcad/pkg: PLIST 

Log message:
Maintenance update to 4.2.4, mostly adding/updating a few parameter
files.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 18:18:19

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: ASN1_TYPE_get.3 

Log message:
import ASN1_TYPE_get(3) from OpenSSL,
deleting ASN1_TYPE_unpack_sequence() and ASN1_TYPE_pack_sequence()
which we don't have


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 18:20:53

Modified files:
	lib/libcrypto/man: BF_set_key.3 

Log message:
add Copyright and license
and delete useless and incorrect sentence
"None of the functions presented here return any value."


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 18:23:46

Modified files:
	lib/libcrypto/man: BIO_ctrl.3 

Log message:
add Copyright and license,
simplify the BIO_callback_ctrl() prototype,
and change .Fn to .Xr for two functions documented elsewhere


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/10 18:27:20

Modified files:
	lib/libcrypto/man: BIO_f_base64.3 

Log message:
add copyright and license
and change the reference to BIO_set_flags() from .Fn to .Xr:
we do have that function and we should import the manual


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/11/10 20:49:14

Modified files:
	lib/libssl     : shlib_version 
	lib/libtls     : shlib_version 
	lib/libcrypto  : shlib_version 
	lib/libcrypto/arch/amd64: Makefile.inc 

Log message:
Disable ec assembly for amd64 pending fixes for ssh, and bump
majors appropriately


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/10 22:01:28

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/11 00:40:02

Modified files:
	net/avahi      : Makefile 
	net/avahi/pkg  : PLIST-main 
Removed files:
	net/avahi/pkg  : DESCR-qt3 DESCR-qt4 PLIST-qt3 PLIST-qt4 

Log message:
Remove the -qt3 and qt4 subpackages, nothing uses them in tree.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/11 00:56:23

Modified files:
	net/avahi      : Makefile distinfo 
	net/avahi/pkg  : PLIST-main 
Added files:
	net/avahi/patches: patch-configure 
Removed files:
	net/avahi/patches: patch-avahi-daemon_avahi-daemon_conf 
	                   patch-avahi-daemon_main_c 
	                   patch-avahi-ui_Makefile_in 
	                   patch-man_avahi-daemon_conf_5_xml_in 

Log message:
Update to avahi-0.6.32.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/11 02:27:31

Modified files:
	usr.sbin/makefs: ffs.c makefs.8 

Log message:
Optimize for space by default.
ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/11 02:40:30

Modified files:
	x11/xfce4/xfce4-notifyd: Makefile distinfo 
	x11/xfce4/xfce4-notifyd/pkg: PLIST 

Log message:
Update to xfce4-notifyd 0.3.4, switches to Gtk3.

See
http://simon.shimmerproject.org/2016/11/09/xfce4-notifyd-0-3-4-released-do-not-disturb-and-per-application-settings/
and the previous posts for all details about what when in this new branch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/11 02:48:38

Modified files:
	mail/libetpan  : Makefile 

Log message:
remove libidn from libetpan LIB_DEPENDS, it was only there because of curl


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/11 02:54:07

Modified files:
	usr.sbin/makefs: ffs.c ffs.h 
	usr.sbin/makefs/ffs: mkfs.c 

Log message:
Clean up FFS option handling somewhat; no functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/11 03:07:51

Modified files:
	mail/claws-mail: Makefile 

Log message:
regen all WANTLIBs in claws-mail to unbreak - packaging failed after removing idn from
libetpan's WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/11 03:23:34

Modified files:
	www/lighttpd   : Makefile distinfo 
	www/lighttpd/pkg: PFRAG.mysql PLIST 
Added files:
	www/lighttpd/pkg: PFRAG.ldap 
Removed files:
	www/lighttpd/patches: patch-src_connections_c 
	                      patch-src_fdevent_c patch-src_fdevent_h 
	                      patch-src_http_auth_c 
	                      patch-src_mod_accesslog_c 
	                      patch-src_mod_cgi_c 
	                      patch-src_mod_fastcgi_c 
	                      patch-src_mod_proxy_c patch-src_mod_scgi_c 
	                      patch-src_network_c 
	                      patch-src_network_write_no_mmap_c 
	                      patch-src_server_c 

Log message:
update to lighttpd-1.4.43, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/11 03:55:17

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/patches: patch-Makefile 
	                            patch-configs_samples_asterisk_conf_sample 
	                            patch-configure_ac 
	                            patch-res_res_rtp_asterisk_c 

Log message:
update to asterisk-13.12.2, fixing a chan_sip rtptimeout problem introduced
in 13.12.1 that would cause calls to be dropped early


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/11 04:37:25

Modified files:
	usr.bin/tmux   : cmd-run-shell.c 

Log message:
Do not crash with run-shell -b and no window pane available, reported by
Sergei Dyshel.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/11 04:52:35

Modified files:
	net/gajim      : Makefile 
	net/libepc     : Makefile 
	net/mono-zeroconf: Makefile 
	print/cups     : Makefile 
	x11/gnome/vinagre: Makefile 
	x11/remmina    : Makefile 

Log message:
net/avahi,no_qt3,no_qt4 does not exist anymore.

spotted by nigel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/11 04:57:43

Modified files:
	lang/guile2    : Makefile distinfo 
	lang/guile2/patches: patch-libguile_filesys_c 
Removed files:
	lang/guile2/patches: patch-doc_ref_guile-invoke_texi 
	                     patch-doc_ref_posix_texi 
	                     patch-module_system_repl_coop-server_scm 
	                     patch-module_system_repl_server_scm 

Log message:
Update to guile2-2.0.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/11 05:07:00

Modified files:
	mail/libetpan  : Makefile 

Log message:
Drop the gettext module.

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/11 05:28:07

Modified files:
	audio/ocp      : Makefile 
	audio/ocp/pkg  : DESCR PLIST 

Log message:
Make ocp compile against audio/adplug, which allows playing many OPL2/OPL3 audio formats.

OK landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/11 05:31:19

Modified files:
	mail/claws-mail: Makefile distinfo 
Removed files:
	mail/claws-mail/patches: patch-src_common_ssl_c 

Log message:
Update to claws-mail-3.14.1

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/11 06:46:57

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/11 07:02:24

Modified files:
	lib/libtls     : tls.h tls_config.c tls_init.3 

Log message:
Change the return value of tls_config_set_protocols() and
tls_config_set_verify_depth() from void to int. This makes them consistent
with all other tls_config_set_* functions and will allow for call time
validation to be implemented.

Rides libtls major bump.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/11 07:03:33

Modified files:
	lib/libtls     : tls.h 

Log message:
Bump TLS_API due to recent feature additions and changes.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/11 07:05:13

Modified files:
	regress/usr.sbin/switchd: Makefile 

Log message:
Fix regress after moving ofp.h to sys/net/


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/11 07:52:51

Modified files:
	security/py-crypto: Makefile 

Log message:
fix after the removal of if ${FLAVOR:Mpython3}

spotted by nigel@ and naddy@, ok aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/11 08:01:43

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

Log message:
Print the route cached at the inp with netstat -P.  While there,
fix a compiler warning about missing prototype.
OK claudio@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/11 08:16:57

Modified files:
	net/samba      : Makefile 
	net/samba/pkg  : PLIST-main PLIST-util 

Log message:
-util should own the /usr/local/lib/samba/ directory to prevent the following
warning when pkg_delete samba:
Error deleting directory /usr/local/lib/samba: Directory not empty

ok jca@ (maintainer)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/11 08:25:17

Modified files:
	app/xenodm     : configure.ac 
	app/xenodm/config: Makefile.am 
Added files:
	app/xenodm/config: Xservers.cpp 
Removed files:
	app/xenodm/config: Xservers.fs Xservers.ws.cpp 

Log message:
Keep only on Xservers file.
The Xservers.fs file makes no sense in xenodm.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/11 08:25:34

Modified files:
	app/xenodm     : Makefile.in configure 
	app/xenodm/config: Makefile.in 
	app/xenodm/greeter: Makefile.in 
	app/xenodm/include: Makefile.in 
	app/xenodm/man : Makefile.in 
	app/xenodm/xenodm: Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/11 08:58:35

Modified files:
	app/xenodm     : configure.ac 
	app/xenodm/config: Makefile.am Xsession.cpp 

Log message:
Xsession cleanup:
- remove mkstemp conditional it's always there
- remove USE_XPM conditional
- remove SCO and Unixware bits that survived so far


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/11 08:58:48

Modified files:
	app/xenodm     : configure 
	app/xenodm/config: Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/11 09:19:09

Modified files:
	sys/net        : if_switch.h switchctl.c 

Log message:
Remove mutexes protection from the switchctl as they don't seem to be
doing anything for us, and remove some whitespaces from the header that
can be found near the removed lines.

ok mikeb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/11 09:21:50

Modified files:
	app/xenodm     : configure.ac 
	app/xenodm/config: Makefile.am 

Log message:
SU is not needed without xdmcp support


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/11 09:22:02

Modified files:
	app/xenodm     : Makefile.in configure 
	app/xenodm/config: Makefile.in 
	app/xenodm/greeter: Makefile.in 
	app/xenodm/include: Makefile.in 
	app/xenodm/man : Makefile.in 
	app/xenodm/xenodm: Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/11 09:59:34

Modified files:
	usr.sbin/switchd: ofrelay.c switchd.h 

Log message:
Remove "workarounds" for the read and write path that were needed to
handle /dev/switch connections that didn't quite behave like TCP
connections (no support for writev, no partial reads).  With
rzalamena's changes to switch(4), it now works as expected and doesn't
need any special treatment anymore.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/11 11:45:24

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

Log message:
Reorder atomic operations dealing with sc_tx_avail

The atomic decrement of the number of available descriptors must
be performed before sending the RNDIS message to the hypervisor
so that packet transmit completion that may execute in parallel
won't increase the value past the maximum.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/11 11:59:09

Modified files:
	sys/kern       : kern_sysctl.c 

Log message:
Export p_cpuid via sysctl for all processes;  ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/11 12:40:26

Modified files:
	devel/gmp      : Makefile distinfo 
Removed files:
	devel/gmp/patches: patch-mpn_sh_add_n_s patch-mpn_sh_sub_n_s 

Log message:
long overdue update to the latest release (now 6.1.1)
alpha and sparc64 testing and ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/11 12:41:00

Modified files:
	devel/mpfr     : Makefile distinfo 

Log message:
update to 3.1.5 to go along with devel/gmp update


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/11 12:43:17

Modified files:
	lang/gcc/4.9   : Makefile distinfo 

Log message:
new Ada bootstraps on amd64 and i386; required for gmp and mpfr update


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/11 12:43:52

Added files:
	devel/ti-msp430gcc/patches: patch-sources_tools_mpfr_src_mpfr_h 

Log message:
fix build of included mpfr with newer devel/gmp


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/11 13:13:43

Modified files:
	lang/gcc/4.9   : Makefile 

Log message:
pascal@ suggests to disable Ada on various archs until new bootstraps
are available


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/11 13:41:17

Modified files:
	geo/josm       : Makefile distinfo 

Log message:
Update to josm r11223, from Maintainer Holger Mikolon


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/11 14:07:29

Modified files:
	net/hping      : Makefile 

Log message:
perl->sed


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/11 15:07:40

Modified files:
	usr.sbin/switchd: ofp10.c ofp_common.c switchd.h 

Log message:
Move ofp_validate_header() into ofp_common.c.  No functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/11 15:39:48

Modified files:
	shells/bash    : Makefile distinfo 
	shells/bash/patches: patch-Makefile_in 
	shells/bash/pkg: PLIST 

Log message:
Update to bash 4.4.  See the announcement at
https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00018.html
for an overview of significant changes.

Jump right to patchlevel 5, which among other things fixes a use-after-free
bug discovered by otto malloc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/11 15:45:58

Modified files:
	www/w3m        : Makefile 

Log message:
clean up:
* switch to UTF-8 by default
* sync wantlib for image flavor
* replace gettext module


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/11 16:39:48

Modified files:
	games/redeclipse: Makefile distinfo 
	games/redeclipse/pkg: PLIST-data 

Log message:
update to Red Eclipse 1.5.6


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/11 20:04:27

Modified files:
	include        : Makefile 

Log message:
Kill the /usr/include/ssl symlink

Proposed some time ago by tedu@, builk build by ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/12 01:32:48

Modified files:
	graphics/graphite2: Makefile distinfo 

Log message:
Update to graphite2-1.3.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/12 01:41:22

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.71.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/12 01:41:38

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/12 01:53:11

Modified files:
	devel/cargo    : Makefile 

Log message:
Mark temporarly BROKEN, crates.io requires Accept: HTTP header, cf https://github.com/rust-lang/crates.io/issues/466


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/12 01:58:43

Modified files:
	lib/libc/string: wcscpy.3 

Log message:
the referred to EXAMPLES section is now in strncpy(3);
issue reported by scott cheloha

ok otto


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/12 03:32:28

Modified files:
	meta/gnome     : Makefile 
	meta/gnome/pkg : README-main 

Log message:
Extend GDM configuration and add a note that changing the GDM kbd layout is
not possible due to the lack of systemd-localed support.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/12 03:33:04

Modified files:
	devel/boehm-gc : Makefile distinfo 
	devel/boehm-gc/patches: patch-include_private_gcconfig_h 
	devel/boehm-gc/pkg: PLIST-main 

Log message:
Update to gc-7.6.0 and libatomic_ops-7.4.4

Maintenance only update for libatomic_ops.  Bulk build and ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/12 03:59:37

Modified files:
	sys/dev        : vnd.c vndioctl.h 

Log message:
Bump VNDNLEN from 90 to 1024 bytes, to avoid "VNDIOCSET: File name too long"

Introduce a new ioctl for VNDIOCSET, the old ioctl will stay around for
a bit to cope with old vnconfig/mount_vnd.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/12 04:16:59

Modified files:
	sys/dev        : vnd.c 

Log message:
Revert unrelated bits that snuck in previous.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/12 07:30:41

Modified files:
	net/py-boto    : Makefile 
	net/py-boto/pkg: PLIST 
Added files:
	net/py-boto/pkg: PFRAG.no-python3 

Log message:
Add py3 flavor for py-boto (only package, without utilities)

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/12 07:31:53

Modified files:
	net            : Makefile 

Log message:
+py-boto,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/12 08:37:32

Modified files:
	mail/dovecot   : Makefile 
	mail/dovecot/pkg: PLIST-ldap PLIST-server 

Log message:
move include/dovecot/ldap-client.h to PLIST-ldap, reported by brad and dhill,
based on a diff from dhill


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/12 08:55:22

Modified files:
	lang/lucee     : Makefile distinfo 

Log message:
update to Lucee 4.5.3.020


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/12 09:15:31

Modified files:
	net/wireshark  : Makefile 
	net/wireshark/pkg: PLIST-text 

Log message:
Add hidden dep (security/libssh) to Wireshark, noticed by naddy.
This enables building sshdump and ciscodump providing an interface
to run remote captures.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/12 09:26:46

Modified files:
	cad/gtkwave    : Makefile distinfo 

Log message:
Update to gtkwave-3.3.78.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/12 09:27:58

Modified files:
	x11/gnome/builder: Makefile 
	x11/gnome/builder/patches: 
	                           patch-plugins_terminal_gb-terminal-view_c 
Added files:
	x11/gnome/builder/patches: 
	                           patch-libide_subprocess_ide-subprocess-launcher_c 

Log message:
Sync with what's been committed upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/12 09:29:16

Modified files:
	net/knot       : Makefile 

Log message:
Tell portroach to skip 1.99.1, for it is not an LTS version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/12 09:42:24

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-configure patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_ext_net_rs 
	                   patch-src_tools_compiletest_src_runtest_rs 
	lang/rust/pkg  : PLIST-doc PLIST-main 

Log message:
Update to rust-1.13.0, from semarie who takes maintainership again

ok aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/12 09:45:20

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/12 11:12:31

Modified files:
	devel/py-test  : Makefile distinfo 

Log message:
Update to py-test 3.0.4


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/12 12:04:41

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

Log message:
Do not execute commands for a client until it has identified, fixes
problem reported by Frank Terbeck.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/12 12:05:53

Modified files:
	usr.bin/tmux   : cmd-run-shell.c 

Log message:
Apply the right fix for run -b, used the wrong diff before.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/12 12:23:16

Modified files:
	lib/libcrypto/man: ASN1_TYPE_get.3 DH_generate_key.3 
	                   DH_generate_parameters.3 DH_set_method.3 
	                   DSA_set_method.3 

Log message:
minor cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/12 13:50:41

Modified files:
	audio/libnjb   : Makefile 
	audio/libnjb/pkg: PLIST 
	devel/doxygen  : Makefile distinfo 
	devel/doxygen/patches: patch-addon_doxywizard_CMakeLists_txt 
	                       patch-libmd5_libmd5_pro_in 
	                       patch-qtools_qtools_pro_in 
	                       patch-src_CMakeLists_txt 
	                       patch-src_dirdef_cpp 
	devel/doxygen/pkg: PLIST-main 
	devel/libmtp   : Makefile 
	devel/libmtp/pkg: PLIST 
	devel/qjson    : Makefile 
	devel/qjson/pkg: PLIST 
	geo/geos       : Makefile 
	geo/geos/pkg   : PLIST 
	graphics/lensfun: Makefile 
	graphics/lensfun/pkg: PLIST 
	multimedia/libquicktime: Makefile 
	multimedia/libquicktime/pkg: PLIST 
	net/ortp       : Makefile 
	net/ortp/pkg   : PLIST 
	x11/dbusmenu-qt: Makefile 
	x11/dbusmenu-qt/pkg: PLIST 
	x11/ede/lib    : Makefile 
	x11/ede/lib/pkg: PLIST 

Log message:
Update to doxygen-1.8.12 and switch the gui to Qt5

From Rafael Sadowski, who takes maintainership.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/12 13:54:09

Modified files:
	geo/geos       : Makefile 

Log message:
Switch HOMEPAGE to https://

From Rafael Sadowski, as part of a larger diff.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/12 13:59:18

Modified files:
	devel/doxygen  : Makefile 

Log message:
Don't try to build the gui on powerpc, qt5 doesn't build there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/12 14:17:02

Modified files:
	net/openvpn-auth-ldap: Makefile 
Added files:
	net/openvpn-auth-ldap/patches: patch-src_Makefile_in 
	                               patch-tests_Makefile_in 

Log message:
Ensure that we link against libobjc.so from base.

Newer libobjc from ports isn't compatible.  Problem reported by
Sebastien Leclerc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/12 14:18:05

Modified files:
	net/openvpn-auth-ldap: Makefile 

Log message:
Enable tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	halex@cvs.openbsd.org	2016/11/12 15:22:25

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Improve the cleanup error handling to make sure the exit code is
really preserved.

Noticed by, discussed with, and fix approved tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/12 15:37:41

Modified files:
	bin/ksh        : sh.1 

Log message:
Fix lexicographic order of shell built-ins: trap comes before true.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/12 17:40:09

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Fix typo in comment: it's vm.loadavg, not kern.loadavg.

From patrick keshishian


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/11/12 19:30:23

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

Log message:
Update to zstd 1.1.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/13 01:22:47

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

Log message:
update the link for communication devices; the actual document link
is quite lengthy and the original doc has been split into five parts,
so i've just linked to the man doc page;


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/11/13 01:47:54

Modified files:
	lib/libcrypto/x509: x509_lu.c 

Log message:
Fix previous change to X509_STORE_add_{cert,crl} to not free the input
object in the error path - we don't own it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/13 01:52:16

Modified files:
	net/ircd-hybrid: Makefile distinfo 
	net/ircd-hybrid/patches: patch-doc_reference_conf 
	net/ircd-hybrid/pkg: PLIST 

Log message:
Update to ircd-hybrid-8.2.20.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/13 01:59:26

Modified files:
	devel/cargo    : Makefile distinfo 

Log message:
Update to cargo-0.14.0 and remove BROKEN marker, upstream reverted
the commit

From semarie who takes maintainership again, ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/13 02:42:46

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

Log message:
Maintenance update to py-pip-9.0.1


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/13 02:56:05

Modified files:
	share/man/man8 : autoinstall.8 

Log message:
Change the hash version string from $2a$ to $2b$.

ok rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/13 03:22:21

Modified files:
	usr.sbin/makefs: ffs.c ffs.h makefs.8 

Log message:
Pick up the FS image size, the sector size and the bsize and fsize
parameters from the disklabel.

discussed with deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/11/13 07:39:32

Modified files:
	lang/gcc/6/patches: patch-gcc_config_i386_i386_c 

Log message:
Fix build after changes to our NULL definition.  Noticed by naddy@.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/13 07:42:27

Modified files:
	driver/xf86-video-ati: ChangeLog config.h.in configure 
	                       configure.ac 
	driver/xf86-video-ati/man: radeon.man 
	driver/xf86-video-ati/src: compat-api.h drmmode_display.c 
	                           drmmode_display.h radeon.h 
	                           radeon_bo_helper.c radeon_bo_helper.h 
	                           radeon_dri2.c radeon_dri3.c 
	                           radeon_drm_queue.c radeon_drm_queue.h 
	                           radeon_glamor.c radeon_glamor.h 
	                           radeon_glamor_wrappers.c radeon_kms.c 
	                           radeon_list.h radeon_present.c 
	                           radeon_probe.c radeon_sync.c 
	                           radeon_video.c 

Log message:
Update to xf86-video-ati 7.7.1
Tested by jsg@,  Rafael Sadowski and myself on various hardware.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/13 07:42:48

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/13 07:58:18

Modified files:
	net/kea        : Makefile distinfo 
	net/kea/pkg    : PLIST 
Added files:
	net/kea        : 
	                 patch-src_bin_dhcp4_tests_dhcp4_process_tests_sh_in 
	                 patch-src_bin_dhcp6_tests_dhcp6_process_tests_sh_in 

Log message:
Update to kea-1.1.0

from maintainer Patrik Lundin


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/13 08:49:29

Log message:
    Import textproc/lua-lunamark.
    
    Lunamark is a Lua module for converting Markdown to other textual formats.
    Currently HTML, dzslides, Docbook, ConTeXt, LaTeX, and Groff man are the
    supported output formats. The markdown parser is written using a PEG
    grammar and can also be modified by the user.
    
    OK jca@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161113
    
    N ports/textproc/lua-lunamark/Makefile
    N ports/textproc/lua-lunamark/distinfo
    N ports/textproc/lua-lunamark/pkg/DESCR
    N ports/textproc/lua-lunamark/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/13 08:52:52

Modified files:
	textproc       : Makefile 

Log message:
Add lua-lunamark.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/13 11:07:59

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2-1.16.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/13 11:44:20

Modified files:
	sysutils/rundeck: Makefile distinfo 

Log message:
update to rundeck-2.6.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/13 12:00:34

Modified files:
	x11/xkbcommon  : Makefile distinfo 

Log message:
update to libxkbcommon-0.7.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/13 12:22:34

Modified files:
	audio/jack     : Makefile distinfo 
	audio/jack/files: Makefile.am sndio_driver.c sndio_driver.h 
	audio/jack/patches: patch-drivers_netjack_netjack_c 
Removed files:
	audio/jack/patches: patch-configure_ac patch-drivers_Makefile_am 
	                    patch-drivers_dummy_dummy_driver_c 
	                    patch-jack_pc_in patch-jack_types_h 
	                    patch-jackd_Makefile_am 
	                    patch-jackd_clientengine_c 
	                    patch-jackd_controlapi_c 
	                    patch-jackd_engine_c patch-jackd_jackd_1_in 
	                    patch-jackd_jackd_c patch-libjack_port_c 

Log message:
Update to jack-0.125.0

From David Carlier, input and ok danj@ on a previous version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/13 12:33:25

Modified files:
	infrastructure/db: user.list 

Log message:
take uid 782 for upcoming ympd port


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/13 12:35:11

Log message:
    Import ympd 1.3.0.
    
    ympd is a lightweight MPD (Music Player Daemon) web client that runs without a
    dedicated webserver or interpreters like PHP, NodeJS or Ruby. It's tuned for
    minimal resource usage and requires only very litte dependencies.
    
    ok jca@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20161311
    
    N ports/audio/ympd/Makefile
    N ports/audio/ympd/distinfo
    N ports/audio/ympd/pkg/PLIST
    N ports/audio/ympd/pkg/ympd.rc
    N ports/audio/ympd/pkg/DESCR
    N ports/audio/ympd/patches/patch-CMakeLists_txt
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/13 12:35:43

Modified files:
	audio          : Makefile 

Log message:
+ympd


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/13 12:51:26

Modified files:
	devel/pylint   : Makefile 

Log message:
Fix rdep for py2 flavor


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/13 13:26:55

Modified files:
	sysutils/hotplug-diskmount: Makefile distinfo 
	sysutils/hotplug-diskmount/patches: patch-hotplug-diskmount_8 
Added files:
	sysutils/hotplug-diskmount/patches: patch-hotplug-diskmount_c 
Removed files:
	sysutils/hotplug-diskmount/patches: patch-Makefile 

Log message:
Update to hotplug-diskmount-1.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/13 13:46:23

Modified files:
	x11/i3         : Makefile distinfo 
	x11/i3/patches : patch-i3-dmenu-desktop patch-i3-nagbar_main_c 
	                 patch-libi3_get_config_path_c 
	                 patch-libi3_get_exe_path_c patch-src_bindings_c 
	                 patch-src_config_parser_c patch-src_manage_c 
	x11/i3/pkg     : PLIST 
Added files:
	x11/i3/patches : patch-Makefile_in patch-configure 
	                 patch-etc_config patch-etc_config_keycodes 
	                 patch-man_i3-config-wizard_man 
	                 patch-man_i3-dump-log_man 
	                 patch-man_i3-nagbar_man patch-man_i3_man 
Removed files:
	x11/i3/patches : patch-common_mk 
	                 patch-i3-config-wizard_i3-config-wizard_mk 
	                 patch-i3-dump-log_i3-dump-log_mk 
	                 patch-i3-dump-log_main_c 
	                 patch-i3-input_i3-input_mk 
	                 patch-i3-msg_i3-msg_mk 
	                 patch-i3-nagbar_i3-nagbar_mk patch-i3_config 
	                 patch-i3_config_keycodes patch-i3bar_i3bar_mk 
	                 patch-include_shmlog_h patch-libi3_libi3_mk 
	                 patch-man_i3-config-wizard_1 
	                 patch-man_i3-dmenu-desktop_1 
	                 patch-man_i3-dump-log_1 
	                 patch-man_i3-migrate-config-to-v4_1 
	                 patch-man_i3_1 patch-src_i3_mk patch-src_ipc_c 
	                 patch-src_log_c patch-src_startup_c 

Log message:
Update to i3-4.13

OK tb@, jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/13 13:54:46

Modified files:
	graphics/ImageMagick: Makefile distinfo 
	graphics/ImageMagick/patches: patch-configure_ac 
	graphics/ImageMagick/pkg: PLIST 

Log message:
update to ImageMagick 6.9.6-4


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/13 14:15:43

Log message:
    Import (finally!) Tor Browser 6.0.5.
    
    All the credit goes to Sean Levy - attila at stalphonsos dot com, from
    the tor BSD diversity project, https://torbsd.github.io/ - who
    spent countless hours polishing and improving this out of tree.
    
    This bundles 5 ports:
    * tb-browser, a Firefox ESR fork
    * torbutton 1.9.5.7, a button to configure parameters
    * tor-launcher 0.2.9.3, to manage a tor instance
    * tb-noscript 2.9.0.14, a well known js blocker
    * tb-https-everwhere 5.2.4, try to force https where possible
    
    Note that the extensions are installed within tb-browser directory and
    won't work as-is in a regular Firefox instance.
    
    ======================================================================
    Tor Browser (TB) is a customized version of Firefox Extended Service
    Release built specifically for internet browsing over the Tor
    anonymity network.
    
    TB's configuration aims to mitigate attacks on a client's anonymity,
    including determining the client's actual IP address and browser
    fingerprinting.  Other aspects of Firefox have also been patched
    to plug privacy leaks in ways not possible any other way.
    
    TB includes custom Firefox add-ons only meant for TB, including
    NoScript, HTTPS Everywhere, TorButton and Tor-Launcher.  This package
    provides merely the modified version of Firefox ESR.  Please install
    the tor-browser meta-package to make sure you have everything installed
    correctly.
    
    Remember that there are no perfect privacy or anonymity solutions, and
    this includes TB.  As always you must pay attention and in many cases
    modify your behavior to ensure your privacy online.  Note that JS is
    blocked everywhere by default in TB using NoScript.
    ======================================================================
    
    On a personal note (as a Mozilla developer), i'll just add that Tor
    Browser is heavily patched in various ways, so think before putting your
    browsing habits in someone's hands - read
    https://www.torproject.org/projects/torbrowser/design/ to make up your
    mind.
    
    Of course, having this in the ports tree doesn't mean that the OpenBSD
    project specifically endorses or recommends usage of Tor or Tor Browser.
    If you want to keep your privacy, *use your brain* or stay offline.
    
    ok danj@
    
    Status:
    
    Vendor Tag:	attila
    Release Tags:	landry_20161113
    
    N ports/www/tor-browser/Makefile
    N ports/www/tor-browser/Makefile.inc
    N ports/www/tor-browser/browser/Makefile
    N ports/www/tor-browser/browser/distinfo
    N ports/www/tor-browser/browser/files/all-openbsd.js
    N ports/www/tor-browser/browser/files/bookmarks.html
    N ports/www/tor-browser/browser/files/extension-overrides.js
    N ports/www/tor-browser/browser/files/tor-browser-cfg-tail.js
    N ports/www/tor-browser/browser/files/tor-browser.desktop
    N ports/www/tor-browser/browser/patches/patch-_mozconfig
    N ports/www/tor-browser/browser/patches/patch-browser_installer_Makefile_in
    N ports/www/tor-browser/browser/patches/patch-configure_in
    N ports/www/tor-browser/browser/patches/patch-gfx_skia_moz_build
    N ports/www/tor-browser/browser/patches/patch-gfx_skia_skia_src_opts_SkBlitRow_opts_SSE4_h
    N ports/www/tor-browser/browser/patches/patch-intl_icu_source_Makefile_in
    N ports/www/tor-browser/browser/patches/patch-js_src_jit_ExecutableAllocator_cpp
    N ports/www/tor-browser/browser/patches/patch-security_nss_Makefile
    N ports/www/tor-browser/browser/patches/patch-security_nss_coreconf_OpenBSD_mk
    N ports/www/tor-browser/browser/patches/patch-security_nss_coreconf_UNIX_mk
    N ports/www/tor-browser/browser/patches/patch-security_nss_lib_freebl_blapi_h
    N ports/www/tor-browser/browser/patches/patch-storage_mozStorageConnection_cpp
    N ports/www/tor-browser/browser/patches/patch-toolkit_components_protobuf_src_google_protobuf_stubs_atomicops_h
    N ports/www/tor-browser/browser/patches/patch-xpcom_io_TorFileUtils_cpp
    N ports/www/tor-browser/browser/pkg/DESCR
    N ports/www/tor-browser/browser/pkg/PLIST
    N ports/www/tor-browser/https-everywhere/Makefile
    N ports/www/tor-browser/https-everywhere/distinfo
    N ports/www/tor-browser/https-everywhere/pkg/DESCR
    N ports/www/tor-browser/https-everywhere/pkg/PLIST
    N ports/www/tor-browser/noscript/Makefile
    N ports/www/tor-browser/noscript/distinfo
    N ports/www/tor-browser/noscript/pkg/DESCR
    N ports/www/tor-browser/noscript/pkg/PLIST
    N ports/www/tor-browser/tor-launcher/Makefile
    N ports/www/tor-browser/tor-launcher/distinfo
    N ports/www/tor-browser/tor-launcher/files/torrc-defaults
    N ports/www/tor-browser/tor-launcher/patches/patch-Makefile
    N ports/www/tor-browser/tor-launcher/patches/patch-src_components_tl-process_js
    N ports/www/tor-browser/tor-launcher/patches/patch-src_defaults_preferences_prefs_js
    N ports/www/tor-browser/tor-launcher/pkg/DESCR
    N ports/www/tor-browser/tor-launcher/pkg/PLIST
    N ports/www/tor-browser/torbutton/Makefile
    N ports/www/tor-browser/torbutton/distinfo
    N ports/www/tor-browser/torbutton/patches/patch-src_chrome_content_popup_xul
    N ports/www/tor-browser/torbutton/patches/patch-src_defaults_preferences_preferences_js
    N ports/www/tor-browser/torbutton/pkg/DESCR
    N ports/www/tor-browser/torbutton/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/13 14:18:49

Log message:
    Import meta/tor-browser 6.0.5, also from Sean Levy - attila at
    stalphonsos dot com.
    
    This meta port depends on all the tor-browser components - install this
    package (named tor-browser) if you want to use the browser. Refer to the
    installed README for more information on how this whole stuff works..
    
    ok danj@, also discussed at lenght on ports@ and at b2k16
    
    Status:
    
    Vendor Tag:	attila
    Release Tags:	landry_20161113
    
    N ports/meta/tor-browser/Makefile
    N ports/meta/tor-browser/pkg/DESCR
    N ports/meta/tor-browser/pkg/PLIST
    N ports/meta/tor-browser/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/13 14:23:10

Modified files:
	meta           : Makefile 
	www            : Makefile 

Log message:
Link www/tor-browser and meta/tor-browser to the build so that finally
more ppl will look into it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/13 14:24:29

Modified files:
	www/tor-browser/noscript: Makefile 

Log message:
Fix tyop, sorry for that. Just imported, no REVISION bump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/13 14:30:42

Modified files:
	audio/ympd     : Makefile 
	audio/ympd/pkg : ympd.rc 

Log message:
Put the rc_bg override where it belongs.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/11/13 14:56:59

Modified files:
	share/man/man8 : autoinstall.8 

Log message:
Improve the description of the hostname information.

OK landry@ krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/11/13 15:24:46

Removed files:
	www/aria2      : patch-src_Makefile_in 

Log message:
Remove extra file. Noticed by Rafael Sadowski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/13 16:34:17

Modified files:
	devel/doxygen  : Makefile 

Log message:
Switch doxygen,-gui back to Qt4.

Qt5 depends on libestdc++ from ports, this has bad interactions with the
PSEUDO_FLAVORS setup (PSEUDO_FLAVORS should not change the content of
built packages).  Let's go back to Qt4 as a quick fix.  Reported by
nigel@ and input from sthen@, ok Rafael Sadowski (maintainer).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/13 18:57:57

Modified files:
	textproc/py-yaml: Makefile distinfo 
Removed files:
	textproc/py-yaml/patches: patch-lib3_yaml_scanner_py 
	                          patch-lib_yaml_scanner_py 

Log message:
update to PyYAML 3.12
ok pea@ (maintainer), rpointel@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/13 20:20:33

Modified files:
	sys/sys        : malloc.h 

Log message:
add a type for counters.

ok mpi@ visa@ mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/13 20:23:45

Modified files:
	share/man/man9 : malloc.9 

Log message:
M_COUNTERS is a thing


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/13 20:26:31

Modified files:
	sys/sys        : percpu.h 

Log message:
add wrappers around common operations on counters.

specifically, counters_inc, counters_add, and counters_pkt. the latter
increments both a packet counter and adds to byte counter instead of just
one counter at a time.

part of a bigger diff thats ok mpi@ mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/13 20:40:09

Modified files:
	share/man/man9 : counters_alloc.9 

Log message:
document counters_inc, counters_add, and counters_pkt.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/13 20:51:53

Modified files:
	sys/net        : if_bridge.c if_etherip.c pf.c 
	sys/netinet    : ip_icmp.c ip_input.c ip_output.c ip_var.h 
	                 raw_ip.c 

Log message:
turn ipstat into a set of percpu counters.

each counter is identified by an enum value which correspond to the
original members of the ipstat struct.

ipstat_inc(ips_foo) replaces ipstat.ips_foo++ for the actual updates.
ipstat_inc is a thin wrapper around counters_inc.

counters are still returned to userland via the ipstat struct for now.

ok mpi@ mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/13 21:02:25

Modified files:
	games/bastet   : Makefile 

Log message:
BROKEN on sparc64

Error message:
/usr/local/lib/gcc/sparc64-unknown-openbsd6.0/4.9.4/libgcc.a(unwind-dw2-fde-dip.o): In function `__gthread_mutex_lock':
./gthr-default.h:748: undefined reference to `pthread_mutex_lock'


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/13 21:27:04

Modified files:
	sys/netinet    : ip_input.c 

Log message:
use M_COUNTERS to allocate counters.

suggested by mpi@ and mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/13 23:57:39

Modified files:
	share/man/man9 : counters_alloc.9 

Log message:
grammar;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/13 23:59:42

Modified files:
	bin/ksh        : ksh.1 

Log message:
Markup improvements:
1. Mark up reserved words intended to appear at the beginning of command
lines with .Ic.
2. Mark up syntax elements intended to appear in the middle of command
lines with .Cm.

This is not only more systematic, but also makes internal search
commands like :tif<enter>, :tstop<enter>, and :t[[<enter> work in
man(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/14 01:11:00

Modified files:
	devel/git      : Makefile 
	devel/git/pkg  : PLIST-main 

Log message:
Fix PLIST: add 'share/emacs/' and 'share/emacs/site-lisp/' directories

ok sthen@, benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 01:45:30

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Remove splnet() from socket kqueue code.

splnet() was necessary when link state changes were executed from
hardware interrupt handlers, nowdays all the changes are serialized
by the KERNEL_LOCK() so assert that it is held instead.

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/14 01:47:45

Modified files:
	print/libpaper : Makefile distinfo 

Log message:
Update to libpaper-1.1.24.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 01:54:19

Modified files:
	sys/conf       : files 
	sys/net        : radix.c rtable.c rtable.h 
Removed files:
	sys/net        : radix_mpath.c radix_mpath.h 

Log message:
Remove radix_mpath dragons.

This code insn't used since ART is the default.

ok vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 01:56:12

Modified files:
	sys/net        : radix.h 

Log message:
rnh_multipath can go, multipath support is dead.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/14 02:03:19

Modified files:
	usr.sbin/makefs: ffs.c 

Log message:
disklabel -w doesn't set bstart/bend, so makefs shouldn't do that either.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/14 02:09:20

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
uniq -> sort -u


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/14 02:10:59

Modified files:
	editors/le     : Makefile 

Log message:
Remove unneeded LIB_DEPENDS.

OK maintainer (Ivan Ivanov)


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/14 02:21:35

Modified files:
	bin/ksh        : sh.1 

Log message:
Remove an escaped blank space and insert an No macro to keep \&; at a
distance from 'Ar command'.

This is schwarze's correct version of an initial incorrect diff from me.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 02:21:41

Modified files:
	sys/arch/socppc/stand/boot: fdt.c 

Log message:
Fix build now that ftd.h move to a MI directory.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/14 02:35:38

Modified files:
	net/xl2tpd     : Makefile distinfo 
	net/xl2tpd/patches: patch-Makefile 
Removed files:
	net/xl2tpd/patches: patch-call_c patch-call_h patch-l2tp_h 
	                    patch-network_c patch-xl2tpd-control_c 

Log message:
Update to xl2tpd 1.3.8, xelerance switched to github.

Most of our patches merged upstream, and while here remove a -Os from
CFLAGS (spotted by jca@). With this update, i've (finally!) been able to
connect to an OpenBSD VPN running isakmpd with psk/npppd.

ok sthen@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 03:07:02

Modified files:
	regress/sys/net/rdomains: Makefile 
Added files:
	regress/sys/net/rdomains: lo.ok 

Log message:
Regression test for creating a rdomain default loopback interface.

Even if a lo(4) interface will now be created for every rdomain, we
must ensure that condiguring such interface via netstart(8) still
work, for example:

$  cat /etc/hostname.lo1
rdomain 1
127.0.0.1
inet6 ::1/128
alias 88.76.0.3/32


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/14 03:28:32

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

Log message:
specify ordering and precedence of location { } sections;
patch from grunk@; feedback and OK jmc@; OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 03:32:46

Modified files:
	sys/kern       : init_main.c 
	sys/net        : if.c if_loop.c if_var.h route.c rtable.c 
	                 rtable.h 
	sys/netinet    : ip_output.c 
	sys/netinet6   : ip6_input.c ip6_output.c 
	sys/sys        : socket.h 
	share/man/man9 : rtable_add.9 
	share/man/man4 : rdomain.4 

Log message:
Automatically create a default lo(4) interface per rdomain.

In order to stop abusing lo0 for all rdomains, a new loopback interface
will be created every time a rdomain is created.  The unit number will
be the same as the rdomain, i.e. lo1 will be attached to rdomain 1.

If this loopback interface is already in use it wont be possible to create
the corresponding rdomain.

In order to know which lo(4) interface is attached to a rdomain, its index
is stored in the rtable/rdomain map.

This is a long overdue since the introduction of rtable/rdomain.  It also
fixes a recent regression due to resetting the rdomain of an incoming
packet reported by semarie@, Andreas Bartelt and Nils Frohberg.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 03:44:17

Modified files:
	sys/net        : if.c 

Log message:
It should be possible to create the default loopback interface.

Make rdomain's default loopback test pass again.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 03:52:04

Modified files:
	sys/net        : if.c 

Log message:
Automatically set ::1 on all default lo(4) interfaces.

Prodded by claudio@


CVSROOT:	/cvs
Module name:	www
Changes by:	mpi@cvs.openbsd.org	2016/11/14 04:05:27

Modified files:
	faq            : current.html 

Log message:
Using loX and rdomain X on the same host no longer work if loX isn't part
of rdomain X.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/14 05:45:30

Modified files:
	sys/net        : route.c 

Log message:
Reflect interface priorities when inserting RTF_CONNECTED routes.

When multiple RTF_CLONING routes exist for a given subnet, bringing
one of the interfaces up/down could make impossible to insert new
ARP/NDP entries.

In this case the first RTF_CONNECTED route of the multipath list no
longer corresponded to the wired interface because it had the same
priority as the carp(4) route.

This is another regression of supporting multiple RTF_CONNECTED routes.

Fix a bug with a CARP setup reported by stsp@

ok stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/14 05:46:09

Modified files:
	textproc/libxml++3: Makefile distinfo 
	textproc/libxml++3/pkg: PLIST 

Log message:
Update to libxml++3-3.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2016/11/14 05:55:56

Modified files:
	sys/dev/usb    : if_umb.c 

Log message:
Stop looking for further NCM datagrams if either length or offset of
the next datagram is zero.

Tested by otto@
ok mpi@ kettnis@ otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/14 05:58:23

Modified files:
	print/hplip    : Makefile 
	print/hplip/pkg: PLIST-hpijs 

Log message:
Create a link from foomatic-rip to foomatic-rip-hplip; some old filters
still look for it.

reported by dcoppa@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/14 06:25:01

Modified files:
	sys/net        : if_pfsync.c pf.c pfvar.h 

Log message:
Instead of passing an extra mbuf pointer to pf_route(), it should
just use pd->m.  Then pf_test() can also operate on pd.m and set
the *m0 value in the caller just before it returns.
OK sashan@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/11/14 06:52:33

Modified files:
	app/cwm        : conf.c cwm.1 

Log message:
Remove the (8) default bindings for pointer move since they conflict with
default bindings for emacs, which wins; the feature remains and can be bound to
whatever users wish with cwmrc(5).

from mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/14 07:03:09

Modified files:
	sys/dev/pv     : hyperv.c hypervvar.h 

Log message:
Minor cleanup, remove unused structure members


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/14 07:13:58

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

Log message:
Bump the number of TX descriptors to 256

By increasing the number of available TX descriptors we also get
a larger NVS message ring.  Altogether this results in about 30%
performance improvement.

While here, offset all TX descriptor IDs by a fixed amount so that
the Transaction ID 0 to descriptor ID mapping produces a non-zero
result making error handling more reliable.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/14 08:02:54

Modified files:
	sys/lib/libkern/arch/mips64: memmove.S 

Log message:
Copy data by using 64-bit loads and stores rather than 32-bit
operations. This about doubles the routine's throughput.

No binary change on the 32-bit bootblocks
Discussed with miod@ long ago


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/14 08:29:24

Modified files:
	print/hplip    : Makefile 
	print/hplip/patches: patch-setup_py 

Log message:
Fix printing a test page from hp-setup

OK ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/14 08:45:40

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Check for available space before installing a patch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/14 08:49:12

Modified files:
	misc/gtk3mm-documentation: Makefile distinfo 
	misc/gtk3mm-documentation/pkg: PLIST 

Log message:
Update to gtk3mm-documentation-3.22.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/14 09:17:50

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

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/14 09:27:12

Modified files:
	usr.bin/tmux   : cmd-rotate-window.c 

Log message:
rotate-window needs to unzoom, problem reported by Sean Haugh.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/14 10:31:39

Modified files:
	lang/lucee     : Makefile distinfo 
	lang/lucee/patches: patch-WEB-INF_web_xml 
	lang/lucee/pkg : PLIST 

Log message:
update to lucee-5.1.0.34 (moving to the 5.1-stable branch).


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/14 10:44:49

Modified files:
	misc/memcached : Makefile distinfo 

Log message:
Security update to 1.4.33
fixes a remote code execution but pledge(2) is protecting us


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/14 10:49:46

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/14 10:56:45

Modified files:
	lib/libcrypto/man: BIO_f_buffer.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, show function prototypes rather than macro definitions.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/14 11:15:54

Modified files:
	lib/libcrypto/man: BIO_f_cipher.3 

Log message:
Add Copyright and license.
Delete the useless statement that a void function does not return a value.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/14 11:23:30

Modified files:
	lib/libcrypto/man: ECDSA_SIG_new.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/14 11:41:12

Modified files:
	misc/memcached : Tag: OPENBSD_6_0 Makefile distinfo 
	misc/memcached/patches: Tag: OPENBSD_6_0 patch-memcached_c 
Removed files:
	misc/memcached/patches: Tag: OPENBSD_6_0 patch-items_c 

Log message:
Security update to 1.4.33
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/14 11:45:08

Modified files:
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/pkg: PLIST-examples 

Log message:
Update to tomcat-8.5.8


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/14 11:53:20

Modified files:
	lib/libcrypto/man: BIO_f_md.3 

Log message:
Add Copyright and license.
For references to functions documented elsewhere, use .Xr, not .Fn.
Move historic information to the HISTORY section.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/14 11:55:50

Modified files:
	graphics/py-matplotlib: Makefile distinfo 
	graphics/py-matplotlib/patches: patch-setupext_py 
	                                patch-src__gtkagg_cpp 
	graphics/py-matplotlib/pkg: PLIST 
Added files:
	graphics/py-matplotlib/patches: 
	                                patch-lib_matplotlib_sphinxext_tests_test_tinypages_py 
	graphics/py-matplotlib/pkg: PFRAG.no-python3 
Removed files:
	graphics/py-matplotlib/patches: 
	                                patch-lib_matplotlib_testing_decorators_py 

Log message:
Update to py-matplotlib 1.5.3.

ok daniel@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/14 12:01:22

Modified files:
	lib/libcrypto/man: BIO_f_null.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/14 12:27:16

Modified files:
	lib/libssl/man : BIO_f_ssl.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, show function prototypes rather than macro definitions.
Delete the useless NOTES section header.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/14 12:41:47

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

Log message:
Update the switch(4) man page to tell that the device handles streams and
not packets anymore.

ok reyk@, jmc@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/11/14 12:56:05

Modified files:
	app/cwm        : conf.c 

Log message:
Reorganize for upcoming changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/14 13:04:56

Modified files:
	net/scapy      : Makefile distinfo 
	net/scapy/patches: patch-scapy_config_py patch-setup_py 
	net/scapy/pkg  : PLIST 
Removed files:
	net/scapy/patches: patch-scapy_arch_unix_py 
	                   patch-scapy_sendrecv_py 
	                   patch-test_regression_uts 
	                   patch-test_run_tests 

Log message:
Update to scapy-2.3.3 and take maintainership (no objection from
previous maintainer armani@)

tested by bluhm@
previous diff ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/14 13:05:13

Modified files:
	lib/libcrypto/man: BIO_find_type.3 

Log message:
Add Copyright and license.
BIO_method_type() is a function, not a macro.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/11/14 14:25:59

Modified files:
	app/cwm        : calmwm.h conf.c parse.y 

Log message:
Define callbacks, then default bindings.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/11/14 14:34:39

Modified files:
	distrib/miniroot: install.sub 

Log message:
Ensure, that the root disk question is added to the response file
mail.

found by and OK tb@
OK halex@ krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/14 15:33:07

Modified files:
	textproc/lua-yaml: Makefile distinfo 

Log message:
update to lua-yaml 6.1
ok Florian Stinglmayr (maintainer), fcambus@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/11/14 17:07:03

Modified files:
	app/cwm        : calmwm.h conf.c kbfunc.c 

Log message:
Add a wrapper based upon xevent handlers around client move/resize for key and
mouse bindings.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/11/14 17:22:02

Modified files:
	app/cwm        : calmwm.h conf.c kbfunc.c 

Log message:
revert previous; upcoming changes will hopefully deal with these more
naturally.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/14 19:59:25

Modified files:
	faq            : current.html 

Log message:
tweak previous, with help from tj


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/15 01:15:07

Modified files:
	usr.sbin/switchctl: Makefile parser.c parser.h switchctl.c 
Added files:
	usr.sbin/switchctl: ofpclient.c 

Log message:
Add a simple openflow client to dump switch information.  The
implementation re-uses the openflow code from switchd. Not finished
yet, but it is better to continue working on it in the tree.  Later
versions will also include a way to add flows from the command line -
this is being worked on for switchd and some code of the
"ASCII-to-flow" parser will be shared here as well.

As discussed with and lightly tested by rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/15 01:22:49

Modified files:
	devel/py-codestyle: Makefile distinfo 

Log message:
Update to py-codestyle 2.2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/15 01:23:50

Modified files:
	devel/flake8   : Makefile distinfo 
	devel/flake8/pkg: PLIST 
Removed files:
	devel/flake8/patches: patch-setup_py 

Log message:
Update to flake8 3.2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/15 01:29:43

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

Log message:
Update to py-uncompyle6 2.9.5


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/15 01:38:57

Modified files:
	usr.sbin/switchctl: parser.c 

Log message:
swap dump arguments to expect the address first


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/15 01:48:28

Modified files:
	x11/gnome/builder: Makefile 
	x11/gnome/builder/patches: 
	                           patch-libide_subprocess_ide-subprocess-launcher_c 

Log message:
Finally fix the terminal applet; from upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/15 01:50:33

Modified files:
	security/libgpg-error: Makefile distinfo 

Log message:
Update to libgpg-error-1.25.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/15 01:50:39

Modified files:
	usr.sbin/switchctl: switchctl.8 

Log message:
Describe the 'dump' command


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/15 02:05:14

Modified files:
	usr.sbin/switchd: switchd.h util.c 
	usr.sbin/switchctl: ofpclient.c 

Log message:
Add a socket_setport() util function, in addition to socket_getport(),
and use it in switchctl to set a default port for "dump".
No functional change for switchd itself.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/15 02:08:38

Modified files:
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	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 

Log message:
Clean up the kernel Makefile's:

- Remove the 'lint' target. lint has been removed with OpenBSD 5.2.
- Remove the 'tags' target. It does nothing of value.
- Replace 'clean::' with 'clean:', as requested by espie and millert,
and remove files from the 'clean' target, that are never generated.
- Don't create a file called 'depend' in 'make depend', but just do
nothing instead.

ok mpi tb


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/15 02:25:45

Modified files:
	lib/libcrypto/man: EC_GFp_simple_method.3 EC_GROUP_copy.3 
	                   EC_GROUP_new.3 EC_KEY_new.3 EC_POINT_add.3 
	                   EC_POINT_new.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/15 02:30:03

Modified files:
	usr.sbin/switchctl: switchctl.8 

Log message:
- Ar arg Ar arg is better written as Ar arg arg
- sort


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 02:48:03

Modified files:
	sys/netinet    : ip_ipsp.c 

Log message:
TDB timers need a context process, so convert them to timeout_set_proc(9).

ok phessler@, bluhm@ as part of a larger diff


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/15 02:49:48

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Double the required size to make sure we have enough space for install(1) safe
copy, the rollback tarball and in case we add new files.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/15 02:53:23

Modified files:
	usr.bin/tmux   : tmux.1 window-copy.c 

Log message:
Add copy-pipe-and-cancel, from Artem Fokin.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/15 03:04:58

Modified files:
	lang/gcc/4.9   : Makefile 

Log message:
bump LIB_DEPENDS for adastrap/gmp update
from tobiasu, ok dcoppa (+ REVISION bump from me)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 03:09:29

Modified files:
	sys/net        : route.c 

Log message:
Properly initialize ``ifa''.

Note that dereferencing ``rt_ifa'' after calling rtfree(9) is generally
not safe.  In this case we rely on the fact that rtredirect() is still
serialized with interface ioctl(2)s.

This function cries for a rewrite.

Reported by and ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 03:36:37

Modified files:
	regress/sys/net/rdomains: lo.ok 

Log message:
Check for correct flags now that ::1 is set automagically.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 03:37:34

Modified files:
	regress/sys/netinet/carp: carp_subr 

Log message:
Fix rdomain_is_used() now that lo(4) is created automagically.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 03:43:41

Modified files:
	regress/sys/net/rtable/delete: main.c 
	regress/sys/net/rtable/fullfeed: main.c 

Log message:
rtable_init() now creates the default routing table.


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/15 03:49:37

Modified files:
	usr.sbin/dhcpd : dispatch.c icmp.c options.c pfutils.c 

Log message:
Replace bzero(3) with memset(3)

"Looks good" to deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/15 03:51:28

Modified files:
	faq            : faq5.html 

Log message:
add an XXX marker for a mention of tags and cscope that might fit here
when i overhaul the page for 6.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 03:51:38

Modified files:
	regress/sys/net/etherip: etherip_subr 
	regress/sys/net/vxlan: vxlan_subr 

Log message:
Sync rdomain_is_used()


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/15 04:25:38

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

Log message:
Avoid an uninitialised value in rev 1.93.
ok martijn@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/15 04:57:02

Modified files:
	sys/kern       : uipc_socket2.c 
	sys/sys        : socketvar.h 

Log message:
Bring back the SB_LOCK and SB_WANT flags to lock the socket buffers
in process context.  The read/write lock introduced in rev 1.64
would create lock ordering problems with the upcoming SOCKET_LOCK()
mechanism.  The current tsleep() in sblock() must be replaced with
rwsleep(&socketlock) later.  The sb_flags are protected by
KERNEL_LOCK().  They must not be accessed from interrupt context,
but nowadays softnet() is not an interrupt anyway.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 05:01:11

Modified files:
	sys/dev/ic     : nvme.c nvmereg.h 

Log message:
Mask non relevant bits when pritting version number.

Makes gonzalo@'s Macbookair7,1 NVMe report the correct version.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 05:17:42

Modified files:
	sys/dev/ic     : nvme.c 

Log message:
Do not use bus_space_{read,write}_8() even on LP64 archs,
some (broken) controllers require ordered split transfers.

From linux a310acd7a7ea53533886c11bb7edd11ffd61a036

Tested by gonzalo@, ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/15 05:24:19

Modified files:
	net/freeradius3: Makefile distinfo 
	net/freeradius3/pkg: PLIST-main 

Log message:
update to freeradius-3.0.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/11/15 05:51:02

Modified files:
	devel/apktool  : Makefile distinfo 

Log message:
small update of apktool to 2.2.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/15 05:56:34

Modified files:
	regress/usr.sbin/syslogd: Makefile 

Log message:
Create the sys/syscall.ph header file on demand for the sendsyslog(2)
tests since Perl headers are not installed by default anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 06:12:24

Modified files:
	sys/netinet6   : nd6.c 

Log message:
Kill recursive splsoftnet().

ok phessler@, bluhm@ as part of a larger diff.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 06:44:03

Modified files:
	sys/netmpls    : mpls_raw.c 

Log message:
Return EOPNOTSUPP instead of calling a function to do only that.

ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 06:46:54

Modified files:
	sys/nfs        : nfs_vfsops.c 

Log message:
Switch nfs_timer() to timeout_set_proc(9) as it might end up doing a
PRU_SEND.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/11/15 06:53:35

Modified files:
	share/man/man4/man4.loongson: ykbec.4 
	sys/arch/loongson/dev: kb3310.c 

Log message:
Add support for lid state detection in ykbec(4).

Tested on a Lemote Yeeloong 8101B.

OK visa@, looks good to deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/15 07:01:05

Modified files:
	net/arp-scan   : Makefile distinfo 

Log message:
update mac vendors


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/15 07:02:32

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

Log message:
Initial attempt to make use of left and right margins if the terminal
supports them (that is, if it advertises itself as a VT420 - probably
just xterm). These are the vertical equivalent of the scroll region and
allow much faster scrolling of panes that do not take up the full width
of the terminal.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/15 07:08:27

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

Log message:
And of course I just find a bug, disable previous for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/15 07:30:59

Modified files:
	sys/netinet    : tcp_input.c 

Log message:
Use __func__ in panic strings to reduce noise when grepping.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/15 07:46:01

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
checkfs: ignore nonexistent files and extend comment. There's actually no need
to double the size since files are replaced one by one.

create_rollback: create release directory with explicit permissions.

ls_installed: create release directory if it does not exist (temporary XXX) for
early testers without a 6.1 hier(7); issue reported by Marc Benslahdine


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/15 08:17:29

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

Log message:
Turn on margins, with a couple of fixes (only limit to the pane for line
feeds, and do not move cursor to end for full width panes).


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/15 09:00:50

Modified files:
	regress/sys/net/pf_divert: Makefile Remote.pm remote.pl 

Log message:
Mark pf states created by this regress test with a label.  Remove
all such states before basic testing to make sure that these subtests
are independent.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/15 09:29:04

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
Small wording tweak and a couple of fixes from jmc@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/11/15 11:43:09

Modified files:
	app/cwm        : kbfunc.c 

Log message:
Use an additional check with lstat(2) when d_type is unknown.

from James McDonald via portable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/15 13:35:30

Modified files:
	multimedia/gstreamer-0.10/plugins-bad: Makefile 
	multimedia/gstreamer-0.10/plugins-bad/pkg: PLIST-main 
Removed files:
	multimedia/gstreamer-0.10/plugins-bad/patches: 
	                                               patch-gst_nsf_gstnsf_c 
	                                               patch-gst_nsf_nsf_c 
	                                               patch-gst_nsf_nsf_h 

Log message:
Disable NSF plugin, due to security concerns.

OK ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/15 13:44:40

Modified files:
	etc            : group master.passwd 
	etc/mail       : aliases 

Log message:
Introduce the build user and the wobj group that will soon be used as
defaults for building the system from source.

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/15 14:53:47

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

Log message:
Update to firefox-esr 45.5.0.

See https://www.mozilla.org/en-US/firefox/45.5.0/releasenotes/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2016-90/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/15 15:01:15

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

Log message:
Update to firefox 50.0.

See https://www.mozilla.org/en-US/firefox/50.0/releasenotes/
and https://www.mozilla.org/en-US/security/advisories/mfsa2016-89/

Switch back to build against systemwide sqlite3 coming from the
ports-tree. Remove the build goo for macppc|sparc64|alpha, it's unlikely
this will ever come back...


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/15 17:24:03

Modified files:
	usr.bin/tmux   : cmd-find.c cmd-select-pane.c tmux.h window.c 

Log message:
The target validity check used window_pane_visible but that may be false
if the pane is zoomed, so instead add a new function to just check if
the pane is actually on screen (most commands still want to accept panes
invisible by zoom). Also reject panes outside the window for various
special targets. Problem reported by Sean Haugh.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/15 18:15:37

Modified files:
	sys/dev/ic     : re.c rtl81x9reg.h 

Log message:
serialise posts to the txstart register.

without this it is possible for re_txeof to let the chip look at
and complete tx descriptors that re_start has written to the ring
but not accounted for in the software producer index. in this
situation no future interrupts may be generated for packets on the
ring, and tx will stall.

the serialisation is implemented by only doing the writes from tasks
via ifq_serialize.

this is part of a bigger diff that fixes lockups reported by haesbaert.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/15 18:27:45

Modified files:
	sys/dev/ic     : re.c rtl81x9reg.h 

Log message:
move toward having the a tx packet descriptor per tx ring entry.

previously you could have 64 packets on a ring with up to 1024
descriptors. this mismatch makes the accounting for free space
complicated and allows for a data race with OACTIVE being set.
it will also let us push more packets.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/15 18:55:10

Modified files:
	sys/dev/ic     : re.c 

Log message:
dont restrict the number of tx descriptors to what can fit on a cpu page.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/15 19:50:17

Modified files:
	sys/dev/ic     : re.c 

Log message:
allocate dmamaps for every descriptor in the tx ring.

previously there was a limit of 64 packets on the tx ring. soon we
will use as many descriptors as we want to fill the ring.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/15 23:06:04

Modified files:
	sys/dev/ic     : re.c 

Log message:
rework re_start and re_txeof to be more like other drivers.

the important change is to no longer account for packets and
descriptors separately, instead we just deal with available descriptors
on the ring.

this allows us to guarantee that oactive will only be set after
re_start has queued at least one packet, which in turn guarantees
that the chip will interrupt in the future and run re_txeof to clear
oactive.

without this change it was possible for a call of re_start to almost
fill the descriptor ring, followed by a second call that could fail
to post a packet because it had run out of descriptors and would
then set oactive. if re_txeof ran concurrently it could complete
all the previously posted packets without noticing that oactive had
been set and therefore needed to be cleared. in that situation
oactive would be set, but nothing would be set up to clear it
in the immediate future.

this fixes a lockup reported by haesbaert.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/11/16 00:02:48

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Use memcpy() to copy structures into freshly malloc'ated buffers,
as source and destination never overlap in this case. From
Michael W. Bombardieri <mb at ii.net>.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/16 01:09:26

Modified files:
	regress/usr.sbin/switchd: OFP.pm run.pl 

Log message:
Remove code duplication for receiving/sending OFP packets and simplify
packet-in building.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2016/11/16 01:11:31

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
Add Sierra Wireless EM7455 LTE module.

from Bryan Vyhmeister, ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2016/11/16 01:12:39

Modified files:
	sys/dev/usb    : usbdevs_data.h usbdevs.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 01:46:05

Modified files:
	sys/net        : pf_if.c pf_ioctl.c 

Log message:
Kill recursive splsoftnet()s.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 01:50:33

Modified files:
	sys/netinet    : tcp_input.c tcp_var.h 

Log message:
Kill recursive splsoftnet()s.

While here keep local definitions local.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 02:00:01

Modified files:
	sys/net        : bpf.c 

Log message:
Allow bpf_allocbufs() to fail when allocating memory.

This will help trading the KERNEL_LOCK for a mutex.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/16 02:22:16

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

Log message:
Initialize modeprefix to 1 properly in window_pane_create, from Artem Fokin.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/16 04:36:03

Modified files:
	regress/usr.sbin/switchd: OFP.pm args-packet-jumbo.pm run.pl 

Log message:
Add support for big reads in perl and fix the jumbo test, also remove
message type specific code from OFP encode.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/16 04:37:16

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

Log message:
Do not stop dragging when the wheel is pressed, from Artem Fokin.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/16 04:41:17

Modified files:
	usr.bin/tmux   : cmd-rename-session.c 

Log message:
Don't error if renaming a session to its current name, from shik dot
chen at gmail dot com.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/16 05:21:46

Modified files:
	sys/netinet    : ip_icmp.c 
	sys/netinet6   : icmp6.c 

Log message:
Inherit route label when creating dynamic routes for path MTU.
From Rivo Nurges; OK claudio@ mpi@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/16 05:48:19

Modified files:
	sys/netinet    : ip_icmp.c 
	sys/netinet6   : icmp6.c 

Log message:
Bring icmp6_mtudisc_clone() in line with icmp_mtudisc_clone().  The
IPv4 dynamic route inherits the priority.  Only clone from a valid
IPv6 route.  Do not use splsoftnet() in IPv6.  Some stylistic changes
to make the functions similar.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/16 05:50:51

Modified files:
	www/lighttpd   : Makefile 
Added files:
	www/lighttpd/patches: patch-src_mod_scgi_c 

Log message:
Add upstream patch to lighttpd; fixes SCGI segfault regression. From Brad.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/16 06:13:46

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

Log message:
Update to cairomm-1.12.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/16 06:18:36

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

Log message:
Update to py-botocore-1.4.73.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/16 06:18:54

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.16.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/16 06:31:22

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

Log message:
Fix calculation of whether we need a region for drawing a cell (only if
full width and at the edge of the region), otherwise clear the region entirely.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/16 06:47:27

Modified files:
	sys/net        : bpf.h if_switch.c if_switch.h switchofp.c 
	lib/libpcap    : gencode.c pcap.c shlib_version 
	usr.sbin/tcpdump: interface.h print-ofp.c print-tcp.c tcpdump.c 

Log message:
Add new DLT_OPENFLOW link-type to allow using tcpdump to debug switch(4),
eg. tcpdump -y openflow -i switch0

Includes a minor bump for libpcap.

Feedback and OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/16 06:50:12

Modified files:
	graphics/py-matplotlib: Makefile 

Log message:
Fix bdep, spotted by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 07:11:26

Modified files:
	sys/netinet    : tcp_input.c 

Log message:
Be consistent and do not use braces for single line statements.

Prodded by and ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 07:13:00

Modified files:
	sys/net        : bpf.c 

Log message:
Use goto in bpf{read,write}() to ease review of locked sections.

While here properly account for used reference in bpfwrite().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 07:23:10

Modified files:
	sys/net        : if_ppp.c 

Log message:
Kill outdated comment talking about sofnet.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 07:25:19

Modified files:
	sys/net        : if_spppsubr.c 

Log message:
if_link_state_change() doesn't need to be called under splsoftnet(),
it just schedule a task.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/16 07:50:13

Modified files:
	sys/net        : if_gre.c 

Log message:
Convert gre_send_keepalive() to timeout_set_proc(9) as it calls ip_output().


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/16 07:54:26

Modified files:
	usr.sbin/syspatch: syspatch.8 syspatch.sh 

Log message:
/bsd.rollbackXX -> bsd.syspatchXX to make it more obvious where it comes from
and less prone to conflict.
Simplify ls_installed while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/16 08:27:52

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
If we install a new kernel, add /bsd twice (for size checking) when:
- we are on an MP system (/bsd.mp does not exist there)
- /bsd.syspatchXX is not present (create_rollback will add it)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/16 08:32:42

Modified files:
	usr.sbin/switchd: proc.c proc.h 
	usr.sbin/vmd   : proc.c proc.h 

Log message:
Sync switchd(8) and vmd(8) with the latest proc.c changes. This sync
basically imports the imsg_flush() fix from reyk@ in httpd(8).

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/16 09:00:41

Modified files:
	regress/sys/net/pf_divert: Makefile README 

Log message:
Test multiple combinations of divert connections.  The socket cleanup
of the first connection must remove the pf state so that the second
connection can succeed.  Disable two raw IP tests that do not work
with the current implementation in the kernel.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/16 09:11:31

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Merge comments altogether, it's easier to understand this way.
And drop some duplicate while here.


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/11/16 10:03:47

Modified files:
	opensmtpd      : donations.html 

Log message:
Thanks Enric Caussa Morales


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/16 10:38:00

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

Log message:
Update to py-virtualenv-15.1.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/16 11:52:45

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/16 12:09:34

Modified files:
	sysutils/packer: Makefile distinfo 

Log message:
Update to packer-0.12.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/11/16 12:48:20

Log message:
    OK landry@
    
    Comment:
    interactive process viewer
    
    Description:
    htop is an interactive process viewer for Unix systems.
    
    Maintainer: Ian Sutton <ian@ce.gl>
    
    WWW: https://hisham.hm/htop/index.php
    
    Status:
    
    Vendor Tag:	juanfra
    Release Tags:	juanfra_20161116
    
    N ports/sysutils/htop/Makefile
    N ports/sysutils/htop/distinfo
    N ports/sysutils/htop/patches/patch-openbsd_OpenBSDProcess_c
    N ports/sysutils/htop/patches/patch-FunctionBar_c
    N ports/sysutils/htop/pkg/PLIST
    N ports/sysutils/htop/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/11/16 12:49:55

Modified files:
	sysutils       : Makefile 

Log message:
+htop


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/16 12:55:30

Modified files:
	databases/openldap23: Makefile 
	databases/openldap23/patches: patch-libraries_libldap_tls_c 

Log message:
Unbreak after last libssl cleanup.

Just don't use ssl3_send_alert(), as done in more recent openldap
versions.  Diff from guenther@, ok henning@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/16 14:02:02

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

Log message:
Always attempt to restart the transmission when OACTIVE is set

There's not much point in adding an additional condition to the
ifq_restart call so just get rid of those bits.  Also while here,
remove a debugging message and make sure to cleanup the whole RNDIS
packet before sending it out to the hypervisor.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/16 14:30:37

Modified files:
	usr.sbin/smtpd : bounce.c filter.c ioev.c ioev.h mda.c 
	                 mta_session.c smtp_session.c 

Log message:
pass the user pointer as parameter to the io callback instead of having
the user dereference the io structure.

ok millert@ gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/16 14:40:21

Modified files:
	gnu/usr.bin/texinfo: Makefile.bsd-wrapper 

Log message:
Set permissions of /usr/share/info/dir explicitly, so they don't depend on
the umask.

ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/16 14:52:54

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

Log message:
Add new register definitions from the upstream; no binary change


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/16 15:15:20

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

Log message:
Add new structures and new fields; no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/16 15:31:16

Added files:
	sys/dev/pci    : ixgbe_x550.c 

Log message:
Intel X550 specific module; not hooked up to the build yet

Obtained from the Intel ixgbe driver in FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/16 16:19:29

Modified files:
	sys/dev/pci    : ixgbe.c ixgbe_82598.c ixgbe_82599.c 
	                 ixgbe_type.h ixgbe_x540.c 

Log message:
Remove unused bits; no functional change


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/16 19:06:46

Modified files:
	games/gnuchess : Makefile distinfo 
	games/gnuchess/pkg: PLIST 
Removed files:
	games/gnuchess/patches: patch-src_main_cc 

Log message:
SECURITY update to gnuchess-6.2.4

Input buffer overflow


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/16 19:09:21

Modified files:
	games/gnuchess : Tag: OPENBSD_6_0 Makefile 
Added files:
	games/gnuchess/patches: Tag: OPENBSD_6_0 
	                        patch-src_frontend_move_cc 

Log message:
SECURITY fix for CVE-2015-8972

Tested by Pierre Emeriaud


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/17 00:33:06

Modified files:
	usr.sbin/smtpd : ioev.c ioev.h mta_session.c smtp_session.c 

Log message:
remove IO_TLSVERIFIED which is not a io event, and inline necessary code
where the callback functions are called for this event.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 02:23:14

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-135.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 02:26:19

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.74.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 02:26:43

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.17.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/17 02:34:02

Modified files:
	www/ruby-faraday_middleware: Makefile distinfo 
	www/ruby-faraday_middleware/pkg: PLIST 

Log message:
Minor update 0.10.0 -> 0.10.1


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/17 02:42:11

Modified files:
	usr.sbin/switchd: ofp13.c ofp_common.c switchd.h 

Log message:
Added the missing code to build flow-mod messages and to install
table-miss by default for switch(4).

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/17 02:51:41

Modified files:
	emulators/hatari: Makefile distinfo 
	emulators/hatari/patches: patch-CMakeLists_txt 
	                          patch-share_CMakeLists_txt 
	                          patch-src_CMakeLists_txt 
	                          patch-tools_CMakeLists_txt 
	emulators/hatari/pkg: DESCR PLIST 

Log message:
Update hatari to 2.0.0.

Notable changes:

- Build switched to SDL2 as this is now upstream default
- We do not build the Python UI anymore

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/17 02:55:51

Modified files:
	sysutils/ruby-r10k: Makefile distinfo 
	sysutils/ruby-r10k/pkg: PLIST 

Log message:
Update 2.4.3 -> 2.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/17 02:57:51

Modified files:
	devel/lualdoc  : Makefile distinfo 

Log message:
Update to LDoc-1.4.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/17 03:01:04

Modified files:
	databases/ruby-hiera3: Makefile distinfo 

Log message:
Simple update 3.2.1 -> 3.2.2, remove dependency to json_pure
that was forgotten to remove with last update


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/17 03:05:44

Modified files:
	usr.sbin/switchd: ofp_common.c switchd.h 
	usr.sbin/switchctl: Makefile 

Log message:
Add ofp_validate() for all supported versions. Will be used by switchctl,
no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/17 03:06:08

Modified files:
	usr.bin/tmux   : format.c xmalloc.c xmalloc.h 

Log message:
Key running commands for #() by the unexpanded command, and run them
again if the expanded form changes (otherwise at most once per second as
usual). Fixes issues reported by Gregory Pakosz.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/17 03:15:05

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Accept OFP_XM_T_ETH_TYPE.

OK rzalamena@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/11/17 03:52:11

Modified files:
	build          : mirrors.dat 

Log message:
remove mirror.telepoint.bg; outdated, doesn't follow our url conventions,
and there's another mirror in .bg


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/11/17 03:52:52

Modified files:
	.              : ftp.html ftplist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/11/17 03:53:11

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/11/17 04:16:43

Modified files:
	games/0ad      : Makefile.inc 
	games/0ad/base : Makefile distinfo 
	games/0ad/base/patches: 
	                        patch-build_workspaces_update-workspaces_sh 
	                        patch-libraries_source_spidermonkey_build_sh 
	                        patch-libraries_source_spidermonkey_patch_sh 
	games/0ad/base/pkg: PLIST 
	games/0ad/data : distinfo 
Removed files:
	games/0ad/base/patches: 
	                        patch-libraries_source_spidermonkey_FixForEndian_diff 

Log message:
Update to 0ad 0.0.21

ok bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/17 05:21:27

Modified files:
	sys/dev/pci    : ixgbe.c ixgbe_82598.c ixgbe_82599.c ixgbe_phy.c 
	                 ixgbe_x540.c 

Log message:
Style and typo fixes; no binary change


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/17 05:40:56

Modified files:
	usr.sbin/switchd: ofp13.c ofp_common.c switchd.h types.h 

Log message:
Add an abstraction layer / API to create flows including all matches
and instructions.  This makes it easier to integrate flow features in
switchd and switchctl later.

Written and committed during a long flight.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/17 06:10:26

Modified files:
	usr.sbin/switchd: ofp_common.c 

Log message:
In oflowmod, automatically open the instructions block with the first
instruction.  This allows to make the grammar more flexible.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/17 06:12:03

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

Log message:
Update 82598 specific module

A custom method to enable RX DMA is introduced because of the
upcoming API change in the common code.  Otherwise it's just
a copy of the ixgbe_enable_rx_dma_generic.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/17 06:17:32

Modified files:
	sys/net        : pf.c 

Log message:
The pf fragment reassembly code accepted IPv6 hop-by-hop headers
after fragment headers.  Add an extra check that the hop-by-hop
header is always the first extension header after the IPv6 header.
Found by Antonios Atlasis; OK sthen@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/17 06:24:32

Modified files:
	regress/sys/netinet6/frag6: Makefile 
Added files:
	regress/sys/netinet6/frag6: frag6_hop.py 

Log message:
Send fragment with Hop-by-Hop extension header after the fragment
header.  I must not be processed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/11/17 06:28:33

Log message:
    Import net/qsyncthingtray, a system tray app for syncthing.
    
    Input and OK, awolk@. Thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20161117
    
    N ports/net/qsyncthingtray/Makefile
    N ports/net/qsyncthingtray/distinfo
    N ports/net/qsyncthingtray/pkg/PLIST
    N ports/net/qsyncthingtray/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/11/17 06:30:53

Modified files:
	net            : Makefile 

Log message:
Link net/qsyncthingtray.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/17 06:37:20

Modified files:
	sys/net        : if_etherip.c 

Log message:
Remove splsoftnet()s in the ioctl(2) path.

Since soft-interrupt for network processing are no more, the
KERNEL_LOCK() is what protect two concurrent threads from
accessing  data structures.

ok goda@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/17 06:46:59

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-2.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 07:05:46

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Drop priv. to the _pkgfetch (for now) user when running ftp(1) and signify(1).
Similar to what the installer does.

Listing installed patches and displaying the usage are now the only actions
allowed to a non-privileged user.

discussed with deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/17 07:12:33

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

Log message:
Make iwm(4) pass Tx/Rx MCS rates to bpf so they can be examined with tcpdump.
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 07:16:28

Modified files:
	net/qsyncthingtray: Makefile distinfo 

Log message:
Properly use GH_* variables instead of fetching a distfile with no name
and only a version number.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/17 07:18:55

Modified files:
	net/wireshark  : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
update wireshark in -stable to 2.0.8


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/17 07:37:55

Modified files:
	regress/usr.sbin/switchd: args-packet-jumbo.pm run.pl 

Log message:
Add support for OpenFlow 1.3.5 tests and make jumbo test use the new
version.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/17 07:41:21

Modified files:
	sys/arch/loongson/conf: files.loongson 
	sys/arch/loongson/dev: mainbus.c 
	sys/arch/loongson/include: intr.h 
	sys/arch/loongson/loongson: machdep.c 
Added files:
	sys/arch/loongson/dev: com_leioc.c htb.c htbreg.h htbvar.h 
	                       leioc.c leiocreg.h leiocvar.h 
	sys/arch/loongson/loongson: generic3a_machdep.c 

Log message:
Add drivers for PCI host bridge and built-in UARTs on Loongson 3A,
and put the pieces together by platform glue.

Feedback from miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/17 07:44:34

Modified files:
	sys/arch/loongson/conf: GENERIC RAMDISK 

Log message:
Turn Loongson 3A bits on.

The work on the platform was made possible by a hardware donation
from Loongson Technology.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/17 07:52:49

Modified files:
	usr.sbin/httpd : httpd.h parse.y server.c 

Log message:
Move OCSP loading into a separate function - it is not part of the keypair
and this way we can give a separate specific error message.

ok beck@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/17 07:58:38

Modified files:
	usr.sbin/httpd : server.c 

Log message:
Check the return value of tls_config_set_protocols(), now that it returns
an int.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/17 08:06:16

Modified files:
	share/man/man4/man4.loongson: Makefile 
Added files:
	share/man/man4/man4.loongson: htb.4 leioc.4 

Log message:
Add htb(4) and leioc(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/17 08:06:22

Modified files:
	lib/libssl     : s3_pkt.c 

Log message:
Use defines instead of magic numbers and comments.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/17 08:09:47

Modified files:
	share/man/man4 : com.4 pci.4 

Log message:
Add loongson references.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 08:15:49

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Re-add the root user checks in the quirks; that part is to be removed soon.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 08:21:45

Modified files:
	graphics/rawtherapee: Makefile 
	graphics/rawtherapee/patches: patch-rtengine_dcraw_cc 
Added files:
	graphics/rawtherapee/patches: patch-rtgui_guiutils_h 

Log message:
Fix build with newer cairomm.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/11/17 08:22:41

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Convert ssl3_get_client_kex_dhe() to CBS and perform some general code
cleanup, including the removal of a dead code path.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/11/17 08:41:14

Modified files:
	sys/net        : bpf.h 

Log message:
Add DLT_USER1..15 with the same values as the upstream libpcap repository.
Suggested by reyk@ as a quick fix to unbreak ports/net/wireshark.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/17 09:24:00

Modified files:
	usr.sbin/switchd: ofp10.c ofp13.c ofrelay.c 

Log message:
Fix some styles issues: break big lines and remove some useless spaces.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/17 09:56:05

Modified files:
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/core: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad/pkg: PLIST 
	multimedia/gstreamer1/plugins-base: Makefile distinfo 
	multimedia/gstreamer1/plugins-good: distinfo 
	multimedia/gstreamer1/plugins-libav: distinfo 
	multimedia/gstreamer1/plugins-ugly: Makefile distinfo 
	multimedia/gstreamer1/py-gstreamer: distinfo 

Log message:
Bump the gstreamer1 gang to version 1.10.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/11/17 09:59:35

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 54.0.2840.100


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/17 10:27:05

Modified files:
	regress/sys/netinet6/frag6: Makefile frag6.py frag6_ext.py 
	                            frag6_hop.py frag6_opt.py 
	                            frag6_overatomic.py 
	                            frag6_overdrop.py frag6_overhead.py 
	                            frag6_overhead0.py frag6_overtail.py 
	                            frag6_padding.py frag6_permute.py 
	                            frag6_refrag.py frag6_shortatomic.py 
	                            frag6_timeout.py frag6_udpatomic.py 
	                            frag6_udpheader.py 
	                            frag6_udppayload.py 
	                            frag6_zerofirst.py 
	                            frag6_zerosecond.py 
Added files:
	regress/sys/netinet6/frag6: LICENSE 

Log message:
Put all make targets in a loop and print a little more what each
IPv6 fragment header test is doing.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/17 10:34:55

Modified files:
	usr.sbin/smtpd : ioev.c ioev.h smtpd.h util.c 

Log message:
Add io api functions for dealing with buffered data, as wrapper around
their iobuf counterparts.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/17 12:26:57

Modified files:
	sys/dev/pci    : ixgbe.c ixgbe.h ixgbe_82598.c ixgbe_82599.c 
	                 ixgbe_phy.c ixgbe_type.h ixgbe_x540.c 

Log message:
Bring in new PHY bits, some of the 82599 specific stuff becomes shared


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/17 12:32:48

Modified files:
	faq            : current.html 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/17 13:44:04

Modified files:
	sys/dev/pci    : ixgbe.c ixgbe.h ixgbe_type.h ixgbe_x540.c 

Log message:
EEPROM code refactoring for X540


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/17 13:48:48

ports/telephony/p5-Net-SIP/patches

Update of /cvs/ports/telephony/p5-Net-SIP/patches
In directory cvs.openbsd.org:/tmp/cvs-serv48569/patches

Log Message:
Directory /cvs/ports/telephony/p5-Net-SIP/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/17 14:06:16

Modified files:
	lib/libcrypto/man: ERR.3 ERR_GET_LIB.3 ERR_error_string.3 
	                   ERR_get_error.3 ERR_load_crypto_strings.3 
	                   ERR_load_strings.3 ERR_print_errors.3 
	                   ERR_put_error.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/17 14:08:27

Modified files:
	sys/dev/pci    : ixgbe.c ixgbe.h ixgbe_82599.c ixgbe_phy.c 
	                 ixgbe_type.h ixgbe_x540.c 

Log message:
Autoconfiguration and firmware semaphore refactoring


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/17 14:13:27

Modified files:
	sys/dev/pci    : ixgbe_phy.c ixgbe_type.h 

Log message:
Support for I2C combined messages as required by X550


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/17 14:18:23

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

Log message:
A firmware block check missed in previous commits


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/17 14:40:11

Modified files:
	security/ruby-pledge: Makefile 

Log message:
Bump for PLIST changes made to all ruby gem ext ports at b2k16

Noticed by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/17 14:56:59

Modified files:
	mail/roundcubemail: Makefile 
	mail/roundcubemail/pkg: PLIST README 

Log message:
Install a sample /var/www/roundcubemail/db/ directory with valid permissions,
for sqlite3 users. Philippe Leledy reported that it had to be created manually.

While there, add a sample nginx config section to the README.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/17 15:45:41

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/17 17:00:21

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 
	telephony/p5-Net-SIP/pkg: PLIST 

Log message:
update p5-Net-SIP to 0.701
warning: major API changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/17 17:09:12

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0223


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2016/11/17 18:04:19

Modified files:
	x11/smplayer   : Makefile distinfo 
	x11/smplayer/patches: patch-src_preferences_cpp 
	x11/smplayer/pkg: PLIST 

Log message:
Update for SMPlayer to 16.11.0

Test from Josh Grosse, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/17 19:53:48

Modified files:
	sys/net        : pipex.c 
	sys/netinet    : ip_output.c udp_usrreq.c udp_var.h 
	sys/netinet6   : ip6_output.c udp6_output.c 

Log message:
turn ipstat into a set of percpu counters.

each counter is identified by an enum value which correspond to the
original members of the udpstat struct.

udpstat_inc(udps_foo) replaces udpstat.udps_foo++ for the actual
updates. udpstat_inc is a thin wrapper around counters_inc.

counters are still returned to userland via the udpstat struct for
now.

ok mpi@ mikeb@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/11/18 00:28:57

Modified files:
	emulators/snes9x: Makefile distinfo 
	emulators/snes9x/patches: patch-gtk_configure 
	emulators/snes9x/pkg: PLIST 

Log message:
Update to snes9x-1.54.1.

Thanks to everybody who tested.

ok fcambus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/18 02:17:10

Modified files:
	devel/libev    : Makefile distinfo 
	devel/libev/patches: patch-Makefile_in patch-configure 

Log message:
Maintenance update to libev-4.23.
Nothing worth of interest for us.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/18 02:32:34

Modified files:
	databases/ruby-redis: Makefile distinfo 

Log message:
Update to ruby-redis-3.3.2


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/18 02:35:27

Modified files:
	usr.sbin/smtpd : mta_session.c smtp_session.c 

Log message:
fix regression introduced in previous commit

spotted by Heiko Zimmermann

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/18 03:37:27

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/patches: patch-bindings_python_Makefile_in 
	textproc/link-grammar/pkg: PLIST-main 

Log message:
Update to link-grammar-5.3.12.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/18 04:25:11

Modified files:
	sys/dev/pci    : ixgbe_type.h ixgbe_x550.c 

Log message:
Remove virtualization-related bits


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/18 04:30:53

Modified files:
	security/gnupg2: Makefile 
Added files:
	security/gnupg2/patches: patch-agent_gpg-agent_c 
	                         patch-common_init_c 
	                         patch-dirmngr_dirmngr_c 
	                         patch-scd_scdaemon_c 

Log message:
Unbreak gpg-agent after libgpg-error update (from upstream).

reported by edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/18 04:55:02

Modified files:
	sys/net        : ofp.h 

Log message:
Fix some style issues in header file:
- Use the right amount of zeros to match the header bit length;
- Use hex instead of bit shifting;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/18 05:09:06

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.75.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/18 05:09:20

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.18.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 05:21:32

Modified files:
	sys/net        : ofp.h 

Log message:
OpenFlow has a very simple finite state machine that is only
indirectly documented in the specification.  Add the states to the
header as it is important for all implementations.  Both switch(4) and
switchd(8) have to be updated to follow the fsm instead of answering
any requests at any time.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/18 05:36:41

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

Log message:
Remaining PHY bits; call SFP module detection code for X550 as well


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/18 05:37:08

Modified files:
	multimedia/mkvtoolnix: Makefile 

Log message:
Don't pick up pugixml if installed but use the internal copy; ours is too
new.

reported by nigel@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 05:46:56

Modified files:
	usr.sbin/switchd: genmap.sh 

Log message:
Fix file reference in generated comment OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 05:54:14

Modified files:
	usr.sbin/switchd: genmap.sh 

Log message:
Define the struct constmap in each generated C file.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 06:05:12

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Fix the flowmod header to send the correct command and buffer id.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/18 06:10:58

Modified files:
	sys/net        : ofp.h 

Log message:
Add more documentation to header definitions that were missing.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/18 06:15:42

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Small code improvements:
- Free ibufs on validation failures;
- Don't use htons() for flow-mod command;

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 06:18:01

Modified files:
	sys/net        : ofp.h 

Log message:
remove 'OpenFlow' prefix from version comments


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 06:23:20

Modified files:
	sys/net        : ofp.h 

Log message:
Revert previous, I confused the columns


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 06:36:32

Modified files:
	usr.sbin/switchd: genmap.sh 

Log message:
Exclude the description field from the generated maps by default.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/18 06:37:00

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

Log message:
Minor code restructuring

- separate functions for delay value calculation and figuring out
whether or not we're doing SFP.
- MAC type detection is now done by ixgbe_set_mac_type;
- call {enable,disable}_tx_laser conditionally;
- unused TSO code bites the dust;
- default to "IFM_ETHER | IFM_AUTO" when we can't select any other
media type.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/18 06:45:57

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

Log message:
Reduce difference in ixgbe_initialize_receive_units to FreeBSD;
no binary change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/18 07:12:40

Modified files:
	devel/p5-Data-Validate-IP: Makefile distinfo 

Log message:
update p5-Data-Validate-IP to 0.27


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/18 07:16:10

Modified files:
	sys/dev/pci    : if_ix.c ixgbe_type.h 

Log message:
Support for new GPI signals, including X550 external PHY interrupt

This factors out the code configuring General Purpose Interrupts into
a separate function and provides LASI (Link Alarm Status Interrupt)
handler used by controllers in the X550 family lacking integrated PHY.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/18 07:48:37

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.702


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/18 07:53:37

Modified files:
	databases/puppetdb4: Makefile distinfo 

Log message:
Simple update to 4.3.0

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 07:54:23

Modified files:
	sys/net        : ofp.h 
	usr.sbin/switchd: ofp_map.h 

Log message:
Add more maps to print.  As discussed with rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/11/18 07:55:36

Modified files:
	sysutils/ruby-puppet/4: Makefile distinfo 
	sysutils/ruby-puppet/4/patches: 
	                                patch-lib_puppet_provider_package_pip_rb 
	sysutils/ruby-puppet/4/pkg: PLIST 

Log message:
Update to 4.8.0

See release notes for the changes:
https://docs.puppet.com/puppet/4.8/reference/release_notes.html#puppet-480

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/18 08:38:14

Modified files:
	sys/arch/loongson/include: asm.h 
	sys/arch/loongson/loongson: locore.S 

Log message:
Use the ErrorEPC register for curcpu().


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 08:53:16

Modified files:
	usr.bin/printf : printf.c 

Log message:
Delete useless call to setlocale(3).

While the C library function printf(3) is used here and is
locale-dependent, the printf(1) utility does not use the locale
dependent parts %lc and %ls.  While POSIX requires LC_NUMERIC
support, we intentionally don't implement that in printf(3).
In summary, no functional change.

While here, sort headers and use the usual __dead usage() idiom.
Based on a patch from Jan Stary <hans at stare dot cz>.
OK bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 08:59:10

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

Log message:
Fix two documentation bugs:
1. Specifying a precision for the %s format character limits the number
of bytes printed, not the number of characters.
2. Document the intentional POSIX violation of ignoring the locale.
Feedback and OK jmc@, bentley@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/18 09:16:39

Modified files:
	usr.sbin/snmpd : control.c parse.y snmpd.h snmpe.c traphandler.c 

Log message:
Add support for multiple listening sockets

One can now specify multiple "listen on" statements. The default is to
listen on 0.0.0.0 and ::, which means better handling of dual-stack
setups.  ok sthen@ on a previous version, input and ok reyk@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/18 09:17:58

Removed files:
	net/openvpn/patches: patch-src_openvpn_syshead_h 

Log message:
We have gcc >= 3 on all platforms now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/18 09:18:52

Added files:
	net/openvpn/patches: patch-src_openvpn_route_c 

Log message:
Add support for on-link routes.

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/18 09:19:29

Modified files:
	net/openvpn    : Makefile 

Log message:
More useful HOMEPAGE

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/18 09:21:44

Modified files:
	net/openvpn    : Makefile 
	net/openvpn/patches: patch-src_openvpn_tun_c 

Log message:
Add a hack for topology subnet setups and bump REVISION.

Previously route insertion failed with ELOOP because the gateway wasn't
directly connected.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/18 09:23:13

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix a panic introduced with the memory leak correction. Use the saved
length instead of the packet instruction length to free the old
instruction.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 09:34:04

Modified files:
	usr.sbin/switchd: ofp_map.h switchd.h types.h 

Log message:
Remove leading _ from include guards as this violates the reserved space.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 09:49:35

Modified files:
	usr.sbin/switchd: genmap.sh ofp_map.h switchd.h types.h 

Log message:
Define constmap in ofp_map.h to be shared along with ofp_map.c


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 09:56:09

Modified files:
	sys/net        : ofp.h switchofp.c 
	usr.sbin/switchd: ofp13.c ofp_map.h 

Log message:
Define a group_id map and rename the defines accordingly.

Requested by rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/18 10:02:14

Modified files:
	sys/arch/loongson/loongson: generic3a_machdep.c 

Log message:
Fix end of interrupt routine to make pciide(4) work.

Clue stick from miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 10:37:03

Modified files:
	usr.sbin/tcpdump: Makefile print-ofp.c 
Added files:
	usr.sbin/tcpdump: ofp_map.c ofp_map.h 

Log message:
Updates tcpdump's OpenFlow printer to use the string maps from switchd
(manually synced).  Also make the output a bit more like other printers.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 10:39:39

Modified files:
	usr.sbin/tcpdump: print-ofp.c 

Log message:
miss_send_len can also be a CONTROLLER_MAXLEN string not just a number.

Requested by rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/18 11:35:20

Modified files:
	usr.sbin/tcpdump: print-ofp.c 

Log message:
Don't print the field 'actions' on features reply, because in the new
OpenFlow 1.3.5 it is a reserved field that is not being used.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:43:05

Modified files:
	lib/libcrypto/man: BIO_new.3 

Log message:
Add Copyright and license.
Document that BIO_free(3), BIO_vfree(3), and BIO_free_all(3) accept NULL.
Delete the useless statement that void functions return no value.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:44:11

Modified files:
	lib/libcrypto/man: BIO_read.3 

Log message:
Add Copyright and license.
Bring in two clarifying sentences from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/18 11:45:27

Modified files:
	usr.sbin/tcpdump: print-ofp.c 

Log message:
Add support for printing the missing OpenFlow set-queue action.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:45:34

Modified files:
	lib/libcrypto/man: BIO_s_accept.3 

Log message:
Add Copyright and license.
Bring in a bug fix and the new RETURN VALUES section from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:47:44

Modified files:
	lib/libcrypto/man: BIO_s_bio.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, provide prototypes rather than #define directives.
Bring in improvements to the EXAMPLES section from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:48:36

Modified files:
	lib/libcrypto/man: BIO_s_connect.3 

Log message:
Add Copyright and license.
Bring in one clarifying sentence from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:49:44

Modified files:
	lib/libcrypto/man: BIO_s_fd.3 

Log message:
Add Copyright and license.
Mention that BIO_set_fd(3) and BIO_get_fd(3) are macros.
Delete off-topic sentences about the return values of BIO_seek(3),
BIO_reset(3), and BIO_tell(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:52:11

Modified files:
	lib/libcrypto/man: BIO_push.3 BIO_s_file.3 BIO_s_mem.3 
	                   BIO_s_null.3 BIO_s_socket.3 

Log message:
Copyright and license.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/18 11:54:43

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: BIO_get_ex_new_index.3 

Log message:
import from OpenSSL;
the referenced CRYPTO_get_ex_new_index(3) will follow shortly


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/18 12:07:44

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Make switchd(8) use more strings just like tcpdump(8). While here remove
action field display from features request.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/18 12:49:21

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

Log message:
Recognize active SPF+ DA modules as IFM_10G_SFP_CU

Reported and tested by Hrvoje Popovski, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/18 13:03:30

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

Log message:
Sync some changes for ixgbe_initialize_receive_units

Call a chip specific method to disable RX unit;
DPF (Drop [Unicast] Pause Frames) and PMCF (Pass MAC Control Frames)
bits should only be enabled on 82598 since others don't document them.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 13:20:19

Modified files:
	usr.sbin/switchd: ofp10.c ofp13.c 

Log message:
The special LOCAL and CONTROLLER ports are valid source ports that
should be learned by the cache.	 Fixes "addlocal" ports on switch(4).

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/18 13:43:39

Modified files:
	sbin/ifconfig  : brconfig.c 

Log message:
Make the ifconfig switch0 output nicer using a single line and the
same keys as the actual commands (datapath, maxgroup, flowmax).
flowmax should eventually renamed to maxflow for consistency.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/18 14:49:20

Modified files:
	lib/libcrypto/man: BIO_get_ex_new_index.3 

Log message:
fix double word;


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/18 15:15:52

Modified files:
	usr.sbin/switchctl: ofpclient.c 

Log message:
Unbreak the tree: OFP_GROUP_ANY was renamed to OFP_GROUP_ID_ANY.

fix found joint with rpe, ok reyk


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/11/18 16:40:17

ports/textproc/cloc/patches

Update of /cvs/ports/textproc/cloc/patches
In directory cvs.openbsd.org:/tmp/cvs-serv1409/patches

Log Message:
Directory /cvs/ports/textproc/cloc/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/11/18 16:43:50

Modified files:
	textproc/cloc  : Makefile distinfo 
	textproc/cloc/pkg: PLIST 
Added files:
	textproc/cloc/patches: patch-Unix_Makefile 

Log message:
Update textproc/cloc 1.64 => 1.70

- project moved from SF to Github
- move to using upstream Makefile
- explicit dependencies on Perl modules
- include a manpage
- patch Makefile for gmake (upstreamed)
- version bump

OK jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/18 21:55:26

Modified files:
	lang/ruby/2.2  : Makefile distinfo 
	lang/ruby/2.2/patches: patch-common_mk patch-compile_c 
	                       patch-configure 
	lang/ruby/2.2/pkg: PLIST-main PLIST-ri_docs 

Log message:
Update to ruby 2.2.6

Bump minor due to new exported function.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/18 21:56:00

Modified files:
	lang/ruby/2.3  : Makefile distinfo 
	lang/ruby/2.3/patches: patch-common_mk patch-compile_c 
	                       patch-configure patch-ext_extmk_rb 
	                       patch-lib_rubygems_ext_ext_conf_builder_rb 
	                       patch-test_ruby_test_io_rb 
	                       patch-test_ruby_test_process_rb 
	lang/ruby/2.3/pkg: PLIST-main PLIST-ri_docs 

Log message:
Update to ruby 2.3.2

Bump minor due to new exported function.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/18 21:56:27

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

Log message:
Update to JRuby 9.1.6.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/11/18 22:37:00

Log message:
    Import libdrm 2.4.73
    
    Status:
    
    Vendor Tag:	libdrm
    Release Tags:	libdrm_2_4_73
    
    U xenocara/lib/libdrm/xf86drmRandom.c
    U xenocara/lib/libdrm/xf86drmRandom.h
    U xenocara/lib/libdrm/libdrm_macros.h
    C xenocara/lib/libdrm/Makefile.am
    C xenocara/lib/libdrm/xf86drmMode.c
    U xenocara/lib/libdrm/xf86drmHash.h
    C xenocara/lib/libdrm/Makefile.in
    C xenocara/lib/libdrm/aclocal.m4
    U xenocara/lib/libdrm/xf86drm.h
    U xenocara/lib/libdrm/xf86drmSL.c
    U xenocara/lib/libdrm/config.h.in
    U xenocara/lib/libdrm/README
    U xenocara/lib/libdrm/xf86atomic.h
    N xenocara/lib/libdrm/libsync.h
    U xenocara/lib/libdrm/libdrm_lists.h
    U xenocara/lib/libdrm/xf86drmHash.c
    C xenocara/lib/libdrm/configure
    C xenocara/lib/libdrm/configure.ac
    U xenocara/lib/libdrm/Makefile.sources
    C xenocara/lib/libdrm/xf86drm.c
    U xenocara/lib/libdrm/util_math.h
    C xenocara/lib/libdrm/xf86drmMode.h
    U xenocara/lib/libdrm/libdrm.pc.in
    U xenocara/lib/libdrm/util_double_list.h
    U xenocara/lib/libdrm/etnaviv/etnaviv_bo.c
    U xenocara/lib/libdrm/etnaviv/Makefile.am
    U xenocara/lib/libdrm/etnaviv/etnaviv-symbol-check
    U xenocara/lib/libdrm/etnaviv/etnaviv_gpu.c
    U xenocara/lib/libdrm/etnaviv/Makefile.in
    U xenocara/lib/libdrm/etnaviv/etnaviv_priv.h
    U xenocara/lib/libdrm/etnaviv/libdrm_etnaviv.pc.in
    U xenocara/lib/libdrm/etnaviv/Makefile.sources
    U xenocara/lib/libdrm/etnaviv/etnaviv_pipe.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_cmd_stream.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_bo_cache.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_device.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_drmif.h
    U xenocara/lib/libdrm/etnaviv/etnaviv_drm.h
    U xenocara/lib/libdrm/radeon/radeon_cs.c
    U xenocara/lib/libdrm/radeon/bof.c
    U xenocara/lib/libdrm/radeon/Makefile.am
    U xenocara/lib/libdrm/radeon/radeon_bo.h
    U xenocara/lib/libdrm/radeon/radeon_cs_gem.h
    U xenocara/lib/libdrm/radeon/radeon-symbol-check
    U xenocara/lib/libdrm/radeon/radeon_cs_gem.c
    U xenocara/lib/libdrm/radeon/radeon_surface.c
    U xenocara/lib/libdrm/radeon/Makefile.in
    U xenocara/lib/libdrm/radeon/radeon_cs_int.h
    U xenocara/lib/libdrm/radeon/radeon_bo.c
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.c
    U xenocara/lib/libdrm/radeon/radeon_cs.h
    U xenocara/lib/libdrm/radeon/radeon_surface.h
    U xenocara/lib/libdrm/radeon/radeon_cs_space.c
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.h
    U xenocara/lib/libdrm/radeon/r600_pci_ids.h
    U xenocara/lib/libdrm/radeon/libdrm_radeon.pc.in
    U xenocara/lib/libdrm/radeon/radeon_bo_int.h
    U xenocara/lib/libdrm/radeon/Makefile.sources
    U xenocara/lib/libdrm/radeon/bof.h
    U xenocara/lib/libdrm/libkms/Makefile.am
    U xenocara/lib/libdrm/libkms/dumb.c
    U xenocara/lib/libdrm/libkms/nouveau.c
    U xenocara/lib/libdrm/libkms/vmwgfx.c
    U xenocara/lib/libdrm/libkms/intel.c
    U xenocara/lib/libdrm/libkms/Makefile.in
    U xenocara/lib/libdrm/libkms/kms-symbol-check
    U xenocara/lib/libdrm/libkms/radeon.c
    U xenocara/lib/libdrm/libkms/libkms.pc.in
    U xenocara/lib/libdrm/libkms/exynos.c
    U xenocara/lib/libdrm/libkms/libkms.h
    U xenocara/lib/libdrm/libkms/Makefile.sources
    U xenocara/lib/libdrm/libkms/internal.h
    U xenocara/lib/libdrm/libkms/linux.c
    U xenocara/lib/libdrm/libkms/api.c
    U xenocara/lib/libdrm/vc4/Makefile.am
    U xenocara/lib/libdrm/vc4/vc4_qpu_defines.h
    U xenocara/lib/libdrm/vc4/Makefile.in
    U xenocara/lib/libdrm/vc4/libdrm_vc4.pc.in
    U xenocara/lib/libdrm/vc4/vc4_packet.h
    U xenocara/lib/libdrm/vc4/Makefile.sources
    U xenocara/lib/libdrm/amdgpu/amdgpu_vamgr.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_internal.h
    U xenocara/lib/libdrm/amdgpu/Makefile.am
    U xenocara/lib/libdrm/amdgpu/amdgpu_cs.c
    U xenocara/lib/libdrm/amdgpu/util_hash_table.c
    C xenocara/lib/libdrm/amdgpu/Makefile.in
    U xenocara/lib/libdrm/amdgpu/amdgpu.h
    U xenocara/lib/libdrm/amdgpu/amdgpu_bo.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_gpu_info.c
    U xenocara/lib/libdrm/amdgpu/util_hash_table.h
    U xenocara/lib/libdrm/amdgpu/util_hash.h
    U xenocara/lib/libdrm/amdgpu/util_hash.c
    N xenocara/lib/libdrm/amdgpu/amdgpu_asic_id.h
    U xenocara/lib/libdrm/amdgpu/libdrm_amdgpu.pc.in
    U xenocara/lib/libdrm/amdgpu/amdgpu_device.c
    U xenocara/lib/libdrm/amdgpu/Makefile.sources
    U xenocara/lib/libdrm/amdgpu/amdgpu-symbol-check
    U xenocara/lib/libdrm/exynos/exynos_drm.c
    U xenocara/lib/libdrm/exynos/Makefile.am
    U xenocara/lib/libdrm/exynos/exynos_drmif.h
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.c
    U xenocara/lib/libdrm/exynos/Makefile.in
    U xenocara/lib/libdrm/exynos/fimg2d_reg.h
    U xenocara/lib/libdrm/exynos/libdrm_exynos.pc.in
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.h
    U xenocara/lib/libdrm/exynos/exynos-symbol-check
    U xenocara/lib/libdrm/exynos/exynos_drm.h
    C xenocara/lib/libdrm/include/drm/drm.h
    U xenocara/lib/libdrm/include/drm/mga_drm.h
    U xenocara/lib/libdrm/include/drm/virtgpu_drm.h
    U xenocara/lib/libdrm/include/drm/vc4_drm.h
    U xenocara/lib/libdrm/include/drm/tegra_drm.h
    U xenocara/lib/libdrm/include/drm/mach64_drm.h
    U xenocara/lib/libdrm/include/drm/sis_drm.h
    U xenocara/lib/libdrm/include/drm/drm_fourcc.h
    U xenocara/lib/libdrm/include/drm/drm_mode.h
    U xenocara/lib/libdrm/include/drm/nouveau_drm.h
    U xenocara/lib/libdrm/include/drm/radeon_drm.h
    U xenocara/lib/libdrm/include/drm/savage_drm.h
    N xenocara/lib/libdrm/include/drm/README
    U xenocara/lib/libdrm/include/drm/r128_drm.h
    U xenocara/lib/libdrm/include/drm/amdgpu_drm.h
    U xenocara/lib/libdrm/include/drm/i915_drm.h
    U xenocara/lib/libdrm/include/drm/drm_sarea.h
    U xenocara/lib/libdrm/include/drm/vmwgfx_drm.h
    U xenocara/lib/libdrm/include/drm/via_drm.h
    U xenocara/lib/libdrm/include/drm/qxl_drm.h
    U xenocara/lib/libdrm/tests/drmdevice.c
    U xenocara/lib/libdrm/tests/drmtest.h
    U xenocara/lib/libdrm/tests/Makefile.am
    U xenocara/lib/libdrm/tests/hash.c
    U xenocara/lib/libdrm/tests/drmtest.c
    U xenocara/lib/libdrm/tests/Makefile.in
    U xenocara/lib/libdrm/tests/name_from_fd.c
    U xenocara/lib/libdrm/tests/openclose.c
    U xenocara/lib/libdrm/tests/getstats.c
    U xenocara/lib/libdrm/tests/dristat.c
    U xenocara/lib/libdrm/tests/drmsl.c
    U xenocara/lib/libdrm/tests/updatedraw.c
    U xenocara/lib/libdrm/tests/setversion.c
    U xenocara/lib/libdrm/tests/random.c
    U xenocara/lib/libdrm/tests/getclient.c
    U xenocara/lib/libdrm/tests/drmstat.c
    U xenocara/lib/libdrm/tests/getversion.c
    U xenocara/lib/libdrm/tests/etnaviv/write_bmp.c
    U xenocara/lib/libdrm/tests/etnaviv/state.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/Makefile.am
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_cmd_stream_test.c
    U xenocara/lib/libdrm/tests/etnaviv/Makefile.in
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_bo_cache_test.c
    U xenocara/lib/libdrm/tests/etnaviv/write_bmp.h
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_2d_test.c
    U xenocara/lib/libdrm/tests/etnaviv/cmdstream.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/state_2d.xml.h
    U xenocara/lib/libdrm/tests/modeprint/Makefile.am
    U xenocara/lib/libdrm/tests/modeprint/modeprint.c
    U xenocara/lib/libdrm/tests/modeprint/Makefile.in
    U xenocara/lib/libdrm/tests/radeon/Makefile.am
    U xenocara/lib/libdrm/tests/radeon/Makefile.in
    U xenocara/lib/libdrm/tests/radeon/rbo.c
    U xenocara/lib/libdrm/tests/radeon/rbo.h
    U xenocara/lib/libdrm/tests/radeon/radeon_ttm.c
    U xenocara/lib/libdrm/tests/amdgpu/frame.h
    U xenocara/lib/libdrm/tests/amdgpu/Makefile.am
    U xenocara/lib/libdrm/tests/amdgpu/vce_ib.h
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.c
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.h
    U xenocara/lib/libdrm/tests/amdgpu/Makefile.in
    U xenocara/lib/libdrm/tests/amdgpu/vce_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/cs_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/basic_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/uvd_messages.h
    U xenocara/lib/libdrm/tests/amdgpu/bo_tests.c
    U xenocara/lib/libdrm/tests/exynos/Makefile.am
    U xenocara/lib/libdrm/tests/exynos/Makefile.in
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_test.c
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_perf.c
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_event.c
    U xenocara/lib/libdrm/tests/vbltest/Makefile.am
    U xenocara/lib/libdrm/tests/vbltest/Makefile.in
    U xenocara/lib/libdrm/tests/vbltest/vbltest.c
    U xenocara/lib/libdrm/tests/nouveau/Makefile.am
    U xenocara/lib/libdrm/tests/nouveau/Makefile.in
    U xenocara/lib/libdrm/tests/nouveau/threaded.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-plane.c
    U xenocara/lib/libdrm/tests/kms/Makefile.am
    U xenocara/lib/libdrm/tests/kms/libkms-test-crtc.c
    U xenocara/lib/libdrm/tests/kms/Makefile.in
    U xenocara/lib/libdrm/tests/kms/libkms-test.h
    U xenocara/lib/libdrm/tests/kms/kms-universal-planes.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-device.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-screen.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-framebuffer.c
    U xenocara/lib/libdrm/tests/kms/kms-steal-crtc.c
    U xenocara/lib/libdrm/tests/util/format.h
    U xenocara/lib/libdrm/tests/util/kms.c
    U xenocara/lib/libdrm/tests/util/Makefile.am
    U xenocara/lib/libdrm/tests/util/pattern.h
    U xenocara/lib/libdrm/tests/util/Makefile.in
    U xenocara/lib/libdrm/tests/util/kms.h
    U xenocara/lib/libdrm/tests/util/common.h
    U xenocara/lib/libdrm/tests/util/Makefile.sources
    U xenocara/lib/libdrm/tests/util/pattern.c
    U xenocara/lib/libdrm/tests/util/format.c
    U xenocara/lib/libdrm/tests/modetest/modetest.c
    U xenocara/lib/libdrm/tests/modetest/Makefile.am
    U xenocara/lib/libdrm/tests/modetest/buffers.h
    U xenocara/lib/libdrm/tests/modetest/Makefile.in
    U xenocara/lib/libdrm/tests/modetest/cursor.c
    U xenocara/lib/libdrm/tests/modetest/cursor.h
    U xenocara/lib/libdrm/tests/modetest/buffers.c
    U xenocara/lib/libdrm/tests/modetest/Makefile.sources
    U xenocara/lib/libdrm/tests/kmstest/Makefile.am
    U xenocara/lib/libdrm/tests/kmstest/main.c
    U xenocara/lib/libdrm/tests/kmstest/Makefile.in
    U xenocara/lib/libdrm/tests/tegra/Makefile.am
    U xenocara/lib/libdrm/tests/tegra/Makefile.in
    U xenocara/lib/libdrm/tests/tegra/openclose.c
    U xenocara/lib/libdrm/tests/proptest/Makefile.am
    U xenocara/lib/libdrm/tests/proptest/Makefile.in
    U xenocara/lib/libdrm/tests/proptest/Makefile.sources
    U xenocara/lib/libdrm/tests/proptest/proptest.c
    C xenocara/lib/libdrm/build-aux/config.guess
    U xenocara/lib/libdrm/build-aux/compile
    U xenocara/lib/libdrm/build-aux/missing
    U xenocara/lib/libdrm/build-aux/depcomp
    U xenocara/lib/libdrm/build-aux/test-driver
    C xenocara/lib/libdrm/build-aux/config.sub
    U xenocara/lib/libdrm/build-aux/ltmain.sh
    U xenocara/lib/libdrm/build-aux/install-sh
    U xenocara/lib/libdrm/nouveau/Makefile.am
    U xenocara/lib/libdrm/nouveau/nouveau.c
    U xenocara/lib/libdrm/nouveau/pushbuf.c
    U xenocara/lib/libdrm/nouveau/Makefile.in
    U xenocara/lib/libdrm/nouveau/abi16.c
    U xenocara/lib/libdrm/nouveau/nouveau.h
    U xenocara/lib/libdrm/nouveau/bufctx.c
    U xenocara/lib/libdrm/nouveau/libdrm_nouveau.pc.in
    U xenocara/lib/libdrm/nouveau/Makefile.sources
    U xenocara/lib/libdrm/nouveau/private.h
    U xenocara/lib/libdrm/nouveau/nouveau-symbol-check
    U xenocara/lib/libdrm/nouveau/nvif/class.h
    U xenocara/lib/libdrm/nouveau/nvif/cl0080.h
    U xenocara/lib/libdrm/nouveau/nvif/if0003.h
    U xenocara/lib/libdrm/nouveau/nvif/ioctl.h
    U xenocara/lib/libdrm/nouveau/nvif/if0002.h
    U xenocara/lib/libdrm/nouveau/nvif/unpack.h
    U xenocara/lib/libdrm/nouveau/nvif/cl9097.h
    U xenocara/lib/libdrm/freedreno/Makefile.am
    U xenocara/lib/libdrm/freedreno/freedreno_drmif.h
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/Makefile.in
    U xenocara/lib/libdrm/freedreno/libdrm_freedreno.pc.in
    U xenocara/lib/libdrm/freedreno/freedreno_bo.c
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.h
    U xenocara/lib/libdrm/freedreno/freedreno_bo_cache.c
    U xenocara/lib/libdrm/freedreno/freedreno_device.c
    U xenocara/lib/libdrm/freedreno/freedreno_priv.h
    U xenocara/lib/libdrm/freedreno/freedreno_pipe.c
    U xenocara/lib/libdrm/freedreno/freedreno-symbol-check
    U xenocara/lib/libdrm/freedreno/Makefile.sources
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_drm.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_device.c
    U xenocara/lib/libdrm/freedreno/kgsl/msm_kgsl.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_pipe.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_priv.h
    U xenocara/lib/libdrm/freedreno/msm/msm_drm.h
    U xenocara/lib/libdrm/freedreno/msm/msm_pipe.c
    U xenocara/lib/libdrm/freedreno/msm/msm_priv.h
    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_device.c
    U xenocara/lib/libdrm/m4/lt~obsolete.m4
    U xenocara/lib/libdrm/m4/ltoptions.m4
    U xenocara/lib/libdrm/m4/ltsugar.m4
    U xenocara/lib/libdrm/m4/ltversion.m4
    C xenocara/lib/libdrm/m4/libtool.m4
    U xenocara/lib/libdrm/omap/Makefile.am
    U xenocara/lib/libdrm/omap/omap-symbol-check
    U xenocara/lib/libdrm/omap/omap_drmif.h
    U xenocara/lib/libdrm/omap/Makefile.in
    U xenocara/lib/libdrm/omap/omap_drm.h
    U xenocara/lib/libdrm/omap/libdrm_omap.pc.in
    U xenocara/lib/libdrm/omap/omap_drm.c
    U xenocara/lib/libdrm/tegra/Makefile.am
    U xenocara/lib/libdrm/tegra/tegra.h
    U xenocara/lib/libdrm/tegra/tegra-symbol-check
    U xenocara/lib/libdrm/tegra/Makefile.in
    U xenocara/lib/libdrm/tegra/tegra.c
    U xenocara/lib/libdrm/tegra/libdrm_tegra.pc.in
    U xenocara/lib/libdrm/tegra/private.h
    U xenocara/lib/libdrm/man/drmAvailable.xml
    U xenocara/lib/libdrm/man/drmHandleEvent.xml
    U xenocara/lib/libdrm/man/Makefile.am
    U xenocara/lib/libdrm/man/drm-memory.xml
    U xenocara/lib/libdrm/man/Makefile.in
    U xenocara/lib/libdrm/man/drmModeGetResources.xml
    U xenocara/lib/libdrm/man/drm.xml
    U xenocara/lib/libdrm/man/drm-kms.xml
    U xenocara/lib/libdrm/intel/intel_debug.h
    U xenocara/lib/libdrm/intel/libdrm_intel.pc.in
    U xenocara/lib/libdrm/intel/mm.h
    U xenocara/lib/libdrm/intel/Makefile.am
    U xenocara/lib/libdrm/intel/intel-symbol-check
    U xenocara/lib/libdrm/intel/intel_aub.h
    U xenocara/lib/libdrm/intel/intel_bufmgr.c
    C xenocara/lib/libdrm/intel/intel_bufmgr_gem.c
    C xenocara/lib/libdrm/intel/Makefile.in
    N xenocara/lib/libdrm/intel/uthash.h
    U xenocara/lib/libdrm/intel/intel_decode.c
    U xenocara/lib/libdrm/intel/mm.c
    U xenocara/lib/libdrm/intel/test_decode.c
    U xenocara/lib/libdrm/intel/Makefile.sources
    C xenocara/lib/libdrm/intel/intel_bufmgr.h
    U xenocara/lib/libdrm/intel/intel_bufmgr_priv.h
    U xenocara/lib/libdrm/intel/intel_bufmgr_fake.c
    U xenocara/lib/libdrm/intel/intel_chipset.h
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/test-batch.sh
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch.sh
    
    16 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	2016/11/18 22:45:01

Modified files:
	lib/libdrm     : Makefile.am Makefile.bsd-wrapper Makefile.in 
	                 Makefile.sources configure configure.ac 
	                 xf86drm.c xf86drmMode.c xf86drmMode.h 
	lib/libdrm/amdgpu: Makefile.in 
	lib/libdrm/include/drm: drm.h 
	lib/libdrm/intel: Makefile.in intel_bufmgr.h intel_bufmgr_gem.c 

Log message:
Merge libdrm 2.4.73


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/11/18 22:47:39

Modified files:
	distrib/sets/lists/xbase: md.alpha md.amd64 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	2016/11/18 22:50:39

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/19 01:02:37

Modified files:
	multimedia/gstreamer1/core: Makefile 

Log message:
--disable-examples to prevent a hidden dependency on gtk+.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/11/19 01:36:48

Modified files:
	distrib/sets   : Makefile 

Log message:
Set permissions of xorg.db and xetc.tgz explicitly, so they don't
depend on the umask.

push forward deraadt; no objections matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/11/19 01:38:15

Modified files:
	font/alias     : Makefile.bsd-wrapper 

Log message:
Set permissions of fontconfig cache files, fonts.dir and fons.scale
explicitly, so they don't depend on the umask.

push forward deraadt; no objections matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/11/19 01:43:19

Modified files:
	font/dejavu-ttf: Makefile 

Log message:
Set permissions of fonts.dir and fonts.scale explicitly, so they don't
depend on the umask.  For historical reasons, ${BINGRP}=wheel here, so
use 'bin' instead of ${BINGRP} to set the group of /etc/fonts/conf.d

push forward deraadt; no objections matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/11/19 01:45:51

Modified files:
	lib/fontconfig/conf.d: Makefile 

Log message:
Fix a copy-paste error that resulted in the parent directory being
chowned instead of only the symlink.

no objections matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/11/19 01:56:27

Modified files:
	.              : Makefile 

Log message:
Set permissions of mandoc.db and xetcsum explicitly, so they don't
depend on the umask.

push forward deraadt; no objections matthieu


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/19 03:35:50

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/19 04:01:14

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.76.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/19 04:01:35

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.19.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/19 05:02:37

Modified files:
	net/bro        : Makefile distinfo 
	net/bro/patches: patch-aux_broctl_BroControl_options_py 
	                 patch-aux_broctl_bin_broctl_in 
	                 patch-aux_broctl_bin_run-bro patch-configure 
	                 patch-src_broxygen_Manager_cc 
	                 patch-src_patricia_c 
	net/bro/pkg    : PLIST 
Added files:
	net/bro/patches: patch-src_Sessions_cc patch-src_bro_bif 
	                 patch-src_iosource_Packet_cc 
	                 patch-src_iosource_Packet_h 
Removed files:
	net/bro/patches: patch-aux_broccoli_src_bro_openssl_c 
	                 patch-aux_broctl_bin_postprocessors_summarize-connections 
	                 patch-src_ChunkedIO_cc 

Log message:
Update to bro-2.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/19 05:06:06

Modified files:
	www/w3m        : Makefile 

Log message:
Needs devel/gettext-tools.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 05:13:23

Modified files:
	net/freeradius3: Makefile 
	net/freeradius3/patches: patch-raddb_certs_Makefile 
Added files:
	net/freeradius3/patches: patch-raddb_certs_bootstrap 

Log message:
- patch freeradius3's certs/Makefile to fix things with /usr/bin/make
- bump to 2048 bit DH params in certs/bootstrap


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 05:25:27

Modified files:
	security/opendnssec: Makefile distinfo 
	security/opendnssec/patches: patch-conf_conf_xml_in 
Added files:
	security/opendnssec/patches: 
	                             patch-enforcer_ksm_database_access_lite_c 
Removed files:
	security/opendnssec/patches: patch-enforcer_utils_ksmutil_c 
	                             patch-signer_src_signer_zone_c 

Log message:
update to opendnssec-1.4.12, from Patrik Lundin


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 05:27:32

Modified files:
	net/scamper    : Makefile distinfo 
	net/scamper/pkg: PLIST 
Added files:
	net/scamper/patches: patch-internal_h 

Log message:
update to scamper-20161113


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/11/19 05:41:22

Modified files:
	usr.bin/calendar/calendars: calendar.history calendar.ushistory 

Log message:
hyrogen bomb related fixes, prompted by Carson Chittom; dates moved to
UTC. ok tb@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/11/19 05:46:46

Modified files:
	usr.sbin/ospfd : printconf.c 

Log message:
Print metric and type for "redistribute" in ospfd -v.
From Remi Locherer, ok claudio


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/19 06:09:36

Modified files:
	.              : ddb.html 

Log message:
update to reflect existence of the obj/ directories for kernel builds.

spotted by rob pierce, thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/19 06:15:10

Modified files:
	.              : ddb.html 

Log message:
one more obj/ needed


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/11/19 06:37:51

Modified files:
	databases/py-odbc: Makefile distinfo 
	databases/py-odbc/patches: patch-setup_py 
	databases/py-odbc/pkg: DESCR 
Added files:
	databases/py-odbc/patches: patch-src_pyodbc_h 

Log message:
Update py-odbc to 3.0.10.

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/11/19 06:38:35

Modified files:
	databases      : Makefile 

Log message:
+py-odbc,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 07:10:20

Modified files:
	multimedia/get_iplayer: Makefile distinfo 
	multimedia/get_iplayer/patches: patch-get_iplayer 

Log message:
update to get_iplayer-2.97


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 07:16:02

Modified files:
	multimedia/get_iplayer: Makefile 
	multimedia/get_iplayer/files: options.sample 

Log message:
minor get_iplayer tweaks:
- remove tvmode/radiomode from sample options file
- add RDEP on XML::LibXML (soft dependency)


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/19 07:20:58

Modified files:
	.              : Makefile 
	etc            : Makefile 
	share/mk       : bsd.obj.mk bsd.own.mk 

Log message:
Enable builds with a dedicated user that cannot elevate privileges or write
to /usr/src or /usr/xenocara.

Change /usr/{,x}obj to owner build:wobj with mode 770 and install the
systemwide makefiles before starting a build.  The root of the noperm fs
containing DESTDIR should also be owned by build:wobj.

Developers will need to add their users to group wobj to be able to write
to /usr/{,x}obj/.

"push forward" deraadt; testing, input & ok rpe


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2016/11/19 07:22:05

Modified files:
	.              : Makefile 
	share/mk       : bsd.xorg.mk 

Log message:
Enable builds with a dedicated user for xenocara as well.

"push forward" deraadt; no objections matthieu; testing, input & ok rpe


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/19 07:23:13

Modified files:
	faq            : current.html 

Log message:
Builds with a dedicated user that cannot elevate privileges or write
to /usr/src or /usr/xenocara were enabled.

Change /usr/{,x}obj to owner build:wobj with mode 770 and install the
systemwide makefiles before starting a build.  The root of the noperm fs
containing DESTDIR should also be owned by build:wobj.

Developers will need to add their users to group wobj.

input from tj, rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/19 07:25:15

Modified files:
	share/man/man8 : release.8 

Log message:
Update for builds with a dedicated build user.  Eliminate some more
customization variables and refer to mk.conf(5) instead.

input & ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/19 07:26:25

Modified files:
	share/man/man5 : mk.conf.5 

Log message:
Update for builds with a dedicated user: BUILDUSER now defaults to build
and document WOBJGROUP and WOBJUMASK.  Also: more consistent quotes.

ok jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 07:26:31

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.3.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 07:28:11

Modified files:
	graphics/openjpeg: Makefile 

Log message:
add portroach limit; 2.x is in graphics/openjp2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 07:32:53

Modified files:
	benchmarks/speedtest-cli: Makefile distinfo 
	benchmarks/speedtest-cli/pkg: PLIST 

Log message:
update to speedtest_cli-1.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 07:38:14

Modified files:
	security/p5-Crypt-OpenSSL-DSA: Makefile distinfo 
Added files:
	security/p5-Crypt-OpenSSL-DSA/patches: patch-DSA_xs 

Log message:
update to p5-Crypt-OpenSSL-DSA-0.18
patch for OPENSSL_VERSION_NUMBER libressl issue (accessor functions)


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

Modified files:
	net/p5-Net-Twitter: Makefile distinfo 

Log message:
update to p5-Net-Twitter-4.01030


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 07:39:51

Modified files:
	sysutils/freeipmi: Makefile distinfo 
	sysutils/freeipmi/patches: patch-libfreeipmi_Makefile_in 

Log message:
update to freeipmi-1.5.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/19 08:04:12

Modified files:
	multimedia/mediainfo: Makefile distinfo 
	multimedia/mediainfo/patches: 
	                              patch-ZenLib_Project_GNU_Library_configure 

Log message:
maintenance update to 0.7.90


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 08:28:40

Modified files:
	sysutils/cfengine: Makefile 

Log message:
mark cfengine as BROKEN, newer pkg_add code is unable to install it
due to some problem with symlinks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 08:35:09

Modified files:
	net/ocserv     : Makefile distinfo 
	net/ocserv/patches: patch-doc_sample_config 
Added files:
	net/ocserv/patches: patch-src_Makefile_in 
	                    patch-src_ocpasswd_Makefile_in 

Log message:
update to ocserv-0.11.6 plus patch for autogen problem in the release
from Björn Ketelaars (I added a comment to recheck autogen because it changed
again since that patch)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/19 08:42:46

Modified files:
	graphics/netpbm: Makefile distinfo 
Removed files:
	graphics/netpbm/patches: patch-test_pnmquantall_test 

Log message:
maintenance update to 10.76.00


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 09:06:59

Modified files:
	devel/ninja    : Makefile distinfo 

Log message:
update to ninja-01.7.2, from Rafael Sadowski (who tested it with various
ports including chromium, llvm, opencv). Small tweak by me to remove an
unnecessary extra pyc file, dcoppa agrees.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/19 10:34:20

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/19 11:28:40

Added files:
	audio/aqualung/patches: patch-src_core_c 

Log message:
Reinitialize sndio in case of an audio(4) error, as otherwise you need to
restart aqualung in such cases.  REVISION was just bumped in a previous
commit.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/19 11:53:02

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

Log message:
Set iwm's RTS retry limit to a more reasonable value. Prevents small frames
from getting stuck in the firmware's Tx queue for a long time behind other
frames large enough to trigger RTS but not making it out (e.g. due to bad
channel conditions).
ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/19 12:35:46

Modified files:
	usr.sbin/tcpdump: print-802_11.c 

Log message:
Make tcpdump indicate basic rates listed in beacons with an asterisk.
ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/19 14:07:08

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

Log message:
While setting up the basic rate bitmask for iwm's firmware, if the AP does
not specify basic rates for either the CCK or OFDM set, add just the most
basic rate to that set (1 Mbit/s in case of CCK, 6 Mbit/s in case of OFDM).
This behaviour matches what code comments seem to imply.

The previous code would add all possible basic rates in such cases.
So if all basic rates were CCK only, the code would add all possible OFDM basic
rates on top. Then the firmware would send some frames at too high rates, e.g.
RTS frames would be sent at 24Mbit/s which is a bit risky on noisy channels.

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/19 15:47:23

Modified files:
	security/softhsm: Makefile distinfo 
	security/softhsm/patches: patch-configure 
Removed files:
	security/softhsm/patches: patch-src_bin_softhsm-keyconv_cpp 
	                          patch-src_bin_softhsm_cpp 

Log message:
update to softhsm-1.3.8, from Patrik Lundin


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/19 16:30:35

Modified files:
	faq            : current.html 

Log message:
krw found the hard way that RELEASEDIR must be writable by build ...


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/19 16:31:28

Modified files:
	share/man/man8 : release.8 

Log message:
Add that RELEASEDIR must be writable by the build user.

ok tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/19 17:56:44

Modified files:
	devel/libyaml  : Makefile distinfo 
Removed files:
	devel/libyaml/patches: patch-src_scanner_c 

Log message:
update to libyaml 0.1.7

ok rpointel@, maintainer timeout


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/19 18:22:28

Modified files:
	lib/libcrypto/man: BIO_set_callback.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, provide prototypes rather than #define directives.
Name arguments consistently.
Remove lies about functions being macros.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/19 18:39:11

Modified files:
	lib/libcrypto/man: BIO_should_retry.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, show function prototypes, not #define directives.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/19 18:47:00

Modified files:
	sysutils/u-boot: Makefile distinfo 
	sysutils/u-boot/patches: patch-include_configs_omap3_beagle_h 
	                         patch-include_configs_ti_omap5_common_h 
	sysutils/u-boot/pkg: PLIST 

Log message:
update to u-boot 2016.11 and enable new Cubieboard4 target

Tested on cubox, panda and bbb.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/19 18:58:35

Modified files:
	lib/libcrypto/man: BN_BLINDING_new.3 

Log message:
Add Copyright and license.
Mention that BN_BLINDING_free() accepts NULL.
Adjust AUTHORS section to OpenBSD conventions.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/19 23:25:21

Modified files:
	share/man/man4/man4.loongson: htb.4 

Log message:
Document a limitation on interrupt routing.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/20 01:26:19

Modified files:
	archivers/unshield: Makefile distinfo 
	archivers/unshield/patches: patch-lib_internal_h 
	archivers/unshield/pkg: PLIST 
Added files:
	archivers/unshield/patches: patch-CMakeLists_txt 
	                            patch-src_unshield_c 
Removed files:
	archivers/unshield/patches: patch-lib_Makefile_in 
	                            patch-lib_component_c 
	                            patch-lib_file_group_c 
	                            patch-lib_helper_c 
	                            patch-lib_libunshield_c 

Log message:
update to unshield 1.3

Upstream has switched from sourceforge to github and from autotools to
cmake.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/20 01:43:36

Modified files:
	usr.sbin/smtpd : bounce.c filter.c ioev.c ioev.h mda.c 
	                 mta_session.c smtp_session.c 

Log message:
add dedicated functions to set fd and callback on a struct io.
simplify io_init() prototype.

ok sunil@ gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/20 02:25:42

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/pkg: PLIST-main 

Log message:
Update to link-grammar-5.3.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/20 02:48:19

Modified files:
	textproc/py-cssselect: Makefile distinfo 
	textproc/py-cssselect/pkg: PLIST 

Log message:
Update to py-cssselect 1.0.0. Take maintainership.

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/20 02:49:11

Modified files:
	devel/py-backports-abc: Makefile distinfo 

Log message:
Update to py-backports-abc 0.5

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/20 02:56:01

Log message:
    Import py-nose-warnings-filters 0.1.5, ok danj@
    
    DESCR:
    Allow to inject warning filters during nosetest.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161120
    
    N ports/devel/py-nose-warnings-filters/Makefile
    N ports/devel/py-nose-warnings-filters/distinfo
    N ports/devel/py-nose-warnings-filters/pkg/DESCR
    N ports/devel/py-nose-warnings-filters/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/11/20 02:59:56

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

Log message:
update to luacheck 0.17.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/20 03:16:18

Modified files:
	devel          : Makefile 

Log message:
+py-nose-warnings-filters
+py-nose-warnings-filters,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/20 03:18:58

Log message:
    Import py-bottleneck 1.2.0, ok danj@
    
    DESCR:
    Bottleneck is a collection of fast NumPy array functions written in C.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161120
    
    N ports/math/py-bottleneck/Makefile
    N ports/math/py-bottleneck/distinfo
    N ports/math/py-bottleneck/patches/patch-setup_py
    N ports/math/py-bottleneck/pkg/DESCR
    N ports/math/py-bottleneck/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/20 03:28:28

Modified files:
	math           : Makefile 

Log message:
+py-bottleneck
+py-bottleneck,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/20 04:00:19

Modified files:
	etc            : Makefile 
	distrib/sets   : makeetcset maketars 

Log message:
Fix up some permissions in RELEASEDIR and /var/sysmerge.

help, testing & ok rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/20 04:40:59

Modified files:
	share/man/man9 : srpl_rc_init.9 
	sys/net        : rtable.c 
	sys/netinet    : ip_carp.c 
	sys/sys        : srp.h 

Log message:
Rename SRPL_ENTER() to SRPL_FIRST() and SRPL_NEXT() to SRPL_FOLLOW().

This allows us to introduce SRPL_NEXT() that can be used to start
iterating on an arbitrary member of an srp list, hence without calling
SRPL_ENTER().

ok dlg@, jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/20 04:46:45

Modified files:
	sys/net        : rtable.c 
	sys/netinet    : if_ether.c 

Log message:
Make rtable_iterate(9) mpsafe by using the new SRPL_NEXT(9).

ok dlg@, jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/20 04:48:52

Modified files:
	regress/sys/net/rtable: srp_compat.h 

Log message:
SRPL_FIRST() and SRPL_FOLLOW().


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/20 05:05:25

Modified files:
	share/man/man9 : Makefile srpl_rc_init.9 
Added files:
	share/man/man9 : SRPL_EMPTY_LOCKED.9 

Log message:
Move LOCKED macros to teir own manual.

This will allow us to better document them and add examples.

Disccussed with dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/20 05:45:26

Modified files:
	sys/net        : if_switch.c if_switch.h ofp.h switchofp.c 
	usr.sbin/tcpdump: print-ofp.c 
	lib/libpcap    : gencode.c 

Log message:
Extend the DLT_OPENFLOW header to include the switch datapath id.

OK rzalamena@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/20 06:28:54

Modified files:
	faq            : current.html 

Log message:
recommend starting with an empty RELEASEDIR the first time around


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/20 06:52:57

Modified files:
	editors/emacs21: Makefile 

Log message:
BROKEN on powerpc


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/20 07:46:33

Modified files:
	faq            : current.html 

Log message:
Disentangle treatment of /dest and RELEASEDIR.  Requested by deraadt.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/20 08:02:25

Modified files:
	sys/arch/octeon/dev: octeon_intr.c 

Log message:
Drop pointless type casts.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/20 08:14:19

Modified files:
	editors/emacs21: Makefile 

Log message:
Stop embedding ${OSREV} in PLIST, should remove the need for PLIST bumps


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/20 08:38:13

Modified files:
	faq            : current.html 

Log message:
invalid html: need to escape & in urls.

from validator.w3.org


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/20 08:45:38

Modified files:
	.              : stable.html 

Log message:
XXXrelease marker to add a note on build:wobj


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 08:46:43

Modified files:
	lib/libcrypto/man: BN_CTX_new.3 

Log message:
Add Copyright and license.
Mention that BN_CTX_free(3) accepts NULL.
Delete the useless statement that void functions return no value.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 08:47:40

Modified files:
	lib/libcrypto/man: BN_CTX_start.3 

Log message:
Add Copyright and license.
Delete the useless statement that a void function returns no value.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 08:57:50

Modified files:
	lib/libcrypto/man: BN_add.3 

Log message:
Add Copyright and license.
Merge a sentence from OpenSSL saying that BN_sub(3)
can do in-place manipulation.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 09:27:14

Modified files:
	lib/libcrypto/man: BN_add_word.3 

Log message:
Add Copyright and license.
Delete duplicate specification of the error return value of BN_mod_word(3).
Fix a markup error in the remaining copy of the same return value.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 09:30:22

Modified files:
	lib/libcrypto/man: BN_bn2bin.3 

Log message:
Add Copyright and license.
More details about BN_hex2bn(3) lifted from the OpenSSL manual,
but worded less clumsily.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 09:37:02

Modified files:
	lib/libcrypto/man: BN_cmp.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 09:51:02

Modified files:
	lib/libcrypto/man: BN_copy.3 

Log message:
Add Copyright and license.
Merge documentation of BN_with_flags(3) from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 10:12:03

Modified files:
	lib/libcrypto/man: BN_generate_prime.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, show prototypes rather than #define directives.
Clarify that BN_generate_prime_ex(3) takes the minimum length,
not the exact length.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 10:18:10

Modified files:
	lib/libcrypto/man: BN_mod_inverse.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 10:47:18

Modified files:
	lib/libcrypto/man: BN_mod_mul_montgomery.3 
	                   BN_mod_mul_reciprocal.3 BN_new.3 

Log message:
Add Copyright and license.
Mention that some *_free(3) functions accept NULL.
Delete useless statements about void functions not retuning a value.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 10:58:45

Modified files:
	lib/libcrypto/man: BN_num_bytes.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 11:00:55

Modified files:
	lib/libcrypto/man: BN_rand.3 

Log message:
Add Copyright and license.
Merge one additional sentence stating a restriction on arguments from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 11:11:40

Modified files:
	lib/libcrypto/man: BN_set_bit.3 

Log message:
Add Copyright and license.
Mention that shifting by negative numbers of bits is not allowed.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 11:38:44

Modified files:
	lib/libcrypto/man: BN_swap.3 BN_zero.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 12:08:51

Modified files:
	lib/libcrypto/man: BUF_MEM_new.3 

Log message:
Add Copyright and license.
Merge documentatin of BUF_MEM_grow_clean(3) and BUF_reverse(3) from OpenSSL.
Mention that BUF_MEM_free(3) accepts NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 12:45:17

Modified files:
	lib/libcrypto/man: CONF_modules_free.3 

Log message:
Add Copyright and license.
Drop the empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/20 12:45:36

Modified files:
	sysutils/tmuxinator: Makefile 
	sysutils/tmuxinator/pkg: PLIST 

Log message:
Remove use of FLAVORS. Use standard way of disabling formatting of executable
name.  Fix mux.fish symlink.

OK nigel@ jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 12:47:59

Modified files:
	lib/libcrypto/man: CONF_modules_load_file.3 

Log message:
Add Copyright and license.
Merge some typo fixes, a paragraph documenting another flag,
and some additional explanations and EXAMPLES from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/20 13:45:04

Modified files:
	lib/libcrypto/man: DES_set_key.3 

Log message:
Add the correct Copyright notices and licenses.

This is the first manual page i encounter that contains both parts
of text derived from the old SSLeay documentation, hence covered
by Tim Hudson's Copyright and available under Eric Young's original
SSLeay license, and parts changed or added later, hence covered by
the OpenSSL Copyright and license.  Both licenses have to be included.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/20 14:33:42

Modified files:
	lib/libcrypto/man: BUF_MEM_new.3 

Log message:
grammar fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/11/20 15:54:40

Modified files:
	usr.sbin/vmd   : i8259.c 

Log message:
Remove some old code that isn't needed anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/20 18:44:06

Modified files:
	sys/kern       : subr_pool.c 
	sys/sys        : pool.h 

Log message:
let pool page allocators advertise what sizes they can provide.

to keep things concise i let the multi page allocators provide
multiple sizes of pages, but this feature was implicit inside
pool_init and only usable if the caller of pool_init did not specify
a page allocator.

callers of pool_init can now suplly a page allocator that provides
multiple page sizes. pool_init will try to fit 8 items onto a page
still, but will scale its page size down until it fits into what
the allocator provides.

supported page sizes are specified as a bit field in the pa_pagesz
member of a pool_allocator. setting the low bit in that word indicates
that the pages can be aligned to their size.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/20 18:58:55

Modified files:
	share/man/man9 : srpl_rc_init.9 SRPL_EMPTY_LOCKED.9 

Log message:
tweak the pages based on feedback from jmc@

they could do with some examples too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/11/20 21:21:39

ports/net/megatools/patches

Update of /cvs/ports/net/megatools/patches
In directory cvs.openbsd.org:/tmp/cvs-serv82429/patches

Log Message:
Directory /cvs/ports/net/megatools/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/11/20 23:43:40

Modified files:
	net/megatools  : Makefile distinfo 
	net/megatools/pkg: PLIST 
Added files:
	net/megatools/patches: patch-lib_mega_c 

Log message:
Update to megatools-1.9.98.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/11/21 00:11:13

Modified files:
	share/man/man9 : SRPL_EMPTY_LOCKED.9 srpl_rc_init.9 

Log message:
jmc@ pointed out i forgot to fix the missing SRPL_LEAVE in the synopsis.

sprinkle some .Ft on the things that act like functions while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/21 01:07:53

Modified files:
	www/py-feedgenerator: Makefile distinfo 
	www/py-feedgenerator/pkg: DESCR PLIST 

Log message:
Update to py-feedgenerator-1.9 (from maintainer)

While there, add a py3 flavor and remove an obsolete sentence in DESCR

ok Vladimir D. Seleznev (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/21 01:09:12

Modified files:
	www            : Makefile 

Log message:
+ py-feedgenerator,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2016/11/21 01:19:36

Modified files:
	sys/dev/usb    : if_umb.c if_umb.h mbim.h 

Log message:
Some MBIM devices need a FCC Authentication before they're willing to
turn on the radio. This is done by encapsulating QMI requests inside
a MBIM message.

Based on prio work by sthen@, tested by Bryan Vyhmeister.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/21 01:27:59

Modified files:
	sys/net        : if_bridge.c 

Log message:
bridge(4) does not distinguish between routing/forwarding ports, so
make "addlocal" an alias to "add" on bridge.  addlocal is handled
differently on switch(4).

OK yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/21 01:28:19

Modified files:
	sys/net        : switchofp.c 

Log message:
Include the OFP header of the message that caused the error on error
messages.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/21 02:09:06

Modified files:
	sys/kern       : sys_socket.c uipc_socket.c uipc_syscalls.c 
	sys/net        : if.c raw_usrreq.c rtsock.c 
	sys/netinet    : ip_divert.c raw_ip.c tcp_usrreq.c udp_usrreq.c 
	sys/netinet6   : ip6_divert.c raw_ip6.c 

Log message:
Enforce that pr_usrreq functions are called at IPL_SOFTNET.

This will allow us to keep locking simple as soon as we trade
splsoftnet() for a rwlock.

ok bluhm@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/21 02:12:18

Modified files:
	sys/net        : bpf.c 

Log message:
Rename bpf_reset_d() to match bpf_{attach,reset}d().


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/21 02:15:40

Modified files:
	sys/net        : bpf.c 

Log message:
Make sure bpf_wakeup() is called at most once when matching conditions
are fulfilled in bpf_catchpacket().


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/21 02:26:59

Modified files:
	graphics/libgphoto2: Makefile distinfo 
	graphics/libgphoto2/patches: patch-libgphoto2_port_usb_libusb_c 
Removed files:
	graphics/libgphoto2/patches: 
	                             patch-camlibs_ax203_jpeg_memsrcdest_c 
	                             patch-camlibs_ax203_jpeg_memsrcdest_h 
	                             patch-camlibs_jl2005c_jpeg_memsrcdest_c 
	                             patch-camlibs_jl2005c_jpeg_memsrcdest_h 

Log message:
Update to libgphoto-2.5.11.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/21 02:27:17

Modified files:
	graphics/gphoto2: Makefile distinfo 

Log message:
Update to gphoto-2.5.11.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/21 02:48:52

Modified files:
	mail/thunderbird-i18n: Makefile.inc distinfo 
	mail/mozilla-thunderbird: Makefile distinfo 

Log message:
Bugfix update to thunderbird 45.5.0/lightning 4.7.5.0

See https://www.mozilla.org/en-US/thunderbird/45.5.0/releasenotes/


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 02:56:36

Modified files:
	lib/libcrypto/man: BN_generate_prime.3 BN_rand.3 DES_set_key.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 crypto.3 

Log message:
replace cross-references to the rand(3) manual that no longer exists


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 03:00:37

Modified files:
	lib/libcrypto/man: BIO_s_bio.3 BUF_MEM_new.3 lh_stats.3 

Log message:
fix references to bio(3) to point to BIO(3) instead


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/21 03:30:42

Modified files:
	sys/net        : route.c route.h 
	sys/kern       : sys_socket.c 

Log message:
Kill rtioctl() stub, returning EOPNOTSUPP since tree import.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/21 03:42:00

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
Assert that in6_ifadd() is always called at IPL_SOFTNET.

While here us __func__ in debug strings to reduce noise when grepping.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/21 03:52:08

Modified files:
	sys/netinet6   : nd6.h nd6_rtr.c 

Log message:
Assert that prelist_update() is always called at IPL_SOFTNET.

While here use __func__ in debug strings to reduce noise when grepping.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/21 03:56:26

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
Assert that defrtrlist_update() is always called at IPL_SOFTNET.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 04:38:54

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: BN_get0_nist_prime_521.3 

Log message:
import DH_get_1024_160(3) from OpenSSL,
but do not include the functions we don't have


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 04:40:40

Modified files:
	lib/libcrypto/man: DH_generate_key.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 04:43:37

Modified files:
	lib/libcrypto/man: DH_generate_parameters.3 

Log message:
Add Copyright and license.
Improve description of DH_check(3) results using information from
OpenSSL manual and a look at the source code, leaving out the bits
we don't have.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 04:44:35

Modified files:
	lib/libcrypto/man: DH_new.3 

Log message:
Add Copyright and license.
Mention that DH_free(3) accepts NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 04:48:44

Modified files:
	lib/libcrypto/man: DH_set_method.3 

Log message:
Add Copyright and license.

Do not talk about DH_set_default_openssl_method() and
DH_get_default_openssl_method().  They were short-lived
functions that only existed in OpenSSL 0.9.6.

Remove inclusion of a header that is not needed (from OpenSSL).
Remove one ugly custom section header.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 04:50:32

Modified files:
	lib/libcrypto/man: DH_size.3 

Log message:
Add Copyright and license, and minor improvements from OpenSSL:
Mention that DH_size(3) does not accept NULL.
Add two cross references.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/21 05:05:28

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

Log message:
Turn on the PHY power during attach

After a cold boot the PHY power might be disabled by another OS:
https://svnweb.freebsd.org/base?view=revision&revision=295093


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/21 05:13:16

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Parse flow-status instructions in multipart replies, so we can see what
instructions are used by the flow.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/21 05:37:16

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

Log message:
Correct the test for requiring a 64 bit mem bar.
ok mikeb@ who tested on 82599, x540 and x550.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/21 05:37:35

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

Log message:
Correctly set the default value for the FCRTH

X540 datasheet specifies that Flow Control Receive Threshold High
should be set to the Rx Buffer Size minus the delay value which is
different for different modes of operation, however the minimum is
0x6000 (24576).

Mirrors the bc1fc64fd2d9093496e5b04c6d94d26bfa629c9c commit to the
Linux source code, but picked up from the 280182 commit to FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/21 06:00:43

Modified files:
	usr.sbin/smtpd : bounce.c filter.c mda.c mta_session.c 
	                 smtp_session.c 

Log message:
replace calls to iobuf_*() functions with the corresponding io_*() wrappers.

ok sunil@ gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 06:03:22

Modified files:
	lib/libcrypto/man: DSA_set_method.3 

Log message:
Add Copyright and license.

Do not talk about DSA_set_default_openssl_method(3) and
DSA_get_default_openssl_method(3).  They were short-lived
functions that only existed in OpenSSL 0.9.6.

Remove one ugly custom section header.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 06:05:24

Modified files:
	lib/libcrypto/man: DSA_SIG_new.3 DSA_new.3 

Log message:
Add Copyright and license.
Mention that DSA_SIG_free(3) and DSA_free(3) accept NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 06:06:18

Modified files:
	lib/libcrypto/man: DSA_do_sign.3 DSA_dup_DH.3 DSA_generate_key.3 
	                   DSA_generate_parameters.3 DSA_sign.3 
	                   DSA_size.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/11/21 06:37:22

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/21 06:50:22

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

Log message:
Enabling Loongson 3A bits turned on a code path that uses a MIPS64r2
register on Loongson 2. This causes a boot failure on LS2 because
the CPU does not implement the register. Disable the code on LS2
similarly to mips64 pte.h.

Yeelong boot hang reported and fix tested by matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/11/21 06:51:28

Modified files:
	archivers/p5-Compress-Bzip2: Makefile distinfo 

Log message:
Update to p5-Compress-Bzip2-2.25.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 06:52:28

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : DTLSv1_listen.3 

Log message:
Import the DTLSv1_listen(3) manual from OpenSSL,
excluding interface changes that don't apply to LibreSSL,
except that i left the confusing discussion of RETURN VALUES
completely unchanged, to warn users that this is a mess:
OpenSSL first published this interface, then later changed
its syntax and semantics in multiple ways.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/21 07:19:48

Modified files:
	net/xl2tpd     : Makefile 

Log message:
drop maintainer, I'm not using xl2tpd any more


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/11/21 07:22:11

Modified files:
	graphics/p5-Image-Info: Makefile distinfo 

Log message:
Update to p5-Image-Info-1.39.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 07:27:38

Modified files:
	lib/libcrypto/man: ECDSA_SIG_new.3 

Log message:
Add Copyright and license.
Merge some additional information from OpenSSL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/11/21 07:30:52

Modified files:
	graphics/pngcrush: Makefile distinfo 
	graphics/pngcrush/patches: patch-Makefile 

Log message:
Update to pngcrush-1.8.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/21 07:43:52

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Tweak comment. Reverse cmp logic while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/21 08:23:18

Modified files:
	sys/net        : pf.c 

Log message:
In pf_route() and pf_route6() the !r->rt case was only used by
af-to.  pf_route6() called ip6_output() to do the work while
pf_route() had some custom implementation for that.  It is simpler
to call ip_output() or ip6_output() from pf_test() directly.
OK procter@ sashan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/21 08:54:38

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.703


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/21 09:27:36

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Use the same basename for the rollback tarball as the original patch.sig.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/21 09:33:56

Modified files:
	lib/libcrypto/man: BN_get0_nist_prime_521.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/21 09:36:10

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

Log message:
Check return value of tls_config_set_protocols(3) and log if it fails

OK bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/21 09:46:29

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

Log message:
Factor out RSS initialization into a separate function

No functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/21 10:08:56

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

Log message:
Fixup a PCIe transaction completion timeout issue

Mirrors the change 71bde60191a9fa44d33b582c5e3713ffe99b0fef in Linux;
taken as a part of the 280182 commit to FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/21 10:21:33

Modified files:
	sys/dev/pci    : if_ix.c if_ix.h 

Log message:
Add ability to change media type

Tested with a X540 interconnected with a X550 via a CAT6 twisted
pair cable, but is expected to work on multi-speed fiber modules
as well to select between 10GbaseLR and 1000baseLX or 10GbaseSR
and 1000baseSX, etc.

This is largely required because X550 doesn't provide support for
auto-negotiation and requires manual configuration.

Obtained from FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/21 10:52:20

Modified files:
	sys/net        : pf_norm.c 

Log message:
Follow RFC 5722 more strictly when handling overlapping fragments
in pf.  Drop the whole fragment state if IPv6 fragments appear which
have invalid length or fragment-offset or more-fragment-bit.  In
IPv4 they are considered invalid and just dropped like before.
Found by Antonios Atlasis; OK sashan@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/21 10:56:44

Modified files:
	devel/iso-codes: Makefile distinfo 

Log message:
update to iso-codes-3.71


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/21 10:58:24

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Implement better table features validation. With this we get free switchctl
display of table features.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/21 11:15:02

Added files:
	regress/sys/netinet6/frag6: frag6_mf0atomic.py frag6_mf0long.py 
	                            frag6_mf0middle.py frag6_mf0short.py 
	                            frag6_mf1end.py 

Log message:
Test that IPv6 framents with invalid length or more-fragment bit
drop the whole fragment cache.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/21 11:19:51

Modified files:
	usr.sbin/switchd: ofp10.c ofp13.c 

Log message:
Fix jumbo regress test for ofp10.c and use htonl() with OFP_PKTOUT_NO_BUFFER
for consistency.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/21 11:47:17

Modified files:
	net/telepathy/telepathy-gabble: Makefile distinfo 
	net/telepathy/telepathy-gabble/pkg: PLIST 

Log message:
update to telepathy-gabble-0.18.4


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/21 12:18:39

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Add truncation validation for packet-out and reuse the action validation
function instead of manually rolling the code again.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/21 12:29:28

Modified files:
	sys/net        : switchofp.c 

Log message:
Simplify pad calculation for flow match on swofp_put_flow().

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/21 12:33:12

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Do more strict checks of OXM by looking at mask restrictions and add
missing OXM type (IP_PROTO).

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/21 13:05:28

Modified files:
	sysutils/rundeck: Makefile distinfo 

Log message:
update to rundeck-2.6.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/21 13:22:38

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.039


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/11/21 13:22:43

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Add support for "allwinner,sun9i-a80-usb-mod-clk" and
"allwinner,sun9i-a80-usb-phy-clk" compatile clocks.

Enable parent clock of clock gates.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/21 14:10:16

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0224


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/11/21 14:49:25

Modified files:
	archivers/p7zip: Makefile 
Added files:
	archivers/p7zip/patches: patch-CPP_7zip_Archive_7z_7zIn_cpp 

Log message:
CVE-2016-9296: Null pointer dereference

https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-9296

From Josh Grosse (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/11/21 14:54:38

Modified files:
	archivers/p7zip: Tag: OPENBSD_6_0 Makefile 
Added files:
	archivers/p7zip/patches: Tag: OPENBSD_6_0 
	                         patch-CPP_7zip_Archive_7z_7zIn_cpp 

Log message:
CVE-2016-9296: Null pointer dereference

https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-9296

From Josh Grosse (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/21 15:19:15

Modified files:
	lib/libcrypto/man: EC_GROUP_copy.3 EVP_AEAD_CTX_init.3 
	                   EVP_BytesToKey.3 EVP_DigestInit.3 
	                   EVP_EncryptInit.3 EVP_OpenInit.3 
	                   EVP_PKEY_CTX_ctrl.3 EVP_PKEY_CTX_new.3 
	                   EVP_PKEY_cmp.3 EVP_PKEY_decrypt.3 
	                   EVP_PKEY_derive.3 EVP_PKEY_encrypt.3 
	                   EVP_PKEY_keygen.3 EVP_PKEY_print_private.3 
	                   EVP_PKEY_sign.3 EVP_PKEY_verify.3 
	                   EVP_PKEY_verify_recover.3 EVP_SealInit.3 
	                   EVP_SignInit.3 EVP_VerifyInit.3 bn_dump.3 
	                   evp.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/11/21 15:37:21

Modified files:
	lang/gambit    : Makefile distinfo 
	lang/gambit/patches: patch-configure 

Log message:
Update to gambit 4.8.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/21 15:56:35

Modified files:
	regress/sys/net/pf_state: Makefile challenge_ack.py 

Log message:
Print better error message if test fails.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 18:38:49

Modified files:
	lib/libcrypto/man: EC_KEY_new.3 

Log message:
Add Copyright and license.
Mention that EC_KEY_free(3) accepts NULL.
Merge some auxiliary explanations regarding the effects of EC_KEY
encoding flags, lifted from the separate page EC_KEY_get_enc_flags(3)
that OpenSSL split off from EC_KEY_new(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 18:41:03

Modified files:
	lib/libcrypto/man: EC_POINT_new.3 

Log message:
Add Copyright and license.
Mention that EC_POINT_free(3) and EC_POINT_clear_free(3) accept NULL.
Fix two evil typos (from OpenSSL).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 18:42:26

Modified files:
	lib/libcrypto/man: EC_GROUP_new.3 

Log message:
Add Copyright and license.
Mention that EC_GROUP_free(3) and EC_GROUP_clear_free(3) accept NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/21 18:43:12

Modified files:
	lib/libcrypto/man: EC_GFp_simple_method.3 EC_GROUP_copy.3 
	                   EC_POINT_add.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2016/11/21 21:42:20

Modified files:
	openssh        : specs.html 

Log message:
Point to current version of draft-sgtatham-secsh-iutf8


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/22 00:06:03

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: EVP_PKEY_get_default_digest_nid.3 
Removed files:
	lib/libcrypto/man: EVP_PKEY_get_default_digest.3 

Log message:
rename _default_digest.3 to _default_digest_nid.3, since this page
describes only one function, _default_digest_nid();

ok schwarze, who informs me openssl already came to this conclusion
in june of this year;


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/22 00:28:43

Modified files:
	usr.sbin/smtpd : bounce.c filter.c ioev.c mta_session.c 
	                 smtp_session.c 

Log message:
Normalize the io input buffer internally when reinstalling the io event, so
the caller doesn't have to bother with this.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/22 02:45:18

Modified files:
	games/freeciv  : Makefile distinfo 

Log message:
bugfix update to freeciv-2.5.6


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/22 03:29:39

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Enforce that pr_ctloutput is called at IPL_SOFTNET.

This will allow us to keep locking simple as soon as we trade
splsoftnet() for a rwlock.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/22 03:32:31

Modified files:
	sys/kern       : uipc_domain.c 

Log message:
Enforce that pr_ctlinput, pr_slowtimo and pr_fasttimo are called
at IPL_SOFTNET.

This will allow us to keep locking simple as soon as we trade
splsoftnet() for a rwlock.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/22 03:53:37

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Allow passing an explicit return code to sp_err() in case we don't want to exit
right away.
Factorise some common stuff.
Be consistent in variables subtitution.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/11/22 04:03:08

Modified files:
	sys/arch/armv7/sunxi: sxiehci.c 

Log message:
Add support for the sun9i USB PHYs and attach to the sun9i EHCI controllers.
Doesn't work yet, but it is a step in the right direction.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/22 04:05:51

Log message:
    Import HMMER, a Hidden Markov Model toolkit.
    
    Port from maintainer Senthil Kumar M with tweaks from sthen@ and I.
    ok sthen@
    
    HMMER is used for searching sequence databases for sequence homologs,
    and for making sequence alignments. It implements methods using
    probabilistic models called profile hidden Markov models (profile
    HMMs). HMMER is designed to detect remote homologs as sensitively as
    possible, relying on the strength of its underlying probability
    models.
    
    HMMER is often used together with a profile database, such as Pfam
    or many of the databases that participate in Interpro. But HMMER
    can also work with query sequences, not just profiles, just like
    BLAST. For example, you can search a protein query sequence against
    a database with phmmer, or do an iterative search with jackhmmer.
    
    Status:
    
    Vendor Tag:	jca
    Release Tags:	jca_20161122
    
    N ports/biology/hmmer/Makefile
    N ports/biology/hmmer/distinfo
    N ports/biology/hmmer/pkg/DESCR
    N ports/biology/hmmer/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/22 04:07:10

Modified files:
	biology        : Makefile 

Log message:
+hmmer


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/22 04:26:41

Modified files:
	graphics/shotwell: Makefile distinfo 
	graphics/shotwell/patches: patch-Makefile_in patch-configure 
	graphics/shotwell/pkg: PLIST 

Log message:
Update to shotwell-0.25.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/22 04:30:10

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.77.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/22 04:30:21

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.20.


CVSROOT:	/cvs
Module name:	src
Changes by:	edd@cvs.openbsd.org	2016/11/22 04:31:38

Modified files:
	usr.sbin/vmctl : vmctl.c 
	usr.sbin/vmd   : parse.y vmd.c vmd.h 

Log message:
Insert disabled VMs into vmd(8)'s queues and allow vmctl(8) to display them.

Tested by Jon Bernard and reyk@.

OK reyk@, no objections mlarkin@.

Thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/22 05:11:38

Modified files:
	sys/kern       : sys_socket.c 
	sys/nfs        : nfs_boot.c 

Log message:
Enforce that ifioctl() is called at IPL_SOFTNET.

This will allow us to keep locking simple as soon as we trade
splsoftnet() for a rwlock.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/22 05:32:07

Modified files:
	lib/libcrypto/man: engine.3 

Log message:
Add Copyright and license.
Pull in a small number of typo fixes from OpenSSL.
Drop speculations about future developments that OpenSSL deleted as well.

This page is a mess for at least three reasons: (1) it doesn't
actually document all functions listed in the SYNOPSIS, (2) it ought
to be split into functional groups of reasonable size, and (3) the
user interface is ill-designed to the point of absurdity.  In view
of item (3), i'm loath to tackle items (1) and (2), so i'm leaving
this in its present sorry state for now, refraining even from
renaming it to ENGINE_add(3) and expanding the NAME section as
OpenSSL did - because that would merely sweep all the turds under
the rug.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/22 05:55:33

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

Log message:
There is no need for res when there is already ret.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/22 06:01:32

Modified files:
	sys/net        : ofp.h 
	usr.sbin/tcpdump: print-ofp.c 

Log message:
Fix OFP spelling for version bitmap define in ofp header and tcpdump, also
change the truncation message in hello with the standard one.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/22 06:24:56

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/22 06:35:00

ports/converters/p5-Net-IDN-Encode/patches

Update of /cvs/ports/converters/p5-Net-IDN-Encode/patches
In directory cvs.openbsd.org:/tmp/cvs-serv61090/patches

Log Message:
Directory /cvs/ports/converters/p5-Net-IDN-Encode/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/22 06:39:46

Modified files:
	regress/lib/libfuse: fuse-opt-add-arg.c 
	                     fuse-opt-add-opt-escaped.c 
	                     fuse-opt-add-opt.c fuse-opt-insert-arg.c 
	                     fuse-opt-match.c 

Log message:
Return different error number to know which test is failing.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/22 06:51:21

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

Log message:
Use CPUID flags to determine working components

This adds a few checks to make sure we're not trying to use features
that are not advertised with CPUID feature flags and avoid attaching
when Xen viridium emulation is turned on.

Prompted by a report from Kirill Miazine <km at krot ! org>, thanks!
Discussed with reyk@.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/22 07:20:39

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Make sure /var/syspatch/$OSREV is not on a read-only mount-point when doing
a rollback.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/22 07:55:19

Modified files:
	lib/libcrypto/man: BIO.3 

Log message:
Add Copyright and license and improve .Nd.


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/11/22 08:00:33

Modified files:
	.              : want.html 

Log message:
I'll be in need of a laptop in a few weeks


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/22 08:44:24

Modified files:
	sys/arch/loongson/include: pmon.h 

Log message:
Fix CPU info struct.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/11/22 09:03:57

Modified files:
	usr.sbin/lpr/lpd: printjob.c 

Log message:
Fix printf of NULL for the FILTERERR case when the tempfile is empty
or missing.  From Sebastien Marie.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/22 10:00:20

Modified files:
	net/gupnp/tools: Makefile distinfo 
	net/gupnp/tools/pkg: PLIST 
Removed files:
	net/gupnp/tools/patches: patch-src_av-cp_playlist-treeview_h 

Log message:
update to gupnp-tools-0.8.13l


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/22 10:20:25

Modified files:
	devel/cryptopp : Makefile distinfo 
	devel/cryptopp/files: cryptopp.pc 
	devel/cryptopp/patches: patch-GNUmakefile patch-algparam_h 
	                        patch-config_h patch-cryptlib_h 
	                        patch-filters_h patch-misc_h 
	                        patch-pubkey_h patch-stdcpp_h 
	devel/cryptopp/pkg: PLIST 
Added files:
	devel/cryptopp/patches: patch-trap_h 

Log message:
Update to cryptopp-5.6.5


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/22 10:21:56

Modified files:
	usr.sbin/switchd: ofp.c ofp10.c ofp13.c ofp_common.c switchd.h 

Log message:
Implement support for version negotiation using hello messages. This
also prevents connections from switching the version in the middle of
the operation.

tweak from and ok reyk@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/22 11:06:12

Modified files:
	faq            : current.html 

Log message:
incorporate some suggestions from espie@:
- build a kernel after installing the makefiles and before 'make build'
- remind people to remove BUILDUSER from mk.conf(5)
- developers MUST add their users to the group wobj


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/22 12:21:48

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
update to epiphany-3.22.3


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2016/11/22 12:29:54

Modified files:
	sys/net        : if_pflog.c if_pfsync.c pf.c pf_norm.c pf_osfp.c 
	                 pfvar.h pfvar_priv.h 

Log message:
Fold union pf_headers buffer into struct pf_pdesc (enabled by pfvar_priv.h).
Prevent pf_socket_lookup() reading uninitialised header buffers on fragments.
OK blum@ sashan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/22 13:12:33

Log message:
    Import opendkim, a library and milter for DKIM
    
    Port from Johan Huldtgren, ok sthen@
    
    DESCR:
    
    OpenDKIM is an implementation of DKIM (RFC 6376, Domain Keys Identified Mail),
    an email sender authentication system. It consists of a library that implements
    the DKIM service and a milter-based filter application that can plug in to any
    milter-aware MTA to provide that service to sufficiently recent sendmail MTAs
    and other MTAs that support the milter protocol.
    
    Status:
    
    Vendor Tag:	jca
    Release Tags:	jca_20161122
    
    N ports/mail/opendkim/Makefile
    N ports/mail/opendkim/distinfo
    N ports/mail/opendkim/pkg/DESCR
    N ports/mail/opendkim/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/22 13:14:47

Modified files:
	mail           : Makefile 

Log message:
+opendkim


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/22 14:26:04

Modified files:
	graphics/libcaca: Makefile 

Log message:
Use V=1 to disable silent rules

As this port tries hard to kill any output, --disable-silent-rules is
not enough.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/22 14:38:18

Modified files:
	lib/libcrypto/man: HMAC.3 MD5.3 OBJ_nid2obj.3 OPENSSL_config.3 
	                   OPENSSL_load_builtin_modules.3 
	                   OpenSSL_add_all_algorithms.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/22 14:54:01

Modified files:
	usr.sbin/vmd   : log.c 

Log message:
Restore previous errno after log_warn*() to make sure that it never
alters it.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/22 14:55:54

Modified files:
	usr.sbin/vmd   : config.c vmd.c 

Log message:
Fix error path of config_setvm() and its callers.  This unbreaks
loading of invalid kernel files.

Reported by mlarkin@
OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/22 15:05:20

Modified files:
	usr.sbin/switchd: ofp10.c 

Log message:
Add "features request" support and reply validation.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/22 15:51:45

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Don't attempt to call vm_remove() with a NULL vm: some functions like
config_getvm() already removed the vm on failure!

Found by mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/22 16:17:52

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

Log message:
Update devel/p5-Test-Harness to 3.36

OK bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/22 16:23:12

Modified files:
	sys/net        : if_switch.c 

Log message:
Fix panic on detach hook when interfaces get destroyed.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/22 17:45:51

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

Log message:
update devel/p5-Test-YAML to 1.06

OK bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/22 17:47:06

Modified files:
	devel/p5-YAML  : Makefile distinfo 

Log message:
Update devel/p5-YAML to 1.19


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/23 02:25:00

Modified files:
	sysutils/consul: Makefile distinfo 

Log message:
Update to consul-0.7.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/23 02:37:43

Modified files:
	sys/dev/pv     : hyperv.c hypervvar.h if_hvn.c 

Log message:
Disable debugging output


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/23 02:41:20

Modified files:
	sysutils/salt  : Makefile distinfo 
	sysutils/salt/pkg: PLIST 
Removed files:
	sysutils/salt/patches: patch-salt_states_archive_py 

Log message:
Update to salt-2016.11.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/23 02:53:16

Modified files:
	lib/libfuse    : fuse_opt.c 

Log message:
Empty strings are invalid arguments.

Fix a regression introduced when merging the two options parsers.

ok stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/23 02:56:21

Modified files:
	net/amule      : Makefile 
Added files:
	net/amule/patches: patch-src_SearchList_cpp 
	                   patch-src_SearchList_h patch-src_amule_h 
	                   patch-src_amuled_cpp 

Log message:
Merge two fixes from upstream git repository.

git commit a19567efa969835503823d6f6d193dcc83eb92ef:

Try to find best possible keyword for Kad search.
For example most user will search like this "The oxymoronaccelerator
2", which would ask the node which indexes "the". This causes higher
traffic for such nodes and makes them a viable target to attackers,
while the kad result should be the same or even better if we ask
the node which indexes the rare keyword "oxymoronaccelerator", so
we try to rearrange keywords and generally assume that the longer
keywords are rarer.

git commit 5cf7ef9a7dcff2776d9ebc8bb8337e7e3203e6ab:

Add a routine to set file name conversion for amuled, which is based
on wxAppConsole: fix sharing directories with non-ASCII names with
aMule daemon.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/23 02:58:32

Modified files:
	www/tomcat/v6  : Makefile distinfo 
	www/tomcat/v6/pkg: PLIST-examples 
	www/tomcat/v7  : Makefile distinfo 

Log message:
Updates:

Tomcat 6.0.48 and Tomcat 7.0.73


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/23 03:04:31

Modified files:
	sys/netinet    : ip_input.c 

Log message:
Keep checks for local delivery close to in_ouraddr().

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/23 04:59:08

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

Log message:
M_*WAIT* flags cannot be treated as boolean values


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 05:13:23

Modified files:
	sys/net        : pf.c 
	sbin/pfctl     : parse.y 

Log message:
Explicitly forbid to combine af-to with route-to in pfctl.  The
parser cannot handle that correctly and is is unclear wether the
kernel code would work.  Remove the feature until someone needs it
and properly implements and tests it.
OK mike@ sashan@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 05:26:40

Added files:
	regress/sbin/pfctl: pfail57.in pfail57.ok 

Log message:
Test that af-to cannot be used together with route-to, reply-to, dup-to.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/23 05:27:47

Modified files:
	sysutils/rancid: Makefile distinfo 
	sysutils/rancid/files: fnlogin.in 
	sysutils/rancid/patches: patch-Makefile_in patch-configure 
	                         patch-etc_Makefile_in 
	sysutils/rancid/pkg: DESCR PLIST README 
Added files:
	sysutils/rancid/patches: patch-etc_rancid_conf_sample_in 
	                         patch-share_Makefile_in 
	sysutils/rancid/pkg: MESSAGE 
Removed files:
	sysutils/rancid/patches: patch-bin_Makefile_in 
	                         patch-bin_fnrancid_in 

Log message:
update to rancid-3.5.1, from Pavel Korovin, ok pea@
---
If you are upgrading from rancid-<3, please note that router.db field
separator has been changed from ':' to ';' to avoid conflict with IPv6
addresses. Replace the field separator in router.db files before running
rancid.

The configuration files location is changed from /etc to /etc/rancid.
---


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/23 05:40:04

Modified files:
	sys/dev/pv     : hyperv.c hypervvar.h 

Log message:
Move as much code out of a startup hook as possible

To be able to perform asynchronous operations early we need to
have a robust polling mechanism with flexible condition check
semantics.  A new hv_wait interface provides such facilities.

Right now hvn(4) submits NVS commands and sleeps waiting for a
interrupt to fire and run the completion code and it will take
some effort to convert this code to be able to poll instead of
tsleep.  But VMBus attachment, channel scanning, etc can done
at an earlier stage.  Lets see if this sticks.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 06:05:53

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Some socket splicing tests on loopback hang with large mbufs and
reduced buffer size.  If the send buffer size is less than the size
of a single mbuf, it will never fit.  So if the send buffer is
empty, split the large mbuf and move only a part.
OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/23 06:24:05

Modified files:
	x11/xmobar     : Makefile 
Added files:
	x11/xmobar/patches: patch-src_Window_hs 

Log message:
Bug fix: off-by-one drawing borders
(upstream git commit fd10cff3c73cb6fc99c3c34473685bf8b95dccdb)


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/23 07:13:55

Modified files:
	x11/lablgtk2   : Makefile distinfo 

Log message:
Bugfixing update to lablgtk2-2.18.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/23 07:16:10

Modified files:
	net/mldonkey   : Makefile 
	net/mldonkey/patches: patch-src_networks_donkey_donkeyGlobals_ml 
	                      patch-src_utils_cdk_gdstubs_c 
	                      patch-src_utils_cdk_zip_ml 
	                      patch-src_utils_lib_options_ml4 
Added files:
	net/mldonkey/patches: patch-src_networks_donkey_donkeyOvernet_ml 

Log message:
Other fixes for Ocaml-4.03
(upstream git commit f8d595df4fe01512fd945bb6d524958d1361a0a8)

...And regen patches while here


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/23 07:20:07

Modified files:
	audio/p5-Audio-Scan: Makefile distinfo 

Log message:
update to p5-Audio-Scan-0.96


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/23 07:29:33

Modified files:
	net/openvpn    : Tag: OPENBSD_6_0 Makefile 
	net/openvpn/patches: Tag: OPENBSD_6_0 patch-src_openvpn_tun_c 
Added files:
	net/openvpn/patches: Tag: OPENBSD_6_0 patch-src_openvpn_route_c 
Removed files:
	net/openvpn/patches: Tag: OPENBSD_6_0 
	                     patch-src_openvpn_syshead_h 

Log message:
MFC recent hack to OpenVPN for "topology subnet" setups that avoids triggering
the "Too many levels of symbolic links" error following changes to the kernel.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/23 07:40:47

Modified files:
	devel/jsoncpp  : Makefile distinfo 

Log message:
Update to jsoncpp-1.7.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/23 07:51:39

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.78.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/23 07:51:53

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.21.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/23 07:52:15

Modified files:
	multimedia/gstreamer-0.10/plugins-good: Makefile 
	multimedia/gstreamer1/plugins-good: Makefile 
Added files:
	multimedia/gstreamer-0.10/plugins-good/patches: 
	                                                patch-gst_flx_gstflxdec_c 
	multimedia/gstreamer1/plugins-good/patches: 
	                                            patch-gst_flx_gstflxdec_c 

Log message:
Security fix for flxdec: add some write bounds checking

Without checking the bounds of the frame we are writing into, we can
write off the end of the destination buffer.

https://scarybeastsecurity.blogspot.dk/2016/11/0day-exploit-advancing-exploitation.html

https://bugzilla.gnome.org/show_bug.cgi?id=774834

From upstream git

OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/23 08:07:10

Modified files:
	databases/ruby-hiera3: Makefile 
	databases/ruby-hiera3/pkg: PLIST 

Log message:
Missing @sample directories.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/11/23 08:59:32

Modified files:
	lang/ruby/2.3  : Makefile distinfo 

Log message:
Update to ruby 2.3.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/23 08:59:36

Log message:
    Import textproc/fzy.
    
    fzy is a fast, simple fuzzy text selector for the terminal with an advanced
    scoring algorithm.
    
    Most other fuzzy matchers sort based on the length of a match. fzy tries
    to find the result the user intended. It does this by favouring matches on
    consecutive letters and starts of words. This allows matching using acronyms
    or different parts of the path.
    
    OK jca@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161123
    
    N ports/textproc/fzy/Makefile
    N ports/textproc/fzy/distinfo
    N ports/textproc/fzy/pkg/PLIST
    N ports/textproc/fzy/pkg/DESCR
    N ports/textproc/fzy/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/23 09:02:18

Modified files:
	textproc       : Makefile 

Log message:
Add fzy.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/23 09:28:23

Modified files:
	lib/libcrypto/man: CRYPTO_set_ex_data.3 
	                   CRYPTO_set_locking_callback.3 
	                   DH_get_ex_new_index.3 DSA_get_ex_new_index.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/23 09:40:33

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/pkg: PLIST-main 
Added files:
	editors/vim/patches: patch-src_configure_ac 
Removed files:
	editors/vim/patches: patch-src_configure_in 

Log message:
update to vim-8.0.0095, including fix for CVE-2016-1248 (arbitrary shell
commands are executed if a file is opened with a malicious modeline)

http://seclists.org/oss-sec/2016/q4/506
http://seclists.org/oss-sec/2016/q4/att-506/vim_CVE-2016-1248.patch


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/23 09:44:42

Modified files:
	usr.bin/tmux   : key-string.c 

Log message:
Error on invalid modifier keys.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/23 09:44:44

Modified files:
	editors/vim    : Tag: OPENBSD_6_0 Makefile 
Added files:
	editors/vim/patches: Tag: OPENBSD_6_0 patch-src_option_c 

Log message:
patch 6.0-stable vim for CVE-2016-1248


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/23 10:01:24

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

Log message:
For mouse keys, use the mouse pane as the default current pane.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/23 10:54:15

Modified files:
	lib/libcrypto/man: ERR.3 ERR_put_error.3 

Log message:
Add Copyright and license.
Like OpenSSL, move some text from ERR(3) to the fitting page ERR_put_error(3).
Merge documentation of ERR_add_error_vdata(3) from OpenSSL.
Drop useless statement about void functions returning no values.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/23 10:55:31

Modified files:
	lib/libcrypto/man: ERR_error_string.3 

Log message:
Add Copyright and license.
Merge a correction and a clarification from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/23 10:56:36

Modified files:
	lib/libcrypto/man: ERR_print_errors.3 

Log message:
Add Copyright and license.
Merge documentation of ERR_print_errors_cb(3) from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/23 10:58:42

Modified files:
	lib/libcrypto/man: ERR_clear_error.3 

Log message:
Add Copyright and license.
Garbage collect the empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/23 10:59:29

Modified files:
	lib/libcrypto/man: ERR_GET_LIB.3 ERR_get_error.3 
	                   ERR_load_crypto_strings.3 ERR_load_strings.3 
	                   ERR_remove_state.3 ERR_set_mark.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2016/11/23 11:40:00

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/11/23 12:40:38

Modified files:
	security/oletools: Makefile distinfo 
	security/oletools/pkg: PLIST 

Log message:
update oletools to 0.50.
ok benoit@.


CVSROOT:	/cvs
Module name:	src
Changes by:	feinerer@cvs.openbsd.org	2016/11/23 13:23:54

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

Log message:
Add Ericsson N5321gw

OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/23 13:34:48

Modified files:
	share/man/man8 : release.8 

Log message:
Clean up some abuse of the .Va macro to achieve a visual effect: omit it or
replace it with more appropriate macros where possible or necessary.

input & ok schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/11/23 13:45:00

Modified files:
	print/poppler  : Makefile distinfo 

Log message:
Update to poppler-0.49.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 14:09:46

Modified files:
	devel/p5-App-Cmd: Makefile distinfo 

Log message:
update p5-App-Cmd to 0.331
from maintainer Sergey Bronnikov; OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 14:15:58

Modified files:
	devel/p5-ExtUtils-InstallPaths: Makefile distinfo 

Log message:
update p5-ExtUtils-InstallPaths to 0.011
form maintainer Sergey Bronnikov; OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 14:27:12

Modified files:
	devel/p5-IO-TieCombine: Makefile distinfo 

Log message:
update p5-IO-TieCombine 1.005
form maintainer Sergey Bronnikov; OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 14:36:23

Modified files:
	devel/p5-Role-Tiny: Makefile distinfo 

Log message:
update p5-Role-Tiny to 2.000005
from maintainer Sergey Bronnikov; OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 14:48:20

Modified files:
	devel/p5-indirect: Makefile distinfo 

Log message:
update p5-indirect to 0.37
from maintainer Sergey Bronnikov; OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 14:53:35

Modified files:
	devel/p5-strictures: Makefile distinfo 

Log message:
update p5-strictures to 2.000003
from maintainer Sergey Bronnikov; OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/23 15:02:15

Modified files:
	devel/p5-Import-Into: Makefile distinfo 

Log message:
update p5-Import-Into to 1.002005
from maintainer Sergey Bronnikov; input and OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2016/11/23 16:14:15

Modified files:
	usr.bin/ssh    : servconf.c sshd_config.5 

Log message:
allow ClientAlive{Interval,CountMax} in Match; ok dtucker, djm


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/23 17:20:36

Modified files:
	lib/libcrypto/man: EVP_BytesToKey.3 

Log message:
Add Copyright and license.
Pull in some more information about RETURN VALUES from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/11/23 19:43:54

Modified files:
	share/zoneinfo/datfiles: africa antarctica asia australasia 
	                         europe iso3166.tab zone.tab 
	                         zone1970.tab 

Log message:
Update to tzdata2016j from ftp.iana.org


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/23 22:21:42

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/24 00:57:48

Modified files:
	usr.sbin/smtpd : ioev.c mta_session.c smtp_session.c 

Log message:
reset the io event when data is queued.
remove all calls to io_reload() which are now unnecessary.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/24 00:58:55

Modified files:
	usr.sbin/vmd   : Makefile config.c loadfile.h loadfile_elf.c 
	                 vmd.c vmd.h vmm.c 
	usr.sbin/vmctl : vmctl.c 
Added files:
	usr.sbin/vmd   : ufs.c vmboot.c vmboot.h 

Log message:
Add support for booting the kernel from the disk image.

This make the kernel/-k argument optional and, if not specified, tries
to find the /bsd kernel in the primary hd0a partition of the first
disk image itself.  It doesn't support hd0a:/etc/boot.conf yet, and it
is no BIOS or full boot loader, but it makes booting and handling of
VMs a bit easier - booting an external kernel is still supported.

The UFS file system code ufs.c is directly from libsa which is also
used by the real boot loader.  The code compiles with a few signedness
warning which will be fixed separately.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/24 01:03:37

Modified files:
	usr.sbin/vmd   : ufs.c 

Log message:
Fix a few signedness warnings in our copy of libsa's ufs.c.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/24 01:09:01

Modified files:
	multimedia/gstreamer-0.10/plugins-bad: Tag: OPENBSD_6_0 Makefile 
	multimedia/gstreamer-0.10/plugins-bad/pkg: Tag: OPENBSD_6_0 
	                                           PLIST-main 
	multimedia/gstreamer-0.10/plugins-good: Tag: OPENBSD_6_0 
	                                        Makefile 
	multimedia/gstreamer1/plugins-good: Tag: OPENBSD_6_0 Makefile 
Added files:
	multimedia/gstreamer-0.10/plugins-good/patches: Tag: OPENBSD_6_0 
	                                                patch-gst_flx_gstflxdec_c 
	multimedia/gstreamer1/plugins-good/patches: Tag: OPENBSD_6_0 
	                                            patch-gst_flx_gstflxdec_c 
Removed files:
	multimedia/gstreamer-0.10/plugins-bad/patches: Tag: OPENBSD_6_0 
	                                               patch-gst_nsf_gstnsf_c 
	                                               patch-gst_nsf_nsf_c 
	                                               patch-gst_nsf_nsf_h 

Log message:
MFC: security fixes for gstreamer-0.10 and gstreamer1


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/24 01:09:27

Modified files:
	usr.sbin/vmd   : ufs.c 

Log message:
Better cast for consistency


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/24 01:10:01

Log message:
    Import vigra-1.11.0.
    Required by upcoming updates of graphics/enblend-enfuse and
    grapthics/hugin.
    Input and ok sthen@
    
    VIGRA stands for "Vision with Generic Algorithms". It's an image
    processing and analysis library that puts its main emphasis on
    customizable algorithms and data structures. VIGRA is especially strong
    for multi-dimensional images, because many algorithms (e.g. filters,
    feature computation, superpixels) are implemented for arbitrary high
    dimensions.
    
    Status:
    
    Vendor Tag:	kirby
    Release Tags:	kirby_20161124
    
    N ports/graphics/vigra/Makefile
    N ports/graphics/vigra/distinfo
    N ports/graphics/vigra/pkg/DESCR
    N ports/graphics/vigra/pkg/PLIST
    N ports/graphics/vigra/patches/patch-src_impex_CMakeLists_txt
    N ports/graphics/vigra/patches/patch-test_CMakeLists_txt
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/24 01:11:43

Modified files:
	graphics       : Makefile 

Log message:
Add vigra to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/24 01:16:03

Modified files:
	graphics/enblend-enfuse: Makefile distinfo 
	graphics/enblend-enfuse/patches: patch-src_Makefile_in 
	graphics/enblend-enfuse/pkg: PLIST 
Added files:
	graphics/enblend-enfuse/patches: patch-src_enblend_cc 
	                                 patch-src_enfuse_cc 
Removed files:
	graphics/enblend-enfuse/patches: patch-configure_in 
	                                 patch-doc_enblend_texi 
	                                 patch-doc_enfuse_texi 
	                                 patch-src_DefaultSig_pm 
	                                 patch-src_vigra_impex_png_cxx 

Log message:
Update to enblend-enfuse-4.2.
- enable SEPARATE_BUILD while here
- drop some patches merged upstream.
With some tweaks and OK from sthen@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/24 01:20:38

Modified files:
	graphics/hugin : Makefile distinfo 
	graphics/hugin/patches: patch-doc_CMakeLists_txt 
	                        patch-src_foreign_CMakeLists_txt 
	                        patch-src_hugin_base_CMakeLists_txt 
	                        patch-src_tools_CMakeLists_txt 
	graphics/hugin/pkg: PLIST 
Removed files:
	graphics/hugin/patches: 
	                        patch-src_hugin1_base_wx_RunStitchPanel_cpp 
	                        patch-src_tools_ParseExp_cpp 

Log message:
Update to hugin-2016.2.0.
- drop gettext module while here
- take maintainer (suggested by sthen@, former maintainer)
OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/24 01:27:28

Modified files:
	audio/mpd      : Makefile 
	audio/mpd/patches: patch-doc_mpdconf_example 
Added files:
	audio/mpd/patches: 
	                   patch-src_decoder_plugins_FfmpegDecoderPlugin_cxx 
	                   patch-src_decoder_plugins_PcmDecoderPlugin_cxx 

Log message:
Merge fixes from branch 'v0.19.x' of git://git.musicpd.org/master/mpd

decoder/pcm: round buffer size down to nearest frame size
(upstream git commit 7019f6bea455f0d843131ec5b88cf057ebba5058)

decoder/ffmpeg: ignore empty packets
(upstream git commit 77a9940461f96a608b1f564f810b146980e63c4d)

fix comment in mpdconf.example ("can setting can" -> "setting can")
(upstream git commit 7c251fe19013d17f5ecd65361a560d433c0c19ef)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/24 02:23:11

Modified files:
	usr.sbin/switchctl: ofpclient.c parser.c parser.h switchctl.c 

Log message:
Add simple client to add flows from switchctl.  Not finished yet, but
it is better for rzalamena and me to work on it in the tree.

OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/24 02:54:51

Modified files:
	security/opensc: Makefile 
	security/opensc/patches: patch-src_tools_pkcs11-tool_c 
	                         patch-src_tools_pkcs15-tool_c 
Added files:
	security/opensc/patches: patch-src_common_libpkcs11_c 
	                         patch-src_libopensc_card-asepcos_c 
	                         patch-src_libopensc_pkcs15-pin_c 
	                         patch-src_libopensc_pkcs15-pubkey_c 
	                         patch-src_pkcs11_misc_c 
	                         patch-src_tools_pkcs15-init_c 

Log message:
libpkcs11: Prevent double-free when the dlopen fails
(upstream git commit 24346062c01ad690addb0db55b74f9c53b394c0c)

Fix Coverity remarks
(upstream git commit 12f402616050e6ac943217b2170e865c1a297e77)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/24 04:45:17

Modified files:
	audio/gmpc     : Makefile 
Added files:
	audio/gmpc/patches: patch-src_MetaData_metadata-cache-sqlite_c 

Log message:
Invert broken logic to fix a bunch of vfprintf %s NULL spamming my logs.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/24 04:50:58

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

Log message:
Fixup active media reporting for multi-speed fiber modules

A gigabit fiber connection was mistakenly reported as 1000baseT
when a mutli-speed 10GbaseSR/1000baseSX fiber optics module was
set to the gigabit mode.

Reported by and fix tested by Hrvoje Popovski <hrvoje at srce ! hr>,
HUGE thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/24 05:40:49

Modified files:
	net/scapy      : Makefile 
Added files:
	net/scapy/patches: patch-scapy_sendrecv_py 

Log message:
Put back an OpenBSD special code path that was lost in the scapy
2.3.3 update.  Sniff the packets in sndrcv() like it is done on
FreeBSD and Darwin.  Without this patch, everything worked with
virtual qemu.  But on real ethernet hardware sr() sends TCP packets
to the broadcast MAC address as scapy did not see the ARP reply to
figure out the correct MAC address.
OK danj@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/24 05:58:27

Modified files:
	usr.sbin/smtpd : ioev.c ioev.h mda.c mta_session.c 
	                 smtp_session.c 

Log message:
add an io_error() accessor to avoid dereferencing the io struct directly.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/24 06:38:44

Modified files:
	usr.bin/tmux   : screen.c tmux.1 tmux.h window-copy.c 

Log message:
Make the selection able to exist independent of the cursor position, so
that it is not affected by scrolling. If MouseDragEnd1Pane is bound to
the new "stop-selection" command:

bind -Tcopy-mode MouseDragEnd1Pane stop-selection

A selection made with the mouse will stay as it is after button 1 is
released. (It also works bound to a key.)

From Artem Fokin.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/24 06:46:50

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

Log message:
Fix so that we work out the right pane from mouse events - we were doing
so too early, before the mouse event was necessarily valid, so could end
up using the pane from the previous mouse event, or the active pane.

It is important that we use the right pane now that different panes can
have different key tables (for copy mode).

Fixes problem reported by Greg Hurrell.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/11/24 07:35:44

Modified files:
	distrib/miniroot: install.sub 

Log message:
Don't manually add a route to an alias IP via 127.0.0.1. This is
now automatically handled by the kernel.

The same change was made to /etc/netstart in 5.5 with r1.139.

Should fix the (U)pgrade problem reported on bugs@ by Clint Pachl.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/11/24 07:38:30

Modified files:
	share/zoneinfo : Makefile 
Removed files:
	share/zoneinfo/datfiles: solar87 solar88 solar89 

Log message:
Remove the solar files; they were removed from upstream in 2013.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/24 07:38:55

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

Log message:
If in the middle of a drag, don't use an invalid key, just use
KEYC_MOUSE as a placeholder. Reported by Artem Fokin.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/24 08:16:04

Modified files:
	graphics/hugin : Makefile 

Log message:
unbreak dbp build (add graphics/lcms2 LDEP)
WANTLIB cleanup
no build -> no bump
reported by nigel@, thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/24 08:48:46

Modified files:
	devel/py-spark-parser: Makefile distinfo 

Log message:
Update to py-spark-parser 1.4.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/24 08:49:24

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

Log message:
Update to py-uncompyle6 2.9.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/24 08:59:37

Modified files:
	devel/py-path.py: Makefile distinfo 
	devel/py-path.py/patches: patch-pytest_ini 

Log message:
Update to py-path.py 9.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/24 09:14:55

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/11/24 09:18:48

Modified files:
	devel/py-test-mock: Makefile distinfo 

Log message:
Update to py-test-mock 1.5.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/24 09:20:34

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/24 09:32:33

Modified files:
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/i386/common: Makefile.inc 

Log message:
Use makefs to build bsd.rd. amd64 and i386 are first; other platforms
will follow with some safety distance when I figured out all MD quirks.
makefs allows to build the ramdisk image as an unprivileged user. The
next step in the quest to reduce root during builds.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/24 10:39:49

Modified files:
	sys/dev/pci    : files.pci if_ix.c ixgbe.c 

Log message:
Enable support for the X550 family of 10 Gigabit controllers

Code was obtained from FreeBSD.  Make release testing by tb@ on i386
and mikeb@ on amd64 and sparc64.  X552 SFP tested by Hrvoje Popovski,
HUGE thanks!  X550T tested by mikeb@ on amd64 and sparc64.

ok kettenis, deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/24 11:27:14

Modified files:
	mail/z-push    : Makefile distinfo 
	mail/z-push/pkg: PLIST 

Log message:
- update to z-push 2.3.3

http://z-push.org/z-push-2-3-3-final-released/

ok robert@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/24 11:41:09

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
update to vala-0.34.3


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/24 11:45:45

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

Log message:
The mouse valid flag needs to be correct before we fire the dragging
callback, so move the callback outside of server_client_check_mouse and
use a new special key code to indicate it.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/24 11:54:06

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

Log message:
add em7455; from brian vyhmeister


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/24 12:21:27

Modified files:
	graphics/hugin : Makefile 

Log message:
bump REVISION; it did build, just not with dpb.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/24 12:45:16

Modified files:
	lib/libcrypto/man: PEM_read_bio_PrivateKey.3 
	                   PEM_write_bio_PKCS7_stream.3 PKCS12_create.3 
	                   PKCS12_parse.3 PKCS7_decrypt.3 
	                   PKCS7_encrypt.3 PKCS7_sign.3 
	                   PKCS7_sign_add_signer.3 PKCS7_verify.3 

Log message:
various cleanup; leaving dangling PKCS7* Xr for now...


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/24 13:19:14

Modified files:
	faq            : current.html 

Log message:
The suggested ownership and permissions for /dest and RELEASEDIR were so
strict as to be inconvenient.  Only keep the necessary parts:

/dest and RELEASEDIR need to be owned by build and have at least mode 700.

In particular, /dest and RELEASEDIR need not be owned by group wobj and
more relaxed permissions are possible.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/11/24 13:20:49

Modified files:
	.              : hackathons.html 

Log message:
typo


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/24 13:44:04

Modified files:
	usr.sbin/smtpd : ioev.c ioev.h mta_session.c smtp_session.c 

Log message:
add an io_ssl() accessor

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/24 13:52:13

Modified files:
	usr.sbin/smtpd : ioev.c ioev.h mta_session.c smtp_session.c 

Log message:
add an io_fileno() accessor

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/24 14:01:18

Modified files:
	usr.sbin/relayd: config.c proc.c relayd.c relayd.h 

Log message:
The new fork+exec mode used too many fds in the parent process on
startup, for a short time, so we needed a rlimit hack in relayd.c.
Sync the fix from httpd: rzalamena@ has fixed proc.c and I added the
proc_flush_imsg() mechanism that makes sure that each fd is
immediately closed after forwarding it to a child process instead of
queueing it up.

OK rzalamena@ jca@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/24 14:25:22

Modified files:
	usr.sbin/smtpd : ioev.c ioev.h smtp_session.c 

Log message:
add an io_paused() function.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/24 14:39:45

Modified files:
	usr.sbin/vmd   : log.c 

Log message:
Restore the errno in vlog() as well to have the same "safe errno"
effect in log_debug(), log_warn*() and all the other logging
functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/include/llvm/AArch64

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/AArch64
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/include/llvm/AArch64

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/AArch64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/libLLVMAArch64AsmParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAArch64AsmParser
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/libLLVMAArch64AsmParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAArch64AsmParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/libLLVMAArch64AsmPrinter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAArch64AsmPrinter
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/libLLVMAArch64AsmPrinter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAArch64AsmPrinter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/libLLVMAArch64CodeGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAArch64CodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/libLLVMAArch64CodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAArch64CodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/libLLVMAArch64Desc

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Desc
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/libLLVMAArch64Desc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Desc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/libLLVMAArch64Disassembler

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Disassembler
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/libLLVMAArch64Disassembler

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Disassembler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/libLLVMAArch64Info

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Info
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/libLLVMAArch64Info

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Info added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:29:46

src/gnu/usr.bin/clang/libLLVMAArch64Utils

Update of /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Utils
In directory cvs.openbsd.org:/tmp/cvs-serv47151/usr.bin/clang/libLLVMAArch64Utils

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMAArch64Utils added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 15:32:29

Modified files:
	gnu/usr.bin/clang: Makefile.arch 
Added files:
	gnu/usr.bin/clang/include/llvm/AArch64: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64AsmParser: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64AsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64Desc: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64Disassembler: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64Info: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64Utils: Makefile 

Log message:
Add AArch64 backend build infrastructure.

ok pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/24 16:57:24

Modified files:
	sys/sys        : exec.h 

Log message:
Add MID for arm64.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/11/24 19:49:18

Modified files:
	regress/usr.bin/ssh: test-exec.sh 

Log message:
Fix typo in trace message; from portable.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/11/24 19:56:49

Modified files:
	regress/usr.bin/ssh: integrity.sh sshd-log-wrapper.sh 
	                     test-exec.sh 

Log message:
Reverse args to sshd-log-wrapper.  Matches change in portable, where it
allows sshd do be optionally run under Valgrind.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/11/24 20:02:01

Modified files:
	regress/usr.bin/ssh: putty-ciphers.sh putty-kex.sh 
	                     putty-transfer.sh test-exec.sh 

Log message:
Allow PuTTY interop tests to run unattended.  bz#2639, patch from
cjwatson at debian.org.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2016/11/25 02:21:21

Modified files:
	usr.sbin/smtpd : parse.y smtpd.h 

Log message:
assign an id to each rule in the ruleset, first step towards an MTA layer
and scheduler simplification

ok eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/25 02:37:21

Modified files:
	usr.sbin/tcpdump: print-ofp.c 

Log message:
Fix some bad copy paste bits and simplify the ethernet printing function.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/25 02:56:45

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Check args.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/25 04:43:55

Modified files:
	usr.sbin/smtpd : mta_session.c 

Log message:
use a specific event to defer the mta connection instead of abusing
the io internal event.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/25 04:51:46

Log message:
    Import gammu-1.37.4
    Tweaks, tests and OK feinerer@
    
    Gammu command line utility provides access to wide range of phone
    features, however support level differs from phone to phone and you
    might want to check Gammu Phone Database for user experiences with
    various phones. Generally following features are supported:
    * Call listing, initiating and handling
    * SMS retrieval, backup and sending
    * MMS retrieval
    * Phonebook listing, export and import (also from standard
    formats such as vCard)
    * Calendar and tasks listing, export and import (also from
    standard formats such as vCalendar or iCalendar)
    * Retrieval of phone and network information
    * Access to phone file system.
    
    Status:
    
    Vendor Tag:	kirby
    Release Tags:	kirby_20161125
    
    N ports/comms/gammu/Makefile
    N ports/comms/gammu/distinfo
    N ports/comms/gammu/patches/patch-CMakeLists_txt
    N ports/comms/gammu/patches/patch-smsd_services_sql_c
    N ports/comms/gammu/patches/patch-tests_CMakeLists_txt
    N ports/comms/gammu/patches/patch-utils_gammu-config
    N ports/comms/gammu/pkg/DESCR
    N ports/comms/gammu/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/25 04:55:34

Log message:
    Import py-gammu-2.6
    OK feinerer@
    
    Python bindings which allow you to use (most) of Gammu functionality
    from Python language.
    
    Status:
    
    Vendor Tag:	kirby
    Release Tags:	kirby_20161125
    
    N ports/comms/py-gammu/Makefile
    N ports/comms/py-gammu/distinfo
    N ports/comms/py-gammu/pkg/DESCR
    N ports/comms/py-gammu/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/25 04:58:01

Log message:
    Import wammu-0.42
    OK feinerer@
    
    Wammu is a program to manage data in your cell phone such as contacts,
    calendar or messages. It is built on Gammu library, which provides
    abstraction layer to work with different cell phones from different
    vendors (including Nokia, Sony-Ericsson, Motorola, Samsung, Siemens,
    Huawei and others).
    
    Status:
    
    Vendor Tag:	kirby
    Release Tags:	kirby_20161125
    
    N ports/comms/wammu/Makefile
    N ports/comms/wammu/distinfo
    N ports/comms/wammu/patches/patch-setup_py
    N ports/comms/wammu/pkg/DESCR
    N ports/comms/wammu/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/25 05:02:22

Modified files:
	comms          : Makefile 

Log message:
+     SUBDIR += gammu
+     SUBDIR += py-gammu
+     SUBDIR += wammu


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2016/11/25 05:43:26

Modified files:
	sys/dev/usb    : if_umb.c if_umb.h mbim.h 

Log message:
The NCM encoding allows to aggregate multiple segments in one single
transfer. Using wMaxSegmentSize for bulk-in could break the rx-path
because xfer length can be smaller than the messages sent by the device.

And using some constant value for rx/tx size is also a bad idea, because
we might be sending messages to the device that are too big for it to
handle them. Therefore use the NCM GET_NTB_PARAMETERS request to query
the device's configuration.

Found, tested, and ok'ed by otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/25 06:01:15

Modified files:
	comms/wammu    : Makefile 

Log message:
drop RDEP on devel/gettext. Python already depends on it.
Noticed by ajacoutot@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/25 07:01:25

Modified files:
	mail/enigmail  : Makefile distinfo 

Log message:
update to 1.9.6
ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/11/25 07:30:52

Modified files:
	www/phpmyadmin : Makefile distinfo 
	www/phpmyadmin/pkg: PLIST 

Log message:
security update to 4.6.5
fixes security bugs from PMASA-2016-57 to PMASA-2016-71


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/25 07:42:29

Modified files:
	comms/wammu    : Makefile 

Log message:
Missed bump.
Drop NO_BUILD to preserve the bdep on python.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/11/25 07:46:57

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Nuke the DHO_ROUTERS and DHO_STATIC_ROUTES options from the effective
lease when DHO_CLASSLESS_[MS_]STATIC_ROUTES are present. RFC 3442 says
the client must ignore the former if the latter is present.

The information was already ignored but was still written to the
'effective' section of the pseudo-lease file created by the -L
option. This incorrectly implied that these options were 'effective'.

Problem noted by Ed Fochler. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/11/25 08:02:43

Modified files:
	multimedia/mpv : Makefile distinfo 
Removed files:
	multimedia/mpv/patches: patch-video_out_opengl_context_c 
	                        patch-wscript 

Log message:
Update mpv to 0.22.0

Per suggestion by jca@ libsmbclient support is disabled.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/25 08:52:42

Modified files:
	devel/libf2c   : Makefile 

Log message:
This port uses bsd.obj.mk, which now tries to chgrp obj directories
to the wobj group.  For a port build, there is no point in changing
the obj subdirectory to a different group after extraction, so set
WOBJGROUP to the group of the WRKBUILD directory.  This fixes dpb
setups where privileges are dropped to the _pbuild user during the
build stage.  ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/25 08:58:55

Modified files:
	www/lynx       : Makefile distinfo 
	www/lynx/patches: patch-lynx_man patch-src_LYReadCFG_c 
	                  patch-src_LYUtils_c 
Added files:
	www/lynx/patches: patch-WWW_Library_Implementation_HTTP_c 

Log message:
Update lynx to 2.8.9pl11.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/25 09:17:41

Modified files:
	usr.sbin/smtpd : ioev.c 

Log message:
normalize iobuf before reading into it.

fix regression introduced in recent cleanup

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/25 09:34:08

Modified files:
	lib/libcrypto/man: RAND_add.3 RAND_load_file.3 RC4.3 RIPEMD160.3 

Log message:
various minor cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/25 10:00:33

Modified files:
	sys/lib/libsa  : ufs.c ufs2.c 

Log message:
Fix signedness warnings with careful casts and replace a re-defined variable.

OK krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/25 10:03:59

Modified files:
	usr.sbin/vmd   : ufs.c 

Log message:
sync with libsa/ufs.c


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/25 11:28:28

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Fixup product names for Intel X550 family of controllers

X550 moniker is used only for 10GbaseT chips, while what's known
internally as X550EM_X seems to be marketed under the X557 name.
The X552 series is an upcoming X550EM_A chip. However the Xeon-D
embedded model is called X552/X557.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/25 11:28:52

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/25 11:48:24

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.801
support for TLS
warning: partly incompatible API changes


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2016/11/25 12:31:12

Modified files:
	.              : want.html 

Log message:
remove my request for a laptop

many thanks to Foundation !


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/25 13:26:32

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0225


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/25 13:42:57

Modified files:
	biology/hmmer  : Makefile 
	biology/hmmer/pkg: PLIST 
Added files:
	biology/hmmer/pkg: PFRAG.amd64 

Log message:
fix biology/hmmer packaging on !amd64 (impl_sse.h is not produced)


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2016/11/25 14:01:17

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

Log message:
H531gw also works now


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/11/25 14:13:58

Modified files:
	distrib/miniroot: group install.sub master.passwd 

Log message:
The build systems now uses the user build and the group wobj.
Add them to bsd.rd and set the ownership and permissions of
/usr/obj and /usr/xobj accordingly.

feedback and OK tb@
Looks good deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/11/25 14:26:26

Modified files:
	telephony/baresip: Makefile.inc 
	telephony/baresip/re: Makefile distinfo 

Log message:
Update re to 0.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/25 14:49:03

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.802


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/25 14:51:29

Modified files:
	etc/etc.amd64  : login.conf 

Log message:
Increase default datasize limit from 512M to 768M on amd64.  This
allows to build xenocara with extra options in malloc.conf.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/25 15:28:58

Modified files:
	usr.sbin/vmd   : vmboot.c 

Log message:
Do not call ufs_close() if ufs_open() failed, fixes potential double-free.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/25 15:48:31

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

Log message:
remove an apostrophe on the advice of the oed:
"Do not use the apostrophe when creating plurals."


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/25 16:05:11

Modified files:
	net/lftp       : Makefile distinfo 
	net/lftp/patches: patch-configure patch-src_Makefile_in 
Removed files:
	net/lftp/patches: patch-src_Resolver_cc patch-src_lftp_rl_c 

Log message:
Update to lftp-4.7.4

- drop readline and getaddrinfo patches, not needed any more.
- add another mirror to MASTER_SITES, lftp.yar.ru makes weird
redirections.  Prefer http:// for this mirror, but also add ftp:// for
''make peek-ftp''
from maintainer Rafael Sadowski, input from and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/25 16:22:04

Modified files:
	usr.bin/ssh    : sshbuf.c sshbuf.h 

Log message:
split allocation out of sshbuf_reserve() into a separate
sshbuf_allocate() function; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/25 16:24:45

Modified files:
	usr.bin/ssh    : authfile.c 

Log message:
use sshbuf_allocate() to pre-allocate the buffer used for loading
keys. This avoids implicit realloc inside the buffer code, which
might theoretically leave fragments of the key on the heap. This
doesn't appear to happen in practice for normal sized keys, but
was observed for novelty oversize ones.

Pointed out by Jann Horn of Project Zero; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/25 16:33:39

Modified files:
	sys/dev/pci/drm: drm.h drm_drv.c 

Log message:
Add a new DRM_IOCTL_GET_PCIINFO ioctl to have a non driver specific way
to get pci device ids from a drm fd as an ordinary user.

This will be used to provide non-sysfs implementations of functions in
libdrm.  These functions are required for Mesa >= 13.

The ioctl number used is the same as the DRM_IOCTL_ADD_MAP ioctl which
was removed when we removed DRI1 support.  This was chosen to not
collide with new ioctls from linux.

ok kettenis@ ok mpi@ on an earlier version


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/25 16:41:17

Modified files:
	devel/p5-Package-DeprecationManager: Makefile distinfo 
	devel/p5-Package-DeprecationManager/pkg: PLIST 

Log message:
Update devel/p5-Package-DeprecationManager to 0.17

OK bluhm@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/11/25 16:41:29

Modified files:
	lib/libdrm     : xf86drm.c 

Log message:
Implement drmGetMinorNameForFD for systems without sysfs by adapting
drm_get_device_name_for_fd() from the Mesa loader.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/25 16:43:22

Modified files:
	devel/p5-Sub-Identify: Makefile distinfo 

Log message:
Update devel/p5-Sub-Identify to 0.12

OK bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/25 16:44:25

Modified files:
	devel/p5-Data-Compare: Makefile distinfo 

Log message:
Update devel/p5-Data-Compare to 1.25

OK bluhm@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/11/25 16:44:40

Modified files:
	lib/libdrm     : xf86drm.c 

Log message:
Implement drmParseSubsystemType for OpenBSD.

Always return DRM_BUS_PCI for now.  No non-pci drm drivers are in the
kernel and this is unlikely to change anytime soon as the existing ones
aren't permissively licensed.

ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/11/25 16:48:50

Modified files:
	lib/libdrm     : xf86drm.c 

Log message:
Implement drmParsePciDeviceInfo for OpenBSD by using the new
DRM_IOCTL_GET_PCIINFO ioctl.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/25 16:49:04

Modified files:
	devel/p5-Devel-NYTProf: Makefile distinfo 
	devel/p5-Devel-NYTProf/pkg: PLIST 

Log message:
update p5-Devel-NYTProf to 6.04


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/11/25 16:52:06

Modified files:
	lib/libdrm     : xf86drm.c 

Log message:
Implement drmParsePciBusInfo for OpenBSD by using the new
DRM_IOCTL_GET_PCIINFO ioctl.

ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/11/25 16:58:13

Modified files:
	lib/libdrm     : xf86drm.c 

Log message:
Implement an OpenBSD specific codepath for drmGetDevice

The existing code walks all of /dev looking for different types of drm
nodes.  We just have primary nodes and can directly map the minor number
to a path.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/25 18:38:22

Modified files:
	devel/p5-MooseX-Types-LoadableClass: Makefile distinfo 

Log message:
Update devel/p5-MooseX-Types-LoadableClass to 0.014

OK bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/25 19:06:16

Modified files:
	x11/tint2      : Makefile 
Added files:
	x11/tint2/patches: patch-src_tint2conf_main_c 
	                   patch-src_tint2conf_properties_c 

Log message:
Print time_t with (long long) casts and "%lld".


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/26 02:48:11

Modified files:
	print/hplip    : Makefile distinfo 
	print/hplip/patches: patch-Makefile_in patch-configure 
	print/hplip/pkg: PLIST-hpijs 

Log message:
Update to hplip-3.16.11.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/26 04:18:43

Modified files:
	bin/stty       : print.c 
	sbin/ldattach  : ldattach.c 
	usr.sbin/pstat : pstat.8 pstat.c 
	share/man/man4 : tty.4 

Log message:
Remove leftovers of line disciplines that are no more.

ok mikeb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	czarkoff@cvs.openbsd.org	2016/11/26 04:49:15

Modified files:
	app/video      : video.c 

Log message:
Preserve aspect ratio of camera image in Xv output.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/11/26 05:29:50

Modified files:
	net/haproxy    : Makefile distinfo 
	net/haproxy/patches: patch-Makefile 

Log message:
Update to haproxy-1.6.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/26 08:21:46

Modified files:
	news/slrn      : Makefile 

Log message:
don't clobber BUILD_DEPENDS


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/11/26 08:29:33

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Remove start_client_vmd.
It was nothing more than a wrapper around fork(2).

OK edd@ and mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/11/26 08:36:10

Modified files:
	sys/arch/octeon/dev: cn30xxgmx.c 

Log message:
Remove unnecessary function cn30xxgmx_submatch and call config_found
instead of config_found_sm.

OK visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/11/26 08:42:03

Modified files:
	sys/arch/octeon/octeon: machdep.c 

Log message:
Start process_bootargs at 0 instead of 1.
When using endbootargs in U-Boot arguments start at position 0.

OK visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2016/11/26 09:05:11

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
virtio-net: Partially implement device reset

Implement some bits of the device reset and don't do DMA if the DRIVER_OK bit
is not set. This is enough to avoid vio(4) panicking on if down/up.

Tested by rzalamena@ and mikeb@
OK reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/26 09:29:33

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

Log message:
belatedly add an entry for mfii(4);


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2016/11/26 09:31:32

Modified files:
	sys/arch/octeon/octeon: autoconf.c 

Log message:
Allow rootdev to be specified without /dev/ prefix. The full path isn't
needed down the road anyway. Both forms are supported.
e.g. rootdev=/dev/sd0 and rootdev=sd0

OK visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/26 09:59:27

Modified files:
	devel/openmpi  : Makefile 

Log message:
do not pick up gfortan as Fortran 77 compiler


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/26 10:12:45

Modified files:
	lib/libcrypto/man: EVP_DigestInit.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, show prototypes rather than #defines.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/11/26 10:36:39

Modified files:
	www/p5-CGI     : Makefile distinfo 

Log message:
Update www/p5-CGI to 4.35

OK nigel@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/26 10:38:55

Modified files:
	lib/libcrypto/man: EVP_DigestSignInit.3 

Log message:
Add Copyright and license.
Correct a parameter type for EVP_DigestSignUpdate(3), from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/26 10:40:58

Modified files:
	lib/libcrypto/man: EVP_DigestVerifyInit.3 

Log message:
Add Copyright and license, and some fixes from OpenSSL:
Correct a parameter type for EVP_DigestVerifyUpdate(3).
Improve the description of RETURN VALUES for EVP_DigestVerifyFinal(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/26 11:07:44

Modified files:
	share/man/man8 : release.8 

Log message:
Tighten some sentences.

help & ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/26 11:09:35

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: EVP_EncodeInit.3 

Log message:
Import EVP_EncodeInit(3) manual from OpenSSL,
without those functions we don't have.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/26 11:37:32

Modified files:
	usr.sbin/vmctl : main.c vmctl.8 vmctl.c vmctl.h 

Log message:
Add the vmctl start -n option to specify add a network interface to
the specified virtual switch from the command line.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/26 11:57:25

Modified files:
	usr.sbin/makefs: cd9660.c 

Log message:
Avoid NULL pointer dereference in cd9660.
from christos@NetBSD via mestre

Original Log Message:
PR/51652: Sevan Janiyan: makefs dies due to segmentation fault
Don't dereference NULL when running out of nodes during rename.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/26 12:16:58

Modified files:
	lib/libcrypto/man: EVP_EncodeInit.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/26 12:23:27

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
-add -n to the main summary;


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/26 12:49:11

Modified files:
	usr.sbin/vmctl : vmctl.8 vmctl.c 
	usr.sbin/vmd   : vm.conf.5 vmd.c vmd.h 

Log message:
If -m/memory is not specified, use 512M by default.

Default value picked with mlarkin - not too small and not too large.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/26 13:03:42

Modified files:
	usr.sbin/vmd   : Makefile loadfile.h loadfile_elf.c vmboot.c 
	                 vmboot.h vmd.c vmd.h vmm.c 
Added files:
	usr.sbin/vmd   : disklabel.c 

Log message:
Implement basic support for boot.conf(8) on the disk image.

Like the real boot loader, load and parse hd0a:/etc/boot.conf from the
first disk and fall back to /bsd.  Not all boot loader options are
supported, but it at least does set device, set image, and boot -acds
(eg. for booting single-user).

For example, it can now boot install60.fs that includes a boot.conf
with "set image /6.0/amd64/bsd.rd":
vmctl start install -c -d install60.fs -d OpenBSD.img

This pseudo-bootloader is only needed without BIOS and could
potentially be replaced in the future.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/26 13:26:25

Modified files:
	lib/libcrypto/man: EVP_EncryptInit.3 

Log message:
Add Copyright and license.

Merge from OpenSSL:
Document EVP_CIPHER_CTX_new(3), EVP_CIPHER_CTX_free(3), EVP_chacha20(3).
Drop duplicate .Nm EVP_idea_cbc.
Add some missing EVP_aes_*() function names in the NAME section.
In the SYNOPSIS, list prototypes, not #defines.
Some typo fixes, some additional information, some wording improvements.
In the CIPHER LISTING, drop the useless "void" arguments.
Document GCM and CCM.
Drop some prehistoric EXAMPLES that OpenSSL deleted as well.

While here, mention that EVP_CIPHER_CTX_free(3) accepts NULL.
Also move some text from RETURN VALUES to DESCRIPTION.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/26 13:55:26

Modified files:
	lib/libcrypto/man: EVP_OpenInit.3 EVP_SealInit.3 EVP_SignInit.3 
	                   EVP_VerifyInit.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/26 18:36:30

Modified files:
	sys/arch/hppa/stand/boot: Makefile 

Log message:
ashldi3 is now needed


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/26 19:25:58

Modified files:
	sys/arch/armv7/sunxi: sximmc.c 

Log message:
Match on "allwinner,sun7i-a20-mmc".  In linux 4.9 the device trees for
a31/a20/a23/a33/h3 mmc devices set this compatible string to denote the
presence of sample clocks and no longer set "allwinner,sun5i-a13-mmc".

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/26 21:14:05

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/27 01:38:14

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

Log message:
Update to py-libcloud-1.4.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/27 01:43:12

Log message:
    Import meson-0.36.0.
    
    Meson is an open source build system meant to be both extremely fast, and, even
    more importantly, as user friendly as possible.
    <...>
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161127
    
    N ports/devel/meson/Makefile
    N ports/devel/meson/distinfo
    N ports/devel/meson/pkg/DESCR
    N ports/devel/meson/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/27 01:43:47

Modified files:
	devel          : Makefile 

Log message:
+meson


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/27 01:55:48

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Explicitely set umask.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/11/27 03:12:19

Modified files:
	gnu/usr.bin/binutils-2.17/opcodes: mips-opc.c 

Log message:
Add Octeon coprocessor 2 instructions.

No objection from kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/27 03:37:22

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

Log message:
uppercase for "the Reformation";


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/27 04:38:50

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Remove the backup kernel in rollback_patch() instead of the cleanup
function.
Consistent use of install(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/27 04:39:34

Modified files:
	x11/gtksourceview3: Makefile distinfo 

Log message:
update to gtksourceview-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/27 05:28:16

Modified files:
	sysutils/augeas: Makefile distinfo 
	sysutils/augeas/patches: patch-man_augparse_1 
	sysutils/augeas/pkg: PLIST 
Removed files:
	sysutils/augeas/patches: patch-lenses_csv_aug 

Log message:
- update to augeas-1.7.0
* includes a new lens for opendkim.conf


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/27 06:27:55

Modified files:
	sys/ufs/ffs    : fs.h 

Log message:
Fix signedness warnings with careful casts and replace a re-defined variable.
(Missed this chunk as part of previous commit to libsa/ufs.c)

OK krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/27 06:57:32

Modified files:
	sys/lib/libsa  : ufs2.c memcmp.c 

Log message:
Add missing OpenBSD CVS tags


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:22:00

Modified files:
	lib/libcrypto/man: EVP_PKEY_CTX_new.3 

Log message:
Add Copyright and license.
Mention that EVP_PKEY_CTX_free(3) accepts NULL.
Delete the useless statement that a void functions returns no value.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:22:39

Modified files:
	lib/libcrypto/man: EVP_PKEY_cmp.3 

Log message:
Add Copyright and license.
Merge one clarifying sentence from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:23:29

Modified files:
	lib/libcrypto/man: EVP_PKEY_encrypt.3 EVP_PKEY_keygen.3 

Log message:
Add Copyright and license.
Merge improvements to EXAMPLES from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:24:27

Modified files:
	lib/libcrypto/man: EVP_PKEY_new.3 

Log message:
EVP_PKEY_new.3
Add Copyright and license.
Mention that EVP_PKEY_free(3) accepts NULL.
Delete the useless statement that a void functions returns no value.
Merge HISTORY from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:25:23

Modified files:
	lib/libcrypto/man: EVP_PKEY_set1_RSA.3 

Log message:
Add Copyright and license.
Merge documentation of EVP_PKEY_id(3) and EVP_PKEY_base_id(3) from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:26:06

Modified files:
	lib/libcrypto/man: EVP_PKEY_sign.3 

Log message:
Add Copyright and license.
Merge some additional text and improvements to EXAMPLES from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:27:20

Modified files:
	lib/libcrypto/man: EVP_PKEY_CTX_ctrl.3 EVP_PKEY_decrypt.3 
	                   EVP_PKEY_derive.3 
	                   EVP_PKEY_get_default_digest_nid.3 
	                   EVP_PKEY_print_private.3 EVP_PKEY_verify.3 
	                   EVP_PKEY_verify_recover.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 08:58:47

Modified files:
	lib/libcrypto/man: HMAC.3 

Log message:
Add Copyright and license.
Fix a typo in the NAME section.
Document HMAC_CTX_copy(3), HMAC_CTX_set_flags(3), HMAC_size(3), from OpenSSL.
Drop the uselesss statement that void functions do not return values.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/11/27 09:16:17

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 09:20:15

Modified files:
	lib/libcrypto/man: MD5.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/11/27 09:49:17

Modified files:
	share/man/man8 : release.8 

Log message:
Remove some more verbiage.

looks alright to tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/11/27 10:37:35

Modified files:
	graphics/digikam-kde4: Makefile 

Log message:
Add alternative MASTER_SITES. Our digikam version was moved to Attic
by upstream.
Noticed by Rafael Sadowski, thanks!
Committed on behalf of zhuk@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/27 11:04:18

Modified files:
	sbin/bioctl    : bioctl.8 

Log message:
Document bioctl -d as a "detach" rather than a "delete" operation.
ok tb@ danj@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 11:22:25

Modified files:
	lib/libcrypto/man: OBJ_nid2obj.3 

Log message:
Add Copyright and license.
Document i2t_ASN1_OBJECT(3), from OpenSSL.
Merge more info about what NIDs are from OpenSSL.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/11/27 11:25:30

Modified files:
	faq            : faq14.html 

Log message:
add an XXXrelease marker to the paragraph about deleting softraid volumes.

pointed out by danj; tj agrees


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/27 13:40:07

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: OCSP_REQUEST_new.3 OCSP_cert_to_id.3 
	                   OCSP_request_add1_nonce.3 
	                   OCSP_resp_find_status.3 
	                   OCSP_response_status.3 OCSP_sendreq_new.3 

Log message:
Import OCSP documentation from OpenSSL, leaving out some stuff
that we don't have, fixing some bugs and tweaking some parts for
readability.

P.S.
Why did some people write a HTTP client implementation and then
decide that the best place to publish it might be a crypto(3)
library?  Oh never mind, to go easy on my sanity, i should probably
stop asking such questions and just document what i find.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/11/27 20:01:44

Modified files:
	www/kcgi       : Makefile distinfo 

Log message:
Update kcgi to 0.9.2

Fixes cookie handling and various typos.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/27 22:54:38

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/28 01:43:50

Modified files:
	x11/kde4/qyoto/patches: patch-cmake_CMakeCSharpInformation_cmake 

Log message:
Unbreak building with upcoming CMake-3.7.0 (policy CMP0054)


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/28 02:15:13

Modified files:
	devel/cmake    : Makefile distinfo 
	devel/cmake/patches: patch-CMakeLists_txt 
	                     patch-Modules_CMakeCInformation_cmake 
	                     patch-Modules_CMakeCXXInformation_cmake 
	                     patch-Modules_CMakeDetermineJavaCompiler_cmake 
	                     patch-Modules_CMakeFortranInformation_cmake 
	                     patch-Modules_CMakeUnixFindMake_cmake 
	                     patch-Modules_Compiler_G95-Fortran_cmake 
	                     patch-Modules_Compiler_GNU-Fortran_cmake 
	                     patch-Modules_Compiler_GNU_cmake 
	                     patch-Modules_FindBoost_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_CMakeLists_txt 
	                     patch-Source_cmComputeLinkInformation_cxx 
	                     patch-Source_cmGeneratorTarget_cxx 
	                     patch-Source_cmTarget_cxx 
	                     patch-Source_cmake_cxx 
	                     patch-Source_kwsys_SystemTools_cxx 
	                     patch-Tests_CMakeTests_ModuleNoticesTest_cmake_in 
	                     patch-Tests_RunCMake_CMakeLists_txt 
	                     patch-bootstrap 
	devel/cmake/pkg: PLIST 
Added files:
	devel/cmake/patches: patch-Source_cmMessenger_cxx 

Log message:
Update to CMake-3.7.0

Thanks to naddy@ who ran a bulk build with it


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 03:10:53

Modified files:
	sys/netinet6   : ip6_input.c 

Log message:
Merge two "#ifdef MROUTING" blocks.

It's one more step towards splitting ip6_input() in two and it reduces
differences with v4.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/28 03:12:50

Modified files:
	sys/sys        : sockio.h 
	sys/net        : if_switch.c switchofp.c 
	sbin/ifconfig  : brconfig.c ifconfig.8 

Log message:
Rename "flowmax" to "maxflow" and give each switch(4) ioctl a
dedicated number.  Both changes for consistency.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 03:14:00

Modified files:
	sys/netinet    : ip_output.c 

Log message:
Kill a micro optimization that no longer make sense since the two routing
blocks have been merged in r1.292.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/28 03:14:23

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/pkg: PLIST 

Log message:
Update to cups-filters-1.12.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 03:16:08

Modified files:
	sys/net        : bpf.c 

Log message:
Make sure the descriptor has been removed from the interface list
before we call ifpromisc() and possibly sleep.

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/11/28 03:41:40

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.33.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 03:49:35

Modified files:
	sys/netinet    : udp_usrreq.c 

Log message:
Allow to build kernels without IPSEC but with PIPEX.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 04:12:45

Modified files:
	sys/netinet    : igmp.c ip_input.c tcp_timer.c 
	sys/netinet6   : frag6.c 

Log message:
Assert that every slow/fast timeout routine is called at IPL_SOFTNET.

This removes multipe recursive splsoftnet()/splx() dances.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 04:18:02

Modified files:
	sys/net        : if.c 

Log message:
Remove simple recursive splsoftnet() calls inside ifioctl().


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/28 04:46:26

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

Log message:
catch up with ioctl rename; ok reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 06:55:44

Modified files:
	sys/kern       : uipc_syscalls.c 

Log message:
Remove NULL checks before m_free{m,}().

ok reyk@, rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 06:59:51

Modified files:
	sys/netinet6   : nd6.c nd6.h nd6_nbr.c nd6_rtr.c 

Log message:
Remove multiple recursive splsoftnet().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/28 07:14:39

Modified files:
	sys/netinet    : ip_icmp.c 
	sys/netinet6   : icmp6.c in6.c nd6.c nd6_rtr.c 

Log message:
Explicitly initialize rti_ifa when automagically adding a route.

This will allow to strengthen checks when userland adds a route.

ok phessler@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 07:31:20

Modified files:
	lib/libcrypto/man: lh_new.3 lh_stats.3 

Log message:
Add Copyright and license.

This documentation is obviously incomplete and unintelligible.
However, as the interfaces are utterly ill-designed and contorted
to the point of absurdity, i refuse to even attempt improvements,
at least for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 07:51:03

Modified files:
	lib/libcrypto/man: OPENSSL_VERSION_NUMBER.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 07:52:20

Modified files:
	lib/libcrypto/man: OPENSSL_config.3 

Log message:
Add Copyright and license.

There are many recommendations in this page, and most of them were
changed in OpenSSL.  I have no idea what makes sense, so i'm not
touching the content.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 08:08:58

Modified files:
	lib/libcrypto/man: OPENSSL_load_builtin_modules.3 

Log message:
Add Copyright and license.
Garbage collect empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/28 09:27:32

Modified files:
	sbin/iked      : iked.conf.5 

Log message:
ikelifetime time spec is the same the one for lifetime


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 09:33:48

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: OPENSSL_malloc.3 

Log message:
Document and discourage those wrappers that we have and that OpenSSL
documents, too.  There are many additional undocumented ones in our
public OpenSSL headers, but advertising those would be a bad idea.

Nothing of the text from OPENSSL_malloc.pod remains, so use my own
Copyright and license.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 09:40:28

Modified files:
	lib/libcrypto/man: OpenSSL_add_all_algorithms.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/28 09:42:45

Modified files:
	sys/arch/landisk/stand/boot: Makefile 
	sys/arch/landisk/stand/xxboot: Makefile 

Log message:
need ashrdi3


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/11/28 09:55:09

Modified files:
	converters/p5-Net-IDN-Encode: Makefile 
Added files:
	converters/p5-Net-IDN-Encode/patches: 
	                                      patch-lib_Net_IDN_Punycode_xs 

Log message:
With the canaries turned on in malloc.conf, running the regression
tests of p5-Net-IDN-Encode crashed the Perl process.  There was no
proper protection against heap overflow in the XS part.  Grow the
destination string in encode_punycode() and decode_punycode() before
writing to it.  This has to be checked every time.
Take maintainer.
OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/28 10:47:15

Modified files:
	usr.sbin/tcpdump: print-lldp.c print-ofp.c 

Log message:
ether_ntoa -> etheraddr_string, like elsewhere in tcpdump

openflow part tested by rzalamena@, ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/28 10:50:00

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

Log message:
When comparing ocy to orlower in tty_cmd_cell, there is no need to add
yoff (because they are both already relative to the pane). Also fix some
other minor nits.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/28 10:53:37

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 10:55:26

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: PEM_read.3 

Log message:
import from OpenSSL with minor tweaks


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/28 11:04:00

Modified files:
	sys/net        : switchofp.c 

Log message:
Implement more validations for switch(4) groups handling: check for invalid
group-mod message sizes and validate bucket sizes and actions lists.

Discussed with reyk@: we should get this in as it is better to have some
validation than having none at all.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/28 12:41:17

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/28 13:57:41

Modified files:
	regress/usr.sbin/syslogd: Syslogd.pm 

Log message:
To test the pipe feature, a dd is started and writing into a log
file as user _syslogd.  Since /usr/obj is 0770 now, user _syslogd
cannot access this file there anymore.  Create pipe.log in temporary
directory in /tmp instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 14:05:21

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : PEM_read_SSL_SESSION.3 

Log message:
The OpenSSL file doc/man3/PEM_read_CMS.pod contains parts belonging
to libcrypto and parts belonging to libssl.  Extract the parts
relevant for our libssl and import them with some tweaks.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/28 14:38:49

Modified files:
	gnu/llvm/tools/clang/lib/Basic: Targets.cpp 

Log message:
Setup clang to use OpenBSD settings and defines for our AArch64
(little-endian) target.

ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/11/28 14:50:12

Modified files:
	sys/sys        : exec_elf.h 

Log message:
Add the ELF machine type for AArch64 as specified in the ELF spec for
the ARM 64-bit Architecture.

ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 14:50:44

Modified files:
	lib/libcrypto/man: PEM_read_bio_PrivateKey.3 

Log message:
For unknown reasons, this summer, OpenSSL added an additional manual
page PEM_read_CMS(3) to document a bunch of functions unrelated
among themselves, but very similar to those documented here.
Information in that page is scantier than for the functions documented
here - and besides, it is mostly wrong.  Looks like they lost their
way in the vast forest of functions they autogenerated with chains
of macros...

Document those functions documented there which are relevant to us
in the present page instead, and with correct prototypes.  Given
that i know too little about PEM formats, information about semantics
is almost certainly incomplete, but at least better than what OpenSSL
provides.

While here, add Copyright and license.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 14:57:23

Modified files:
	lib/libcrypto/man: PEM_write_bio_PKCS7_stream.3 

Log message:
Add Copyright and license.
Remove one needless #include from the SYNOPSIS (from OpenSSL).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 15:25:51

Modified files:
	lib/libcrypto/man: CRYPTO_set_ex_data.3 

Log message:
Add Copyright and license.

Merge the documentation of six additional functions from OpenSSL.

There are some differences between OpenSSL and LibreSSL, for example
we don't have CRYPTO_free_ex_index(), CRYPTO_EX_INDEX_EC_KEY,
and CRYPTO_EX_INDEX_APP.  I hope i got the differences right.

"if you don;t get any feedback promptly i say just go ahead" jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/28 15:27:10

Modified files:
	regress/sys/kern/setuid: Makefile 

Log message:
The setuid regression test builds and runs a binary that is setuid
or setgid nobody.  Since /usr/obj is 0770, user nobody cannot access
other files there anymore.  Install all programs into a temporary
directory and run them there.  Check that /tmp is mounted without
nosuid.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 15:41:38

Modified files:
	lib/libcrypto/man: PKCS12_create.3 PKCS12_parse.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 16:02:16

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: PKCS12_newpass.3 

Log message:
import PKCS12_newpass(3) from OpenSSL


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/28 16:15:31

Modified files:
	sys/net        : pf.c 
	sys/netinet    : ip_input.c ip_var.h 

Log message:
Path MTU discovery and traceroute did not always work with pf af-to.
If an incoming packet is directly put into the output path, sending
the icmp error packet is never done.  As this is basically forwarding,
calling ip_forward() for such packets does everything that is needed.
OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/11/28 16:19:18

Modified files:
	regress/sys/net/pf_forward: Makefile 

Log message:
Enable the pmtu and traceroute subtests with af-to.  pf has been
fixed now.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 16:27:55

Modified files:
	lib/libcrypto/man: PKCS5_PBKDF2_HMAC.3 PKCS7_decrypt.3 
	                   PKCS7_encrypt.3 PKCS7_sign.3 
	                   PKCS7_sign_add_signer.3 PKCS7_verify.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 17:07:45

Modified files:
	lib/libcrypto/man: Makefile RAND_add.3 RAND_set_rand_method.3 
Removed files:
	lib/libcrypto/man: RAND_cleanup.3 

Log message:
No text remains from OpenSSL, so use the standard OpenBSD license.
Mention the true author (Miod 2014).

Merge the useless page RAND_cleanup(3) into RAND_add(3).
Fix the return type of RAND_set_rand_method(3).
Mention the constant return values.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 17:26:23

Modified files:
	lib/libcrypto/man: RAND_bytes.3 

Log message:
Add Copyright and license.
Add deprecation notice.
Delete useless cross references.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/28 17:27:23

Modified files:
	graphics/opencv: Makefile distinfo 
	graphics/opencv/patches: patch-apps_haartraining_CMakeLists_txt 
	                         patch-cmake_OpenCVDetectPython_cmake 
	                         patch-modules_core_include_opencv2_core_version_hpp 
	graphics/opencv/pkg: PLIST-docs PLIST-java PLIST-main 

Log message:
update to opencv-2.4.13, from maintainer Rafael Sadowski with a few tweaks by me
and ok with him.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/28 17:35:33

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

Log message:
update to neomutt-20161126


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/28 17:45:36

Modified files:
	lib/libcrypto/man: RAND_load_file.3 

Log message:
Add Copyright and license.
Adjust RETURN VALUES to match reality.
Delete the useless SEE ALSO section.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/11/28 20:06:31

ports/www/netsurf/nsgenbind/patches

Update of /cvs/ports/www/netsurf/nsgenbind/patches
In directory cvs.openbsd.org:/tmp/cvs-serv30189/patches

Log Message:
Directory /cvs/ports/www/netsurf/nsgenbind/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/28 20:21:33

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/11/28 20:54:50

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

Log message:
Factor out code to disconnect from controlling terminal into its own
function.  ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/28 20:59:31

Modified files:
	usr.sbin/user  : group.8 groupadd.8 groupdel.8 groupinfo.8 
	                 groupmod.8 main.c user.8 user.c useradd.8 
	                 userdel.8 userinfo.8 usermgmt.h usermod.8 

Log message:
Alistair Crooks rescinded the advertising clause of his user(8)
license in 2005 in NetBSD.

https://mail-index.netbsd.org/source-changes/2005/11/25/0002.html


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/29 00:18:23

Modified files:
	usr.sbin/switchd: switchd.8 

Log message:
article fix; from rob pierce


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/29 00:29:52

Modified files:
	lib/libcrypto/man: CRYPTO_set_ex_data.3 EVP_PKEY_set1_RSA.3 
	                   OPENSSL_malloc.3 PEM_read.3 
	                   PEM_read_bio_PrivateKey.3 

Log message:
minor cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/29 01:11:34

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

Log message:
Bugfix update to firefox 50.0.1.

See https://www.mozilla.org/en-US/firefox/50.0.1/releasenotes/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2016-91/


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/29 01:55:06

Modified files:
	usr.sbin/arp   : arp.c 
	usr.sbin/ndp   : ndp.c 

Log message:
Tweak output to keep it aligned when interfaces with big names, like
vether0 are used.

ok jca@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/29 02:00:05

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
Document the fact that *for now* syspatch only works on official releases and
will always sync and apply all patches regardless of the installed sets.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/29 02:02:29

Modified files:
	x11/dbus       : Makefile distinfo 

Log message:
Update to dbus-1.10.14.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/29 02:08:34

Modified files:
	sys/conf       : GENERIC 
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	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 

Log message:
Build kernel with DEBUG=-g by default.

This will allow us to extract type informations from DWARF2 sections.  It
also makes developer life easier as debug information are now included in
every object.

Resulting kernels will be stripped using strip(1) instead of ld(1).

Kernel build time increases by approximately 10%.  However it is still
possible to disable this by defining DEBUG="".

ok kettenis@, bluhm@, natano@, jasper@, reyk@, deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/29 02:10:49

Modified files:
	x11/gnome/builder: Makefile distinfo 
	x11/gnome/builder/pkg: PLIST 
Removed files:
	x11/gnome/builder/patches: 
	                           patch-libide_subprocess_ide-subprocess-launcher_c 
	                           patch-plugins_terminal_gb-terminal-view_c 

Log message:
Update to gnome-builder-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/29 02:22:02

Modified files:
	net/openvpn    : Makefile distinfo 
	net/openvpn/patches: patch-configure patch-include_Makefile_in 
	                     patch-sample_sample-config-files_server_conf 
	                     patch-sample_sample-config-files_static-home_conf 
	                     patch-sample_sample-config-files_static-office_conf 
	net/openvpn/pkg: PLIST 
Removed files:
	net/openvpn/patches: patch-Makefile_in 

Log message:
Update to openvpn-2.3.13

ChangeLog at https://community.openvpn.net/openvpn/wiki/ChangesInOpenvpn23

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/29 02:42:38

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

Log message:
Correct a bit test introduced in user.c rev 1.111 that made it impossible
to set a password hash with usermod if an additional flag was specified.

ok mestre@ tom@ jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/29 03:09:57

Modified files:
	sys/net        : if_vether.c if_vxlan.c if_pair.c 
	sys/netinet    : if_ether.h 

Log message:
For virtual Ethernet drivers that don't have a technical limit of the
hardmtu, pick a value of 65435 that leaves space for some
encapsulation and almost a complete max-IP packet.  After some
discussion we picked this arbitrary value.

OK dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/29 03:10:44

Modified files:
	net/openvpn    : Makefile 

Log message:
Take maintainership

Discussed with sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/29 03:19:38

Modified files:
	sys/net        : switchofp.c 

Log message:
Remove debugging code that was always enabled and printed parsed
OpenFlow packets: the new DLT_OPENFLOW bpf methods allows to monitor
the communication with a switch(4) device with tcpdump now.  The
remaining debugging messages aren't compiled without DEBUG now.  On
amd64, this shrinks the switchofp.o object by about 10k by default and
about 8k with DEBUG enabled.

OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/29 03:21:23

Modified files:
	net/rrdtool    : Makefile 

Log message:
Enable tests

Two tests are currently failing (reason unknown).

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/29 03:21:59

Modified files:
	net/rrdtool    : Makefile 
Added files:
	net/rrdtool/patches: patch-src_rrd_graph_helper_c 
	                     patch-src_rrd_lastupdate_c 
	                     patch-src_rrd_tool_c 

Log message:
Fix some time_t warnings, potentially harmful on 32 bits archs.

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/29 03:22:30

Modified files:
	sys/arch/sgi/dev: if_iec.c 
	sys/arch/sgi/hpc: if_sq.c 
	sys/dev/ic     : ar5008.c ar9003.c dwc_gmac.c pgt.c 
	sys/dev/pci    : hifn7751.c if_alc.c if_ixgb.c if_jme.c if_nfe.c 
	                 if_pcn.c if_stge.c if_xge.c 
	sys/dev/usb    : if_athn_usb.c 
	sys/kern       : uipc_mbuf.c uipc_socket.c uipc_syscalls.c 
	                 uipc_usrreq.c 
	sys/net        : pfkey.c route.c rtsock.c 
	sys/netinet    : ip_mroute.c 

Log message:
m_free() and m_freem() test for NULL.  Simplify callers which had their own
NULL tests.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/11/29 04:35:00

Modified files:
	audio/ncmpcpp  : Makefile 
Added files:
	audio/ncmpcpp/patches: patch-src_actions_cpp 
	                       patch-src_configuration_cpp 
	                       patch-src_lyrics_cpp 
	                       patch-src_tag_editor_cpp 
	                       patch-src_tiny_tag_editor_cpp 
	                       patch-src_window_h 

Log message:
Show detailed error message if writing tags fails
(upstream git commit 3868e32b9216e14247e0534061d1d02f3b8ab65d)

Show meaningful error message if MPD_PORT is not a number
(upstream git commit 8dde3944ee1878a7f26dd24bfe5e31f4e72c05b1)

lyrics: fix loading of files with DOS line endings
(upstream git commit dac0d4602f810d8f43e18beefdd43068e40308c3)

window: prevent ncurses from defining macros
(upstream git commit 6b73f0ebe1c05cb2b3b6973662e7b6c95eba4530)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/29 04:42:00

Modified files:
	mail/roundcubemail: Makefile distinfo 
	mail/roundcubemail/patches: patch-config_defaults_inc_php 
	mail/roundcubemail/pkg: PLIST 

Log message:
update to roundcubemail-1.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/29 04:50:08

Modified files:
	mail/roundcubemail: Tag: OPENBSD_6_0 Makefile distinfo 
	mail/roundcubemail/patches: Tag: OPENBSD_6_0 
	                            patch-config_defaults_inc_php 
	mail/roundcubemail/pkg: Tag: OPENBSD_6_0 PLIST README 

Log message:
MFC update to roundcubemail-1.2.3 (and sync README changes etc).

Note that the update to 1.2.2 added a new directory containing index.php and
various symlinks to the only files which need to be served directly; it is
strongly recommended that you use this new /var/www/roundcubemail/public_html
dir instead of /var/www/roundcubemail as your document root. This simplifies
your webserver configuration to exclude non-public files - logs etc - and is
especially helpful if using a web server that does not use .htaccess.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/29 04:50:21

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update to offlineimap-7.0.10

from maintainer Remi Locherer


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/29 05:12:29

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

Log message:
Replace the hand-rolled semaphore with a read-write lock

This was sitting in my tree for many a month and since the introduction
of interrupt threads, the interrupt vs. process context interlock became
irrelevant.  Taking uncontended write locks while "cold" doesn't look
like a big deal as well.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/29 05:15:21

Modified files:
	mail/rspamd    : Makefile distinfo 
	mail/rspamd/patches: patch-src_libserver_html_c 
	                     patch-src_libserver_url_c 
	mail/rspamd/pkg: PLIST 

Log message:
update to rspamd-1.4.0, from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/29 05:54:46

Modified files:
	usr.bin/tmux   : cmd-send-keys.c tmux.1 

Log message:
Make send -N work for all keys, not just in copy mode. From Artem Fokin.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/29 06:23:18

Modified files:
	security/libsrtp: Makefile distinfo 
Added files:
	security/libsrtp/patches: patch-crypto_cipher_cipher_c 
	                          patch-crypto_rng_rand_source_c 

Log message:
update to libsrtp-1.5.4, switch to libressl crypto primitives, sprinkle
some arc4random


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/29 06:55:33

Modified files:
	sys/dev/pv     : xen.c xenstore.c xenvar.h 

Log message:
Don't expose the xen_softc pointer in the XenStore transaction struct


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/29 06:57:28

Modified files:
	security/libsrtp: Makefile 

Log message:
switch back to own crypto primitives, asterisk autoconf needs whacking first


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/29 06:57:35

Modified files:
	share/man/man4 : options.4 
	share/man/man8 : crash.8 

Log message:
Some tweaks reflecting that DEBUG=-g is the default for building kernels.

With jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/29 06:57:49

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/patches: 
	                            patch-configs_samples_asterisk_conf_sample 
	                            patch-configure_ac 
	telephony/asterisk/pkg: PLIST-main 
Removed files:
	telephony/asterisk/patches: patch-res_res_rtp_asterisk_c 

Log message:
update to asterisk-13.13.0


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 07:51:09

Modified files:
	lib/libcrypto/man: RC4.3 RIPEMD160.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/29 07:55:04

Modified files:
	sys/dev/pv     : if_xnf.c xen.c xenstore.c xenvar.h 

Log message:
Stop exposing xen_softc to PV devices directly


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/29 08:52:12

Modified files:
	sys/netinet    : ip_mroute.c ip_mroute.h 

Log message:
Kill unused 'struct route'.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/29 09:11:44

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

Log message:
remove all the (void) casts which are irrelevant.  The remaining ones
should be fixed to do error checks.
ok jsg


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/11/29 09:31:00

Modified files:
	devel/subversion: Makefile distinfo 

Log message:
Update to Apache Subversion 1.9.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 09:40:40

Modified files:
	lib/libcrypto/man: RSA_check_key.3 RSA_size.3 

Log message:
Add Copyright, license, and very minor improvements from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 09:41:44

Modified files:
	lib/libcrypto/man: RSA_new.3 

Log message:
Add Copyright and license.
Mention that RSA_free(3) accepts NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 09:45:43

Modified files:
	lib/libcrypto/man: RSA_sign.3 

Log message:
Add Copyright and license.
Merge various improvements from OpenSSL:
Clarify a reference to a standard.
Stop advertising ancient hash functions.
Remove incorrect statements about error return values.
Delete a cross reference to the non-existent page objects(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 09:46:41

Modified files:
	lib/libcrypto/man: RSA_blinding_on.3 RSA_generate_key.3 
	                   RSA_get_ex_new_index.3 
	                   RSA_padding_add_PKCS1_type_1.3 RSA_print.3 
	                   RSA_private_encrypt.3 RSA_public_encrypt.3 
	                   RSA_set_method.3 RSA_sign_ASN1_OCTET_STRING.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/11/29 09:51:13

Modified files:
	devel/subversion: Tag: OPENBSD_6_0 Makefile 
Added files:
	devel/subversion/patches: Tag: OPENBSD_6_0 
	                          patch-subversion_libsvn_ra_serf_xml_c 
	                          patch-subversion_libsvn_subr_xml_c 
	                          patch-tools_server-side_mod_dontdothat_mod_dontdothat_c 

Log message:
For 6.0-stable: Patch CVE-2016-8734.
Already fixed in -current as part of update to Subversion 1.9.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/29 10:15:27

Modified files:
	usr.sbin/ypldap: ldapclient.c yp.c ypldap.c ypldap_dns.c 

Log message:
Use memset(3) instead of bzero(3)

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/29 10:21:52

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

Log message:
When action == 0 (spamdb(8) without arguments) it only reads the DB so it only
needs to pledge for "rpath" and for all other cases since it needs to write as
well then give it "rpath wpath".

"seems right" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 10:33:49

Modified files:
	lib/libcrypto/man: SHA1.3 

Log message:
Add Copyright and license.
Merge SHA2 documentation from OpenSSL.
Fix the data type of the "n" argument of SHA1(3)
and the return type of SHA1_Update(3).
Merge a note about thread safety from OpenSSL.

We have two competing implementations of SHA2 in base:
in lib/libc/hash and in lib/libcrypto.
Both are now documented in their proper manual page.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 10:53:12

Modified files:
	lib/libcrypto/man: SMIME_read_PKCS7.3 SMIME_write_PKCS7.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/29 11:16:09

Modified files:
	lib/libcrypto/man: Makefile OPENSSL_malloc.3 
Added files:
	lib/libcrypto/man: CRYPTO_get_mem_functions.3 OPENSSL_cleanse.3 

Log message:
seperate these descriptions into seperate files to reduce confusion.
discussed with jsing
ok schwarze


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/11/29 11:37:02

Modified files:
	lib/libpcap    : nametoaddr.c shlib_version 

Log message:
Stop exporting the eproto_db array, export a pointer to it instead.

tcpdump directly uses eproto_db even though it is not part of the
libpcap API.  This means that we can't freely add members to this array,
else ld.so complains about size mismatches.  Keep the data in a static
array instead and make it usable by tcpdump through a pointer whose size
won't change in the future.  A minor bump is enough here for ld.so to
stop complaining.

While here, mark _eproto_db and llc_db as const, as they are meant to
be.

Suggested by and ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 12:18:52

Modified files:
	lib/libssl/man : SSL_CIPHER_get_name.3 

Log message:
Add Copyright and license.
SSLv2 and export ciphers are no longer supported, delete related text.
Sync SSL_CIPHER_description(3) return values with the source code.
Wording simplifications from OpenSSL.
Delete empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/29 12:52:17

Modified files:
	lib/libssl/man : SSL_COMP_add_compression_method.3 

Log message:
Replace all of the text by a deprecation notice:
LibreSSL was decompressed long ago.

Mention SSL_COMP_get_compression_methods(3) which is both available
in our public interface and documented by OpenSSL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/29 13:00:35

Modified files:
	graphics/tiff  : Makefile distinfo 
	graphics/tiff/patches: patch-Makefile_in 
	                       patch-libtiff_tif_extension_c 
	                       patch-libtiff_tif_getimage_c 
	                       patch-libtiff_tif_luv_c 
	                       patch-man_Makefile_in 
	                       patch-test_Makefile_in 
	                       patch-tools_Makefile_in 
	graphics/tiff/pkg: PLIST 
Removed files:
	graphics/tiff/patches: patch-libtiff_tif_next_c 
	                       patch-libtiff_tif_pixarlog_c 
	                       patch-tools_gif2tiff_c 

Log message:
Update to 4.0.7.
* Multiple security fixes, including
CVE-2016-3622, CVE-2014-8127, CVE-2016-9273, CVE-2016-9448,
MSVR 35094, MSVR 35095, MSVR 35105
* Remove obsolete tools bmp2tiff, gif2tiff, ras2tiff, sgi2tiff, sgisv, ycbcr


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/29 13:34:34

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/29 14:29:19

Modified files:
	lib/libcrypto/man: CRYPTO_get_mem_functions.3 OPENSSL_cleanse.3 
	                   OPENSSL_malloc.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	www
Changes by:	vgross@cvs.openbsd.org	2016/11/29 14:48:18

Modified files:
	.              : events.html 

Log message:
OpenBSD presentation and booth during Capitole du Libre 2016


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2016/11/29 15:24:40

Modified files:
	net/libstrophe : Makefile distinfo 
Removed files:
	net/libstrophe/patches: patch-Makefile_am patch-configure_ac 

Log message:
Update libstrophe to 0.9.1.  Initial diff from Rafael Sadowski,
improved version from sthen

ok feinerer


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2016/11/29 15:26:57

Modified files:
	net/profanity  : Makefile distinfo 
	net/profanity/patches: patch-configure_ac 
	net/profanity/pkg: PLIST 
Added files:
	net/profanity/patches: 
	                       patch-tests_unittests_tools_stub_http_upload_c 

Log message:
update profanity to 0.5.0.  From Rafael Sadowski

ok feinerer


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/11/29 17:28:31

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

Log message:
On startup, check to see if sshd is already daemonized and if so,
skip the call to daemon() and do not rewrite the PidFile.  This
means that when sshd re-execs itself on SIGHUP the process ID will
no longer change.  Should address bz#2641.  ok djm@ markus@.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/29 19:57:40

Modified files:
	usr.bin/ssh    : auth-options.c auth-options.h auth2-pubkey.c 
	                 sshd.8 

Log message:
When a forced-command appears in both a certificate and an
authorized keys/principals command= restriction, refuse to accept
the certificate unless they are identical.

The previous (documented) behaviour of having the certificate forced-
command override the other could be a bit confused and more error-prone.

Pointed out by Jann Horn of Project Zero; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/29 20:00:05

Modified files:
	usr.bin/ssh    : servconf.c servconf.h serverloop.c session.c 
	                 sshd_config.5 

Log message:
Add a sshd_config DisableForwaring option that disables X11, agent,
TCP, tunnel and Unix domain socket forwarding, as well as anything
else we might implement in the future.

This, like the 'restrict' authorized_keys flag, is intended to be a
simple and future-proof way of restricting an account. Suggested as
a complement to 'restrict' by Jann Horn; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/29 20:01:33

Modified files:
	regress/usr.bin/ssh: cert-userkey.sh 

Log message:
test new behaviour of cert force-command restriction vs. authorized_key/
principals


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/11/29 20:07:37

Modified files:
	usr.bin/ssh    : ssh-agent.1 ssh-agent.c 

Log message:
add a whitelist of paths from which ssh-agent will load (via
ssh-pkcs11-helper) a PKCS#11 module; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/29 23:54:26

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

Log message:
tweak previous;
while here fix up FILES and AUTHORS;


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/11/30 00:35:00

Modified files:
	www/netsurf    : Makefile.inc 
	www/netsurf/browser: Makefile distinfo 
	www/netsurf/browser/pkg: PLIST 
	www/netsurf/libcss: Makefile distinfo 
	www/netsurf/libdom: Makefile distinfo 
	www/netsurf/libnsbmp: Makefile distinfo 
	www/netsurf/libnsfb: Makefile distinfo 
	www/netsurf/libnsgif: Makefile distinfo 
	www/netsurf/libnsutils: Makefile distinfo 
	www/netsurf/libparserutils/patches: patch-libparserutils_pc_in 
	www/netsurf/libsvgtiny: Makefile distinfo 
	www/netsurf/libwapcaplet: Makefile distinfo 
	www/netsurf/netsurf-fb: Makefile distinfo 
	www/netsurf/nsgenbind: Makefile distinfo 
Added files:
	www/netsurf/browser/patches: 
	                             patch-frontends_gtk_res_options_gtk2_ui 
	www/netsurf/netsurf-fb/patches: 
	                                patch-frontends_framebuffer_Makefile 
	www/netsurf/nsgenbind/patches: patch-src_nsgenbind-ast_c 
	                               patch-src_nsgenbind-ast_h 
	                               patch-src_nsgenbind-parser_y 
	                               patch-src_webidl-ast_c 
	                               patch-src_webidl-ast_h 
	                               patch-src_webidl-parser_y 
Removed files:
	www/netsurf/browser/patches: patch-Docs_netsurf-gtk_1 
	                             patch-gtk_res_netsurf-gtk_desktop 
	                             patch-gtk_res_options_gtk2_ui 
	www/netsurf/libnsfb/patches: patch-src_plot_24bpp_c 
	                             patch-src_plot_32bpp-xbgr8888_c 
	                             patch-src_plot_32bpp-xrgb8888_c 
	                             patch-src_plot_h 
	www/netsurf/netsurf-fb/patches: 
	                                patch-framebuffer_Makefile_target 

Log message:
Update to netsurf-3.6 and its accompanying libraries.

Note: upstream has renamed the main executable from "netsurf" to
"netsurf-gtk".


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 00:44:29

Log message:
    Import riemann-c-client 1.9.1, from Pavel Korovin.
    
    Will be used by an upcoming update of collectd for write_riemann plugin.
    
    Riemann-C-client is a C client library for the Riemann monitoring system,
    providing a convenient and simple API, high test coverage and a copyleft
    license, along with API and ABI stability.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	pkorovin
    Release Tags:	landry_20161130
    
    N ports/sysutils/riemann-c-client/distinfo
    N ports/sysutils/riemann-c-client/Makefile
    N ports/sysutils/riemann-c-client/pkg/DESCR
    N ports/sysutils/riemann-c-client/pkg/PLIST
    N ports/sysutils/riemann-c-client/patches/patch-src_cmd-send_c
    N ports/sysutils/riemann-c-client/patches/patch-Makefile_am
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 00:45:15

Modified files:
	sysutils       : Makefile 

Log message:
+riemann-c-client


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 00:54:36

Modified files:
	libexec/spamd  : spamd.c 

Log message:
Check return value of tls_config_set_protocols(3) and bail out in case of
failure

Feedback and OK jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 00:55:24

Modified files:
	usr.bin/ftp    : main.c 

Log message:
Check return value of tls_config_set_protocols(3) and bail out in case of
failure

Feedback and OK jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 00:56:23

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
Check return value of tls_config_set_protocols(3) and tls_config_set_ciphers(3)
and bail out in case of failure

Feedback and OK jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 00:57:21

Modified files:
	usr.sbin/ldapd : parse.y 

Log message:
Check return value of tls_config_set_protocols(3) and bail out in case of
failure

Feedback and OK jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 00:59:04

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

Log message:
Wrap lines earlier on tls_config_set_protocols(3)

Feedback and OK jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 02:01:00

Modified files:
	devel/cargo    : Makefile 

Log message:
Explicitely mark cargo as ONLY_FOR_ARCHS=amd64, as lang/rust is being
worked on for i386, but cargo will need more work...


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/30 02:07:30

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.79.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/30 02:07:46

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.22.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/11/30 03:19:18

Modified files:
	sys/dev/usb    : usb_mem.c usb_mem.h 

Log message:
Do not overlay DMA fragment decriptors with free list handling.

This "cleverness" increase the risk of races due to caching and/or
prefetching between the HC and DMA engine.  Many of the bug reports
on bugs@ involving memory corruptions in usb_allocmem() should be
easier to diagnose when not avoided with this change.

From Marius Strobl, ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 03:42:38

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

Log message:
According to usermod(8) manpage if -g =uid is used it should create a new group
with an unique UID, if it's not already created (not in the manpage), but this
wasn't implemented.
This implements that functionality similar to what NetBSD has, but with some
corrections by adding a fd closure in case of failure and on the failure
message itself which they got it wrong.

OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/30 03:52:10

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

Log message:
Make iwn(4) receive MIMO frames in monitor mode. We can now sniff all 802.11n
frames the hardware is able to receive. Use an xT3R device for best results.
This change has not yet been tested on 1T1R devices due to lack of hardware.
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/30 04:08:02

Modified files:
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/core: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 
	multimedia/gstreamer1/plugins-base: Makefile distinfo 
	multimedia/gstreamer1/plugins-good: Makefile distinfo 
	multimedia/gstreamer1/plugins-libav: distinfo 
	multimedia/gstreamer1/plugins-libav/patches: 
	                                             patch-gst-libs_ext_libav_configure 
	multimedia/gstreamer1/plugins-ugly: distinfo 
	multimedia/gstreamer1/py-gstreamer: distinfo 
Removed files:
	multimedia/gstreamer1/plugins-good/patches: 
	                                            patch-gst_flx_gstflxdec_c 

Log message:
Bump the gstreamer1 stack to version 1.10.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/30 04:38:26

Added files:
	sys/net80211   : ieee80211_mira.c ieee80211_mira.h 

Log message:
Add a new implementation of MiRA, a rate scaling algorithm for 802.11n.
This algorithm was designed for use with MIMO and Tx aggregation.

This is joint work with tb@, who helped with all the tricky math bits.
Additional help with testing by phessler@, mpi@, and jmatthew@.
I believe this is now ready for wider testing, and for future work to
happen in-tree.

A paper which explains the algorithm can be found at:
http://www.cs.ucla.edu/wing/publication/papers/Pefkianakis.MOBICOM10.pdf

Roughly, this algorithm attempts to keep track of the current "goodput"
(the effective data rate) for each MCS. It converges towards a rate which
gets the most bits per second transmitted with least loss.

Occasionally, frames will be steered to different rates to probe for changes.
(The algorithm does not send frames on its own. It only advances whenever
the driver has sent a frame.)

Time-based probing to adjacent MCS rates occurs periodically.
This is similar to what AMRR does, except that eventually mira will
try out multi-antenna modes as well.

Event-based probing happens when a sudden change in goodput is detected.
I've chosen to make downwards probing fast, and upwards probing slow.
(The paper does not specify such a preference.)
This means it should react quickly to worsening conditions and pull the
rate down (perhaps to the lowest possible rate). It should then raise
upwards slowly on a rate-per-rate basis as conditions improve again.
In my testing this works as intended as I keep moving a laptop outside
and inside the AP's range.

Not linked to the build yet.

ok mpi@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/30 04:52:48

Modified files:
	usr.sbin/smtpd : bounce.c filter.c ioev.c ioev.h mda.c 
	                 mta_session.c smtp_session.c smtpd.h 

Log message:
make struct io opaque:

- move struct io definition to ioev.c
- replace io_init/io_clear with io_new/io_free
- allocate an iobuf for each new io internally
- use struct io pointer in the rest of the code
- remove remaining uses of iobuf_*

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/30 05:09:34

Modified files:
	mail/roundcubemail: Makefile 
	mail/roundcubemail/pkg: PLIST 

Log message:
/var/www/roundcubemail/db should have been owned by root:www; pointed out by
Philippe Leledy via ajacouot@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 05:55:25

Modified files:
	lib/libssl/man : SSL_CTX_add_extra_chain_cert.3 

Log message:
Add Copyright and license.
Lots of improvements from OpenSSL:
Document SSL_CTX_clear_extra_chain_certs(3).
Correct SSL_CTX_add_extra_chain_cert(3) first argument type.
Add some new information and improve wording.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/30 05:58:28

Modified files:
	usr.sbin/syspatch: syspatch.8 syspatch.sh 

Log message:
Change the hierarchy under /var/syspatch/ so that the output of installed or
missing patches matches the official names.
e.g.
$ doas syspatch -c
015_libssl

Add a bit more output on what we are doing.
Tighten a few checks and rename some vars.

People playing with syspatch on 6.0 should update syspatch.sh asap from current
as I will soon remove the temporary quirks glue.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 06:19:54

Modified files:
	lib/libssl/man : SSL_CTX_flush_sessions.3 

Log message:
Add Copyright and license.
Correct two typos while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/11/30 06:20:02

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

Log message:
Fix check for cursor at end of line.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 06:20:45

Modified files:
	lib/libssl/man : SSL_CTX_free.3 

Log message:
Add Copyright and license.
Garbage collect empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 06:21:23

Modified files:
	lib/libssl/man : SSL_CTX_add_session.3 SSL_CTX_ctrl.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/11/30 06:33:42

Modified files:
	graphics/p5-GD-Graph: Makefile distinfo 

Log message:
Update to p5-GD-Graph-1.54.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 06:39:38

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_set1_param.3 

Log message:
Import the relevant parts of SSL_CTX_get0_param(3) from OpenSSL.
Call it SSL_set1_param(3) since we don't have these get0 functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 06:46:26

Modified files:
	lib/libssl/man : SSL_CTX_get_verify_mode.3 

Log message:
Add Copyright and license.
Garbage collect empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/11/30 06:50:53

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/30 06:53:14

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
During early testing, hardcode the syspatch repo to 'syspatch.openbsd.org'
which points to ftp.fr. This will change once 6.1 is out.

discussed with deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 07:16:38

Modified files:
	lib/libssl/man : SSL_CTX_load_verify_locations.3 

Log message:
Add Copyright and license.
Merge SSL_CTX_set_default_verify_paths(3) documentation from OpenSSL,
but do not talk about environment variables, which LibreSSL does
not appear to support, judging from the source code.
Rename WARNINGS section to CAVEATS.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/30 07:17:08

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

Log message:
Update the manual page regarding recent changes

This adds a few new devices from the X550 family as well as a note that
fiber optics modules must be removed after the interface is brought down
as discussed on ICB.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/30 07:26:12

Modified files:
	sys/conf       : files 

Log message:
Enable mira in kernel builds.

For now, only build mira if the iwm(4) or iwn(4) drivers are also
built since other wifi drivers don't even have 11n support yet.
This limits platforms affected by this change to i386 and amd64.

make release on i386/amd64 platforms tested by tb@ (thanks!)
ok tb@ mpi@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/11/30 07:31:51

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmvar.h 

Log message:
Switch the iwm(4) driver to mira rate adaptation in 11n mode.
Only the rate adaptation algorithm changes, available data rates do not (yet).
Please let me know about any regressions.

In 11a/b/g modes the driver still uses AMRR, so forcing one of these modes
with ifconfig's 'mode' subcommand will serve as a fallback if necessary.

ok tb@ mpi@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/30 07:53:25

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/30 08:07:45

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

Log message:
update the ix(4) entry;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/30 08:08:37

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

Log message:
better text for makeoptions DEBUG; help/ok mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/11/30 08:19:16

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Simplify:
- consistency in integer checks
- drop apply_patches(), better call ther actual apply_patch() function from
within the script itself


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/11/30 08:46:45

Modified files:
	distrib/armv7/ramdisk: Makefile 
	distrib/macppc/ramdisk: Makefile 

Log message:
Use makefs to build bsd.rd on armv7 and macppc.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 08:48:53

Modified files:
	lib/libssl/man : SSL_CTX_new.3 

Log message:
Add Copyright and license.
Remove the last traces of SSLv3.
Add TLS_method(3), TLSv1_2_method(3), DTLSv1_method(3) and friends.
Add missing prototypes to the SYNOPSIS.
Merge additional information from OpenSSL.
Simplify description of TLSv1_method(3) and SSLv23_method(3), from OpenSSL.
Some additional minor fixes.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/11/30 09:15:44

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

Log message:
Update media types upon SFP module change

Tested by Hrvoje Popovski and myself.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 09:21:53

Modified files:
	lib/libssl/man : ssl.3 

Log message:
Purge some SSLv2 and SSLv3 stuff that no longer exists.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 09:23:10

Modified files:
	lib/libssl/man : SSL_CTX_sess_number.3 

Log message:
Add Copyright and license.
Garbarge collect empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 09:24:56

Modified files:
	lib/libssl/man : SSL_CTX_sess_set_cache_size.3 

Log message:
Add Copyright and license.
Correct the description of what happens when the session cache is full,
from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 09:25:29

Modified files:
	lib/libssl/man : SSL_CTX_sess_set_get_cb.3 SSL_CTX_sessions.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 09:46:56

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_CTX_set_alpn_select_cb.3 

Log message:
import SSL_CTX_set_alpn_select_cb(3) from OpenSSL


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 09:53:37

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-cmake_FindGDAL_cmake 
	                  patch-cmake_FindGEOS_cmake 
	                  patch-cmake_FindPostgres_cmake 
	                  patch-src_app_qgisapp_cpp 
	                  patch-src_core_CMakeLists_txt 
	geo/qgis/pkg   : PLIST 
Added files:
	geo/qgis/patches: patch-src_gui_qgisgui_h 

Log message:
Bugfix update to qgis 2.18.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 10:22:42

Modified files:
	lib/libssl/man : SSL_CTX_set_cert_store.3 

Log message:
Add Copyright and license.
Remove the useless statement that a void function does not return a value.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 10:23:53

Modified files:
	lib/libssl/man : SSL_CTX_set_cert_verify_callback.3 

Log message:
Add Copyright and license.
Rename WARNINGS to CAVEATS and RETURN VALUES to BUGS,
the latter from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 10:25:20

Modified files:
	lib/libssl/man : SSL_CTX_set_cipher_list.3 

Log message:
Add Copyright and license.
Stop talking about export ciphers.
Remove two irrelevant cross references.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 10:26:09

Modified files:
	lib/libssl/man : SSL_CTX_set_client_CA_list.3 
	                 SSL_CTX_set_client_cert_cb.3 

Log message:
Copyright and license.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/30 10:43:32

Modified files:
	usr.sbin/smtpd : ioev.c ioev.h mda.c mta_session.c 
	                 smtp_session.c 

Log message:
hide internal io flags and rename IO_PAUSE_{IN,OUT} to IO_{IN,OUT}

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 11:05:18

Modified files:
	lib/libssl/man : SSL_CTX_set_default_passwd_cb.3 

Log message:
Add Copyright and license.
Fix the declaration of pem_password_cb.
Simplify wording, mostly from OpenSSL.
Garbage collect the empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 11:07:13

Modified files:
	lib/libssl/man : SSL_CTX_set_generate_session_id.3 

Log message:
Add Copyright and license.
Add markup for the declaration of GEN_SESSION_CB.
Garbage collect some remnants of SSLv2 and SSLv3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/30 11:17:03

Modified files:
	games/teeworlds: Makefile distinfo 
	games/teeworlds/pkg: PLIST 

Log message:
SECURITY update to teeworlds-0.6.4

Add a workaround for powerpc while here.
From Donovan Watteau (maintainer).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/30 11:19:33

Modified files:
	games/teeworlds/patches: patch-src_engine_client_sound_cpp 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/11/30 11:29:15

Modified files:
	lib/libssl/man : SSL_CTX_set_info_callback.3 

Log message:
Add Copyright and license.
Correct prototypes.
Drop the useless statement that a void function does not return a value.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/30 11:31:30

Modified files:
	games/teeworlds: Tag: OPENBSD_6_0 Makefile 
Added files:
	games/teeworlds/patches: Tag: OPENBSD_6_0 
	                         patch-src_engine_client_client_cpp 
	                         patch-src_engine_shared_snapshot_h 

Log message:
SECURITY fix for CVE-2016-9400.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/30 11:37:30

Modified files:
	games/teeworlds/patches: Tag: OPENBSD_6_0 
	                         patch-src_engine_client_client_cpp 
	                         patch-src_engine_shared_snapshot_h 

Log message:
CVE id and url to upstream commit


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/11/30 11:38:32

Modified files:
	usr.sbin/smtpd : smtpd.h util.c 

Log message:
remove unused iobuf helpers


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/11/30 11:45:18

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

Log message:
list 'StarTech USB31000S' as supported; the driver already attached to it for a while

also tested by yours truly


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/30 11:52:36

Modified files:
	graphics/ttfautohint: Makefile distinfo 

Log message:
update to ttfautohint-1.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/11/30 11:53:36

Modified files:
	devel/p5-Config-IniFiles: Makefile distinfo 

Log message:
update to p5-Config-IniFiles-2.94


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/11/30 12:27:21

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Always remove the local vm after calling terminate_vm().


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/11/30 12:42:15

Modified files:
	www/links+     : Makefile distinfo 
	www/links+/patches: patch-https_c 

Log message:
Update links+ to 2.14.

From maintainer Tim Meunier.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/11/30 12:58:29

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix another free() with wrong size panic when handling group-mod buckets
size changes and add more sanity checks for group buckets payload.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/30 13:26:37

Modified files:
	usr.sbin/user  : usermgmt.conf.5 usermod.8 

Log message:
note that no group is created if a group already exists when using =uid;
while here, clean the text up a bit;

from mestre and myself


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/11/30 13:46:42

Modified files:
	net/monitoring-plugins: Makefile distinfo 
	net/monitoring-plugins/pkg: DESCR-dbi DESCR-fping DESCR-game 
	                            DESCR-ldap DESCR-mysql DESCR-pgsql 
	                            DESCR-samba DESCR-snmp 
Added files:
	net/monitoring-plugins/pkg: DESCR-radius PLIST-radius 

Log message:
update to monitoring-plugins-2.2
enable radius plugin (using radcli library) while there


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/30 13:54:25

Modified files:
	lib/libcrypto/man: OCSP_REQUEST_new.3 OCSP_cert_to_id.3 
	                   OCSP_request_add1_nonce.3 OCSP_sendreq_new.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/30 14:36:36

Modified files:
	graphics/tiff  : Tag: OPENBSD_6_0 Makefile distinfo 
	graphics/tiff/patches: Tag: OPENBSD_6_0 patch-Makefile_in 
	                       patch-libtiff_tif_compress_c 
	                       patch-libtiff_tif_extension_c 
	                       patch-libtiff_tif_getimage_c 
	                       patch-libtiff_tif_luv_c 
	                       patch-man_Makefile_in 
	                       patch-test_Makefile_in 
	                       patch-tools_Makefile_in 
	graphics/tiff/pkg: Tag: OPENBSD_6_0 PLIST 
Added files:
	graphics/tiff/patches: Tag: OPENBSD_6_0 patch-libtiff_tif_dir_c 
	                       patch-libtiff_tif_dirinfo_c 
Removed files:
	graphics/tiff/patches: Tag: OPENBSD_6_0 patch-libtiff_tif_next_c 
	                       patch-libtiff_tif_pixarlog_c 
	                       patch-tools_gif2tiff_c 

Log message:
Update to 4.0.7.
* Multiple security fixes, including
CVE-2016-3622, CVE-2014-8127, CVE-2016-9273, CVE-2016-9448,
MSVR 35094, MSVR 35095, MSVR 35105
* Remove obsolete tools bmp2tiff, gif2tiff, ras2tiff, sgi2tiff, sgisv, ycbcr

Minor patches to maintain ABI compatibility with 4.0.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 14:38:53

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

Log message:
Security update to firefox 50.0.2.

See https://www.mozilla.org/en-US/firefox/50.0.2/releasenotes/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2016-92/ (link not
up yet). A javascript exploit for windows was found in the wild, and the
vulnerability could technically be exploited on other platforms..


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 14:41:32

Modified files:
	mail/thunderbird-i18n: Makefile.inc distinfo 
	mail/mozilla-thunderbird: Makefile distinfo 

Log message:
Security update to thunderbird 45.5.1.

See https://www.mozilla.org/en-US/thunderbird/45.5.1/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 14:47:05

Modified files:
	www/firefox-i18n: distinfo 

Log message:
Fix botched distinfo


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/11/30 14:49:10

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

Log message:
Security update to firefox-esr 45.5.1.

See https://www.mozilla.org/en-US/firefox/45.5.1/releasenotes/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2016-92/ (link not
up yet). A javascript exploit for windows was found in the wild, and the
vulnerability could technically be exploited on other platforms..


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/30 15:14:18

Modified files:
	graphics/tiff  : Tag: OPENBSD_5_9 Makefile distinfo 
	graphics/tiff/patches: Tag: OPENBSD_5_9 patch-Makefile_in 
	                       patch-libtiff_tif_compress_c 
	                       patch-libtiff_tif_extension_c 
	                       patch-libtiff_tif_getimage_c 
	                       patch-libtiff_tif_luv_c 
	                       patch-man_Makefile_in 
	                       patch-test_Makefile_in 
	                       patch-tools_Makefile_in 
	graphics/tiff/pkg: Tag: OPENBSD_5_9 PLIST 
Added files:
	graphics/tiff/patches: Tag: OPENBSD_5_9 patch-libtiff_tif_dir_c 
	                       patch-libtiff_tif_dirinfo_c 
Removed files:
	graphics/tiff/patches: Tag: OPENBSD_5_9 patch-libtiff_tif_next_c 
	                       patch-libtiff_tif_pixarlog_c 
	                       patch-tools_gif2tiff_c 

Log message:
Update to 4.0.7.
* Multiple security fixes, including
CVE-2016-3622, CVE-2014-8127, CVE-2016-9273, CVE-2016-9448,
MSVR 35094, MSVR 35095, MSVR 35105
* Remove obsolete tools bmp2tiff, gif2tiff, ras2tiff, sgi2tiff, sgisv, ycbcr

Minor patches to maintain ABI compatibility with 4.0.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/11/30 15:21:20

Modified files:
	regress/sys/net/vxlan: Makefile vxlan_2.sh 

Log message:
Fix typos


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/11/30 15:40:31

Modified files:
	graphics/tiff  : Makefile 

Log message:
bump REVISION to clearly distinguish this from the -stable package,
which has a different shared library major version; ok jca@ kili@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 15:44:19

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

Log message:
Mitigate some fd leaks on user(8)

OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/11/30 15:52:47

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/11/30 16:58:07

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

Log message:
Since pwp->pw_gid is equal to pwp->pw_uid then use the former instead in
creategid() function and in the failure message since it makes more sense in
this chunck of code.

OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/30 17:03:32

Modified files:
	games/slash    : Makefile distinfo 
Added files:
	games/slash/patches: patch-include_global_h 

Log message:
Usable MASTER_SITES for the nethack distfiles.

Slash-Unix still has a broken MASTER_SITES, it should probably be
mirrored by someone who cares.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/11/30 17:11:22

Modified files:
	games/slash    : Makefile 

Log message:
patch-include_global_h fixes a bug with wide terminals, bump REVISION

Problem reported by Solene Rapenne


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/11/30 18:37:17

Modified files:
	sys/dev/pci/drm: drm.h drm_drv.c 

Log message:
Add noop drm SET_MASTER and DROP_MASTER ioctls.  This will allow
reducing the local diff in libdrm.

We only handle a single master as xorg privdrop has already occurred at
the point where the ioctls are issued.


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2016/11/30 20:11:04

Modified files:
	sys/sys        : mbuf.h 

Log message:
Update comments in struct mbuf_ext to reflect the replacement of ext_free by
ext_free_fn.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/11/30 23:39:56

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/12/01 01:36:28

Modified files:
	databases/p5-DBD-mysql: Makefile distinfo 

Log message:
Security update to 4.041, fixes CVE-2016-1251
spotted by afresh1@, thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/01 01:53:38

Modified files:
	graphics/vigra : Makefile 

Log message:
Fix typo in CONFIGURE_ARGS to prevent picking up math/hdf5 and breaking
bulk builds.
Reported by naddy@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/01 02:08:37

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : PLIST 

Log message:
Needs gfind to run some of the bro scripts.
@sample local-logger.bro which was forgotten after the update to 2.5.

reported by Daniel Thayer, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/01 02:19:44

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

Log message:
Update to py-botocore-1.4.80.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/01 02:19:57

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.23.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/01 02:24:23

Modified files:
	net/libpsl     : Makefile distinfo 
	net/libpsl/patches: patch-src_psl2c_c 
	net/libpsl/pkg : PLIST 

Log message:
Update to libpsl-0.15.0 and take maintainership.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/01 02:38:54

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

Log message:
Bugfixing update to cmake-3.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/01 03:31:05

Modified files:
	devel/py-tox   : Makefile distinfo 

Log message:
Update to py-tox-2.5.0


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/01 03:58:54

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Fix kernel matching installation:
bsd -> /bsd (sp) | /bsd.sp (mp)
bsd.mp -> /bsd (mp) | /bsd.mp (sp)

issue reported by Ossi Salmi, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/01 06:24:52

Modified files:
	editors/vim    : Makefile 

Log message:
add a comment about vim-spell and major versions


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2016/12/01 07:13:12

Modified files:
	editors/vim-spell: Makefile.inc distinfo 

Log message:
Sync editors/vim-spell with editors/vim update to 8.0.
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/01 08:03:06

Removed files:
	mail/rspamd/patches: patch-src_libserver_html_c 
	                     patch-src_libserver_url_c 

Log message:
remote zero-byte files


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 08:26:11

Modified files:
	lib/libssl/man : SSL_CTX_set_max_cert_list.3 
	                 SSL_CTX_set_msg_callback.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 08:30:23

Modified files:
	lib/libssl/man : SSL_CTX_set_mode.3 

Log message:
Add Copyright and license.
Delete a sentence explaining exploit mitigation countermeasures
that have long been removed.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 08:40:14

Modified files:
	lib/libssl/man : SSL_CTX_set_options.3 

Log message:
Add Copyright and license.

Delete explanation of SSL_OP_SINGLE_DH_USE, it is always on now.
Delete explanation of obsolete option SSL_OP_EPHEMERAL_RSA.
Delete various SSLv2 and SSLv3 remnants.

Delete excessive verbiage detailing each obsolete option individually;
instead, provide one concise list of obsolete options.
Delete HISTORY of individual options; it was incomplete anyway
and is not important enough to warrant so much bloat.
Garbage collect two useless cross references.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 09:02:14

Modified files:
	lib/libssl/man : Makefile ssl.3 
Removed files:
	lib/libssl/man : SSL_CTX_set_psk_client_callback.3 
	                 SSL_CTX_use_psk_identity_hint.3 
	                 SSL_get_psk_identity.3 

Log message:
garbage collect PSK remnants


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/12/01 09:24:48

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

Log message:
Remove unused variable which was leaking memory, and while here remove 2 other
variables that were also never used

OK otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 09:46:59

Modified files:
	lib/libssl/man : SSL_CTX_set_quiet_shutdown.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 09:48:36

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_CTX_set_read_ahead.3 

Log message:
import SSL_CTX_set_read_ahead(3) from OpsenSSL, with considerable tweaks


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/01 10:17:27

Modified files:
	app/cwm        : conf.c cwmrc.5 parse.y 

Log message:
Normalize bind function names, based on a few categories: window, group, menu
and pointer.

Replace 'bind' and 'mousebind' options with 'bind-key' and 'bind-mouse',
respectively, replace special 'unmap' keyword with 'unbind-key' and
'unbind-mouse', and additionally allow unbinding all with 'all' keyword.


CVSROOT:	/cvs
Module name:	www
Changes by:	okan@cvs.openbsd.org	2016/12/01 10:18:32

Modified files:
	faq            : current.html 

Log message:
Add cwm(1) config change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/12/01 10:36:41

Modified files:
	math/hdf5      : Makefile distinfo 

Log message:
Update to HDF5 1.8.18

OK pirofti@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/01 11:17:52

Modified files:
	app/cwm        : calmwm.h conf.c cwm.1 cwmrc.5 kbfunc.c 

Log message:
Change 'menu-window' to display all windows; then add 'menu-window-hidden' for
the previous behaviour of 'menu-window'.  'menu-window' becomes the default
binding; use 'bind-mouse "1" menu-window-hidden' to restore old behaviour for
those who prefer.

OK sthen@ (long long time ago on a different version)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/01 11:22:28

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

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/01 11:44:09

Modified files:
	app/cwm        : kbfunc.c 

Log message:
Switch ssh menu to search_match_text; like group/window/cmd menus, use only a
substring match. The previous matching is only intended for the exec menus.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/01 11:44:27

Modified files:
	faq            : current.html 

Log message:
minor markup and phrasing tweaks


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2016/12/01 11:45:57

Modified files:
	.              : want.html 

Log message:
Remove my request for Loongson 3A hardware.

Many thanks to Miod Vallat.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/01 12:32:02

Modified files:
	www/links+     : Tag: OPENBSD_6_0 Makefile distinfo 
	www/links+/patches: Tag: OPENBSD_6_0 patch-html_c patch-https_c 

Log message:
SECURITY update to links-2.14

Relevant changes:
* Limit keepalive of ciphers with 64-bit block size to mitigate
the SWEET32 attack
* Improved tor hardening - when the user toggles the "Only Proxies" option
(i.e. when connecting to tor), we reset certain other options to their
default values, so that it is not possible to identify user behind tor
based on the selected options.
* Security bug fixed: Don't load or render the content of
"407 Proxy Authentication Required" reply when using https proxy.
This avoids the FalseCONNECT attack.
Also, don't allow 401 and 407 responses to set cookies.

Tested on 6.0 by Tim Meunier (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 12:40:05

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_set_max_send_fragment.3 

Log message:
import the parts of OpenSSL SSL_CTX_set_split_send_fragment(3)
relevant for us, calling the page SSL_set_max_send_fragment(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 12:50:12

Modified files:
	lib/libssl/man : SSL_CTX_set_session_cache_mode.3 
	                 SSL_CTX_set_session_id_context.3 
	                 SSL_CTX_set_ssl_version.3 SSL_CTX_set_timeout.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/12/01 13:08:59

Modified files:
	games/atc      : def.h 
	games/pom      : pom.c 

Log message:
Remove useless #ifndef in atc(6) and pom(6).

M_PI is always defined, so we can drop those directives.

OK deraadt@, millert@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/01 13:28:19

Modified files:
	app/cwm        : calmwm.h kbfunc.c menu.c search.c 

Log message:
Tame the number of 'exec' and 'path' search_match wrappers. No functional
change now, though more can likely go later, losing the (paritally complete or
incomplete/broken) argument completion bits.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/01 13:51:55

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

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2016/12/01 14:03:02

Modified files:
	opencvs        : press.html 

Log message:
Fix broken link.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 14:12:49

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_CTX_set_tlsext_status_cb.3 
	                 SSL_CTX_set_tlsext_ticket_key_cb.3 

Log message:
import tlsext documentation from OpenSSL


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 14:53:42

Modified files:
	lib/libssl/man : SSL_CTX_set_tmp_dh_callback.3 

Log message:
Add Copyright and license.
Merge various updates from OpenSSL, in particular stop talking about
what happens without SSL_OP_SINGLE_DH_USE, which is now always on.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 15:04:22

Modified files:
	lib/libssl/man : SSL_CTX_set_verify.3 

Log message:
Add Copyright and license.
Delete empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 15:17:32

Modified files:
	lib/libssl/man : SSL_CTX_use_certificate.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/01 15:42:44

Modified files:
	audio/milkytracker: Makefile 

Log message:
Update HOMEPAGE.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 15:45:28

Modified files:
	lib/libssl/man : SSL_clear.3 

Log message:
Add Copyright and license.
Talk about TLS_method() rather than SSLv23_method().
Rename WARNINGS section to CAVEATS.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/01 15:46:21

Modified files:
	lib/libssl/man : SSL_accept.3 SSL_alert_type_string.3 
	                 SSL_connect.3 SSL_do_handshake.3 SSL_free.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/12/01 19:32:54

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
have a better go at naming xl710 devices

intel use xl710 to refer to 40 gig parts (and 20 for some reason),
and x710 to refer to 10g parts. there's allegedly going to be 25g
parts called xxv710.

i havent included the xl722 parts yet.

im naming the devices by the speed and connector rather than going for
actual intel product names like XL710-QDA1 because other vendors will
use the same chips in product with other names.

intel also put the XL710-QDA1 product id on the XL710-QDA2, which is
a good argument not to use product names too.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/12/01 19:36:12

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/12/01 19:37:30

Modified files:
	lib/libpcap    : nametoaddr.c 

Log message:
add "lldp" to the ether protocol name db.

this lets me go "tcpdump ether proto lldp" to easily read lldp packets
off the wire without other noise getting in the way.

ok deraadt@ jca@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/01 22:07:41

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

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/12/01 22:41:52

Modified files:
	lib/libdrm     : xf86drm.c 
	lib/libdrm/include/drm: drm.h 

Log message:
Drop the local diff to avoid calling drm set/drop master ioctls,
the kernel implements these as noops now.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2016/12/01 22:52:01

Modified files:
	usr.sbin/ldapd : btree.c 

Log message:
Fix leaks by freeing 'path' and 'lru_queue' in btree_close().
From Jon Mayo, via Tim Kuijsten

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/12/01 23:22:53

Log message:
    Import libnspsl-0.1.0.
    
    The Public Suffix List is a database of top level domain names. The
    database allows an application to determine if if a domain name requires
    an additional label to be valid.
    
    The nspsl library generates a static code representation of the Public
    Suffix List for use in the NetSurf web browser.
    
    ok landry@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20161201
    
    N ports/www/netsurf/libnspsl/Makefile
    N ports/www/netsurf/libnspsl/distinfo
    N ports/www/netsurf/libnspsl/pkg/DESCR
    N ports/www/netsurf/libnspsl/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/12/01 23:25:37

Modified files:
	www/netsurf    : Makefile 
	www/netsurf/browser: Makefile 
	www/netsurf/netsurf-fb: Makefile 

Log message:
Give the netsurf browsers a lib dependency on libnspsl.

(Used for cookie handling.)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/02 01:18:19

Modified files:
	meta/tor-browser: Makefile 
	www/tor-browser: Makefile.inc 
	www/tor-browser/browser: Makefile distinfo 
	www/tor-browser/browser/files: extension-overrides.js 
	www/tor-browser/https-everywhere: Makefile distinfo 
	www/tor-browser/noscript: Makefile distinfo 
	www/tor-browser/tor-launcher: Makefile distinfo 
	www/tor-browser/tor-launcher/patches: 
	                                      patch-src_components_tl-process_js 
	www/tor-browser/torbutton: Makefile distinfo 

Log message:
Update to tor-browser 6.0.7, patching CVE-2016-9079 (Use-after-free in
SVG Animation).
updates:
- https-everywhere to 5.2.7
- noscript to 2.9.5.2
- tor-launcher to 0.2.9.4
- torbutton to 1.9.5.12

From MAINTAINER attila // stalphonsos // com.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/02 01:34:28

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Few consistency fixes (no intended change in behaviour).
Fix logic in the error path of rollback_patch().


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/02 01:57:43

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

Log message:
Update to py-boto3-1.4.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/02 01:57:58

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

Log message:
Update to py-botocore-1.4.81.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/02 01:58:17

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.24.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/02 02:05:29

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-136.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/02 02:39:07

Modified files:
	audio/libxmp   : Makefile distinfo 
	audio/libxmp/patches: patch-Makefile_in patch-src_common_h 
Removed files:
	audio/libxmp/patches: patch-src_mix_paula_c 

Log message:
Update libxmp to 4.4.1.

This is a bugfix release, no bump needed.

OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/02 03:05:06

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : README 
Removed files:
	net/bro/patches: patch-aux_broctl_bin_broctl_in 

Log message:
Drop the setrlimit patch, it's not needed anymore; prodded by Daniel Thayer
http -> https in README while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/02 03:07:47

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix flow-removed OFP header xid value: use htonl() instead of htons() for
32bit integers.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/02 03:59:27

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Simplify.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/02 04:03:33

Modified files:
	sys/arch/amd64/conf: RAMDISK_CD 

Log message:
enable hvn(4)
ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/02 04:16:04

Modified files:
	sys/net        : if_vxlan.c 
	sys/netinet6   : in6_src.c ip6_var.h 

Log message:
Rremoves 'struct route_in6 *' argument from in6_selectsrc().

Move the corresponding code in in6_pcbselsrc().  This reduces
differences with IPv4 and will help us to get rid of 'struct route*'.

ok vgross@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/02 04:19:17

Modified files:
	sys/net        : route.c 

Log message:
Assert that rt_match() is always called at IPL_SOFTNET rather than
calling splsoftnet() recursively.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/02 06:08:21

Modified files:
	emulators/hatari: Makefile 

Log message:
Restrict to i386 amd64 powerpc arm, as per src/cpu/sysdeps.h

http://build-failures.rhaalovely.net//sparc64/2016-11-21/emulators/hatari.log


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/02 06:10:17

Modified files:
	games/sdlpop   : Makefile 

Log message:
Don't attempt to build on BE archs.

http://build-failures.rhaalovely.net//sparc64/2016-11-21/games/sdlpop.log


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/02 06:27:12

Modified files:
	net/arm        : Makefile 

Log message:
Drop dep on lsof, which will soon leave the ports tree.

Note that weakening the security of the system to make lsof work
actually resulted in the arm process hanging, so it is actually a gain.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/02 06:32:14

Modified files:
	sysutils       : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	sysutils/lsof  : Makefile distinfo 
	sysutils/lsof/patches: patch-Configure 
	                       patch-dialects_n+obsd_dlsof_h 
	                       patch-dialects_n+obsd_dnode_c 
	                       patch-dialects_n+obsd_dproc_c 
	                       patch-dialects_n+obsd_dstore_c 
	                       patch-dialects_n+obsd_machine_h 
	                       patch-lsof_8 
	sysutils/lsof/pkg: DESCR PLIST 

Log message:
Move lsof to the Attic.

Requires kmem access, is so coupled to the system internals that it
needs a /usr/src/sys checkout, and breaks regularly due to changes in
base.  People used to it should be told to use fstat(1) & friends
instead.

ok landry@ sthen@ dcoppa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/02 06:35:00

Modified files:
	lang/mruby     : Makefile 

Log message:
Broken on sparc64

http://build-failures.rhaalovely.net//sparc64/2016-11-21/lang/mruby.log


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/02 07:39:46

Modified files:
	usr.sbin/switchctl: ofpclient.c 
	usr.sbin/switchd: ofp.c ofp10.c ofp13.c ofp_common.c ofrelay.c 
	                  switchd.h 

Log message:
Implement the connection state machine for OpenFlow 1.0 and 1.3 to detect
invalid state transitions and invalid protocol version switching after the
hello messages exchange.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/02 07:51:52

Modified files:
	textproc/the_silver_searcher: Makefile distinfo 
	textproc/the_silver_searcher/pkg: PLIST 

Log message:
update to the_silver_searcher-1.0.1, from maintainer Florian Stinglmayr,
tweak by me and ok with Florian.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/02 07:57:41

Log message:
    import ports/mail/rmilter, testing/tweaks Johan Huldtgren, review/ok jca
    
    Rmilter is used to integrate rspamd with any milter-compatible MTA, for
    example postfix or sendmail. Features include:
    
    - ClamAV scanning (via unix or tcp socket).
    - Rspamd scanning
    - Greylisting and rate-limiting with redis upstream
    - Auto-whitelisting (internal and via redis upstream)
    - Replies check (whitelisting replies to sent messages)
    - Passing messages and/or their headers to beanstalk servers
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20161202
    
    N ports/mail/rmilter/Makefile
    N ports/mail/rmilter/distinfo
    N ports/mail/rmilter/patches/patch-CMakeLists_txt
    N ports/mail/rmilter/patches/patch-contrib_http-parser_CMakeLists_txt
    N ports/mail/rmilter/patches/patch-contrib_xxhash_CMakeLists_txt
    N ports/mail/rmilter/patches/patch-hiredis_CMakeLists_txt
    N ports/mail/rmilter/patches/patch-rmilter_conf_sample
    N ports/mail/rmilter/patches/patch-contrib_lc-btrie_CMakeLists_txt
    N ports/mail/rmilter/patches/patch-contrib_zstd_CMakeLists_txt
    N ports/mail/rmilter/patches/patch-src_upstream_c
    N ports/mail/rmilter/pkg/DESCR
    N ports/mail/rmilter/pkg/PLIST
    N ports/mail/rmilter/pkg/rmilter.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/02 07:58:50

Modified files:
	mail           : Makefile 
	infrastructure/db: user.list 

Log message:
+rmilter


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/02 07:59:09

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

Log message:
update to rspamd-1.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/02 08:01:07

Modified files:
	sys/arch/octeon/dev: octeon_intr.c 

Log message:
Simplify interrupt dispatching by processing requests without
prioritization by IPL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/02 08:01:21

Modified files:
	productivity/baikal: Makefile distinfo 
	productivity/baikal/pkg: PLIST README 
Removed files:
	productivity/baikal/patches: 
	                             patch-Specific_virtualhosts_baikal_nginx 

Log message:
Update to baikal-0.4.6

from Remi Locherer


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/02 08:05:05

Modified files:
	sys/arch/octeon/dev: octeon_intr.c 

Log message:
Drop stale prototypes and an outdated comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/02 08:10:53

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

Log message:
Disable the TX laser when interface is going down for all fiber modules

Previously only multi-rate fiber modules would disable the TX laser, but
newer Intel driver does it for single rate modules as well.  Reminded by
kettenis@, tested by procter@ and Hrvoje Popovski.  Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/02 08:12:41

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

Log message:
Sinc rings are created during attach memory allocations shouldn't sleep


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/02 08:17:40

Modified files:
	mail/rmilter   : Makefile 

Log message:
avoid unnecessary >80col line


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/02 08:19:42

Modified files:
	mail/rspamd    : Makefile 
Added files:
	mail/rspamd/patches: patch-contrib_aho-corasick_CMakeLists_txt 
	                     patch-contrib_hiredis_CMakeLists_txt 
	                     patch-contrib_http-parser_CMakeLists_txt 
	                     patch-contrib_lc-btrie_CMakeLists_txt 
	                     patch-contrib_libottery_CMakeLists_txt 
	                     patch-contrib_linenoise_CMakeLists_txt 
	                     patch-contrib_lpeg_CMakeLists_txt 
	                     patch-contrib_xxhash_CMakeLists_txt 
	                     patch-contrib_zstd_CMakeLists_txt 

Log message:
get rid of some forced -O3


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/02 08:22:57

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

Log message:
Don't overwrite the selected flow control settings

procter@ has noticed that flow control settings survive module change
when they should be forgotten.  It became clear that we're overwriting
the selected FC mode with the requested version instead of keeping
negotiated settings.  Tested by procter@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/02 08:50:29

Modified files:
	sysutils/collectd: Makefile 
	sysutils/collectd/patches: patch-src_processes_c 
Added files:
	sysutils/collectd/patches: patch-src_swap_c patch-src_tcpconns_c 

Log message:
Use KVM_NO_FILES to unbreak processes and swap plugins.

The tcpconns plugin needs more work, using kvm_getfiles(3) or sysctl(3).
Prodded by landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/12/02 08:50:34

Modified files:
	databases/p5-DBD-mysql: Tag: OPENBSD_6_0 Makefile 
Added files:
	databases/p5-DBD-mysql/patches: Tag: OPENBSD_6_0 patch-dbdimp_c 

Log message:
backport fix for CVE-2016-1251 to 4.037
ok afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/02 09:43:45

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
8086:154a is not a QSFP model, possibly just a quad port

Cleanup trailing whitespaces from the previous change while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/02 09:44:03

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/02 09:50:19

Modified files:
	app/cwm        : conf.c 

Log message:
use the correct type


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/02 10:02:17

Modified files:
	app/cwm        : conf.c 

Log message:
Fold unbinding functions into one for each, key and mouse; plugs a leak when
unbinding a mouse button bound to a command.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/02 10:06:13

Modified files:
	sys/net        : switchofp.c 

Log message:
Use the right variable for storing the maximum group table size and use
it to limit the amount of installable groups.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/02 10:10:20

Modified files:
	sys/net        : ofp.h 
	usr.sbin/tcpdump: ofp_map.c 

Log message:
Fix some spelling errors in the OpenFlow header and update the tcpdump(8)
ofp_map.c file.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/02 10:25:34

Modified files:
	sys/net        : switchofp.c 

Log message:
Limit the amount of flows that can be installed on flow tables.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/02 10:38:33

Modified files:
	net            : Makefile 
	net/openconnect: Makefile 
	net/openconnect/pkg: DESCR 

Log message:
- introduce a flavour for a version of openconnect with fewer dependencies
(no smartcard/libproxy support, etc)

- update DESCR


CVSROOT:	/cvs
Module name:	src
Changes by:	vgross@cvs.openbsd.org	2016/12/02 11:32:38

Modified files:
	sys/net        : if.c 

Log message:
Clean up leftovers from r1.442.

Local var 'up' is never set in ifioctl().

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/02 12:28:41

Modified files:
	lib/libcrypto/man: RSA_get_ex_new_index.3 RSA_private_encrypt.3 
	                   RSA_public_encrypt.3 RSA_set_method.3 SHA1.3 
	                   UI_new.3 

Log message:
minor cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/02 14:42:19

Modified files:
	databases/py-sqlparse: Makefile distinfo 
	databases/py-sqlparse/pkg: PLIST 

Log message:
Update to py-sqlparse-0.2.2 and add a py3 flavor


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/02 14:43:14

Modified files:
	databases      : Makefile 

Log message:
+ py-sqlparse,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/02 14:58:24

Modified files:
	net/tor        : Makefile distinfo 

Log message:
Update to tor 0.2.8.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2016/12/02 20:34:33

Modified files:
	sys/arch/luna88k/stand/boot: Makefile 

Log message:
luna88k bootloader needs __ashldi3 to compile sys/lib/libsa/ufs.c 1.26.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/02 22:39:25

Modified files:
	sys/arch/octeon/dev: octeon_intr.c 

Log message:
Implement octeon_intr_disestablish().


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/02 22:52:58

Modified files:
	sys/arch/loongson/loongson: loongson3_intr.c 

Log message:
Fix memory leak.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/03 00:34:39

Modified files:
	sbin/disklabel : disklabel.8 

Log message:
provide missing unit suffixes; from ross l richardson


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/03 00:38:38

Modified files:
	games/quiz/datfiles: elements 

Log message:
elements 113, 115, 117, and 118; from pjanzen


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/03 01:20:51

Modified files:
	devel/libgsf   : Makefile distinfo 

Log message:
Update to libgsf-1.14.41.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 01:54:21

Modified files:
	lib/libssl/man : SSL_get_SSL_CTX.3 SSL_get_error.3 SSL_get_fd.3 
	                 SSL_get_peer_certificate.3 SSL_get_rbio.3 
	                 SSL_get_verify_result.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 02:00:46

Modified files:
	lib/libssl/man : SSL_get_ciphers.3 

Log message:
Add Copyright and license.
Some additional explanations from OpenSSL.
Delete empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 02:03:43

Modified files:
	lib/libssl/man : SSL_get_client_CA_list.3 

Log message:
Add Copyright and license.
Delete the RETURN VALUES section.
The content is completely unrelated to the topic of the page -
that must have been a pasto in the original commit in OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 02:07:56

Modified files:
	lib/libssl/man : SSL_get_current_cipher.3 

Log message:
Add Copyright and license.
Fix the prototype of SSL_get_current_cipher(3).
In the SYNOPSIS, show prototypes rather than #defines.
Some minor improvements from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 02:10:29

Modified files:
	lib/libssl/man : SSL_get_default_timeout.3 

Log message:
Add Copyright and license.
Delete empty RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 02:13:20

Modified files:
	lib/libssl/man : SSL_get_peer_cert_chain.3 

Log message:
Add Copyright and license.
Some additional explanations from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 02:13:56

Modified files:
	lib/libssl/man : SSL_get_session.3 

Log message:
Add Copyright and license.
Minor corrections while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/03 02:14:29

Modified files:
	lib/libssl/man : SSL_get_version.3 

Log message:
Add Copyright and license.
Delete SSLv2 and SSLv3 remnants.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/12/03 03:13:06

Modified files:
	telephony/baresip/rem: Makefile distinfo 

Log message:
Update to rem-0.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/03 04:22:50

Modified files:
	graphics/jpeg  : Makefile 
Added files:
	graphics/jpeg/patches: patch-simd_jsimd_powerpc_c 

Log message:
Enable Altivec acceleration in libjpeg-turbo for the PPC CPUs which support
it - detection is done at runtime.

Patch from Donovan Watteau, thanks!

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/03 04:44:41

Modified files:
	sysutils/collectd: Makefile distinfo 
	sysutils/collectd/patches: patch-Makefile_in 
	                           patch-src_Makefile_in 
	                           patch-src_collectd_conf_in 
	                           patch-src_daemon_Makefile_in 
	                           patch-src_pf_c patch-src_processes_c 
	                           patch-src_swap_c patch-src_tcpconns_c 
	sysutils/collectd/pkg: PLIST-main 
Added files:
	sysutils/collectd/pkg: DESCR-riemann PLIST-riemann 
Removed files:
	sysutils/collectd/patches: patch-configure 
	                           patch-src_libcollectdclient_Makefile_in 

Log message:
Update to collectd 5.6.2.

- put the write_riemann plugin in its own subpackage, depending on
riemann-c-client.
- disable protobuf-c detection/dependency, used by two plugins we dont
enable (pinba and grpc)
- fix some WANTLIB
- the processes and tcpconns plugin still seem to be busted, calling
kvm_openfiles with O_RDONLY|KVM_NO_FILES is apparently not enough.
Interestingly, swap plugin (using the same code) works ?

Based on a diff from Pavel Korovin for 5.6.1, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/03 05:34:35

Modified files:
	lib/libssl     : bs_ber.c s3_clnt.c s3_srvr.c ssl_asn1.c 

Log message:
Avoid signed vs unsigned warnings from clang by adding two casts,
slightly rewriting some code and changing the type of an array.

ok bcook@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/03 05:38:10

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Address a potential leak in ssl3_get_server_kex_ecdhe() - if we allocate
ngroup and the following EC_KEY_set_group() fails, ngroup will not be
freed. Avoid this by freeing on return.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/03 06:36:03

Modified files:
	lib/libcrypto/man: X509_NAME_add_entry_by_txt.3 
	                   X509_NAME_get_index_by_NID.3 
	                   X509_NAME_print_ex.3 
	                   X509_STORE_CTX_get_error.3 
	                   X509_STORE_CTX_new.3 
	                   X509_STORE_set_verify_cb_func.3 
	                   X509_VERIFY_PARAM_set_flags.3 X509_new.3 
	                   X509_verify_cert.3 bn_dump.3 crypto.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2016/12/03 08:46:33

Modified files:
	usr.sbin/smtpd : ioev.c 

Log message:
embed the struct iobuf instead of using a pointer.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2016/12/03 15:52:01

Modified files:
	security/stunnel: Makefile distinfo 

Log message:
update to 5.38


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/12/03 18:32:03

Modified files:
	emulators/snes9x: Makefile 

Log message:
Add another hqx failure to the list...


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/03 23:40:25

Modified files:
	net/py-socks   : Makefile distinfo 

Log message:
Update to py-socks 1.6.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/03 23:51:55

Modified files:
	devel/py-country: Makefile distinfo 

Log message:
Update to py-country 16.11.27.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/04 00:00:53

Modified files:
	devel/py-spark-parser: Makefile distinfo 

Log message:
Update to py-spark-parser 1.5.1


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/04 02:46:39

Modified files:
	sys/net        : route.c 

Log message:
Since net/route.c r1.337 interface priority factors into route priority
when RTF_CONNECTED routes are added to the routing table.
Specify a route priority calculated in the same way when deleting such routes.
Makes route add and delete code paths consistent again.
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/04 03:45:17

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

Log message:
Update to py-requests 2.12.3.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/04 04:32:09

Log message:
    Import premake, a build configuration tool
    
    ok awolk@
    
    pkg/DESCR:
    Premake is a command line utility which reads a scripted definition of
    a software project and, most commonly, uses it to generate project
    files for toolsets like Visual Studio, Xcode, or GNU Make.
    
    Official documentation
    https://github.com/premake/premake-4.x/wiki
    
    Status:
    
    Vendor Tag:	jca
    Release Tags:	jca_20161204
    
    N ports/devel/premake4/Makefile
    N ports/devel/premake4/distinfo
    N ports/devel/premake4/patches/patch-build_gmake_unix_Premake4_make
    N ports/devel/premake4/patches/patch-src_base_os_lua
    N ports/devel/premake4/pkg/PLIST
    N ports/devel/premake4/pkg/DESCR
    N ports/devel/premake4/files/scripts.c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/04 04:35:35

Modified files:
	devel          : Makefile 

Log message:
+premake4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/04 04:41:18

Modified files:
	sysutils/py-ghmi: Makefile distinfo 

Log message:
update to py-ghmi-1.0.13


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/04 04:43:09

Modified files:
	devel/premake4 : Makefile 

Log message:
Err, port mostly from Solene Rapenne, who also takes maintainership.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/04 04:52:51

Modified files:
	sys/arch/octeon/dev: octeon_intr.c 

Log message:
Add handling for the second interrupt bank.
Needed by an upcoming driver.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 05:13:43

Modified files:
	lib/libssl/man : SSL_library_init.3 

Log message:
Add Copyright and license.
In the SYNOPSIS, show prototypes, not #defines.
Delete a note about ancient OpenSSL versions.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 05:17:34

Modified files:
	lib/libssl/man : SSL_read.3 

Log message:
Add Copyright and license.
Merge documentation of SSL_peek(3) from OpenSSL.
Stop taking about SSLv2.
Many wording improvements, most from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 05:20:54

Modified files:
	lib/libssl/man : SSL_load_client_CA_file.3 SSL_rstate_string.3 
	                 SSL_session_reused.3 SSL_set_bio.3 
	                 SSL_set_connect_state.3 SSL_set_fd.3 
	                 SSL_set_session.3 SSL_set_shutdown.3 
	                 SSL_set_verify_result.3 SSL_state_string.3 
	                 SSL_want.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 05:22:48

Modified files:
	lib/libssl/man : SSL_new.3 SSL_shutdown.3 

Log message:
Add Copyright and license.
Stop talking about SSLv2  and SSLv3.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 05:26:05

Modified files:
	lib/libssl/man : SSL_pending.3 

Log message:
Add Copyright and license.
Wording improvements and a bit of additional information from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 05:27:43

Modified files:
	lib/libssl/man : SSL_write.3 

Log message:
Add Copyright and license.
Stop talking about SSLv2 and SSLv3.
Some minor tweaks.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 05:56:40

Modified files:
	lib/libcrypto/man: UI_new.3 

Log message:
Add Copyright and license.
Mention that UI_free(3) accepts NULL.
One minor clarification from OpenSSL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/04 06:40:04

Modified files:
	www/goaccess   : Makefile distinfo 

Log message:
update to goaccess-1.1.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/04 07:20:13

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Convert ssl3_send_server_hello() to CBB.

ok beck@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/04 07:25:44

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Cleanup some of ssl3_send_client_kex_rsa() - tmp_buf is really the
premaster secret, so name it accordingly. Also, remove bogus assignment
of master_key_length - the correct value is assigned when the master_key
is set.

ok beck@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/04 07:32:30

Modified files:
	lib/libssl     : s23_clnt.c s3_clnt.c ssl_lib.c ssl_locl.h 

Log message:
Convert ssl_cipher_list_to_bytes() to CBB, changing the function to return
the number of bytes written via an explicit *outlen argument and retaining
the return value to indicate success or failure.

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/04 07:33:04

Modified files:
	regress/lib/libssl/unit: cipher_list.c 

Log message:
Update regress test to handle change to ssl_cipher_list_to_bytes().


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/04 08:29:46

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-Makefile patch-gitweb_gitweb_perl 
	                   patch-t_test-lib_sh 
	devel/git/pkg  : PLIST-x11 
Added files:
	devel/git/patches: patch-t_t1450-fsck_sh 
	                   patch-t_t4062-diff-pickaxe_sh 

Log message:
Update to git-2.11.0 and fix some tests to make the testsuite run.

ok benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/04 09:52:39

Removed files:
	sysutils/collectd/patches: patch-src_swap_c 

Log message:
Kill useless patch.

This plugin uses swapctl(2), not kvm_getswapinfo(3) (which we don't
provide).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/04 09:56:53

Modified files:
	sysutils/collectd: Makefile 
	sysutils/collectd/patches: patch-src_processes_c 
	                           patch-src_tcpconns_c 

Log message:
Unbreak the kvm(3) calls used by the processes and tcpconns plugins.

- patch the correct kvm_open call to use KVM_NO_FILES.  Also, use
kvm_openfiles instead, as was probably intended
- add a new implementation for tcpconns, based on kvm_getfiles instead
of peeking at kernel memory

ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/04 13:20:44

Modified files:
	net/igmpproxy  : Makefile 
	net/igmpproxy/pkg: README 

Log message:
Misc. tweaks

- kill the end of README
- more precise license marker
- adjust whitespace
- enforce LDFLAGS
- add NO_TEST

ok markus (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/04 13:51:47

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509V3_get_d2i.3 X509_ALGOR_dup.3 
	                   X509_CRL_get0_by_serial.3 
	                   X509_EXTENSION_set_object.3 
	                   X509_LOOKUP_hash_dir.3 

Log message:
import five newish X509 pages from OpenSSL


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/04 14:36:02

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot/patches: patch-doc_mkcert_sh 
	                      patch-src_lib-dcrypt_dcrypt-openssl_c 
	                      patch-src_lib-ssl-iostream_dovecot-openssl-common_c 
	mail/dovecot/pkg: PLIST-server 

Log message:
update to dovecot-2.2.27, and use https HOMEPAGE. From Brad.

CVE-2016-8652 (the version in 6.0 isn't affected): "If auth-policy
component has been activated in Dovecot, then remote user can use
SASL authentication to crash auth component. Workaround is to disable
auth-policy component until fix is in place."


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/04 14:37:30

Modified files:
	mail/dovecot-antispam: Makefile 
	mail/dovecot-antispam/patches: patch-doc_dovecot-antispam_7_txt 
	mail/dovecot-pigeonhole: Makefile 

Log message:
http->https, from Brad.

also fix the local patch to the input file generating dovecot-antispam(7),
which resulted in minor corruption in a table (from me).


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/12/04 15:27:25

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

Log message:
Unlink PidFile on SIGHUP and always recreate it when the new sshd starts.
Regression tests (and possibly other things) depend on the pidfile being
recreated after SIGHUP, and unlinking it means it won't contain a stale
pid if sshd fails to restart.  ok djm@ markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/04 16:54:02

Modified files:
	usr.bin/ssh    : sshconnect2.c 

Log message:
Fix public key authentication when multiple authentication is in use.
Instead of deleting and re-preparing the entire keys list, just reset
the 'used' flags; the keys list is already in a good order (with already-
tried keys at the back)

Analysis and patch from Vincent Brillault on bz#2642; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/04 22:36:14

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/05 00:07:43

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Remove unused variable. From Michael W. Bombardieri <mb@ii.net>. Thanks!


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

Modified files:
	multimedia/mkvtoolnix: Makefile distinfo 

Log message:
Update to mkvtoolnix-9.6.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 02:02:29

Modified files:
	graphics/ffmpeg: Makefile distinfo 
	graphics/ffmpeg/patches: patch-libavcodec_aacenc_c 
	                         patch-libavcodec_aacenc_h 

Log message:
Update to ffmpeg-20161203.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 02:03:09

Modified files:
	x11/mplayer    : Makefile 

Log message:
Sync with new FFMPEG version

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/05 02:28:12

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
Add debug message to print VM's mac addresses (lladdr).


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/05 02:41:51

Modified files:
	sys/net        : switchofp.c 

Log message:
Add missing prototypes for all functions declared in the file.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/05 02:46:31

Modified files:
	sys/net        : switchofp.c 

Log message:
Remove the flow id from the flow entry struct and the global variable,
since they were not being used and the OpenFlow specification doesn't
mention anything about them.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 03:01:13

Modified files:
	net/gnugk      : Makefile 
Added files:
	net/gnugk/patches: patch-yasocket_cxx 

Log message:
Fix UDP sending (from upstream).


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/05 03:05:39

Modified files:
	emulators/advancemame: Makefile distinfo 

Log message:
Update advancemame to 3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/12/05 03:11:39

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

Log message:
Update to p5-Test-Strict-0.39.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/05 03:33:22

Modified files:
	devel/premake4 : Makefile 

Log message:
Use ln -sf in the test setup, so it can run multiple times

ok Solene Rapenne (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/05 03:33:30

Modified files:
	audio/pianobar : Makefile 
Added files:
	audio/pianobar/patches: patch-src_main_c 

Log message:
Exit when no email/password was entered or ^C was pressed
(upstream git commit 18f39b5ac22fe0ab85203f7a471f511d2bf96e28)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/05 03:35:10

Modified files:
	devel/premake4 : Makefile 
Added files:
	devel/premake4/patches: patch-src_host_os_getversion_c 

Log message:
In os.getversion() avoid using a pointer to invalid stack storage.

The comment is wrong, the issue is not specific to glibc...

ok Solene Rapenne (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/05 03:41:33

Modified files:
	usr.sbin/ntpd  : constraint.c 

Log message:
Use the stack to hold the constraint child process variables instead of
using the heap.

ok bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 03:58:07

Modified files:
	usr.bin/doas   : doas.conf.5 

Log message:
Be more explicit about the "args" syntax.
In part from a patch from Anton dot Lindqvist at gmail dot com.
OK tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/05 04:24:50

Modified files:
	www/minitube   : Makefile 
Added files:
	www/minitube/patches: patch-src_gnomeglobalshortcutbackend_cpp 

Log message:
Fix global shortcuts on GNOME
(upstream git commit a649c7114be2612bce72e9c292fab4eb964373a8)


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/05 04:56:19

Modified files:
	audio/mpd      : Makefile 
Added files:
	audio/mpd/patches: patch-src_LogInit_cxx 

Log message:
LogInit: initialize out_fd properly to avoid closing stdin
(upstream git commit 301abac0c1ca55e591b5afc53bf332cda294da19)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/05 05:06:51

Modified files:
	mail/mutt      : Makefile distinfo 

Log message:
update to mutt-1.7.2


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 05:07:57

Modified files:
	lib/libcrypto/man: X509_NAME_ENTRY_get_object.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 05:09:32

Modified files:
	lib/libcrypto/man: X509_NAME_add_entry_by_txt.3 

Log message:
Add Copyright and license.
Merge correction of buggy EXAMPLES from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 05:11:26

Modified files:
	lib/libcrypto/man: X509_NAME_get_index_by_NID.3 

Log message:
Add Copyright and license.
More explanations about X509_NAME_get_index_by_NID(3) from OpenSSL.
Merge a typo fix in EXAMPLES from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 05:12:59

Modified files:
	lib/libcrypto/man: X509_NAME_print_ex.3 

Log message:
Add Copyright and license.
Better explain the last argument of X509_NAME_oneline(3), from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/05 05:16:55

Modified files:
	sys/net        : switchofp.c 

Log message:
Propagate error type in validation functions that call
swofp_validate_action(), because actions have a different class of errors.
While there update the error type and error variables type to match the
swofp_send_error() prototype.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 05:50:07

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_PUBKEY_new.3 

Log message:
import X509_PUBKEY_new(3) from OpenSSL


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 06:17:31

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Remove the ugly temporary quirks.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 06:38:05

Modified files:
	lib/libcrypto/man: X509_STORE_CTX_get_error.3 

Log message:
Copyright and license.
Never include <openssl/x509_vfy.h> directly; from OpenSSL.
Merge a typo fix from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 06:38:58

Modified files:
	lib/libcrypto/man: X509_STORE_CTX_new.3 

Log message:
Add Copyright and license.
Mention that X509_STORE_CTX_free(3) accepts NULL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 06:39:33

Modified files:
	lib/libcrypto/man: X509_STORE_CTX_set_verify_cb.3 
	                   X509_VERIFY_PARAM_set_flags.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/05 06:40:40

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.803


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/05 06:57:20

Modified files:
	net/hping      : Makefile distinfo 
	net/hping/patches: patch-Makefile_in patch-getlhs_c patch-main_c 
	                   patch-waitpacket_c 
	net/hping/pkg  : DESCR PLIST 
Added files:
	net/hping/patches: patch-sendip_c 
Removed files:
	net/hping/patches: patch-bytesex_h 

Log message:
Update to hping3

- drop privs to a dedicated user
- in case of error, print a message regarding pf blocking pf blocking
outgoing packets
- do not activate Tcl support (for now?)

Input and ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/05 06:58:14

Modified files:
	infrastructure/db: user.list 

Log message:
Dedicated user for net/hping


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/12/05 07:22:34

Modified files:
	share/misc     : inter.phone 

Log message:
Add missing area codes for Poland, and fix an erroneous entry.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/05 08:00:13

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.805


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/12/05 08:04:15

Modified files:
	sys/arch/loongson/dev: kb3310.c stsec.c 
	sys/arch/macppc/dev: apm.c 

Log message:
Harmonize battery state thresholds accross platforms.

Use the same values hardcoded in sys/dev/acpi/acpi.c where possible.

OK visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/05 08:19:30

Modified files:
	net/nagios/nsca-ng: Makefile distinfo 

Log message:
update to nsca-ng-1.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/05 08:21:35

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

Log message:
update to scamper-20161204


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/05 08:31:44

Modified files:
	sys/netinet    : igmp.c in.c 

Log message:
Remove recursive splsoftnet()s in ioctl(2) path.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 08:34:21

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
If we end up creating a rollback tarball from an empty list of files, it means
we are missing a base set. In this case, error out right away or we may end up
having the patch supposedly installed but without its corresponding rollback
tarball.
For now we only support *full* installations.

installed patches mismatch reported by Marc Benslahdine


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 08:56:46

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_check_ca.3 X509_check_host.3 
	                   X509_check_issued.3 

Log message:
import three X509_check_*(3) manuals from OpenSSL


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 09:11:17

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Explicit error when running on unsupported release.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 09:13:19

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_STORE_set1_param.3 

Log message:
import the relevant parts of X509_STORE_get0_param(3) from OpenSSL, but
since we don't have that function, call the page X509_STORE_set1_param(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 09:15:56

Modified files:
	textproc/icu4c : Makefile distinfo 
	textproc/icu4c/patches: patch-source_common_Makefile_in 
	                        patch-source_common_putilimp_h 
	                        patch-source_config_Makefile_inc_in 
	                        patch-source_config_icu-config-bottom 
	                        patch-source_config_mh-bsd-gcc 
	                        patch-source_icudefs_mk_in 
	                        patch-source_stubdata_Makefile_in 
	textproc/icu4c/pkg: PLIST 
Added files:
	textproc/icu4c/patches: patch-source_common_ulist_c 
	                        patch-source_i18n_ucol_res_cpp 
	                        patch-source_test_intltest_apicoll_cpp 
	                        patch-source_test_intltest_apicoll_h 

Log message:
Update to icu4c-58.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 09:16:23

Modified files:
	games/openttd  : Makefile 

Log message:
Sync WANTLIB after recent icu4c update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 09:16:55

Modified files:
	textproc/py-ICU: Makefile distinfo 
	textproc/py-ICU/patches: patch-setup_py 

Log message:
Update to py-ICU-1.9.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/05 09:17:38

Modified files:
	editors/libreoffice: Makefile 
Added files:
	editors/libreoffice/patches: patch-download_lst 
	                             patch-external_icu_icu-ubsan_patch_0 
	                             patch-external_icu_icu4c-warnings_patch 
	                             patch-i18npool_source_breakiterator_breakiterator_unicode_cxx 
	                             patch-i18nutil_source_utility_unicode_cxx 
	                             patch-include_svx_ucsubset_hrc 
	                             patch-svx_source_dialog_charmap_cxx 
	                             patch-svx_source_dialog_ucsubset_src 

Log message:
Fix build with ICU 58.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/05 09:38:24

Modified files:
	lib/libcrypto/man: X509V3_get_d2i.3 X509_ALGOR_dup.3 
	                   X509_LOOKUP_hash_dir.3 X509_PUBKEY_new.3 
	                   X509_STORE_set1_param.3 X509_check_ca.3 
	                   X509_check_host.3 X509_check_issued.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/05 10:27:13

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

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/05 10:45:55

Modified files:
	devel/ruby-subset_sum: Makefile distinfo 

Log message:
Update to ruby-subset_sum 1.0.2

Fix tests and HOMEPAGE.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 11:24:08

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_get_pubkey.3 X509_get_serialNumber.3 
	                   X509_get_subject_name.3 X509_get_version.3 
	                   X509_sign.3 X509v3_get_ext_by_NID.3 

Log message:
import the relevant parts of six more X509 manuals from OpenSSL


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 11:25:07

Modified files:
	lib/libcrypto/man: X509_CRL_get0_by_serial.3 

Log message:
delete two cross references to functions we don't have


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/05 11:25:24

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 

Log message:
update to specinfra-2.66.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 11:26:16

Modified files:
	lib/libcrypto/man: X509_new.3 

Log message:
Add Copyright and license.
Merge documentation of X509_up_ref(3) from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 11:26:35

Modified files:
	lib/libcrypto/man: X509_verify_cert.3 

Log message:
Copyright and locense


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/05 11:26:44

Modified files:
	sysutils/ruby-puppet-syntax: Makefile distinfo 

Log message:
update to puppet-syntax-2.2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/05 11:28:14

Modified files:
	devel/p5-Term-Screen: Makefile distinfo 

Log message:
update to p5-Term-Screen-1.06


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/05 11:28:31

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
update to vala-0.34.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/05 11:30:06

Modified files:
	textproc/p5-XML-Twig: Makefile distinfo 

Log message:
update to p5-XML-Twig-3.52


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/05 11:41:09

Modified files:
	games/solarus/solarus: Makefile distinfo 

Log message:
update to solarus-1.5.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 12:13:30

Modified files:
	lib/libssl/man : d2i_SSL_SESSION.3 

Log message:
Add Copyright and license.
Add one cross reference, from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/05 12:41:46

Modified files:
	lib/libcrypto/man: X509_new.3 X509v3_get_ext_by_NID.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/12/05 13:08:34

Modified files:
	distrib/octeon/ramdisk: Makefile 

Log message:
Use makefs to build bsd.rd; tested by visa


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/12/05 13:09:43

Modified files:
	faq            : faq14.html 

Log message:
note that stacking raid and disk encryption is currently unsupported.
tweak wording while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 13:30:12

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_PrivateKey.3 

Log message:
import d2i_PrivateKey(3) from OpenSSL


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 13:32:19

Modified files:
	lib/libcrypto/man: d2i_ASN1_OBJECT.3 d2i_DHparams.3 
	                   d2i_ECPKParameters.3 d2i_X509_ALGOR.3 
	                   d2i_X509_CRL.3 d2i_X509_NAME.3 d2i_X509_REQ.3 
	                   d2i_X509_SIG.3 i2d_PKCS7_bio_stream.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 13:36:19

Modified files:
	lib/libcrypto/man: d2i_DSAPublicKey.3 d2i_RSAPublicKey.3 

Log message:
Add Copyright and license.
Merge documentation of some additional {d2i,i2d}_{D,R}SA_PUBKEY_{bio,fp}(3)
functions from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 13:37:08

Modified files:
	lib/libcrypto/man: d2i_PKCS8PrivateKey_bio.3 

Log message:
Add Copyright and license.
Update a cross reference, from OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/05 13:39:08

Modified files:
	lib/libcrypto/man: d2i_X509.3 

Log message:
Add Copyright and license.
Merge documentation of d2i_X509_AUX(3) and i2d_X509_AUX(3) from OpenSSL.
Correct the prototype of d2i_X509(3), from OpenSSL.
Merge warnings against "reuse" functionality from OpenSSL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/05 13:44:33

Modified files:
	education/verbiste: Makefile distinfo 

Log message:
Update to 0.1.44: fixes to the *croitre verbs; options --mode and --tense
now accept a comma-separated list.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/12/05 14:03:33

Modified files:
	games/yquake2  : Makefile distinfo 

Log message:
Update games/yquake2 5.34 => 6.00
OK abieber@

Upstream changelog:

Quake II 5.34 to 6.00:
- Make the client asynchronous. The old behaviour can be forced by
setting cl_async to 0. Please note that asynchronicity can lead to
problems if the old SDL 1.2 backend is used and vsync is enabled.
- Implement gl_overbrightbits in the non multitexturing case.  A value
of 1 just fixes lighting on water surfaces, higher values increase
the brightness of everything.
- General renderer overhaul for better compatibility with modern GPUs.
OpenGL 1.4 is now required, older versions are no longer supported.
Multitexturing was deprecated and will be removed in a future release.
- Fix some longstanding AI problems.
- Several general gameplay fixes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/12/05 14:48:15

Modified files:
	www/sope       : Makefile distinfo 

Log message:
Update to 2.3.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/12/05 14:48:35

Modified files:
	www/sogo       : Makefile distinfo 
	www/sogo/patches: patch-UI_Scheduler_UIxCalListingActions_m 
	                  patch-configure 
	www/sogo/pkg   : PLIST 

Log message:
Update to 2.3.18


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/05 15:39:25

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

Log message:
Also print the mtu when showing interface details

ok sthen@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/05 16:21:10

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

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/05 17:01:55

Modified files:
	sys/net        : pf.c 

Log message:
Use the sizeof udphdr not the sizeof a pointer to it in the af-to
specific part of pf_test_state_icmp().  This worked by accident on LP64
archs as the struct is eight bytes long.

ok mikeb@ bluhm@ krw@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/05 19:41:28

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
avoid a potentially uninitialised return value
ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/06 00:48:01

Modified files:
	usr.bin/ssh    : ssh.c 

Log message:
make IdentityFile successfully load and use certificates that have no
corresponding bare public key. E.g. just a private id_rsa and certificate
id_rsa-cert.pub (and no id_rsa.pub).

bz#2617 ok dtucker@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 01:49:21

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-1.3.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 01:51:35

Modified files:
	misc/shared-mime-info: Makefile distinfo 

Log message:
Update to shared-mime-info-1.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 01:55:06

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

Log message:
Update to py-botocore-1.4.82.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 01:55:18

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.25.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 02:17:08

Modified files:
	audio/easytag  : Makefile distinfo 
	audio/easytag/pkg: PLIST 

Log message:
Update to easytag-2.4.3.
- drop the gettext MODULE


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 03:29:04

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Tweak comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/06 03:38:08

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

Log message:
The kvop is not mandatory to query the type, fixes hostctl -t on vmm(4) VMs.

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 04:10:00

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Catch mtree(8) error; it's only run when applying patches and we already
check for read-only... in this case.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 05:24:33

Modified files:
	lib/libcrypto/man: BIO_f_buffer.3 BIO_s_bio.3 BUF_MEM_new.3 
	                   crypto.3 lh_stats.3 
	lib/libssl/man : DTLSv1_listen.3 SSL_accept.3 SSL_connect.3 
	                 SSL_do_handshake.3 SSL_get_fd.3 SSL_get_rbio.3 
	                 SSL_read.3 SSL_set_bio.3 SSL_set_fd.3 
	                 SSL_shutdown.3 SSL_write.3 

Log message:
replace all references to BIO(3) with references to BIO_new(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 05:54:19

Modified files:
	lib/libcrypto/man: BIO_new.3 BIO_push.3 Makefile 
Removed files:
	lib/libcrypto/man: BIO.3 

Log message:
We don't want section 3 manual pages with names that do not correspond
to functions, so delete the BIO(3) manual page and merge its content
into BIO_new(3) and BIO_push(3).

Sort the content of BIO_new(3) into a logical order
and improve the wording in various ways.
Add the required cross references to BIO_push(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/06 05:57:20

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

Log message:
Make sure iwm(4) only calls ieee80211_mira_choose() while in RUN state.
Should fix "panic: timeout_add: not initialized" reported by danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/12/06 06:00:19

Modified files:
	www/otter-browser: Makefile distinfo 
	www/otter-browser/pkg: PLIST 

Log message:
Port changes:
- dependency on libgcrypt dropped by upstream
- 1 new locale file

Notes:
The tab-bar changes are quite new and expect to hit bugs there.
Ie. the current one I am seeing is turning thumbnails on and then off
leads to the tabs not being visible until restart.

You can report problems directly upstream:
https://github.com/OtterBrowser/otter-browser/issues
or relay them via me.

Upstream highlights since beta 11:

* fixes, optimatizations and new predefined profiles for content blocking;
* overhaul of tab bar:
* allow to detach tabs by dragging them away;
* allow to drop URLs and tabs from other windows;
* added option to show embedded tab thumbnails;
* improved handling of visibility of close button;
* tabs demanding attention are drawn using bold font;
* improved RTL support;
* decreased default tab padding;
* tab text is no longer centered horizontally;
* fixed status tip messages while rearranging tabs.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/06 06:17:52

Modified files:
	lib/libssl     : s3_both.c s3_clnt.c s3_lib.c s3_srvr.c 
	                 ssl_locl.h 

Log message:
Convert certificate handshake message generation to CBB, with some clean
up and restructure.

This also adds CBB based variants of the ssl3_handshake_msg_{start,finish}
functions - for the time being these use a CBB to build the messages, then
copy back into the init_buf.

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/06 06:38:11

Modified files:
	lib/libssl     : d1_both.c d1_clnt.c d1_srvr.c ssl_locl.h 

Log message:
Now that ssl3_send_{client,server}_certificate() are using the common
handshake functions, we can remove more copied code from DTLS.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/06 06:42:32

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Convert ssl3_send_client_kex_rsa() to CBB.

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/06 06:43:52

Modified files:
	lib/libcrypto/man: BIO_new.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/06 06:44:43

Modified files:
	regress/sbin/route: rttest14.ok rttest16.ok 

Log message:
Update to match recent changes.

IPv6 multicast "All Nodes Address" and "All Routers Address" routes are
now attached to the corresponding interface.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/06 07:01:43

Modified files:
	etc            : netstart 

Log message:
Do not lose the default route when netstart(8) is run a second time on
the interface pointed to by the default route.

Since the kernel no longer keep routes with dangling address pointer,
netstart(8) has to re-add the default route when the corresponding ifa
has been deleted and re-created.

deraadt@ points out that even if the previous semantic was not necessarily
better, a script like netstart(8) cannot totally fix the default route
problem.

Regression reported by and fix tested by Hrvoje Popovski.

ksh foo checked by halex@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 07:29:51

Modified files:
	lib/libcrypto/man: crypto.3 

Log message:
Add Copyright and license.

Mention AES, Chacha20, ECDSA, OCSP, OPENSSL_config.
Improve many cross references.
Convert the table into some real text and polish some wording.

Stop talking about SSL.
Drop vague references to undocumented internals (objects, stack, txt_db).
Delete verbiage that says nothing or is duplicate.

Ultimately, the content of this page should be merged into
OPENSSL_init_crypto(3), but we don't have that function yet,
so the merge has to wait.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/06 07:44:23

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

Log message:
update to ImageMagick-6.9.6-7


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 07:45:08

Modified files:
	lib/libcrypto/man: BIO_ctrl.3 BIO_f_base64.3 BIO_f_cipher.3 
	                   BIO_f_md.3 BIO_f_null.3 BIO_find_type.3 
	                   BIO_read.3 BIO_s_accept.3 BIO_s_connect.3 
	                   BIO_s_fd.3 BIO_s_file.3 BIO_s_mem.3 
	                   BIO_s_null.3 BIO_s_socket.3 
	                   BIO_set_callback.3 BIO_should_retry.3 
	                   PEM_read_bio_PrivateKey.3 
	                   PEM_write_bio_PKCS7_stream.3 
	                   d2i_PKCS8PrivateKey_bio.3 
	                   i2d_PKCS7_bio_stream.3 

Log message:
make sure that all the BIO pages point back to the master page BIO_new(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 07:54:55

Modified files:
	lib/libcrypto/man: EC_GFp_simple_method.3 EC_GROUP_copy.3 
	                   EC_GROUP_new.3 EC_KEY_new.3 EC_POINT_add.3 
	                   EC_POINT_new.3 OCSP_REQUEST_new.3 
	                   OCSP_cert_to_id.3 OCSP_request_add1_nonce.3 
	                   OCSP_resp_find_status.3 
	                   OCSP_response_status.3 OCSP_sendreq_new.3 
	                   d2i_ECPKParameters.3 d2i_PrivateKey.3 

Log message:
Delete most references to crypto(3).  That page isn't useful enough
to be pointed to from random individual pages.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/06 08:03:13

Modified files:
	app/cwm        : conf.c 

Log message:
'window-search' is spelled 'menu-window'; the former snuck in during the
conversion('menu-window' already existed and was properlly documented); found
the hard way by sthen@ while trying to convert.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 08:04:25

Modified files:
	lib/libcrypto/man: X509V3_get_d2i.3 

Log message:
We don't support Certificate Transparency Extensions and
we don't define preprocessor constants for the related NIDs,
so delete the subsection discussing them.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 08:15:26

Modified files:
	lib/libcrypto/man: evp.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 08:22:12

Modified files:
	lib/libcrypto/man: x509.3 

Log message:
Copyright and license


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2016/12/06 08:40:09

Modified files:
	lang/go        : Makefile distinfo 
	lang/go/pkg    : PLIST 
Added files:
	lang/go/patches: patch-src_time_time_test_go 

Log message:
Update lang/go to 1.7.4.

This release addresses a security issue with net/http package's
Request.ParseMultipartForm method:

https://golang.org/doc/devel/release.html#go1.7.minor

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2016/12/06 08:54:42

Modified files:
	games/ioquake3 : Makefile distinfo 

Log message:
Bring ioquake3 to the latest, this update includes the switch to the
opengl2 renderer!

Full change set:
https://github.com/ioquake/ioq3/compare/9d6a95d4ad141237e21e5c57281b099bbc27a072...ab8bcf5c5b3c4105b051d95e440f9ed17736a99d

OK awolk@, bmercer@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 09:01:02

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Better matching and remove a useless use of sort(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/06 09:09:40

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

Log message:
Let X552 SFP+ boot without a module plugged in

Due to insufficient error handling X552 SFP+ card isn't configured
properly on boot when an SFP+ module is not plugged in.  As a side
effect the interface becomes completely unusable afterwards.

The issue was discovered and fix tested by Hrvoje Popovski, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/06 09:13:01

Modified files:
	sys/dev/pci    : if_ix.c 

Log message:
Improve error handling and don't fail if SFP module is not present;
tested by Hrvoje Popovski, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/06 09:16:12

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Missed in previous.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/06 09:21:20

Modified files:
	sys/dev/pci    : ixgbe_x550.c 

Log message:
Don't forget to return an error


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/06 09:27:33

Modified files:
	sys/arch/mips64/include: pmap.h 

Log message:
Get PTE shift using PTE_LOG.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/06 09:28:06

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/06 09:55:51

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
X557 is the name of an external PHY not the PCI device

Rename 8086:15a[abce] back to X552, give 8086:15ad a proper moniker
X552/X557-AT and the yet-unreleased parts 8086:15c* are tentatively
named X553.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/06 09:56:08

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/06 10:02:25

Modified files:
	devel/py-test  : Makefile distinfo 

Log message:
Update to py-test 3.0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/12/06 10:24:02

Modified files:
	devel/arm-none-eabi: Makefile.inc 
	devel/arm-none-eabi/binutils: Makefile 
	devel/arm-none-eabi/binutils/pkg: DESCR PLIST 
	devel/arm-none-eabi/gcc-linaro: Makefile 
	devel/arm-none-eabi/gcc-linaro/pkg: DESCR PLIST 
Added files:
	devel/arm-none-eabi/binutils/pkg: PFRAG.aarch64 PFRAG.arm 
	devel/arm-none-eabi/gcc-linaro/patches: 
	                                        patch-gcc_config_aarch64_geniterators_sh 
	devel/arm-none-eabi/gcc-linaro/pkg: PFRAG.aarch64 PFRAG.arm 

Log message:
Split devel/arm-none-eabi into two FLAVORs so that we can use the same
port to compile gcc and binutils targeted for either ARM or AArch64.

ok zhuk@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/12/06 10:25:29

Modified files:
	devel/arm-none-eabi: Makefile 

Log message:
+arm-none-eabi/binutils,aarch64
+arm-none-eabi/gcc-linaro,aarch64


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 11:40:31

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_SESSION_new.3 

Log message:
New manual page SSL_SESSION_new(3) written from scratch.

The function prototype is listed in ssl(3) and <openssl/ssl.h>, so
it's clearly a public interface, but OpenSSL has no documentation
about it whatsoever.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 11:53:55

Modified files:
	lib/libssl/man : SSL_SESSION_free.3 

Log message:
Add Copyright and license.
Garbage collect empty RETURN VALUES section.
Delete useless cross reference to ssl(3).
Add cross reference to SSL_SESSION_new(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/12/06 12:46:11

Modified files:
	distrib/sgi/ramdisk: Makefile 

Log message:
Use makefs to build bsd.rd; build & boot tested by visa


CVSROOT:	/cvs
Module name:	www
Changes by:	awolk@cvs.openbsd.org	2016/12/06 13:41:33

Modified files:
	faq            : faq15.html 

Log message:
Point pkg_sign(1) man link at 6.0 release

pkg_sign -s syntax changed between 6.0 and -current
point the man page at the version in sync with the FAQ
content and mark it with XXXrelease to be reverted
for the 6.1 FAQ post release.

Pointed out by: _gypcio on IRC Freenode

OK tj@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/06 14:00:13

Modified files:
	app/cwm        : client.c 

Log message:
Set dim.{x,y} during client_init and update on resize, instead of
(re)calculating only when applying hints.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/06 14:03:58

Modified files:
	app/cwm        : mousefunc.c 

Log message:
Now that dim.{x,y} are available early, use them before requiring a
MotionNotify event.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/06 14:09:22

Modified files:
	app/cwm        : kbfunc.c 

Log message:
Consistent use of menuq_add for ssh menu.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/06 14:54:10

Modified files:
	app/cwm        : calmwm.h kbfunc.c menu.c search.c 

Log message:
Add search_print_text(), a default callback for mi->print in menu_filter(). While
here, normalize the remaining search_print_* argument paramters.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/06 14:59:33

Modified files:
	app/cwm        : client.c conf.c menu.c 

Log message:
stray newlines


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/06 15:09:07

Modified files:
	net/unifi      : Makefile distinfo 
	net/unifi/pkg  : PLIST 

Log message:
update to unifi-5.3.8


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/06 15:32:59

Modified files:
	lib/libc/net   : linkaddr.c 

Log message:
CVE-2016-6559: fix potential buffer overflow(s) in link_ntoa(3).
A specially crafted struct sockaddr_dl argument can trigger a stack
overflow of a static buffer in libc.  An attacker may be able to
use this to write to arbitrary locations in the data segment.
From FreeBSD (glebius); OK deraadt@ mestre@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/06 15:39:49

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/pkg  : PLIST-doc 
Added files:
	lang/rust/patches: patch-mk_cfg_i686-unknown-openbsd_mk 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_mod_rs 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_other_b32_mod_rs 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_other_b64_mod_rs 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_other_mod_rs 
	                   patch-src_librustc_back_target_i686_unknown_openbsd_rs 
	                   patch-src_librustc_back_target_mod_rs 
	                   patch-src_librustc_back_target_openbsd_base_rs 
	                   patch-src_librustc_trans_cabi_x86_rs 
	lang/rust/pkg  : PFRAG.b32-doc PFRAG.b64-doc 

Log message:
Add support for i386 to rust. From semarie (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 15:41:16

Modified files:
	lib/libssl/man : SSL_CTX_get_ex_new_index.3 
	                 SSL_CTX_set_tmp_rsa_callback.3 
	                 SSL_SESSION_get_ex_new_index.3 
	                 SSL_SESSION_get_time.3 
	                 SSL_get_ex_data_X509_STORE_CTX_idx.3 
	                 SSL_get_ex_new_index.3 

Log message:
Copyright and license for the remaining manuals in this directory


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 15:55:35

Modified files:
	lib/libssl/man : SSL_CTX_set_tmp_rsa_callback.3 

Log message:
s/SSL_CTX_need_tmp_rsa/SSL_CTX_need_tmp_RSA/
because that's what <openssl/ssl.h> #defines.

That's likely a typo in the header file because all the other
functions are called *tmp_rsa*().  But it would be a bad idea to
fix such a bug in interfaces that are only provided for backward
compatibility in the first place, so i'm adjusting the manual to
be bug-compatible with the code, for now.

But, pretty please, for the next major bump, somebody go get Bob's
flensing knife and excise this part of the interface.  Like, export
ciphers?  Really?


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/06 16:45:34

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_SESSION_print.3 

Log message:
An SSL_SESSION_print(3) manual written from scratch.  It's clearly
a public interface since it's listed both in ssl(3) and in
<openssl/ssl.h>.  Nothing to pilfer from OpenSSL in this case...


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/12/06 16:57:32

Modified files:
	faq            : faq10.html 
	faq/pf         : macros.html 

Log message:
replace a couple telnet examples with something more modern.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/06 18:05:47

Modified files:
	lib/libc/net   : linkaddr.c 

Log message:
Fix a typo, decrement rem, don't increment for single digit hex bytes.
From Henri Kemppainen


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/06 21:08:00

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/06 23:59:58

Modified files:
	devel/py-tz    : Makefile distinfo 
	devel/py-tz/pkg: PLIST 

Log message:
Update to pytz 2016.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/07 01:29:36

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.83.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/07 01:29:49

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.26.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/07 01:38:53

Modified files:
	net/munin      : Makefile distinfo 

Log message:
bugfix update to munin-2.0.28


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/07 02:16:13

Modified files:
	usr.bin/tmux   : key-bindings.c server-client.c 

Log message:
Make prefix work in all tables (except the prefix table). Users who want
to avoid this can set prefix to "none" and bind send-prefix
themselves. Allows C-b t be bound in the copy mode tables again, pointed
out by millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/07 02:16:55

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Only skip moving the cursor if it is already in the last position _on
the same line_, fixes redraw bug reported by patrick keshishian.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/07 03:47:46

Log message:
    Import paper-gtk-theme-2.1.0.
    
    Paper is a modern desktop theme suite. Its design is mostly flat with a minimal
    use of shadows for depth.
    <...>
    
    ok robert@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161207
    
    N ports/x11/paper-gtk-theme/Makefile
    N ports/x11/paper-gtk-theme/distinfo
    N ports/x11/paper-gtk-theme/pkg/DESCR
    N ports/x11/paper-gtk-theme/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/07 03:48:45

Log message:
    Import paper-icon-theme-1.3.4.
    
    Paper is a modern freedesktop icon theme whose design is based around the use
    of bold colours and simple geometric shapes to compose icons. Each icon has
    been meticulously designed for pixel-perfect viewing.
    <...>
    
    ok robert@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20161207
    
    N ports/x11/paper-icon-theme/Makefile
    N ports/x11/paper-icon-theme/distinfo
    N ports/x11/paper-icon-theme/pkg/DESCR
    N ports/x11/paper-icon-theme/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/07 03:49:41

Modified files:
	x11            : Makefile 

Log message:
+paper-gtk-theme
+paper-icon-theme


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/07 05:38:43

Modified files:
	databases/redis: Makefile distinfo 

Log message:
Bugfixing update to redis-3.2.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/07 05:47:10

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.807


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/07 06:17:33

Modified files:
	lib/libssl     : ssl_asn1.c 

Log message:
Ensure that we zero memory used to hold the ASN.1 encoded session, since
this contains the session master key.

ok deraadt@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/07 06:18:38

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Ensure that we zero memory that contiansthe ASN.1 encoded session, since
this contains the session master key.

ok deraadt@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/07 06:19:18

Modified files:
	usr.sbin/dhcrelay: dhcpd.h dhcrelay.c dispatch.c 

Log message:
Rename function discover_interfaces into get_interface and change its
prototype to be more useful.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/07 06:40:17

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Convert ssl3_send_client_kex_dhe() to CBB.

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 07:38:43

Modified files:
	lib/libssl/man : SSL_load_client_CA_file.3 

Log message:
Add documentation for SSL_add_file_cert_subjects_to_stack(3) and
SSL_add_dir_cert_subjects_to_stack(3), written from scratch.
Both functions are listed in ssl(3) and <openssl/ssl.h> and recommended
for the use by browsers in source code comments, so they are clearly
public interfaces.

Mention deduplication.
Purge some duplicate text and improve some wording while here.
Two additional cross references instead of the useless ssl(3).
Add HISTORY, AUTHORS, and BUGS.

It is depressing that BUGS (purely from code inspection) became
longer than the DESCRIPTION.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:11:41

Modified files:
	sys/dev/pv     : xen.c 

Log message:
Remove some leftovers from before the dynamic grant table code


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:13:23

Modified files:
	sys/dev/pv     : xenstore.c 

Log message:
Return proper error values from xs_{get,set}prop


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 08:14:34

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_dup_CA_list.3 

Log message:
New SSL_dup_CA_list(3) manual written from scratch.
Mentioned in ssl(3) and <openssl/ssl.h>, so it is public.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:18:02

Modified files:
	sys/dev/pv     : xenstore.c 

Log message:
Factor out the polling loop into a separate function


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:21:04

Modified files:
	sys/dev/pv     : xenstore.c xenvar.h 

Log message:
Add a simple mechanism to poll for a change in the property value


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:26:43

Added files:
	sys/dev/pv     : xbf.c 

Log message:
A driver for Xen Blkfront heavily based on vdsk(4) from kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:30:04

Modified files:
	sys/dev/pv     : files.pv 

Log message:
Add xbf(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/07 08:36:50

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Cleanup syspatch directories that do not contain a tarball; it means it
was not applied properly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/07 08:37:27

Modified files:
	converters/p5-Net-IDN-Encode: Makefile distinfo 
Removed files:
	converters/p5-Net-IDN-Encode/patches: 
	                                      patch-lib_Net_IDN_Punycode_xs 

Log message:
update p5-Net-IDN-Encode to 2.301
patch has been applied upstream
sort makefile according to template


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:37:45

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
Add a commented out entry for xbf(4)

xbf(4) driver creates a shim on top of Xen I/O rings and exports
it as a SCSI adaptor with a single target for a disk or a cdrom.
The disks that are attached to it are managed by the sd(4) driver,
but thankfully OpenBSD users do not require any migration strategy
to move from emulated wd(4) disks to paravirtualized ones since
disklabel UIDs are used by default in /etc/fstab making referencing
particular partitions independent from the underlying device driver.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/07 08:48:44

Modified files:
	sys/dev/pci    : if_iwn.c if_iwnvar.h 

Log message:
Add mira support to iwn(4).
Please let me know about any regressions.

Tested by myself, tb@, okan@, jca@, naddy@, mlarkin@
ok tb@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:51:27

Added files:
	share/man/man4 : xbf.4 

Log message:
xbf(4) manual page


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:53:05

Modified files:
	share/man/man4 : pvbus.4 Makefile 

Log message:
Add xbf(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 08:54:06

Modified files:
	share/man/man4 : ix.4 

Log message:
Mention X552, don't mention X557 which is a PHY


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/07 09:41:17

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 

Log message:
pledge(2) dhcrelay with "stdio route".  route is needed for interface ioctls.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 10:09:07

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_dup.3 

Log message:
Write new SSL_dup(3) manual from scratch.  This function is listed
in ssl(3) and <openssl/ssl.h>, so it is clearly public.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/07 10:11:09

Modified files:
	share/man/man4 : pvbus.4 xbf.4 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/12/07 10:28:27

Modified files:
	devel/arm-none-eabi/newlib: Makefile 

Log message:
Missed bump, found by naddy.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/07 10:58:52

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 11:09:31

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_copy_session_id.3 

Log message:
Write SSL_copy_session_id(3) manual from scratch.  This function is
listed in ssl(3) and <openssl/ssl.h>, so it's clearly a public interface.

We might wish to merge the improved code from OpenSSL 1.1.0,
but that's major bump, so i'm documenting the BUGS for now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/07 11:31:55

Modified files:
	converters/p5-Net-IDN-Encode: Makefile distinfo 

Log message:
update p5-Net-IDN-Encode to 2.302


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 11:33:45

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
splbio isn't doing us any good here and prevents polling from working


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 11:47:23

Modified files:
	lib/libssl/man : SSL_read.3 

Log message:
add missing .Nm SSL_peek in the NAME section


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 12:17:52

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Fall back to the minimum amount of ring pages

Some AWS volumes lack both max-ring-page-order and max-ring-pages
properties so we have to default to a minimum amount of 1 ring page.
Noticed and fix tested by reyk@ on EC2.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/07 12:47:40

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/07 12:51:48

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 

Log message:
If the BROADCAST flag is set on a BOOTREPLY, the RFC specifies that
we SHOULD forward the packet not only as L3 broadcast, but also as
L2 broadcast.  Apparently that helps on older machines that can't
handle L2 unicast replies.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/07 13:03:22

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 

Log message:
DHCP requests can be relayed through multiple relays.  Currently we
drop requests that have already been relayed.  To allow usage in the
middle of a chain, remove this check and only set giaddr if it has not
been set yet.  This giaddr will be used by the DHCP server to identify
which subnet the client is connected to.

RFC 1542 specifies that we should increase the hop counter every time
we relay a request.  If we receive a request whose hop counter exceeds
the value of 16 we must silently drop it.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 13:11:55

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_renegotiate.3 

Log message:
Write SSL_renegotiate(3) manual from scratch; this function is listed
in ssl(3) and <openssl/ssl.h>, so it's clearly a public interface.

More could probably be said, the code looks somewhat mysterious to me,
but i think this stub is already better than nothing.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/07 13:18:54

Modified files:
	regress/usr.sbin/arp: arptest1.ok arptest2.ok arptest3.ok 
	                      arptest4.ok arptest5.ok arptest6.ok 

Log message:
Spacing in arp -a output has changed, adapt test.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 14:06:55

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Response status field is signed; adjust the debug message


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/07 14:08:55

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Add required padding to the response descriptor

Xen source code relies on the compiler to pad members of the structure
representing the descriptor layout in memory; we're however trying to
be more defensive and define packed structures.

Figured out the hard way with reyk@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/07 14:23:47

Modified files:
	graphics/pdf2djvu: Makefile 

Log message:
Move MASTER_SITES to github.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 15:57:36

Modified files:
	usr.bin/mandoc : read.c 

Log message:
When reporting "whitespace at end of input line" on lines ending with
roff(7) comments, let the column number in the message point to the
end of the line rather than to the beginning of the comment.
Improvement suggested by bluhm@.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/07 16:03:04

Modified files:
	usr.bin/tmux   : status.c 

Log message:
Do not clear the prompt when a message is shown, just leave it around and
return to it when the message is finished.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 16:06:57

Modified files:
	regress/usr.bin/mandoc/roff/args: roff.out_ascii roff.out_lint 

Log message:
enable commented parts of the test, they seem to work now


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 16:08:07

Modified files:
	regress/usr.bin/mandoc/roff/args: roff.in 

Log message:
enable commented parts of the test, they seem to work now


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 16:12:25

Modified files:
	regress/usr.bin/mandoc/roff/args: man.in man.out_ascii 
	                                  man.out_lint 

Log message:
comment out non-working parts of the test with .ig rather than \",
this is not supposed to test whitespace at the end of comments;
noticed by bluhm@ who sent a different patch


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/07 16:27:42

Modified files:
	regress/usr.bin/mandoc/char/space: Makefile 
Added files:
	regress/usr.bin/mandoc/char/space: trailing-mdoc.in 
	                                   trailing-mdoc.out_ascii 
	                                   trailing-mdoc.out_lint 

Log message:
test different kinds of the "WARNING: whitespace at end of input line";
bluhm@ noticed that this area can grow regressions


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/07 20:20:04

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/07 20:20:50

Modified files:
	lib/libc/net   : linkaddr.c 

Log message:
Fix regressions introduce in the fix for CVE-2016-6559.
From FreeBSD (glebius)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/07 22:32:49

Modified files:
	sys/dev        : rnd.c 

Log message:
fix spelling errors and typos, from Michael W. Bombardieri


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/12/07 23:45:58

Modified files:
	www/netsurf/browser: Makefile 
	www/netsurf/netsurf-fb: Makefile 

Log message:
Fix wantlib.

Reported by Bryan Vyhmeister; thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/12/07 23:46:49

Modified files:
	www/sblg       : Makefile distinfo 

Log message:
Update to sblg-0.3.8.

From Bryan Vyhmeister.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/08 02:29:50

Modified files:
	usr.sbin/dhcrelay: bpf.c dhcpd.h dhcrelay.c dispatch.c 

Log message:
Simplify get_interfaces function, make it return NULL if we didn't find
the interface and abort dhcrelay with a more friendly message when we
don't have an address configured in the interface.

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/08 02:42:11

Removed files:
	sysutils/collectd/patches: patch-src_pf_c 

Log message:
Drop useless patch, netinet/in.h is properly detected and included.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/08 02:47:37

Modified files:
	usr.sbin/syspatch: syspatch.8 syspatch.sh 

Log message:
Make it possible to install patches even if we don't have all sets installed
(e.g. no x sets); in this case, syspatch will skip the patch *but* it will still
be listed as available. This will allow applying the patch in case sets are
installed later on.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/08 03:06:42

Modified files:
	sysutils/collectd/patches: patch-src_processes_c 
	                           patch-src_tcpconns_c 

Log message:
add link to upstream pull-request


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/08 03:26:02

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.4.84.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/08 03:26:13

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.27.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/08 03:29:25

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-137.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/12/08 03:44:01

Modified files:
	distrib/hppa/ramdisk: Makefile 

Log message:
Use makefs to build bsd.rd; build & boot tested by krw


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/08 03:53:10

Modified files:
	net/py-slixmpp : Makefile distinfo 
	net/py-slixmpp/pkg: PLIST 

Log message:
Update to py3-slixmpp-1.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/12/08 05:00:40

Modified files:
	net/p5-Nmap-Parser: Makefile distinfo 

Log message:
Update to p5-Nmap-Parser-1.33.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/08 09:24:51

Modified files:
	sys/arch/octeon/conf: GENERIC RAMDISK files.octeon 
	sys/arch/octeon/dev: octeon_iobus.c 
Added files:
	sys/arch/octeon/dev: simplebus.c simplebusvar.h 
	sys/arch/octeon/include: fdt.h 

Log message:
Add fdt_attach_args and simplebus for implementing fdt-capable
drivers on octeon. Adapted from armv7.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/08 09:27:46

Modified files:
	sys/arch/octeon/dev: octeon_intr.c 
	sys/arch/octeon/include: intr.h 

Log message:
Add a routine for setting up interrupt handlers using fdt.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/08 10:21:13

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.7.13.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/08 10:23:33

Modified files:
	sys/dev/pci    : azalia.c 

Log message:
Return ENODEV if playback is requested on devices with no DACs or
recording is requested on devices with no ADCs. Many thanks to
Bryan Vyhmeister <bryan at bsdjournal.net> for testing & debugging this.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/08 10:24:25

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
iwm(4) was stripping some bits from the MCS index value before passing
it to bpf for tcpdump(8). Fix it so MCS >= 8 get passed on correctly.
ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/08 10:25:28

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
Fix mira's next intra-rate calculations for MCS >= 8.
ok tb@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/08 12:04:28

Modified files:
	sysutils/py-ghmi: Makefile distinfo 

Log message:
update to pyghmi-1.0.14


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/08 12:04:45

Modified files:
	graphics/clutter/clutter-gst: Makefile distinfo 

Log message:
update to clutter-gst-3.0.22


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/08 12:18:15

Modified files:
	usr.sbin/dhcrelay: bpf.c dhcpd.h dhcrelay.c dispatch.c packet.c 

Log message:
Clean up function prototypes: use a single struct to hold all address
information instead of passing multiple different parameters. This also
prepares the dhcrelay code to receive new features, like: IPv6, layer 2
relaying.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/08 12:30:45

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Silence scan-build; with prodding from jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/08 12:31:17

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
Avoid printf of a NULL pointer as a string in debug mode.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/08 12:59:51

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
Avoid splitting the "Requesting %s" printf and its trailing newline.
Fixes a missing newline in one place and an extra one later on when
both debug and verbose are set.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/08 13:22:08

Modified files:
	lib/libcrypto/man: d2i_ASN1_OBJECT.3 d2i_DHparams.3 
	                   d2i_DSAPublicKey.3 d2i_PKCS8PrivateKey_bio.3 
	                   d2i_PrivateKey.3 d2i_RSAPublicKey.3 
	                   d2i_X509.3 d2i_X509_ALGOR.3 d2i_X509_CRL.3 
	                   d2i_X509_NAME.3 d2i_X509_REQ.3 d2i_X509_SIG.3 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/08 14:48:50

Modified files:
	lib/libcrypto/man: ASN1_STRING_print_ex.3 des_read_pw.3 ec.3 
	                   i2d_PKCS7_bio_stream.3 x509.3 

Log message:
minor cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/08 15:13:59

Modified files:
	lib/libcrypto/man: BN_CTX_start.3 DES_set_key.3 DSA_set_method.3 
	                   HMAC.3 engine.3 

Log message:
some Vt fixes;


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/08 15:15:37

Modified files:
	usr.bin/tmux   : cmd-send-keys.c 

Log message:
Fix send-keys with UTF-8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/08 15:41:03

Modified files:
	audio/teknap   : Makefile 

Log message:
don't allow teknap to pick up gmake in configure; fixes a problem if dpb
junks gmake during build.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/08 16:56:47

Modified files:
	sbin/disklabel : disklabel.8 

Log message:
move the text describing the % and & units to a better place;
diff from jerome frgacic, tweaked by myself

ok krw millert


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/08 20:04:30

Modified files:
	usr.bin/ssh    : sshd.c 

Log message:
log connections dropped in excess of MaxStartups at verbose LogLevel;
bz#2613 based on diff from Tomas Kuthan; ok dtucker@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/09 01:26:24

Modified files:
	net/py-socks   : Makefile distinfo 

Log message:
Update to py-socks 1.6.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/09 01:30:52

Modified files:
	devel/py-uncompyle6: Makefile distinfo 
	devel/py-uncompyle6/pkg: PLIST 

Log message:
Update to py-uncompyle6 2.9.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/09 01:35:25

Modified files:
	devel/py-logilab-common: Makefile distinfo 
	devel/py-logilab-common/pkg: PLIST 

Log message:
Update to py-logilab-common 1.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/09 01:41:22

Modified files:
	devel/pylint   : Makefile 

Log message:
Unbreak test after update py-logilab-common


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 02:12:01

Modified files:
	x11/gnome/tracker: Makefile distinfo 
	x11/gnome/tracker/patches: patch-configure 
	                           patch-src_libtracker-sparql_Makefile_in 

Log message:
Update to meta-tracker-1.10.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 03:44:21

Modified files:
	net/py-boto    : Makefile distinfo 

Log message:
Update to py-boto-2.44.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 03:44:38

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.4.85.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 03:44:52

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.28.


CVSROOT:	/cvs
Module name:	ports
Changes by:	akfaew@cvs.openbsd.org	2016/12/09 04:09:08

Modified files:
	geo/openbsd-developers: Makefile 
	geo/openbsd-developers/files: OpenBSD 

Log message:
Update my location in geo/openbsd-developers.

ok fcambus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 04:26:56

Modified files:
	security/gnutls: Makefile distinfo 
	security/gnutls/pkg: PLIST 

Log message:
Update to gnutls-3.4.17.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/09 05:59:38

Modified files:
	net/tor        : Makefile distinfo 

Log message:
Update to tor 0.2.8.11; just compilation fixes that do not concern us.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 06:14:02

Modified files:
	net/bro        : Makefile 
Added files:
	net/bro/patches: patch-aux_broctl_cmake_OSSpecific_cmake 
	                 patch-cmake_bro-plugin-create-package_sh 

Log message:
Make it possible to load dynamic plugins.
from Daniel Thayer (upstream)


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/09 07:57:13

Modified files:
	databases/hs-hedis: Makefile distinfo 

Log message:
Update to hedis-0.9.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/09 09:40:11

Modified files:
	net/scapy      : Makefile 
	net/scapy/patches: patch-scapy_sendrecv_py 
Added files:
	net/scapy/patches: patch-scapy_arch_pcapdnet_py 

Log message:
Allow to switch the interface to promiscuous mode during sndrcv().
Call the sr...() functions with parameter promisc=1 for that.  This
is needed for the src/sys/netinet/arp regress test and was backported
from secdev/scapy master at github.
OK danj@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/09 10:24:55

Modified files:
	sys/dev/pv     : xenstore.c xenvar.h 

Log message:
New XenStore public API function to read numeric values

A need for a function to perform string to number conversion arose
when domain identifier needed to be read and converted to numerical
representation.  With xbf(4) the usage became broader as greater
values (such as the sector count) needed to be converted.  And as a
result another function was implemented to perform string to unsigned
long long conversion but unfortunately multiplication overflows were
not handled correctly.  This new version consolidates the code in
one place and exports a proper XenStore API function to get and set
numeric values.  The new atoull function borrows multiplication
overflow detection logic from the libc.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/09 10:29:48

Modified files:
	sys/dev/pv     : xen.c 

Log message:
Convert to the new xs_{get,set}num XenStore API


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/09 10:35:13

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Convert to the new xs_{get,set}num XenStore API


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/09 10:41:39

Modified files:
	sys/dev/pci    : if_ix.c 

Log message:
Update the media as the last step in the SFP module configuration

The problem noticed, fix tested and OK procter@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/09 11:57:40

Modified files:
	databases/barman/patches: patch-doc_barman_conf 
	                          patch-manifest_in patch-setup_py 

Log message:
regen and add RCS id


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/09 12:41:56

Modified files:
	devel/iso-codes: Makefile distinfo 

Log message:
update to iso-codes-3.72


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 13:55:52

Modified files:
	graphics/cairo : Makefile distinfo 
Removed files:
	graphics/cairo/patches: patch-src_cairo-xlib-surface_c 

Log message:
Update to cairo-1.14.8.

ok eric@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/09 13:59:27

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/09 14:39:27

Modified files:
	usr.bin/tmux   : input.c screen-write.c tmux.c tty-term.c 

Log message:
Spacing nits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/12/09 23:21:00

Modified files:
	textproc/html-xml-utils: Makefile distinfo 
	textproc/html-xml-utils/patches: patch-Makefile_in 
	textproc/html-xml-utils/pkg: PLIST 

Log message:
Update to html-xml-utils-7.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/10 00:19:52

Modified files:
	x11/gnome/nautilus: Makefile distinfo 
	x11/gnome/nautilus/patches: 
	                            patch-src_nautilus-canvas-container_c 

Log message:
Update to nautilus-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/10 00:24:45

Modified files:
	security/libgcrypt: Makefile distinfo 
	security/libgcrypt/patches: patch-src_secmem_c 

Log message:
Update to libgcrypt-1.7.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/10 00:34:44

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/pkg: PLIST 

Log message:
Update to cups-filters-1.13.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/10 00:37:17

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 

Log message:
Update to google-cloud-sdk-137.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/10 02:20:50

Modified files:
	distrib/sets/lists/comp: md.octeon 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/10 05:25:44

Modified files:
	telephony/asterisk: Makefile distinfo 

Log message:
update to asterisk-13.13.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 06:12:08

Modified files:
	lib/libssl/man : SSL_get_version.3 

Log message:
Document SSL_version(3).  It's listed in ssl(3) and <openssl/ssl.h>,
so it's clearly a public interface.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/10 06:22:07

Modified files:
	sys/dev/pci    : if_iwm.c if_iwn.c 

Log message:
Make retry-heavy rates less attractive to mira.
The number of retried frames shrinks significantly.
ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/10 06:22:57

Modified files:
	sys/netinet    : udp_usrreq.c 

Log message:
Pass the correct offset of the next protocol field for the given IP
version to the upper layers.  The stack will set this field to IPIP
later on, so make sure it doesn't overwrite the packet in the wrong
location.

ok bluhm@ deraadt@ stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 06:54:32

Modified files:
	lib/libssl/man : Makefile SSL_renegotiate.3 
Added files:
	lib/libssl/man : SSL_get_certificate.3 SSL_get_state.3 
	                 SSL_num_renegotiations.3 

Log message:
New manual pages SSL_get_certificate(3), SSL_get_state(3), and
SSL_num_renegotiations(3) written from scratch.  These functions
are listed in ssl(3) and <openssl/ssl.h>, so they are clearly public.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/10 06:56:38

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
In iwm(4), do not enable HT protection (RTS) unconditionally if the AP requires
protection from 20MHz-only STAs on a 40MHz channel. We do not support 40MHz
channels yet so there is nothing to protect ourselves from. It is the 40MHz
users who need to start using RTS when a 20MHz-only user shows up.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/10 07:12:21

Modified files:
	www/phantomjs  : Makefile 

Log message:
Fix USE_WXNEEDED and bump. The contents of the variable had a trailing space
("USE_WXNEEDED = Yes # comment") and "Yes " doesn't match "Yes".


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/10 07:46:04

Modified files:
	sys/net80211   : ieee80211_mira.c ieee80211_mira.h 

Log message:
Make mira rate scaling actually work with MIMO Tx rates.
The previous approach with an extra timeout was dumb (and of course untested).

Additional fixes include:
- Take HT protection settings into account when determining whether RTS is used.
- Stop probing the current rateset as soon as measurements become worse.
- Properly move probing timeouts for bad rates further into the future.

Tested with MIMO-enabled iwm(4) (MCS 0-15) and also iwn(4) (MCS 0-7 only).
Early versions also tested by phessler@ and bmercer@, and more testing by tb@.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 07:56:56

Modified files:
	lib/libssl/man : Makefile 
Added files:
	lib/libssl/man : SSL_get_shared_ciphers.3 

Log message:
Write an SSL_get_shared_ciphers(3) manual from scratch; another one
where BUGS is longer than DESCRIPTION.  The function is listed in
ssl(3) and <openssl/ssl.h>, so it's clearly public.

The code looks slightly mysterious to me, so it would be welcome if
somebody more familiar with TLS protocols could check factual accuracy.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/12/10 08:35:25

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/files: audio_manager_openbsd.cc 
	                    audio_manager_openbsd.h sndio_output.cc 
	                    sndio_output.h 
	www/chromium/patches: patch-BUILD_gn 
	                      patch-ash_display_mirror_window_controller_cc 
	                      patch-ash_shell_cc patch-base_BUILD_gn 
	                      patch-base_native_library_posix_cc 
	                      patch-base_trace_event_malloc_dump_provider_cc 
	                      patch-base_trace_event_process_memory_dump_cc 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_allocator_gni 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_compiler_compiler_gni 
	                      patch-build_config_features_gni 
	                      patch-build_toolchain_gcc_solink_wrapper_py 
	                      patch-build_toolchain_gcc_toolchain_gni 
	                      patch-cc_BUILD_gn 
	                      patch-chrome_app_chrome_main_delegate_cc 
	                      patch-chrome_app_chrome_main_delegate_h 
	                      patch-chrome_app_chromium_strings_grd 
	                      patch-chrome_app_generated_resources_grd 
	                      patch-chrome_app_google_chrome_strings_grd 
	                      patch-chrome_app_mash_mash_runner_cc 
	                      patch-chrome_app_resources_locale_settings_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_custom_handlers_protocol_handler_registry_cc 
	                      patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                      patch-chrome_browser_download_download_commands_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_api_messaging_message_service_cc 
	                      patch-chrome_browser_extensions_external_provider_impl_cc 
	                      patch-chrome_browser_interstitials_chrome_controller_client_cc 
	                      patch-chrome_browser_media_galleries_media_file_system_registry_cc 
	                      patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc 
	                      patch-chrome_browser_notifications_message_center_notification_manager_cc 
	                      patch-chrome_browser_profiles_profile_impl_io_data_cc 
	                      patch-chrome_browser_renderer_preferences_util_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_browser_safe_browsing_permission_reporter_cc 
	                      patch-chrome_browser_speech_tts_controller_impl_cc 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_browser_view_prefs_cc 
	                      patch-chrome_browser_ui_exclusive_access_exclusive_access_bubble_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_chrome_views_delegate_cc 
	                      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_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_layout_cc 
	                      patch-chrome_browser_ui_views_frame_system_menu_model_builder_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_strip_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_options_browser_options_handler_cc 
	                      patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                      patch-chrome_common_BUILD_gn 
	                      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_url_constants_cc 
	                      patch-chrome_common_url_constants_h 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-chromecast_browser_cast_content_browser_client_cc 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_filesystem_file_system_app_cc 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-components_storage_monitor_BUILD_gn 
	                      patch-content_app_content_main_runner_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_accessibility_browser_accessibility_manager_h 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_child_process_launcher_cc 
	                      patch-content_browser_download_base_file_cc 
	                      patch-content_browser_gpu_gpu_data_manager_impl_private_cc 
	                      patch-content_browser_gpu_gpu_internals_ui_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_utility_process_host_impl_cc 
	                      patch-content_common_BUILD_gn 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_devtools_v8_sampling_profiler_cc 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_shell_browser_shell_browser_context_cc 
	                      patch-content_shell_browser_shell_browser_main_parts_cc 
	                      patch-dbus_property_cc 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-device_serial_BUILD_gn 
	                      patch-device_serial_serial_io_handler_posix_cc 
	                      patch-device_serial_serial_service_impl_cc 
	                      patch-ipc_ipc_message_utils_cc 
	                      patch-ipc_ipc_message_utils_h 
	                      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_media_options_gni 
	                      patch-net_BUILD_gn 
	                      patch-net_http_http_network_session_cc 
	                      patch-net_proxy_proxy_service_cc 
	                      patch-net_socket_socks5_client_socket_cc 
	                      patch-net_tools_get_server_time_get_server_time_cc 
	                      patch-net_udp_udp_socket_posix_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-sandbox_linux_BUILD_gn 
	                      patch-services_ui_surfaces_surfaces_context_provider_cc 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_h 
	                      patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_h 
	                      patch-third_party_WebKit_Source_platform_fonts_SimpleFontData_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_StackFrameDepth_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_h 
	                      patch-third_party_WebKit_Source_web_PopupMenuImpl_cpp 
	                      patch-third_party_WebKit_Source_wtf_BUILD_gn 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_ffmpeg_BUILD_gn 
	                      patch-third_party_skia_src_ports_SkOSFile_stdio_cpp 
	                      patch-third_party_webrtc_base_BUILD_gn 
	                      patch-third_party_webrtc_base_physicalsocketserver_cc 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                      patch-tools_gn_bootstrap_bootstrap_py 
	                      patch-tools_perf_chrome_telemetry_build_BUILD_gn 
	                      patch-ui_app_list_app_list_constants_cc 
	                      patch-ui_app_list_app_list_constants_h 
	                      patch-ui_app_list_views_app_list_view_cc 
	                      patch-ui_base_resource_resource_bundle_cc 
	                      patch-ui_base_webui_web_ui_util_cc 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_views_bubble_bubble_dialog_delegate_cc 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_corewm_tooltip_aura_cc 
	                      patch-ui_views_mus_aura_init_cc 
	                      patch-ui_views_mus_aura_init_h 
	                      patch-ui_webui_resources_js_icon_js 
	                      patch-v8_BUILD_gn patch-v8_src_globals_h 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: 
	                      patch-base_debug_scoped_thread_heap_usage_cc 
	                      patch-chrome_browser_media_webrtc_webrtc_log_uploader_cc 
	                      patch-chrome_browser_ui_libgtk2ui_print_dialog_gtk2_cc 
	                      patch-device_geolocation_location_arbitrator_cc 
	                      patch-device_time_zone_monitor_time_zone_monitor_cc 
	                      patch-gpu_ipc_service_gpu_init_cc 
	                      patch-media_BUILD_gn 
	                      patch-media_audio_pulse_audio_manager_pulse_cc 
	                      patch-media_capture_video_video_capture_device_client_cc 
	                      patch-third_party_pdfium_core_fxcrt_fx_system_h 
	                      patch-tools_variations_fieldtrial_to_struct_py 
Removed files:
	www/chromium/patches: patch-chrome_browser_BUILD_gn 
	                      patch-chrome_browser_media_webrtc_log_uploader_cc 
	                      patch-content_browser_download_base_file_linux_cc 
	                      patch-content_browser_renderer_host_media_video_capture_device_client_cc 
	                      patch-content_browser_time_zone_monitor_cc 
	                      patch-device_geolocation_location_arbitrator_impl_cc 
	                      patch-third_party_pdfium_core_fxcrt_include_fx_system_h 
	                      patch-ui_app_list_app_list_menu_cc 

Log message:
update to 55.0.2883.75; add lpr support to the system dialog while here


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/12/10 09:48:07

Log message:
    Import editors/micro.
    
    A modern and intuitive terminal-based text editor.
    
    OK awolk@
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20161210
    
    N ports/editors/micro/Makefile
    N ports/editors/micro/distinfo
    N ports/editors/micro/patches/patch-Makefile
    N ports/editors/micro/pkg/PLIST
    N ports/editors/micro/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/12/10 09:49:09

Modified files:
	editors        : Makefile 

Log message:
Link editors/micro.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 11:11:51

Modified files:
	lib/libssl/man : ssl.3 

Log message:
Add Copyright and license.

Delete all the function prototypes.
They are all available from their individual manual pages.
Here, they were incomplete and nothing but a maintenance nightmare.

Add several missing cross reference, such that
this page now references all libssl manual pages.

Delete a sentence that said nothing and correct a typo.

Now all libssl manuals have proper Copyright notices and licenses,
and i have merged all improvements from OpenSSL that i could find.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/10 12:03:53

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmreg.h 

Log message:
Add support for MIMO Tx rates (MCS 8-15) to iwm(4).

The nominal maximum Tx rate is now 144Mbit/s (MCS 15, 20MHz channel, SGI).
In practice it's more around 30Mbit/s, though. The most significant limiting
factor is probably lack of Tx aggregation support. (Due to protocol overhead,
reaching the nominal max is pretty much impossible anyway. When shopping wifi
devices, do not believe what stickers on the box are saying; full of lies!)

But APs will send us aggregates, so Rx should be faster than Tx (which was
already the case, just less pronounced).

Tested by phessler@, bmercer@, tb@
ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/10 12:07:54

Modified files:
	share/man/man4 : iwm.4 

Log message:
Update iwm(4) CAVEATS section; MIMO is now supported


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/10 12:38:50

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Don't fail if optional feature properties aren't found

Nathanael Rensen has noticed that the driver would fail to attach if
optional "feature-barrier" or "feature-flush-cache" properties cannot
be fetched and has provided a patch to solve the issue, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/10 12:41:31

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Bring back the sector count variable as it's used in the debug printf


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 13:13:59

Modified files:
	lib/libcrypto/man: X509_STORE_CTX_get_ex_new_index.3 

Log message:
Copyright and license; jmc@ noticed that is forgot this file


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 13:34:57

Modified files:
	lib/libcrypto/man: X509_STORE_set_verify_cb_func.3 

Log message:
Add Copyright and license; jmc@ noticed that i missed this file.

I'm not merging documentation for X509_STORE_set_verify_func(3)
from OpenSSL because their documentations does not appear to match
the code we have, and i don't understand what the code does.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:01:56

Modified files:
	devel/hs-dataenc/patches: patch-dataenc_cabal 

Log message:
This builds fine with base-4.9 (ghc-8.0).


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:06:49

ports/devel/hs-mtl/patches

Update of /cvs/ports/devel/hs-mtl/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9076/devel/hs-mtl/patches

Log Message:
Directory /cvs/ports/devel/hs-mtl/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:06:49

ports/devel/hs-old-locale/patches

Update of /cvs/ports/devel/hs-old-locale/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9076/devel/hs-old-locale/patches

Log Message:
Directory /cvs/ports/devel/hs-old-locale/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:06:49

ports/devel/hs-old-time/patches

Update of /cvs/ports/devel/hs-old-time/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9076/devel/hs-old-time/patches

Log Message:
Directory /cvs/ports/devel/hs-old-time/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:06:49

ports/devel/hs-primitive/patches

Update of /cvs/ports/devel/hs-primitive/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9076/devel/hs-primitive/patches

Log Message:
Directory /cvs/ports/devel/hs-primitive/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:06:49

ports/devel/hs-utf8-string/patches

Update of /cvs/ports/devel/hs-utf8-string/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9076/devel/hs-utf8-string/patches

Log Message:
Directory /cvs/ports/devel/hs-utf8-string/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:06:49

ports/devel/hs-vector/patches

Update of /cvs/ports/devel/hs-vector/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9076/devel/hs-vector/patches

Log Message:
Directory /cvs/ports/devel/hs-vector/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:06:49

ports/textproc/hs-bytestring-show/patches

Update of /cvs/ports/textproc/hs-bytestring-show/patches
In directory cvs.openbsd.org:/tmp/cvs-serv9076/textproc/hs-bytestring-show/patches

Log Message:
Directory /cvs/ports/textproc/hs-bytestring-show/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 14:13:25

Modified files:
	lib/libcrypto/man: BN_BLINDING_new.3 BN_CTX_new.3 BN_CTX_start.3 
	                   BN_add.3 BN_add_word.3 BN_bn2bin.3 BN_cmp.3 
	                   BN_copy.3 BN_generate_prime.3 
	                   BN_get0_nist_prime_521.3 BN_mod_inverse.3 
	                   BN_mod_mul_montgomery.3 
	                   BN_mod_mul_reciprocal.3 BN_num_bytes.3 
	                   BN_rand.3 BN_set_bit.3 BN_set_negative.3 
	                   BN_swap.3 BN_zero.3 bn_dump.3 crypto.3 dh.3 
	                   dsa.3 rsa.3 
	usr.bin/dc     : dc.1 

Log message:
replace all references to bn(3) with BN_new(3),
and make sure all BN*(3) pages point back to BN_new(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 14:17:09

Modified files:
	lib/libcrypto/man: BN_new.3 Makefile 
Removed files:
	lib/libcrypto/man: bn.3 

Log message:
Merge bn(3) into BN_new(3).

OpenSSL removed bn(3) without replacement, but the introductory
text does seem helpful, and it is good for a sub-library to have a
central page pointing to all other pages and pointed at from all
other pages of the sub-library.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 14:20:45

Added files:
	devel/hs-mtl/patches: patch-mtl_cabal 
	devel/hs-old-locale/patches: patch-old-locale_cabal 
	devel/hs-old-time/patches: patch-old-time_cabal 
	devel/hs-primitive/patches: patch-primitive_cabal 
	devel/hs-utf8-string/patches: patch-utf8-string_cabal 
	devel/hs-vector/patches: patch-vector_cabal 
	textproc/hs-bytestring-show/patches: patch-bytestring-show_cabal 

Log message:
Relax some cabal dependency restrictions for hs packages where the
dependencies have been update "online" (i.e. on hackage.haskell.org)
without releaseing a new version of the package. If this sounds
confusing, just compare the .cabal files contained in the distfiles
with the .cabal file you get from hackage.haskell.org.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 14:32:14

Modified files:
	lib/libcrypto/man: bn_dump.3 

Log message:
Add Copyright and license; jmc@ noticed that i missed this file.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 15:01:26

Modified files:
	lib/libcrypto/man: des_read_pw.3 

Log message:
Add Copyright and license; jmc@ noticed that i forgot this file.

Correct the header: It's <openssl/ui_compat.h>, not <openssl/des_old.h>.
Delete documentation of des_read_password(3) and des_read_2passwords(3)
which no longer exist.

Probably, the rest of this ought to be deleted as well...


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 15:22:59

Modified files:
	lib/libcrypto/man: DH_generate_key.3 DH_generate_parameters.3 
	                   DH_get_ex_new_index.3 DH_set_method.3 
	                   DH_size.3 DSA_dup_DH.3 RSA_print.3 crypto.3 
	                   d2i_DHparams.3 dsa.3 engine.3 rsa.3 

Log message:
Replace all references to dh(3) with DH_new(3).
Make sure that all DH pages point back to DH_new(3).


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 15:24:31

ports/x11/gnome/libgepub/patches

Update of /cvs/ports/x11/gnome/libgepub/patches
In directory cvs.openbsd.org:/tmp/cvs-serv94629/patches

Log Message:
Directory /cvs/ports/x11/gnome/libgepub/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/10 15:28:16

Modified files:
	x11/gnome/libgepub: Makefile 
Added files:
	x11/gnome/libgepub/patches: patch-libgepub_pc_in 

Log message:
Set WX_NEEDED=Yes and add -Wl,-z,wxneeded to the pkg-config file.

ok and nits (about the pkg-config file) from aja@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 15:30:54

Modified files:
	lib/libcrypto/man: DH_new.3 Makefile 
Removed files:
	lib/libcrypto/man: dh.3 

Log message:
Merge one sentence and the references from dh(3) to DH_new(3) and
discard the rest of the text.  There is no value in documenting
some of the fields of a structure and then going on to say that the
structure is intended as opaque.  Besides, i doubt that we want
such strong marketing of ENGINE support.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 15:47:49

Modified files:
	lib/libcrypto/man: DSA_SIG_new.3 DSA_do_sign.3 DSA_dup_DH.3 
	                   DSA_generate_key.3 DSA_generate_parameters.3 
	                   DSA_get_ex_new_index.3 DSA_set_method.3 
	                   DSA_sign.3 DSA_size.3 ECDSA_SIG_new.3 
	                   crypto.3 d2i_DSAPublicKey.3 

Log message:
Change all references to dsa(3) to point to DSA_new(3).
Make sure all DSA pages point back to DSA_new(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/10 15:53:31

Modified files:
	lib/libcrypto/man: DSA_new.3 Makefile 
Removed files:
	lib/libcrypto/man: dsa.3 

Log message:
Merge one sentence and the references from dsa(3) to DSA_new(3) and
discard the rest of the text.  There is no value in documenting
some of the fields of a structure and then going on to say that the
structure is intended as opaque.  Besides, i doubt that we want
such strong marketing of ENGINE support.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/12/11 00:29:17

Modified files:
	www/phpmyadmin : Makefile distinfo 

Log message:
bugfix update to 4.6.5.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/12/11 00:44:31

Modified files:
	www/piwik      : Makefile distinfo 
	www/piwik/pkg  : PLIST 

Log message:
update to 2.17.1


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/11 00:57:14

Modified files:
	sys/arch/loongson/include: autoconf.h 
	sys/arch/loongson/loongson: generic3a_machdep.c loongson3_intr.c 
	                            machdep.c 

Log message:
Determine the available CPUs.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/12/11 01:40:32

Log message:
    Import Mesa 13.0.2
    
    Status:
    
    Vendor Tag:	mesa
    Release Tags:	mesa-13_0_2
    
    U xenocara/lib/mesa/autogen.sh
    U xenocara/lib/mesa/aclocal.m4
    U xenocara/lib/mesa/install-lib-links.mk
    U xenocara/lib/mesa/VERSION
    U xenocara/lib/mesa/common.py
    C xenocara/lib/mesa/Makefile.in
    U xenocara/lib/mesa/SConstruct
    C xenocara/lib/mesa/configure.ac
    C xenocara/lib/mesa/configure
    U xenocara/lib/mesa/Makefile.am
    U xenocara/lib/mesa/install-gallium-links.mk
    U xenocara/lib/mesa/scons/custom.py
    U xenocara/lib/mesa/scons/crossmingw.py
    U xenocara/lib/mesa/scons/llvm.py
    U xenocara/lib/mesa/scons/source_list.py
    U xenocara/lib/mesa/scons/dxsdk.py
    U xenocara/lib/mesa/scons/x11.py
    U xenocara/lib/mesa/scons/fixes.py
    U xenocara/lib/mesa/scons/gallium.py
    U xenocara/lib/mesa/docs/xlibdriver.html
    U xenocara/lib/mesa/docs/debugging.html
    U xenocara/lib/mesa/docs/relnotes.html
    U xenocara/lib/mesa/docs/developers.html
    U xenocara/lib/mesa/docs/shading.html
    U xenocara/lib/mesa/docs/VERSIONS
    U xenocara/lib/mesa/docs/contents.html
    U xenocara/lib/mesa/docs/ARB_color_buffer_float.txt
    U xenocara/lib/mesa/docs/utilities.html
    U xenocara/lib/mesa/docs/gears.png
    U xenocara/lib/mesa/docs/perf.html
    U xenocara/lib/mesa/docs/llvmpipe.html
    U xenocara/lib/mesa/docs/conform.html
    U xenocara/lib/mesa/docs/faq.html
    U xenocara/lib/mesa/docs/mangling.html
    U xenocara/lib/mesa/docs/README.UVD
    U xenocara/lib/mesa/docs/autoconf.html
    U xenocara/lib/mesa/docs/extensions.html
    U xenocara/lib/mesa/docs/libGL.txt
    U xenocara/lib/mesa/docs/mesa.css
    U xenocara/lib/mesa/docs/systems.html
    U xenocara/lib/mesa/docs/README.WIN32
    U xenocara/lib/mesa/docs/precompiled.html
    U xenocara/lib/mesa/docs/lists.html
    U xenocara/lib/mesa/docs/sourcedocs.html
    U xenocara/lib/mesa/docs/sourcetree.html
    U xenocara/lib/mesa/docs/vmware-guest.html
    U xenocara/lib/mesa/docs/repository.html
    U xenocara/lib/mesa/docs/thanks.html
    U xenocara/lib/mesa/docs/helpwanted.html
    U xenocara/lib/mesa/docs/osmesa.html
    U xenocara/lib/mesa/docs/download.html
    U xenocara/lib/mesa/docs/intro.html
    U xenocara/lib/mesa/docs/install.html
    U xenocara/lib/mesa/docs/viewperf.html
    U xenocara/lib/mesa/docs/bugs.html
    U xenocara/lib/mesa/docs/patents.txt
    U xenocara/lib/mesa/docs/license.html
    U xenocara/lib/mesa/docs/postprocess.html
    U xenocara/lib/mesa/docs/dispatch.html
    U xenocara/lib/mesa/docs/index.html
    U xenocara/lib/mesa/docs/egl.html
    N xenocara/lib/mesa/docs/features.txt
    U xenocara/lib/mesa/docs/envvars.html
    U xenocara/lib/mesa/docs/devinfo.html
    U xenocara/lib/mesa/docs/application-issues.html
    U xenocara/lib/mesa/docs/README.VCE
    U xenocara/lib/mesa/docs/webmaster.html
    U xenocara/lib/mesa/docs/opengles.html
    U xenocara/lib/mesa/docs/versions.html
    U xenocara/lib/mesa/docs/specs/WL_create_wayland_buffer_from_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_control.spec
    U xenocara/lib/mesa/docs/specs/MESA_multithread_makecurrent.spec
    U xenocara/lib/mesa/docs/specs/MESA_ycbcr_texture.spec
    U xenocara/lib/mesa/docs/specs/MESA_query_renderer.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_frame_usage.spec
    U xenocara/lib/mesa/docs/specs/enums.txt
    U xenocara/lib/mesa/docs/specs/MESA_window_pos.spec
    U xenocara/lib/mesa/docs/specs/MESA_pack_invert.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_debug.spec
    U xenocara/lib/mesa/docs/specs/MESA_drm_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_release_buffers.spec
    U xenocara/lib/mesa/docs/specs/MESA_pixmap_colormap.spec
    U xenocara/lib/mesa/docs/specs/WL_bind_wayland_display.spec
    N xenocara/lib/mesa/docs/specs/EGL_MESA_platform_surfaceless.txt
    U xenocara/lib/mesa/docs/specs/MESA_set_3dfx_mode.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_signed_rgba.spec
    U xenocara/lib/mesa/docs/specs/MESA_image_dma_buf_export.txt
    N xenocara/lib/mesa/docs/specs/MESA_shader_integer_functions.txt
    U xenocara/lib/mesa/docs/specs/MESA_copy_sub_buffer.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_samples_identical.txt
    U xenocara/lib/mesa/docs/specs/MESA_agp_offset.spec
    U xenocara/lib/mesa/docs/specs/MESA_configless_context.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_integer_mix.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_array.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_resize_buffers.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_trace.spec
    N xenocara/lib/mesa/docs/specs/OLD/EGL_MESA_screen_surface.txt
    U xenocara/lib/mesa/docs/specs/OLD/MESA_program_debug.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_sprite_point.spec
    U xenocara/lib/mesa/docs/relnotes/10.5.8.html
    U xenocara/lib/mesa/docs/relnotes/8.0.5.html
    U xenocara/lib/mesa/docs/relnotes/9.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.1
    U xenocara/lib/mesa/docs/relnotes/10.5.0.html
    U xenocara/lib/mesa/docs/relnotes/6.4
    N xenocara/lib/mesa/docs/relnotes/12.0.1.html
    U xenocara/lib/mesa/docs/relnotes/3.2.1
    U xenocara/lib/mesa/docs/relnotes/7.9.1.html
    U xenocara/lib/mesa/docs/relnotes/6.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.html
    U xenocara/lib/mesa/docs/relnotes/11.0.7.html
    U xenocara/lib/mesa/docs/relnotes/10.6.5.html
    U xenocara/lib/mesa/docs/relnotes/7.7.html
    U xenocara/lib/mesa/docs/relnotes/6.5.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.3.html
    U xenocara/lib/mesa/docs/relnotes/6.2.1
    U xenocara/lib/mesa/docs/relnotes/9.2.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.2.html
    U xenocara/lib/mesa/docs/relnotes/3.3
    N xenocara/lib/mesa/docs/relnotes/11.1.3.html
    U xenocara/lib/mesa/docs/relnotes/5.0.2
    U xenocara/lib/mesa/docs/relnotes/11.0.5.html
    U xenocara/lib/mesa/docs/relnotes/3.5
    U xenocara/lib/mesa/docs/relnotes/7.5.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.1.html
    U xenocara/lib/mesa/docs/relnotes/10.5.3.html
    U xenocara/lib/mesa/docs/relnotes/11.0.1.html
    N xenocara/lib/mesa/docs/relnotes/13.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.2.9.html
    U xenocara/lib/mesa/docs/relnotes/6.5.1.html
    U xenocara/lib/mesa/docs/relnotes/7.0.html
    U xenocara/lib/mesa/docs/relnotes/5.0.1
    U xenocara/lib/mesa/docs/relnotes/10.5.1.html
    U xenocara/lib/mesa/docs/relnotes/10.1.5.html
    U xenocara/lib/mesa/docs/relnotes/8.0.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.6.6.html
    U xenocara/lib/mesa/docs/relnotes/6.4.1.html
    U xenocara/lib/mesa/docs/relnotes/7.11.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.8.html
    U xenocara/lib/mesa/docs/relnotes/7.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.10.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.1.html
    U xenocara/lib/mesa/docs/relnotes/3.4
    U xenocara/lib/mesa/docs/relnotes/10.2.4.html
    U xenocara/lib/mesa/docs/relnotes/11.0.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.2.html
    U xenocara/lib/mesa/docs/relnotes/6.3.1
    U xenocara/lib/mesa/docs/relnotes/4.0.1
    U xenocara/lib/mesa/docs/relnotes/7.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.3.2
    U xenocara/lib/mesa/docs/relnotes/10.3.5.html
    U xenocara/lib/mesa/docs/relnotes/7.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.4.html
    U xenocara/lib/mesa/docs/relnotes/6.0
    U xenocara/lib/mesa/docs/relnotes/9.2.3.html
    N xenocara/lib/mesa/docs/relnotes/11.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.3.2.html
    U xenocara/lib/mesa/docs/relnotes/7.10.html
    U xenocara/lib/mesa/docs/relnotes/7.8.html
    U xenocara/lib/mesa/docs/relnotes/7.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.7.html
    N xenocara/lib/mesa/docs/relnotes/12.0.3.html
    U xenocara/lib/mesa/docs/relnotes/6.3
    U xenocara/lib/mesa/docs/relnotes/7.10.1.html
    U xenocara/lib/mesa/docs/relnotes/7.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.3.html
    U xenocara/lib/mesa/docs/relnotes/4.0.2
    N xenocara/lib/mesa/docs/relnotes/13.0.1.html
    U xenocara/lib/mesa/docs/relnotes/6.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.html
    U xenocara/lib/mesa/docs/relnotes/10.4.3.html
    U xenocara/lib/mesa/docs/relnotes/10.5.9.html
    U xenocara/lib/mesa/docs/relnotes/9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.6.html
    U xenocara/lib/mesa/docs/relnotes/10.6.1.html
    U xenocara/lib/mesa/docs/relnotes/11.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.0.1
    U xenocara/lib/mesa/docs/relnotes/7.4.html
    U xenocara/lib/mesa/docs/relnotes/9.2.5.html
    U xenocara/lib/mesa/docs/relnotes/7.4.3.html
    U xenocara/lib/mesa/docs/relnotes/11.2.0.html
    U xenocara/lib/mesa/docs/relnotes/10.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.5.html
    U xenocara/lib/mesa/docs/relnotes/4.0
    U xenocara/lib/mesa/docs/relnotes/6.5.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.2.html
    U xenocara/lib/mesa/docs/relnotes/11.2.2.html
    U xenocara/lib/mesa/docs/relnotes/3.1
    U xenocara/lib/mesa/docs/relnotes/11.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.4.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.0.html
    N xenocara/lib/mesa/docs/relnotes/13.0.2.html
    U xenocara/lib/mesa/docs/relnotes/9.0.1.html
    U xenocara/lib/mesa/docs/relnotes/7.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.4.html
    U xenocara/lib/mesa/docs/relnotes/10.4.6.html
    U xenocara/lib/mesa/docs/relnotes/7.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.0.1.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/4.0.3
    U xenocara/lib/mesa/docs/relnotes/10.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.9.html
    U xenocara/lib/mesa/docs/relnotes/3.4.2
    U xenocara/lib/mesa/docs/relnotes/7.11.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.3.html
    U xenocara/lib/mesa/docs/relnotes/9.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.2.html
    U xenocara/lib/mesa/docs/relnotes/7.4.1.html
    U xenocara/lib/mesa/docs/relnotes/9.1.6.html
    N xenocara/lib/mesa/docs/relnotes/12.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.7.html
    U xenocara/lib/mesa/docs/relnotes/4.1
    N xenocara/lib/mesa/docs/relnotes/12.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.8.html
    U xenocara/lib/mesa/docs/relnotes/10.1.6.html
    U xenocara/lib/mesa/docs/relnotes/11.1.0.html
    U xenocara/lib/mesa/docs/relnotes/5.1
    U xenocara/lib/mesa/docs/relnotes/10.1.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.html
    U xenocara/lib/mesa/docs/relnotes/10.3.html
    U xenocara/lib/mesa/docs/relnotes/8.0.html
    U xenocara/lib/mesa/docs/relnotes/9.1.3.html
    U xenocara/lib/mesa/docs/relnotes/3.2
    U xenocara/lib/mesa/docs/relnotes/3.4.1
    U xenocara/lib/mesa/docs/relnotes/11.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.6.html
    U xenocara/lib/mesa/docs/relnotes/7.11.html
    U xenocara/lib/mesa/docs/relnotes/8.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.5.html
    U xenocara/lib/mesa/docs/relnotes/5.0
    U xenocara/lib/mesa/docs/relnotes/10.3.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.5.html
    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/6.2
    U xenocara/lib/mesa/docs/relnotes/7.8.1.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/10.2.8.html
    U xenocara/lib/mesa/docs/relnotes/7.5.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.9.html
    U xenocara/lib/mesa/docs/relnotes/7.0.2.html
    U xenocara/lib/mesa/docs/relnotes/7.7.1.html
    U xenocara/lib/mesa/docs/relnotes/9.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.6.2.html
    U xenocara/lib/mesa/docs/relnotes/10.0.5.html
    U xenocara/lib/mesa/docs/relnotes/7.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.3.html
    U xenocara/lib/mesa/docs/relnotes/6.4.html
    U xenocara/lib/mesa/m4/ax_prog_flex.m4
    U xenocara/lib/mesa/m4/ax_check_gnu_make.m4
    U xenocara/lib/mesa/m4/ltversion.m4
    U xenocara/lib/mesa/m4/ax_gcc_builtin.m4
    U xenocara/lib/mesa/m4/libtool.m4
    U xenocara/lib/mesa/m4/ax_pthread.m4
    U xenocara/lib/mesa/m4/ax_gcc_func_attribute.m4
    U xenocara/lib/mesa/m4/lt~obsolete.m4
    U xenocara/lib/mesa/m4/ltsugar.m4
    U xenocara/lib/mesa/m4/ax_check_python_mako_module.m4
    U xenocara/lib/mesa/m4/ax_prog_bison.m4
    U xenocara/lib/mesa/m4/ltoptions.m4
    C xenocara/lib/mesa/src/Makefile.in
    U xenocara/lib/mesa/src/SConscript
    U xenocara/lib/mesa/src/Makefile.am
    N xenocara/lib/mesa/src/getopt/.editorconfig
    U xenocara/lib/mesa/src/getopt/getopt.h
    U xenocara/lib/mesa/src/getopt/SConscript
    U xenocara/lib/mesa/src/getopt/getopt_long.c
    U xenocara/lib/mesa/src/mapi/mapi_glapi.c
    U xenocara/lib/mesa/src/mapi/entry.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tsd.h
    U xenocara/lib/mesa/src/mapi/Makefile.sources
    U xenocara/lib/mesa/src/mapi/u_current.c
    U xenocara/lib/mesa/src/mapi/entry_x86_tls.h
    U xenocara/lib/mesa/src/mapi/table.c
    U xenocara/lib/mesa/src/mapi/u_execmem.h
    U xenocara/lib/mesa/src/mapi/stub.h
    U xenocara/lib/mesa/src/mapi/u_execmem.c
    C xenocara/lib/mesa/src/mapi/Makefile.in
    U xenocara/lib/mesa/src/mapi/mapi_abi.py
    C xenocara/lib/mesa/src/mapi/Makefile.am
    U xenocara/lib/mesa/src/mapi/entry_x86-64_tls.h
    U xenocara/lib/mesa/src/mapi/u_current.h
    U xenocara/lib/mesa/src/mapi/stub.c
    U xenocara/lib/mesa/src/mapi/entry.c
    U xenocara/lib/mesa/src/mapi/mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/table.h
    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/tests/check_table.cpp
    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/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/glapi/glapi_nop.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86-64.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_gentable.c
    U xenocara/lib/mesa/src/mapi/glapi/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/glapi_sparc.S
    U xenocara/lib/mesa/src/mapi/glapi/glapitable.h
    U xenocara/lib/mesa/src/mapi/glapi/glprocs.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_priv.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_dispatch.c
    U xenocara/lib/mesa/src/mapi/glapi/glapitemp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_getproc.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_entrypoint.c
    U xenocara/lib/mesa/src/mapi/glapi/tests/check_table.cpp
    U xenocara/lib/mesa/src/mapi/glapi/registry/gl.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/typeexpr.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_integer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_genexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml
    N xenocara/lib/mesa/src/mapi/glapi/gen/OES_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GREMEDY_string_marker.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_enums.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_direct_state_access.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_base_instance.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_send.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_program_interface_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_multi_bind.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sample_shading.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_storage_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/static_data.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_procs.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_size.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_indirect_parameters.xml
    N xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness_es.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/apiexec.py
    C xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.in
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_object_purgeable.xml
    N 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_clip_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_gentable.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86-64_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL3x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_conditional_render.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compressed_texture_pixel_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/INTEL_performance_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/license.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/SConscript
    C xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.am
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_context_flush_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sync.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL4x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_subroutine.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_EGL_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rg.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_gather.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_common.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.dtd
    N xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_fp64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_pipeline_statistics_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_recv.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_single_precision.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_viewport_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_primitive_restart.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_float.xml
    N xenocara/lib/mesa/src/mapi/glapi/gen/EXT_window_rectangles.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_SPARC_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_es_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/es_EXT.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_server_table.py
    N xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_variable_group_size.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_view.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_fixed_point.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/ARB_clear_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_debug.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/remap_helper.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_debug_output.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_tessellation_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_apitemp.py
    U xenocara/lib/mesa/src/gallium/Automake.inc
    C xenocara/lib/mesa/src/gallium/Makefile.in
    U xenocara/lib/mesa/src/gallium/SConscript
    U xenocara/lib/mesa/src/gallium/Makefile.am
    U xenocara/lib/mesa/src/gallium/README.portability
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/README
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/trace.xsl
    C xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.h
    N xenocara/lib/mesa/src/gallium/drivers/radeon/r600_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_52.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_50.c
    N xenocara/lib/mesa/src/gallium/drivers/radeon/r600_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.c
    C xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_streamout.c
    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_vce_40_2_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_gpu_load.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_buffer_common.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/LLVM_REVISION.txt
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/cayman_msaa.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_util.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_context.c
    C xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_small_immediates.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_dead_code.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_uniforms.c
    N xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_live_variables.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_formats.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_register_allocate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_copy_propagation.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_reorder_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_algebraic.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_job.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_qir_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_emit.c
    N xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_peephole_sf.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator_validate.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_state.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_lower_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.h
    N xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_constant_folding.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_qpu_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_validate.c
    N xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_vpm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_blit.c
    N xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_emit_uniform_stream_resets.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_drv.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_gem.c
    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_packet.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c
    C xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_main.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_format.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/rbug/README
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.c
    C xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/rbug/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_public.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_public.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_immediate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/i915/TODO
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.h
    C xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_private.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_fpc.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_static.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batchbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_shader_semantics.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r300/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cs.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_texture_desc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_inlines.h
    C xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_stencilref.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.h
    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_render_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cb.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_hyperz.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h
    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_compiler_util.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.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_pair.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.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_program.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.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/r300_fragprog_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h
    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.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c
    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/r300_compiler_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/regalloc_tex_1d_swizzle.test
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.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/omod_two_writers.test
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.sources
    C xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_state.c
    U xenocara/lib/mesa/src/gallium/drivers/noop/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_public.h
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_public.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_descriptors.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.in
    N xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.am
    N xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_draw.c
    N xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/cik_sdma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.py
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r600/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state_common.c
    C xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_formats.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreend.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/notes.markdown
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_psi_ops.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_ir.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.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_finalize.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_common.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_rectlist.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_media.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.c
    C xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_blt.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen7.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen6.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen8.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_core.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader_ps.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_mi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_bottom.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/intel_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_decode.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_vma.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_blt.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_top.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_media.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_helpers.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_message.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_blitter.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_dynamic.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_isa.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_surface.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_media.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/genhw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_mi.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_regs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.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/virgl_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.h
    C xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_protocol.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_public.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.c
    N xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.c
    N xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.h
    N xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_derived.c
    N xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs_exec.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state.h
    C xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs.h
    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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_surface.c
    N xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_blend.c
    N xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_draw.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.sources
    N xenocara/lib/mesa/src/gallium/drivers/swr/Automake.inc
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_memory.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.in
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_public.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.am
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_resource.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_clear.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_context_llvm.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_loader.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/utils.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/arena.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/fifo.hpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/blend.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/depthstencil.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_conversion.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_types.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa_avx.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/context.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tessellator.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs_init.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/conservativeRast.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_traits.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/ringbuffer.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/jit_api.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/JitManager.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/state_llvm.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_math.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_ir_macros.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_types.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/eventmanager.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandlerfile.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events.proto
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandler.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/tilingtraits.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileY.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_Linear.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX2.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/Convert.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileX.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileY2.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_Linear2.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileW.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileY.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_Linear.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdintrin.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simd16intrin.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets_shared.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/isa.hpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_archrast.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.cpp
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.h
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/ast.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pyparser.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/_ast_util.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cache.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lexer.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pygen.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/util.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/filters.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/codegen.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/compat.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/runtime.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/__init__.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cmd.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/exceptions.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/template.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lookup.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/parsetree.py
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandler_h.template
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandlerfile_h.template
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_h.template
    N xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_cpp.template
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_framebuffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_backend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_rss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_query.c
    N xenocara/lib/mesa/src/gallium/drivers/svga/svga_mksstats.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_elements.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_streamout.h
    C xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_misc.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vdecl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_public.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_hw_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_insn.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.py
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_caps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_end.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/includeCheck.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/VGPU10ShaderTokens.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/README
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_dx.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_overlay.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_escape.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_common.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/disasm.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_pm4.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/a3xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c
    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_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/a2xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_lower_if_else.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_sched.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_group.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/instr-a3xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_print.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_depth.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.py
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/a4xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.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/codegen/nv50_ir_util.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_util.cpp
    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_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_nvc0.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_print.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_emit_nvc0.cpp
    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.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_bb.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_target_nv50.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_emit_gm107.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.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_graph.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_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_inlines.h
    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_target.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.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm
    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/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.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_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/gm107_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_macros.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.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_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h
    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/nvc0_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h
    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/nouveau/nvc0/mme/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_defs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_texture.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_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.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/nv50_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.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/nv50_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.c
    U xenocara/lib/mesa/src/gallium/tools/addr2line.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/tracediff.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/dump.py
    U xenocara/lib/mesa/src/gallium/tools/trace/model.py
    U xenocara/lib/mesa/src/gallium/tools/trace/README.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/dump_state.py
    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/format.py
    U xenocara/lib/mesa/src/gallium/tools/trace/parse.py
    U xenocara/lib/mesa/src/gallium/docs/Makefile
    U xenocara/lib/mesa/src/gallium/docs/llvm-todo.txt
    U xenocara/lib/mesa/src/gallium/docs/make.bat
    U xenocara/lib/mesa/src/gallium/docs/source/screen.rst
    U xenocara/lib/mesa/src/gallium/docs/source/conf.py
    U xenocara/lib/mesa/src/gallium/docs/source/index.rst
    U xenocara/lib/mesa/src/gallium/docs/source/glossary.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso.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/debugging.rst
    U xenocara/lib/mesa/src/gallium/docs/source/intro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/resources.rst
    U xenocara/lib/mesa/src/gallium/docs/source/pipeline.txt
    U xenocara/lib/mesa/src/gallium/docs/source/tgsi.rst
    U xenocara/lib/mesa/src/gallium/docs/source/format.rst
    U xenocara/lib/mesa/src/gallium/docs/source/context.rst
    N xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno.rst
    N xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/profiling.rst
    N xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/knobs.rst
    N xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst
    N xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/faq.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno/ir3-notes.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/rasterizer.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/shader.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/sampler.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/dsa.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/blend.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/velems.rst
    U xenocara/lib/mesa/src/gallium/docs/source/exts/formatting.py
    U xenocara/lib/mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh
    U xenocara/lib/mesa/src/gallium/tests/unit/u_half_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/pipe_barrier_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/translate_test.c
    C xenocara/lib/mesa/src/gallium/tests/unit/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/unit/u_cache_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/SConscript
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_compatible_test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri.c
    U xenocara/lib/mesa/src/gallium/tests/graw/occlusion-query.c
    U xenocara/lib/mesa/src/gallium/tests/graw/graw_util.h
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-fragcoord.c
    U xenocara/lib/mesa/src/gallium/tests/graw/vs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-gs.c
    U xenocara/lib/mesa/src/gallium/tests/graw/SConscript
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-srgb.c
    U xenocara/lib/mesa/src/gallium/tests/graw/shader-leak.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-frontface.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-swizzle.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-sample.c
    U xenocara/lib/mesa/src/gallium/tests/graw/disasm.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tgsi_dump.gdb
    U xenocara/lib/mesa/src/gallium/tests/graw/clear.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-write-z.c
    U xenocara/lib/mesa/src/gallium/tests/graw/gs-test.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/fragment-shader/frag-mul.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-abs.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-lit.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-face.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-mad-immx.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-max.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-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.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-srcmod-neg.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-mad.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-sge.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-cb-2d.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-lg2.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-rcp.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-ex2.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-min.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-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh
    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/add-mix.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/multi-line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.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-arl.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-frc.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-srcmod-abs.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-add.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-cb-1d.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-srcmod-swz.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-abs.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-mul.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-umul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.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-lrp.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-srcmod-neg.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-slt.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-ex2.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-cb-2d.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-arr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/trivial/tri.c
    C xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/trivial/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/compute.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri-vdpau.dyn
    U xenocara/lib/mesa/src/gallium/targets/vdpau/target.c
    C xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/vdpau/vdpau.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/xlib.c
    C xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/libgl-xlib.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i965.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
    C xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_msm.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r600.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i915.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/xvmc.sym
    U xenocara/lib/mesa/src/gallium/targets/xvmc/target.c
    C xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.sym
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.mingw.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/target.c
    C xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.pc.in
    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/dri/target.c
    C xenocara/lib/mesa/src/gallium/targets/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/dri/SConscript
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri/dri.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/target.c
    C xenocara/lib/mesa/src/gallium/targets/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/omx/omx.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/graw_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3d.pc.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/drm.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3dadapter9.sym
    C xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/getproc.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/description.c
    U xenocara/lib/mesa/src/gallium/targets/va/target.c
    C xenocara/lib/mesa/src/gallium/targets/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/va/va.sym
    N 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/SoftwareRenderer.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef
    C xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/opencl/opencl.sym
    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/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/libgl-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/xa/xatracker.pc.in
    U xenocara/lib/mesa/src/gallium/targets/xa/target.c
    C xenocara/lib/mesa/src/gallium/targets/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/xa/xa.sym
    U xenocara/lib/mesa/src/gallium/state_trackers/README
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/bitmap.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/query.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/mixer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/decode.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/htab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/device.c
    C xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/presentation.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/preemption.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/vdpau_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/ftab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/output.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/block.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/attributes.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/surface.c
    C xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/xvmc_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.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_surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.c
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.sources
    C xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/osmesa.c
    N xenocara/lib/mesa/src/gallium/state_trackers/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.h
    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/hgl_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.h
    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/dri2_buffer.h
    C xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/drisw.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri2.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264.c
    C xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.h
    N xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h265.c
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Doxyfile
    C xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/interop.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/transfer.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/object.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/error.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/property.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.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/module.hpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/compat.hpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/invocation.hpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/metadata.hpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/invocation.cpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen.hpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/bitcode.cpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/native.cpp
    N xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algebra.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/pointer.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/tuple.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/range.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/lazy.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/adaptor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algorithm.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/postproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/va_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/va/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/config.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/display.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg4.c
    C xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vc1.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/va/image.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/buffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_api.c
    C xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_public.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_defines.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pdata.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/README
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_limits.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.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/authenticatedchannel9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_flags.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.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/volume9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_winsys.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_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_icd.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.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_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_yuv.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/README
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_priv.h
    C xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa-indent
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tgsi.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_surface.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_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.in
    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/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h
    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
    C xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c
    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_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.am
    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
    N xenocara/lib/mesa/src/gallium/winsys/sw/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h
    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/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h
    C xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h
    C xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c
    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
    C xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
    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/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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.am
    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/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virtgpu_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.am
    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/intel/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.h
    C xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/svga_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_public.h
    C xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
    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_compiler.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_screen.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_config.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_shader_tokens.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_codec.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_state.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_enums.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_state.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/opencl_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_winsys.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/graw.h
    N xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_dmabuf.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drisw_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_driver.h
    N xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_funcs.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/st_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drm_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/xlibsw_api.h
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.sources
    C xenocara/lib/mesa/src/gallium/auxiliary/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/SConscript
    C xenocara/lib/mesa/src/gallium/auxiliary/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h
    C xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/postprocess.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_init.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_celshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_program.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_run.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/ADDING
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.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_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_mman.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_aligned.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_stdc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_thread.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_proto.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_internal.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.c
    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/tgsi/tgsi_iterate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.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_aa_point.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.h
    N xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_nic.c
    N xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpufreq.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_driver_query.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpu.c
    N xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_sensors_temp.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_fps.c
    N xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_diskstat.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_split_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c
    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_pipe_offset.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.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/translate/translate_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c
    N xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri3.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_rbsp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vlc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_stubs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_types.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.h
    N xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c
    N xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pack_color.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pointer.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_format_latc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.csv
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_box.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_video.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_parse.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_rect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.h
    N xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_defines.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_string.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dynarray.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pwr8.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.h
    N xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.c
    N xenocara/lib/mesa/src/gallium/auxiliary/util/u_viewport.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_pack.py
    N xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitcast.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_half.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dual_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/dbghelp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_fifo.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_flags.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_memory.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_range.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py
    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_indices_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.py
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.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_alt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.c
    N xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c
    N xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_cached.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.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_action.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c
    N xenocara/lib/mesa/src/hgl/.editorconfig
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.h
    U xenocara/lib/mesa/src/hgl/GLView.cpp
    U xenocara/lib/mesa/src/hgl/SConscript
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.h
    U xenocara/lib/mesa/src/hgl/GLRenderer.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.cpp
    U xenocara/lib/mesa/src/egl/Makefile.sources
    C xenocara/lib/mesa/src/egl/Makefile.in
    U xenocara/lib/mesa/src/egl/SConscript
    U xenocara/lib/mesa/src/egl/Makefile.am
    U xenocara/lib/mesa/src/egl/egl-symbols-check
    N 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/drivers/dri2/platform_wayland.c
    N xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_drm.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_surfaceless.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2_fallbacks.h
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.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/wayland/wayland-drm/wayland-drm.h
    C xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm-protocol.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.xml
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.c
    C xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-priv.h
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.pc.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-symbols-check
    U xenocara/lib/mesa/src/egl/main/egllog.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.c
    U xenocara/lib/mesa/src/egl/main/eglsync.c
    U xenocara/lib/mesa/src/egl/main/eglcurrent.h
    U xenocara/lib/mesa/src/egl/main/eglcurrent.c
    U xenocara/lib/mesa/src/egl/main/eglapi.h
    U xenocara/lib/mesa/src/egl/main/eglimage.h
    U xenocara/lib/mesa/src/egl/main/eglglobals.h
    U xenocara/lib/mesa/src/egl/main/egldisplay.c
    U xenocara/lib/mesa/src/egl/main/egllog.h
    U xenocara/lib/mesa/src/egl/main/egldriver.h
    U xenocara/lib/mesa/src/egl/main/egl.pc.in
    U xenocara/lib/mesa/src/egl/main/eglsurface.c
    U xenocara/lib/mesa/src/egl/main/eglglobals.c
    U xenocara/lib/mesa/src/egl/main/egldisplay.h
    U xenocara/lib/mesa/src/egl/main/egldefines.h
    U xenocara/lib/mesa/src/egl/main/egl.def
    U xenocara/lib/mesa/src/egl/main/eglsync.h
    U xenocara/lib/mesa/src/egl/main/eglarray.c
    U xenocara/lib/mesa/src/egl/main/egltypedefs.h
    U xenocara/lib/mesa/src/egl/main/eglarray.h
    U xenocara/lib/mesa/src/egl/main/README.txt
    U xenocara/lib/mesa/src/egl/main/eglimage.c
    U xenocara/lib/mesa/src/egl/main/eglconfig.c
    U xenocara/lib/mesa/src/egl/main/eglapi.c
    U xenocara/lib/mesa/src/egl/main/eglfallbacks.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.h
    U xenocara/lib/mesa/src/egl/main/egldriver.c
    U xenocara/lib/mesa/src/egl/main/eglcompiler.h
    U xenocara/lib/mesa/src/egl/main/eglconfig.h
    U xenocara/lib/mesa/src/egl/main/eglsurface.h
    N xenocara/lib/mesa/src/gbm/Makefile.sources
    C xenocara/lib/mesa/src/gbm/Makefile.in
    U xenocara/lib/mesa/src/gbm/gbm-symbols-check
    U xenocara/lib/mesa/src/gbm/Makefile.am
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_driint.h
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_dri.c
    U xenocara/lib/mesa/src/gbm/main/backend.c
    U xenocara/lib/mesa/src/gbm/main/gbm.c
    U xenocara/lib/mesa/src/gbm/main/gbm.h
    U xenocara/lib/mesa/src/gbm/main/gbmint.h
    U xenocara/lib/mesa/src/gbm/main/gbm.pc.in
    U xenocara/lib/mesa/src/gbm/main/backend.h
    U xenocara/lib/mesa/src/gbm/main/common_drm.h
    U xenocara/lib/mesa/src/compiler/glsl_types.cpp
    U xenocara/lib/mesa/src/compiler/Makefile.sources
    U xenocara/lib/mesa/src/compiler/shader_enums.c
    C xenocara/lib/mesa/src/compiler/Makefile.in
    U xenocara/lib/mesa/src/compiler/shader_enums.h
    U xenocara/lib/mesa/src/compiler/SConscript
    N xenocara/lib/mesa/src/compiler/Makefile.glsl.am
    N xenocara/lib/mesa/src/compiler/Makefile.nir.am
    C xenocara/lib/mesa/src/compiler/Makefile.am
    N xenocara/lib/mesa/src/compiler/SConscript.nir
    U xenocara/lib/mesa/src/compiler/nir_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl_types.h
    N xenocara/lib/mesa/src/compiler/SConscript.glsl
    U xenocara/lib/mesa/src/compiler/nir_types.h
    U xenocara/lib/mesa/src/compiler/builtin_type_macros.h
    N xenocara/lib/mesa/src/compiler/spirv/vtn_cfg.c
    N xenocara/lib/mesa/src/compiler/spirv/spirv.h
    N xenocara/lib/mesa/src/compiler/spirv/GLSL.std.450.h
    N xenocara/lib/mesa/src/compiler/spirv/spirv_to_nir.c
    N xenocara/lib/mesa/src/compiler/spirv/nir_spirv.h
    N xenocara/lib/mesa/src/compiler/spirv/vtn_glsl450.c
    N xenocara/lib/mesa/src/compiler/spirv/vtn_variables.c
    N xenocara/lib/mesa/src/compiler/spirv/vtn_alu.c
    N xenocara/lib/mesa/src/compiler/spirv/vtn_private.h
    N xenocara/lib/mesa/src/compiler/spirv/spirv_info.c
    N xenocara/lib/mesa/src/compiler/spirv/spirv2nir.c
    N xenocara/lib/mesa/src/compiler/spirv/spirv_info.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_mat_op_to_vec.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code_local.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_swizzle_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_noop_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packed_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vertex_id.cpp
    N xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.cpp
    U xenocara/lib/mesa/src/compiler/glsl/TODO
    U xenocara/lib/mesa/src/compiler/glsl/opt_structure_splitting.cpp
    N xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.py
    U xenocara/lib/mesa/src/compiler/glsl/ast_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.h
    U xenocara/lib/mesa/src/compiler/glsl/program.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_equals.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_variable.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_packing_builtins.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_redundant_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_offset_array.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_inlining.h
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_vectorize.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_shared_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/README
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_folding.cpp
    N xenocara/lib/mesa/src/compiler/glsl/cache.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_noise.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_expr.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_named_interface_blocks.cpp
    N xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_algebraic.cpp
    N xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_constant.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_validate.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_instructions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_to_hir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_functions.cpp
    N xenocara/lib/mesa/src/compiler/glsl/cache.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_clone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector.cpp
    N xenocara/lib/mesa/src/compiler/glsl/propagate_invariance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.cpp
    N xenocara/lib/mesa/src/compiler/glsl/lower_distance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_array_index.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_tess_level.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation_elements.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_variable_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_ubo_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_initializers.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_texture_projection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_controls.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flip_matrices.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_visitor.h
    N xenocara/lib/mesa/src/compiler/glsl/standalone.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_output_reads.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.ll
    U xenocara/lib/mesa/src/compiler/glsl/opt_conditional_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_type.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_detect_recursion.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hv_accept.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_array_splitting.cpp
    N xenocara/lib/mesa/src/compiler/glsl/standalone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_unroll.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_atomics.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_const_arrays_to_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_insert.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_constant_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_set_program_inouts.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard_flow.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast.h
    U xenocara/lib/mesa/src/compiler/glsl/list.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_can_inline.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_uniform.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_optimization.h
    N xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_strings.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_subroutine.cpp
    U xenocara/lib/mesa/src/compiler/glsl/hir_field_selection.cpp
    N xenocara/lib/mesa/src/compiler/glsl/lower_blend_equation_advanced.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_minmax.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.yy
    U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_rebalance_tree.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_function_inlining.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_tree_grafting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.cpp
    N xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_if_simplification.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.h
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_if_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/main.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_derefs.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/general_ir_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.h
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.cpp
    N xenocara/lib/mesa/src/compiler/glsl/tests/cache_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/varyings_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/builtin_variable_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/copy_constant_to_storage_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/sexps.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/set_uniform_initializer_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/compare_ir
    U xenocara/lib/mesa/src/compiler/glsl/tests/sampler_types_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/blob_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/invalidate_locations_test.cpp
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/uniform_initializer_utils.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/copy_constant_to_storage_tests.Po
    N xenocara/lib/mesa/src/compiler/glsl/tests/.deps/cache_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/varyings_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/blob_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/sampler_types_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/general_ir_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/builtin_variable_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/invalidate_locations_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/set_uniform_initializer_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_jumps/create_test_cases.py
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert
    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/README
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp.c
    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/glcpp-lex.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.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/111-no-space-operator-after-hash-if.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.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/135-duplicate-parameter.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/034-define-func-self-compose-non-func.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/094-divide-by-zero-short-circuit.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/053-if-divide-and-shift.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c.expected
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.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/136-plus-plus-and-minus-minus.c.expected
    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/079-endif-without-if.c.expected
    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/049-if-expression-precedence.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/077-else-without-if.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/005-define-composite-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.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/098-elif-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c.expected
    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/105-multiline-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.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/121-comment-bug-72686.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/054-if-with-macros.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/084-unbalanced-parentheses.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/094-divide-by-zero-short-circuit.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected
    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/116-disable-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.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/103-garbage-after-else-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.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/134-hash-comment-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c.expected
    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/023-define-extra-whitespace.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/060-left-paren-in-macro-right-paren-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.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/077-else-without-if.c
    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/026-define-func-extra-newlines.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/008-define-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp-test
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c.expected
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c.expected
    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/005-define-composite-chain.c.expected
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c.expected
    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/006-define-composite-chain-reverse.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/086-reserved-macro-names.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/048-if-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/125-es-short-circuit-undefined.c.expected
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c.expected
    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/002-define-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.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/079-endif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c
    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/029-define-chain-obj-to-func-with-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.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/001-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.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/141-pragma-and-__LINE__.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.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/011-define-func-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c.expected
    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/071-punctuator.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.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/043-if-0-else.c.expected
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.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/051-if-relational.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/140-null-directive.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/120-undef-builtin.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.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/110-no-space-digits-after-hash-elif.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/067-nested-ifdef-ifndef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.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/139-define-without-macro-name.c.expected
    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/003-define-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.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/097-paste-with-non-function-macro.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/012-define-func-no-args.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/135-duplicate-parameter.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/031-define-chain-func-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c.expected
    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/048-if-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.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/112-no-space-operator-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.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/023-define-extra-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.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/139-define-without-macro-name.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/091-hash-line.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/037-finalize-unexpanded-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.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/106-multiline-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c.expected
    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/038-func-arg-with-commas.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.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/004-define-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.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/064-version.c.expected
    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/000-content-with-spaces.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.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/068-accidental-pasting.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/054-if-with-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/096-paste-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.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/133-eof-without-newline-comment.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/043-if-0-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.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/020-define-func-2-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c
    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/047-if-elif-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.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/039-func-arg-obj-macro-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected
    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/014-define-func-2-arg-unused.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/119-elif-after-else.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/115-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.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/042-if-1.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/127-pragma-empty.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/041-if-0.c.expected
    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/128-space-before-hash.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/133-eof-without-newline-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.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/100-macro-with-colon.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.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/117-line-continuation-and-non-continuation-backslash.c.expected
    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/088-redefine-macro-legitimate.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/078-elif-without-if.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/093-divide-by-zero.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/026-define-func-extra-newlines.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/027-define-chain-obj-to-func.c
    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/125-es-short-circuit-undefined.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/118-comment-becomes-space.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/059-token-pasting-integer.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.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/136-plus-plus-and-minus-minus.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/130-define-comment.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/029-define-chain-obj-to-func-with-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c
    N xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c
    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/126-garbage-after-directive.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/093-divide-by-zero.c
    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/105-multiline-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.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/024-define-chain-to-self-recursion.c
    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/134-hash-comment-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected
    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/022-define-func-arg-with-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/114-paste-integer-tokens.c
    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/glcpp-test-cr-lf
    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/052-if-bitwise.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/061-define-chain-obj-to-func-multi.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_clamp_color_outputs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_vla.h
    U xenocara/lib/mesa/src/compiler/nir/nir_search.c
    U xenocara/lib/mesa/src/compiler/nir/nir_validate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_clone.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_two_sided_color.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_double_ops.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_global_to_local.c
    N xenocara/lib/mesa/src/compiler/nir/nir_inline_functions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_global_vars_to_local.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_indirect_derefs.c
    U xenocara/lib/mesa/src/compiler/nir/nir.h
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_var_copies.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_temporaries.c
    U xenocara/lib/mesa/src/compiler/nir/nir_normalize_cubemap_coords.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_remove_phis.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip.c
    U xenocara/lib/mesa/src/compiler/nir/nir_metadata.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_dominance.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_tex.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_gcm.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_io_types.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_gs_intrinsics.c
    N xenocara/lib/mesa/src/compiler/nir/nir_gather_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_system_values.c
    N xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_propagate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_search.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vars_to_ssa.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_bitmap.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dce.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_atomics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.py
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.c
    N 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_instr_set.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_undef.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_center.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_cse.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_phis_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.h
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_c.py
    N xenocara/lib/mesa/src/compiler/nir/nir_search_helpers.h
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_passthrough_edgeflags.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.h
    U xenocara/lib/mesa/src/compiler/nir/nir_print.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec_to_movs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_sweep.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow_private.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_remove_dead_variables.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_split_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.py
    N xenocara/lib/mesa/src/compiler/nir/nir_propagate_invariant.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_idiv.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.h
    U xenocara/lib/mesa/src/compiler/nir/nir_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_to_source_mods.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_double_packing.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_ytransform.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_peephole_select.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_load_const_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_liveness.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gs_count_vertices.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_cf.c
    U xenocara/lib/mesa/src/compiler/nir/nir.c
    N xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_array.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_locals_to_regs.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_drawpixels.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_returns.c
    U xenocara/lib/mesa/src/compiler/nir/nir_from_ssa.c
    N xenocara/lib/mesa/src/compiler/nir/nir_repair_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_samplers.c
    U xenocara/lib/mesa/src/compiler/nir/tests/control_flow_tests.cpp
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/nir_tests_control_flow_tests-control_flow_tests.Po
    U xenocara/lib/mesa/src/loader/loader.c
    U xenocara/lib/mesa/src/loader/Makefile.sources
    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/loader_dri3_helper.c
    C xenocara/lib/mesa/src/loader/Makefile.in
    U xenocara/lib/mesa/src/loader/loader_dri3_helper.h
    U xenocara/lib/mesa/src/loader/SConscript
    U xenocara/lib/mesa/src/loader/Makefile.am
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.h
    U xenocara/lib/mesa/src/glx/packsingle.h
    U xenocara/lib/mesa/src/glx/glxconfig.h
    U xenocara/lib/mesa/src/glx/glxconfig.c
    U xenocara/lib/mesa/src/glx/glx_query.c
    U xenocara/lib/mesa/src/glx/dri_glx.c
    U xenocara/lib/mesa/src/glx/glxclient.h
    U xenocara/lib/mesa/src/glx/indirect.h
    N xenocara/lib/mesa/src/glx/glxglvnddispatchfuncs.h
    U xenocara/lib/mesa/src/glx/xfont.c
    U xenocara/lib/mesa/src/glx/clientattrib.c
    U xenocara/lib/mesa/src/glx/glxhash.c
    U xenocara/lib/mesa/src/glx/pixel.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_program.c
    U xenocara/lib/mesa/src/glx/indirect_size.c
    N xenocara/lib/mesa/src/glx/g_glxglvnddispatchindices.h
    U xenocara/lib/mesa/src/glx/indirect_texture_compression.c
    U xenocara/lib/mesa/src/glx/dri2_priv.h
    U xenocara/lib/mesa/src/glx/dri_common_query_renderer.c
    U xenocara/lib/mesa/src/glx/indirect.c
    N xenocara/lib/mesa/src/glx/dri_common_interop.c
    U xenocara/lib/mesa/src/glx/drisw_glx.c
    U xenocara/lib/mesa/src/glx/compsize.c
    U xenocara/lib/mesa/src/glx/glxextensions.h
    U xenocara/lib/mesa/src/glx/dri3_priv.h
    U xenocara/lib/mesa/src/glx/glxcurrent.c
    U xenocara/lib/mesa/src/glx/indirect_size.h
    U xenocara/lib/mesa/src/glx/packrender.h
    U xenocara/lib/mesa/src/glx/dri2.h
    U xenocara/lib/mesa/src/glx/render2.c
    C xenocara/lib/mesa/src/glx/Makefile.in
    U xenocara/lib/mesa/src/glx/glxcmds.c
    U xenocara/lib/mesa/src/glx/create_context.c
    U xenocara/lib/mesa/src/glx/indirect_init.h
    U xenocara/lib/mesa/src/glx/query_renderer.c
    U xenocara/lib/mesa/src/glx/glx_error.h
    U xenocara/lib/mesa/src/glx/XF86dri.c
    N xenocara/lib/mesa/src/glx/g_glxglvnddispatchfuncs.c
    U xenocara/lib/mesa/src/glx/dri_common.c
    U xenocara/lib/mesa/src/glx/indirect_transpose_matrix.c
    U xenocara/lib/mesa/src/glx/clientinfo.c
    U xenocara/lib/mesa/src/glx/single2.c
    U xenocara/lib/mesa/src/glx/SConscript
    U xenocara/lib/mesa/src/glx/glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/singlepix.c
    C xenocara/lib/mesa/src/glx/Makefile.am
    U xenocara/lib/mesa/src/glx/indirect_vertex_array_priv.h
    U xenocara/lib/mesa/src/glx/xf86dristr.h
    U xenocara/lib/mesa/src/glx/dri_sarea.h
    U xenocara/lib/mesa/src/glx/glxextensions.c
    U xenocara/lib/mesa/src/glx/dri_common.h
    U xenocara/lib/mesa/src/glx/indirect_init.c
    U xenocara/lib/mesa/src/glx/dri3_glx.c
    U xenocara/lib/mesa/src/glx/indirect_window_pos.c
    U xenocara/lib/mesa/src/glx/renderpix.c
    U xenocara/lib/mesa/src/glx/xf86dri.h
    N xenocara/lib/mesa/src/glx/glxglvnd.h
    U xenocara/lib/mesa/src/glx/glxhash.h
    N xenocara/lib/mesa/src/glx/driwindows_glx.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.h
    U xenocara/lib/mesa/src/glx/dri2_glx.c
    N xenocara/lib/mesa/src/glx/glxglvnd.c
    U xenocara/lib/mesa/src/glx/glx_error.c
    U xenocara/lib/mesa/src/glx/indirect_glx.c
    U xenocara/lib/mesa/src/glx/drisw_priv.h
    U xenocara/lib/mesa/src/glx/applegl_glx.c
    U xenocara/lib/mesa/src/glx/dri2.c
    U xenocara/lib/mesa/src/glx/vertarr.c
    U xenocara/lib/mesa/src/glx/pixelstore.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.c
    U xenocara/lib/mesa/src/glx/eval.c
    U xenocara/lib/mesa/src/glx/glxext.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.h
    U xenocara/lib/mesa/src/glx/apple/TODO
    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.h
    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_surface.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_stereo.c
    C xenocara/lib/mesa/src/glx/apple/Makefile.in
    U xenocara/lib/mesa/src/glx/apple/RELEASE_NOTES
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_viewport.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.c
    U xenocara/lib/mesa/src/glx/apple/appledri.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.c
    U xenocara/lib/mesa/src/glx/apple/Makefile.am
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_read.c
    U xenocara/lib/mesa/src/glx/apple/appledri.h
    U xenocara/lib/mesa/src/glx/apple/apple_glapi.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.h
    U xenocara/lib/mesa/src/glx/apple/apple_visual.h
    U xenocara/lib/mesa/src/glx/apple/appledristr.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.c
    U xenocara/lib/mesa/src/glx/apple/glx_empty.c
    U xenocara/lib/mesa/src/glx/tests/enum_sizes.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.h
    U xenocara/lib/mesa/src/glx/tests/query_renderer_implementation_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/query_renderer_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/indirect_api.cpp
    C xenocara/lib/mesa/src/glx/tests/Makefile.in
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.cpp
    U xenocara/lib/mesa/src/glx/tests/Makefile.am
    U xenocara/lib/mesa/src/glx/tests/clientinfo_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/mock_xdisplay.h
    U xenocara/lib/mesa/src/glx/tests/create_context_unittest.cpp
    N xenocara/lib/mesa/src/glx/windows/windowsdristr.h
    N xenocara/lib/mesa/src/glx/windows/wgl.c
    N xenocara/lib/mesa/src/glx/windows/wgl.h
    N xenocara/lib/mesa/src/glx/windows/windowsgl.c
    N xenocara/lib/mesa/src/glx/windows/xwindowsdri.c
    N xenocara/lib/mesa/src/glx/windows/windowsgl.h
    N xenocara/lib/mesa/src/glx/windows/Makefile.in
    N xenocara/lib/mesa/src/glx/windows/Makefile.am
    N xenocara/lib/mesa/src/glx/windows/windowsdriconst.h
    N xenocara/lib/mesa/src/glx/windows/windows_drawable.c
    N xenocara/lib/mesa/src/glx/windows/xwindowsdri.h
    N xenocara/lib/mesa/src/glx/windows/windowsgl_internal.h
    N xenocara/lib/mesa/src/glx/windows/windowsdriproto.pc.in
    C xenocara/lib/mesa/src/gtest/Makefile.in
    U xenocara/lib/mesa/src/gtest/Makefile.am
    U xenocara/lib/mesa/src/gtest/src/gtest-printers.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-port.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-typed-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-test-part.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-death-test.cc
    U xenocara/lib/mesa/src/gtest/src/gtest.cc
    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/include/gtest/gtest-spi.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-typed-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-death-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_pred_impl.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_prod.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-test-part.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-message.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-string.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-port.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-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-param-util-generated.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-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/gtest-type-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h
    U xenocara/lib/mesa/src/util/mesa-sha1.h
    U xenocara/lib/mesa/src/util/Makefile.sources
    U xenocara/lib/mesa/src/util/half_float.h
    U xenocara/lib/mesa/src/util/register_allocate.h
    U xenocara/lib/mesa/src/util/u_atomic_test.c
    N xenocara/lib/mesa/src/util/format_rgb9e5.h
    N xenocara/lib/mesa/src/util/string_to_uint_map.h
    U xenocara/lib/mesa/src/util/ralloc.c
    U xenocara/lib/mesa/src/util/ralloc.h
    N xenocara/lib/mesa/src/util/u_vector.h
    C xenocara/lib/mesa/src/util/u_atomic.h
    U xenocara/lib/mesa/src/util/register_allocate.c
    U xenocara/lib/mesa/src/util/strtod.h
    U xenocara/lib/mesa/src/util/format_srgb.h
    U xenocara/lib/mesa/src/util/set.c
    C xenocara/lib/mesa/src/util/Makefile.in
    U xenocara/lib/mesa/src/util/format_srgb.py
    N xenocara/lib/mesa/src/util/vk_alloc.h
    U xenocara/lib/mesa/src/util/half_float.c
    U xenocara/lib/mesa/src/util/rgtc.c
    U xenocara/lib/mesa/src/util/bitset.h
    U xenocara/lib/mesa/src/util/mesa-sha1.c
    N xenocara/lib/mesa/src/util/u_vector.c
    U xenocara/lib/mesa/src/util/strndup.h
    U xenocara/lib/mesa/src/util/macros.h
    U xenocara/lib/mesa/src/util/SConscript
    U xenocara/lib/mesa/src/util/debug.h
    U xenocara/lib/mesa/src/util/Makefile.am
    U xenocara/lib/mesa/src/util/texcompress_rgtc_tmp.h
    U xenocara/lib/mesa/src/util/hash_table.c
    U xenocara/lib/mesa/src/util/set.h
    U xenocara/lib/mesa/src/util/simple_list.h
    U xenocara/lib/mesa/src/util/list.h
    U xenocara/lib/mesa/src/util/strndup.c
    U xenocara/lib/mesa/src/util/roundeven_test.c
    N xenocara/lib/mesa/src/util/bitscan.h
    U xenocara/lib/mesa/src/util/debug.c
    N xenocara/lib/mesa/src/util/format_r11g11b10f.h
    N xenocara/lib/mesa/src/util/slab.h
    U xenocara/lib/mesa/src/util/format_srgb.c
    U xenocara/lib/mesa/src/util/rgtc.h
    U xenocara/lib/mesa/src/util/rounding.h
    N xenocara/lib/mesa/src/util/string_to_uint_map.cpp
    U xenocara/lib/mesa/src/util/strtod.c
    N xenocara/lib/mesa/src/util/bitscan.c
    U xenocara/lib/mesa/src/util/hash_table.h
    N xenocara/lib/mesa/src/util/u_endian.h
    N xenocara/lib/mesa/src/util/slab.c
    U xenocara/lib/mesa/src/util/tests/hash_table/null_destroy.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
    C xenocara/lib/mesa/src/util/tests/hash_table/Makefile.in
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_null.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/Makefile.am
    U xenocara/lib/mesa/src/util/tests/hash_table/random_entry.c
    U xenocara/lib/mesa/src/util/tests/hash_table/replacement.c
    U xenocara/lib/mesa/src/util/tests/hash_table/clear.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_many.c
    N xenocara/lib/mesa/src/intel/Makefile.sources
    N xenocara/lib/mesa/src/intel/Makefile.genxml.am
    N xenocara/lib/mesa/src/intel/Makefile.isl.am
    N xenocara/lib/mesa/src/intel/Makefile.common.am
    N xenocara/lib/mesa/src/intel/Makefile.in
    N xenocara/lib/mesa/src/intel/Makefile.am
    N xenocara/lib/mesa/src/intel/Makefile.blorp.am
    N xenocara/lib/mesa/src/intel/tools/decoder.c
    N xenocara/lib/mesa/src/intel/tools/aubinator.c
    N xenocara/lib/mesa/src/intel/tools/Makefile.in
    N xenocara/lib/mesa/src/intel/tools/gen_disasm.h
    N xenocara/lib/mesa/src/intel/tools/decoder.h
    N xenocara/lib/mesa/src/intel/tools/Makefile.am
    N xenocara/lib/mesa/src/intel/tools/disasm.c
    N xenocara/lib/mesa/src/intel/genxml/gen45.xml
    N xenocara/lib/mesa/src/intel/genxml/gen_pack_header.py
    N xenocara/lib/mesa/src/intel/genxml/gen75_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen7_xml.h
    N xenocara/lib/mesa/src/intel/genxml/gen75.xml
    N xenocara/lib/mesa/src/intel/genxml/gen4.xml
    N xenocara/lib/mesa/src/intel/genxml/gen5.xml
    N xenocara/lib/mesa/src/intel/genxml/README
    N xenocara/lib/mesa/src/intel/genxml/gen9_xml.h
    N xenocara/lib/mesa/src/intel/genxml/gen6_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen8.xml
    N xenocara/lib/mesa/src/intel/genxml/gen45_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen8_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen5_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen4_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen6.xml
    N xenocara/lib/mesa/src/intel/genxml/gen6_xml.h
    N xenocara/lib/mesa/src/intel/genxml/genX_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen9.xml
    N xenocara/lib/mesa/src/intel/genxml/gen_macros.h
    N xenocara/lib/mesa/src/intel/genxml/gen7.xml
    N xenocara/lib/mesa/src/intel/genxml/gen7_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen75_xml.h
    N xenocara/lib/mesa/src/intel/genxml/gen9_pack.h
    N xenocara/lib/mesa/src/intel/genxml/gen8_xml.h
    N xenocara/lib/mesa/src/intel/blorp/blorp_blit.c
    N xenocara/lib/mesa/src/intel/blorp/blorp.c
    N xenocara/lib/mesa/src/intel/blorp/blorp_clear.c
    N xenocara/lib/mesa/src/intel/blorp/blorp.h
    N xenocara/lib/mesa/src/intel/blorp/blorp_priv.h
    N xenocara/lib/mesa/src/intel/blorp/blorp_genX_exec.h
    N xenocara/lib/mesa/src/intel/common/gen_sample_positions.h
    N xenocara/lib/mesa/src/intel/common/gen_device_info.h
    N xenocara/lib/mesa/src/intel/common/gen_l3_config.c
    N xenocara/lib/mesa/src/intel/common/gen_device_info.c
    N xenocara/lib/mesa/src/intel/common/gen_l3_config.h
    N xenocara/lib/mesa/src/intel/isl/isl_gen6.c
    N xenocara/lib/mesa/src/intel/isl/isl_gen8.c
    N xenocara/lib/mesa/src/intel/isl/isl.h
    N xenocara/lib/mesa/src/intel/isl/isl_storage_image.c
    N xenocara/lib/mesa/src/intel/isl/isl_gen9.h
    N xenocara/lib/mesa/src/intel/isl/gen_format_layout.py
    N xenocara/lib/mesa/src/intel/isl/README
    N xenocara/lib/mesa/src/intel/isl/isl_gen6.h
    N xenocara/lib/mesa/src/intel/isl/isl_format_layout.c
    N xenocara/lib/mesa/src/intel/isl/isl_gen9.c
    N xenocara/lib/mesa/src/intel/isl/isl_surface_state.c
    N xenocara/lib/mesa/src/intel/isl/isl_gen4.h
    N xenocara/lib/mesa/src/intel/isl/isl_format.c
    N xenocara/lib/mesa/src/intel/isl/isl_format_layout.csv
    N xenocara/lib/mesa/src/intel/isl/isl_gen7.c
    N xenocara/lib/mesa/src/intel/isl/isl_gen8.h
    N xenocara/lib/mesa/src/intel/isl/isl.c
    N xenocara/lib/mesa/src/intel/isl/isl_gen7.h
    N xenocara/lib/mesa/src/intel/isl/isl_priv.h
    N xenocara/lib/mesa/src/intel/isl/isl_gen4.c
    N xenocara/lib/mesa/src/intel/isl/tests/isl_surf_get_image_offset_test.c
    N xenocara/lib/mesa/src/intel/vulkan/Makefile.sources
    N xenocara/lib/mesa/src/intel/vulkan/anv_query.c
    N xenocara/lib/mesa/src/intel/vulkan/TODO
    N xenocara/lib/mesa/src/intel/vulkan/gen7_pipeline.c
    N xenocara/lib/mesa/src/intel/vulkan/genX_cmd_buffer.c
    N xenocara/lib/mesa/src/intel/vulkan/genX_state.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_genX.h
    N xenocara/lib/mesa/src/intel/vulkan/anv_allocator.c
    N xenocara/lib/mesa/src/intel/vulkan/genX_pipeline.c
    N xenocara/lib/mesa/src/intel/vulkan/gen8_cmd_buffer.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_dynamic_offsets.c
    N xenocara/lib/mesa/src/intel/vulkan/intel_icd.json.in
    N xenocara/lib/mesa/src/intel/vulkan/anv_wsi.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_push_constants.c
    N xenocara/lib/mesa/src/intel/vulkan/vk_format_info.h
    N xenocara/lib/mesa/src/intel/vulkan/anv_blorp.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_intel.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_image.c
    N xenocara/lib/mesa/src/intel/vulkan/Makefile.in
    N xenocara/lib/mesa/src/intel/vulkan/anv_batch_chain.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_pass.c
    N xenocara/lib/mesa/src/intel/vulkan/genX_pipeline_util.h
    N xenocara/lib/mesa/src/intel/vulkan/anv_private.h
    N xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.h
    N xenocara/lib/mesa/src/intel/vulkan/Makefile.am
    N xenocara/lib/mesa/src/intel/vulkan/anv_cmd_buffer.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_gem.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_dump.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_pipeline.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_nir.h
    N xenocara/lib/mesa/src/intel/vulkan/genX_blorp_exec.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_descriptor_set.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_timestamp.h
    N xenocara/lib/mesa/src/intel/vulkan/gen8_pipeline.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_formats.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_pipeline_layout.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_device.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_gem_stubs.c
    N xenocara/lib/mesa/src/intel/vulkan/gen7_cmd_buffer.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints_gen.py
    N xenocara/lib/mesa/src/intel/vulkan/anv_pipeline_cache.c
    N xenocara/lib/mesa/src/intel/vulkan/dev_icd.json.in
    N xenocara/lib/mesa/src/intel/vulkan/anv_util.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_wsi_x11.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_wsi_wayland.c
    N xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_no_free.c
    N xenocara/lib/mesa/src/intel/vulkan/tests/state_pool.c
    N xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_free_list_only.c
    N xenocara/lib/mesa/src/intel/vulkan/tests/block_pool_no_free.c
    N xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_test_helper.h
    N xenocara/lib/mesa/src/amd/Makefile.sources
    N xenocara/lib/mesa/src/amd/Makefile.addrlib.am
    N xenocara/lib/mesa/src/amd/Makefile.in
    N xenocara/lib/mesa/src/amd/Makefile.am
    N xenocara/lib/mesa/src/amd/addrlib/addrinterface.h
    N xenocara/lib/mesa/src/amd/addrlib/addrtypes.h
    N xenocara/lib/mesa/src/amd/addrlib/addrinterface.cpp
    N xenocara/lib/mesa/src/amd/addrlib/inc/lnx_common_defs.h
    N xenocara/lib/mesa/src/amd/addrlib/inc/chip/r800/si_gb_reg.h
    N xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.h
    N xenocara/lib/mesa/src/amd/addrlib/core/addrobject.h
    N xenocara/lib/mesa/src/amd/addrlib/core/addrobject.cpp
    N xenocara/lib/mesa/src/amd/addrlib/core/addrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/core/addrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/core/addrcommon.h
    N xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/r800/chip/si_ci_vi_merged_enum.h
    N xenocara/lib/mesa/src/amd/common/Makefile.sources
    N xenocara/lib/mesa/src/amd/common/ac_binary.h
    N xenocara/lib/mesa/src/amd/common/r600d_common.h
    N xenocara/lib/mesa/src/amd/common/ac_llvm_helper.cpp
    N xenocara/lib/mesa/src/amd/common/Makefile.in
    N xenocara/lib/mesa/src/amd/common/ac_llvm_util.h
    N xenocara/lib/mesa/src/amd/common/sid.h
    N xenocara/lib/mesa/src/amd/common/amd_kernel_code_t.h
    N xenocara/lib/mesa/src/amd/common/Makefile.am
    N xenocara/lib/mesa/src/amd/common/amdgpu_id.h
    N xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.c
    N xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.h
    N xenocara/lib/mesa/src/amd/common/amd_family.h
    N xenocara/lib/mesa/src/amd/common/ac_llvm_util.c
    N xenocara/lib/mesa/src/amd/common/ac_binary.c
    N xenocara/lib/mesa/src/amd/vulkan/Makefile.sources
    N xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_copy.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_decompress.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_buffer.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints_gen.py
    N xenocara/lib/mesa/src/amd/vulkan/radv_timestamp.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit2d.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_clear.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_pass.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_fast_clear.c
    N xenocara/lib/mesa/src/amd/vulkan/vk_format_table.py
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_cs.c
    N xenocara/lib/mesa/src/amd/vulkan/Makefile.in
    N xenocara/lib/mesa/src/amd/vulkan/vk_format.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve.c
    N xenocara/lib/mesa/src/amd/vulkan/vk_format_parse.py
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_bufimage.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_device.c
    N xenocara/lib/mesa/src/amd/vulkan/radeon_icd.json.in
    N xenocara/lib/mesa/src/amd/vulkan/radv_private.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_query.c
    N xenocara/lib/mesa/src/amd/vulkan/Makefile.am
    N xenocara/lib/mesa/src/amd/vulkan/radv_util.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_pipeline.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_cache.c
    N xenocara/lib/mesa/src/amd/vulkan/vk_format_table.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_cs.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_image.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_wsi_wayland.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_formats.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_wsi.c
    N xenocara/lib/mesa/src/amd/vulkan/vk_format_layout.csv
    N xenocara/lib/mesa/src/amd/vulkan/radv_radeon_winsys.h
    N xenocara/lib/mesa/src/amd/vulkan/radv_cmd_buffer.c
    N xenocara/lib/mesa/src/amd/vulkan/dev_icd.json.in
    N xenocara/lib/mesa/src/amd/vulkan/si_cmd_buffer.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_wsi_x11.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_util.c
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.h
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.h
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.c
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.h
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys_public.h
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.c
    N xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
    U xenocara/lib/mesa/src/mesa/Makefile.sources
    U xenocara/lib/mesa/src/mesa/gl.pc.in
    C xenocara/lib/mesa/src/mesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/SConscript
    C xenocara/lib/mesa/src/mesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/SConscript
    N xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.def
    C xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.in
    N xenocara/lib/mesa/src/mesa/drivers/osmesa/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/dri.pc.in
    C xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.am
    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/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_image.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_line.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_intrinsics.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_allocator.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cc.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_blend_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_tri.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_d2x.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.h
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sync.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_monitor.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_packed_float.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_sel_peephole.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_tcs_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reset.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_disasm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_util.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_constant_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_uniforms.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_disable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_conditional_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_misc_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/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_vs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.h
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_pack.cpp
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_builder.h
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depthstencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_point.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_dump.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compute.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_curbe.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_batch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_attribute_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_cc.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_eu_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_unfilled.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_defines.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_misc_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_nir.cpp
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ps_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vue_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_combine_constants.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_cache.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_wm_state.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_formatquery.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_state.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_structs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_cs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_analyze_boolean_resolves.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_iz.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_upload.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_blorp_exec.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_link.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_l3_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_predicated_break.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_validate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_image.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_inst.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_opt_peephole_ffma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_te_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_scissor_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vf_float_conversions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_interpolation_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_texstate.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_fragshader.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_fragprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texblend.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_vtbl.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_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_syncobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.sources
    C xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast_priv.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.sources
    C xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlconfig.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/SConscript
    C xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.am
    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/xmlconfig.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/drirc
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv.po
    C xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/gen_xmlpool.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/t_options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl/LC_MESSAGES/options.mo
    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_surface.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_render.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.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/nouveau_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_generate_mipmap.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa_x.h
    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/glxheader.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.h
    C xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/fakeglx.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_line.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.am
    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/glxapi.c
    U xenocara/lib/mesa/src/mesa/sparc/sparc_matrix.h
    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.c
    U xenocara/lib/mesa/src/mesa/sparc/xform.S
    U xenocara/lib/mesa/src/mesa/sparc/norm.S
    U xenocara/lib/mesa/src/mesa/math/m_matrix.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_debug.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_util.h
    U xenocara/lib/mesa/src/mesa/math/m_dotprod_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_translate.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.c
    U xenocara/lib/mesa/src/mesa/math/m_clip_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.h
    U xenocara/lib/mesa/src/mesa/math/m_vector.h
    U xenocara/lib/mesa/src/mesa/math/m_matrix.c
    U xenocara/lib/mesa/src/mesa/math/m_vector.c
    U xenocara/lib/mesa/src/mesa/math/m_norm_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_norm.c
    U xenocara/lib/mesa/src/mesa/math/m_trans_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_clip.c
    U xenocara/lib/mesa/src/mesa/math/m_xform_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_translate.c
    U xenocara/lib/mesa/src/mesa/math/m_copy_tmp.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse.h
    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/x86_xform.c
    U xenocara/lib/mesa/src/mesa/x86/mmx_blendtmp.h
    U xenocara/lib/mesa/src/mesa/x86/x86_cliptest.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.c
    U xenocara/lib/mesa/src/mesa/x86/sse_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/assyntax.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_features.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86.c
    U xenocara/lib/mesa/src/mesa/x86/xform_args.h
    U xenocara/lib/mesa/src/mesa/x86/sse.c
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.h
    U xenocara/lib/mesa/src/mesa/x86/clip_args.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/norm_args.h
    U xenocara/lib/mesa/src/mesa/x86/mmx_blend.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/gen_matypes.c
    U xenocara/lib/mesa/src/mesa/x86/mmx.h
    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/swrast/s_context.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aalinetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.c
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.h
    U xenocara/lib/mesa/src/mesa/swrast/s_linetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/NOTES
    U xenocara/lib/mesa/src/mesa/swrast/s_blit.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.h
    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_aaline.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.h
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.c
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch_tmp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.c
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.h
    U xenocara/lib/mesa/src/mesa/swrast/s_clear.c
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.c
    U xenocara/lib/mesa/src/mesa/swrast/swrast.h
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.c
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.h
    U xenocara/lib/mesa/src/mesa/swrast/s_tritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.h
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.h
    U xenocara/lib/mesa/src/mesa/swrast/s_bitmap.c
    U xenocara/lib/mesa/src/mesa/swrast/s_copypix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texrender.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texture.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.h
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.h
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.h
    U xenocara/lib/mesa/src/mesa/swrast/s_drawpix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.c
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.h
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.h
    U xenocara/lib/mesa/src/mesa/swrast/s_chan.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatritemp.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_dmatmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_tritmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_unfilled.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_inplace.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib_tmp.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_copy.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_rebase.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_eval.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_array.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_minmax_index.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_loopback.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_sampler.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_array.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cache.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gl_api.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels_shader.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
    N xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_builtin.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.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_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw_feedback.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_atomicbuf.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_atom_tess.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_depth.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_clip.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_image.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_storagebuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_scissor.c
    N xenocara/lib/mesa/src/mesa/state_tracker/st_nir.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_rasterizer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_framebuffer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_atom_list.h
    N xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_stipple.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_blend.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.c
    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_syncobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.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/swrast_setup/ss_context.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/swrast_setup.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/NOTES
    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/ss_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_cliptmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_rendertmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_program.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_generic.c
    U xenocara/lib/mesa/src/mesa/tnl/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_draw.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.h
    U xenocara/lib/mesa/src/mesa/tnl/tnl.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texgen.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_points.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_render.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_normals.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texmat.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_light.c
    U xenocara/lib/mesa/src/mesa/tnl/t_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_lighttmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_context.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_sse.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_fog.c
    U xenocara/lib/mesa/src/mesa/main/matrix.c
    U xenocara/lib/mesa/src/mesa/main/shader_query.cpp
    U xenocara/lib/mesa/src/mesa/main/arrayobj.c
    U xenocara/lib/mesa/src/mesa/main/texstore.h
    U xenocara/lib/mesa/src/mesa/main/formats.c
    U xenocara/lib/mesa/src/mesa/main/fbobject.c
    U xenocara/lib/mesa/src/mesa/main/teximage.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.c
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.c
    U xenocara/lib/mesa/src/mesa/main/queryobj.c
    U xenocara/lib/mesa/src/mesa/main/copyimage.c
    U xenocara/lib/mesa/src/mesa/main/texobj.c
    U xenocara/lib/mesa/src/mesa/main/remap.c
    U xenocara/lib/mesa/src/mesa/main/lines.c
    U xenocara/lib/mesa/src/mesa/main/format_pack.py
    U xenocara/lib/mesa/src/mesa/main/framebuffer.h
    U xenocara/lib/mesa/src/mesa/main/api_exec.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.h
    U xenocara/lib/mesa/src/mesa/main/pbo.h
    U xenocara/lib/mesa/src/mesa/main/dispatch.h
    U xenocara/lib/mesa/src/mesa/main/readpix.h
    U xenocara/lib/mesa/src/mesa/main/formatquery.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.h
    U xenocara/lib/mesa/src/mesa/main/texparam.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.c
    U xenocara/lib/mesa/src/mesa/main/extensions.h
    U xenocara/lib/mesa/src/mesa/main/fbobject.h
    U xenocara/lib/mesa/src/mesa/main/format_info.py
    U xenocara/lib/mesa/src/mesa/main/ff_fragment_shader.cpp
    U xenocara/lib/mesa/src/mesa/main/dlist.c
    U xenocara/lib/mesa/src/mesa/main/texgen.c
    U xenocara/lib/mesa/src/mesa/main/execmem.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.h
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.c
    U xenocara/lib/mesa/src/mesa/main/blend.c
    U xenocara/lib/mesa/src/mesa/main/pixel.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.c
    U xenocara/lib/mesa/src/mesa/main/clip.h
    U xenocara/lib/mesa/src/mesa/main/get_hash_params.py
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.c
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.h
    U xenocara/lib/mesa/src/mesa/main/colortab.c
    U xenocara/lib/mesa/src/mesa/main/texenv.c
    U xenocara/lib/mesa/src/mesa/main/bufferobj.h
    U xenocara/lib/mesa/src/mesa/main/blit.c
    U xenocara/lib/mesa/src/mesa/main/shared.c
    U xenocara/lib/mesa/src/mesa/main/atifragshader.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.c
    U xenocara/lib/mesa/src/mesa/main/extensions_table.h
    U xenocara/lib/mesa/src/mesa/main/light.h
    U xenocara/lib/mesa/src/mesa/main/getstring.c
    U xenocara/lib/mesa/src/mesa/main/formats.csv
    U xenocara/lib/mesa/src/mesa/main/mm.c
    U xenocara/lib/mesa/src/mesa/main/points.c
    U xenocara/lib/mesa/src/mesa/main/objectlabel.c
    U xenocara/lib/mesa/src/mesa/main/varray.c
    U xenocara/lib/mesa/src/mesa/main/pack.c
    U xenocara/lib/mesa/src/mesa/main/eval.h
    U xenocara/lib/mesa/src/mesa/main/blend.h
    U xenocara/lib/mesa/src/mesa/main/polygon.c
    U xenocara/lib/mesa/src/mesa/main/fog.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.h
    N xenocara/lib/mesa/src/mesa/main/bbox.h
    N xenocara/lib/mesa/src/mesa/main/bbox.c
    U xenocara/lib/mesa/src/mesa/main/context.c
    U xenocara/lib/mesa/src/mesa/main/errors.h
    U xenocara/lib/mesa/src/mesa/main/teximage.c
    U xenocara/lib/mesa/src/mesa/main/buffers.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/main/formatquery.c
    U xenocara/lib/mesa/src/mesa/main/extensions.c
    U xenocara/lib/mesa/src/mesa/main/state.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.c
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.h
    U xenocara/lib/mesa/src/mesa/main/glheader.h
    U xenocara/lib/mesa/src/mesa/main/texparam.c
    U xenocara/lib/mesa/src/mesa/main/points.h
    U xenocara/lib/mesa/src/mesa/main/mm.h
    U xenocara/lib/mesa/src/mesa/main/texstorage.c
    U xenocara/lib/mesa/src/mesa/main/clip.c
    U xenocara/lib/mesa/src/mesa/main/dlist.h
    U xenocara/lib/mesa/src/mesa/main/format_info.h
    U xenocara/lib/mesa/src/mesa/main/bufferobj.c
    U xenocara/lib/mesa/src/mesa/main/arrayobj.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.c
    U xenocara/lib/mesa/src/mesa/main/light.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.c
    U xenocara/lib/mesa/src/mesa/main/get_hash.h
    U xenocara/lib/mesa/src/mesa/main/state.h
    U xenocara/lib/mesa/src/mesa/main/convolve.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.c
    U xenocara/lib/mesa/src/mesa/main/arbprogram.h
    U xenocara/lib/mesa/src/mesa/main/texcompress.c
    U xenocara/lib/mesa/src/mesa/main/multisample.c
    U xenocara/lib/mesa/src/mesa/main/debug_output.c
    U xenocara/lib/mesa/src/mesa/main/texformat.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.h
    U xenocara/lib/mesa/src/mesa/main/glformats.c
    U xenocara/lib/mesa/src/mesa/main/multisample.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.c
    U xenocara/lib/mesa/src/mesa/main/core.h
    U xenocara/lib/mesa/src/mesa/main/accum.h
    U xenocara/lib/mesa/src/mesa/main/pack.h
    U xenocara/lib/mesa/src/mesa/main/atifragshader.h
    U xenocara/lib/mesa/src/mesa/main/stencil.h
    U xenocara/lib/mesa/src/mesa/main/shaderapi.c
    U xenocara/lib/mesa/src/mesa/main/remap.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.c
    U xenocara/lib/mesa/src/mesa/main/imports.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.py
    U xenocara/lib/mesa/src/mesa/main/get_hash_generator.py
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.c
    U xenocara/lib/mesa/src/mesa/main/texgen.h
    U xenocara/lib/mesa/src/mesa/main/hint.h
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.h
    U xenocara/lib/mesa/src/mesa/main/hash.h
    U xenocara/lib/mesa/src/mesa/main/viewport.h
    U xenocara/lib/mesa/src/mesa/main/dlopen.h
    U xenocara/lib/mesa/src/mesa/main/textureview.h
    U xenocara/lib/mesa/src/mesa/main/blit.h
    U xenocara/lib/mesa/src/mesa/main/errors.c
    U xenocara/lib/mesa/src/mesa/main/version.h
    U xenocara/lib/mesa/src/mesa/main/hash.c
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.c
    U xenocara/lib/mesa/src/mesa/main/texstore.c
    U xenocara/lib/mesa/src/mesa/main/glformats.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.h
    U xenocara/lib/mesa/src/mesa/main/mtypes.h
    U xenocara/lib/mesa/src/mesa/main/objectlabel.h
    U xenocara/lib/mesa/src/mesa/main/condrender.h
    U xenocara/lib/mesa/src/mesa/main/scissor.c
    U xenocara/lib/mesa/src/mesa/main/api_exec.c
    U xenocara/lib/mesa/src/mesa/main/macros.h
    U xenocara/lib/mesa/src/mesa/main/syncobj.h
    U xenocara/lib/mesa/src/mesa/main/image.h
    U xenocara/lib/mesa/src/mesa/main/compute.c
    U xenocara/lib/mesa/src/mesa/main/enable.h
    U xenocara/lib/mesa/src/mesa/main/texgetimage.h
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.c
    U xenocara/lib/mesa/src/mesa/main/syncobj.c
    U xenocara/lib/mesa/src/mesa/main/colortab.h
    N xenocara/lib/mesa/src/mesa/main/extensions_table.c
    U xenocara/lib/mesa/src/mesa/main/debug.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.c
    U xenocara/lib/mesa/src/mesa/main/dd.h
    U xenocara/lib/mesa/src/mesa/main/samplerobj.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.h
    U xenocara/lib/mesa/src/mesa/main/depth.c
    U xenocara/lib/mesa/src/mesa/main/texcompress.h
    U xenocara/lib/mesa/src/mesa/main/context.h
    U xenocara/lib/mesa/src/mesa/main/remap_helper.h
    U xenocara/lib/mesa/src/mesa/main/shared.h
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.c
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.h
    U xenocara/lib/mesa/src/mesa/main/convolve.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.h
    U xenocara/lib/mesa/src/mesa/main/compute.h
    U xenocara/lib/mesa/src/mesa/main/copyimage.h
    U xenocara/lib/mesa/src/mesa/main/formats.h
    U xenocara/lib/mesa/src/mesa/main/enable.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.c
    U xenocara/lib/mesa/src/mesa/main/textureview.c
    U xenocara/lib/mesa/src/mesa/main/shaderobj.h
    U xenocara/lib/mesa/src/mesa/main/feedback.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.c
    U xenocara/lib/mesa/src/mesa/main/vdpau.h
    U xenocara/lib/mesa/src/mesa/main/accum.c
    U xenocara/lib/mesa/src/mesa/main/format_parser.py
    U xenocara/lib/mesa/src/mesa/main/shaderobj.c
    N xenocara/lib/mesa/src/mesa/main/robustness.c
    U xenocara/lib/mesa/src/mesa/main/texgetimage.c
    U xenocara/lib/mesa/src/mesa/main/attrib.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.c
    U xenocara/lib/mesa/src/mesa/main/clear.h
    U xenocara/lib/mesa/src/mesa/main/debug_output.h
    U xenocara/lib/mesa/src/mesa/main/scissor.h
    U xenocara/lib/mesa/src/mesa/main/pixel.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.h
    U xenocara/lib/mesa/src/mesa/main/attrib.c
    U xenocara/lib/mesa/src/mesa/main/texenvprogram.h
    U xenocara/lib/mesa/src/mesa/main/stencil.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.h
    U xenocara/lib/mesa/src/mesa/main/varray.h
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.c
    U xenocara/lib/mesa/src/mesa/main/histogram.c
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.h
    U xenocara/lib/mesa/src/mesa/main/drawtex.c
    U xenocara/lib/mesa/src/mesa/main/shaderapi.h
    U xenocara/lib/mesa/src/mesa/main/condrender.c
    U xenocara/lib/mesa/src/mesa/main/histogram.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.c
    U xenocara/lib/mesa/src/mesa/main/pbo.c
    U xenocara/lib/mesa/src/mesa/main/texenv.h
    U xenocara/lib/mesa/src/mesa/main/imports.h
    U xenocara/lib/mesa/src/mesa/main/feedback.h
    U xenocara/lib/mesa/src/mesa/main/depth.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.h
    U xenocara/lib/mesa/src/mesa/main/queryobj.h
    U xenocara/lib/mesa/src/mesa/main/texobj.h
    U xenocara/lib/mesa/src/mesa/main/readpix.c
    U xenocara/lib/mesa/src/mesa/main/debug.c
    U xenocara/lib/mesa/src/mesa/main/texstorage.h
    U xenocara/lib/mesa/src/mesa/main/colormac.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.c
    U xenocara/lib/mesa/src/mesa/main/clear.c
    U xenocara/lib/mesa/src/mesa/main/uniform_query.cpp
    U xenocara/lib/mesa/src/mesa/main/shaderimage.c
    U xenocara/lib/mesa/src/mesa/main/framebuffer.c
    U xenocara/lib/mesa/src/mesa/main/texstate.h
    U xenocara/lib/mesa/src/mesa/main/image.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.h
    U xenocara/lib/mesa/src/mesa/main/compiler.h
    U xenocara/lib/mesa/src/mesa/main/texstate.c
    U xenocara/lib/mesa/src/mesa/main/polygon.h
    U xenocara/lib/mesa/src/mesa/main/arbprogram.c
    U xenocara/lib/mesa/src/mesa/main/get.h
    U xenocara/lib/mesa/src/mesa/main/fog.c
    U xenocara/lib/mesa/src/mesa/main/texformat.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.h
    U xenocara/lib/mesa/src/mesa/main/shaderimage.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.c
    U xenocara/lib/mesa/src/mesa/main/lines.h
    U xenocara/lib/mesa/src/mesa/main/matrix.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.h
    U xenocara/lib/mesa/src/mesa/main/enums.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.h
    U xenocara/lib/mesa/src/mesa/main/format_unpack.h
    N xenocara/lib/mesa/src/mesa/main/barrier.c
    U xenocara/lib/mesa/src/mesa/main/drawtex.h
    N xenocara/lib/mesa/src/mesa/main/barrier.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.h
    U xenocara/lib/mesa/src/mesa/main/version.c
    U xenocara/lib/mesa/src/mesa/main/hint.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.c
    U xenocara/lib/mesa/src/mesa/main/buffers.c
    U xenocara/lib/mesa/src/mesa/main/viewport.c
    U xenocara/lib/mesa/src/mesa/main/config.h
    U xenocara/lib/mesa/src/mesa/main/eval.c
    U xenocara/lib/mesa/src/mesa/main/enums.h
    U xenocara/lib/mesa/src/mesa/main/get.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.c
    U xenocara/lib/mesa/src/mesa/main/tests/stubs.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/enum_strings.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_formats.cpp
    C xenocara/lib/mesa/src/mesa/main/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/main/tests/program_state_string.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_extensions.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/dispatch_sanity.cpp
    U xenocara/lib/mesa/src/mesa/program/program_parse_extra.c
    U xenocara/lib/mesa/src/mesa/program/program_parser.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.h
    U xenocara/lib/mesa/src/mesa/program/prog_print.c
    U xenocara/lib/mesa/src/mesa/program/program.h
    U xenocara/lib/mesa/src/mesa/program/program_lexer.l
    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.h
    U xenocara/lib/mesa/src/mesa/program/symbol_table.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.y
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.cpp
    U xenocara/lib/mesa/src/mesa/program/program.c
    U xenocara/lib/mesa/src/mesa/program/prog_opt_constant_fold.c
    U xenocara/lib/mesa/src/mesa/program/prog_print.h
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.c
    U xenocara/lib/mesa/src/mesa/program/lex.yy.c
    U xenocara/lib/mesa/src/mesa/program/prog_noise.h
    U xenocara/lib/mesa/src/mesa/program/programopt.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.h
    U xenocara/lib/mesa/src/mesa/program/dummy_errors.c
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.h
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.c
    U xenocara/lib/mesa/src/mesa/program/programopt.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.h
    U xenocara/lib/mesa/src/mesa/program/prog_noise.c
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.c
    U xenocara/lib/mesa/src/mesa/program/symbol_table.c
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.h
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.c
    N xenocara/lib/mesa/src/vulkan/wsi/Makefile.sources
    N xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.c
    N xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.c
    N xenocara/lib/mesa/src/vulkan/wsi/Makefile.in
    N xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.h
    N xenocara/lib/mesa/src/vulkan/wsi/Makefile.am
    N xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.h
    N xenocara/lib/mesa/src/vulkan/wsi/wsi_common.h
    N xenocara/lib/mesa/src/vulkan/wsi/wsi_common_queue.h
    U xenocara/lib/mesa/bin/compile
    U xenocara/lib/mesa/bin/depcomp
    U xenocara/lib/mesa/bin/test-driver
    U xenocara/lib/mesa/bin/missing
    U xenocara/lib/mesa/bin/config.guess
    U xenocara/lib/mesa/bin/ar-lib
    U xenocara/lib/mesa/bin/config.sub
    U xenocara/lib/mesa/bin/ltmain.sh
    U xenocara/lib/mesa/bin/install-sh
    U xenocara/lib/mesa/include/c99_math.h
    U xenocara/lib/mesa/include/c99_alloca.h
    U xenocara/lib/mesa/include/no_extern_c.h
    U xenocara/lib/mesa/include/c99_compat.h
    C xenocara/lib/mesa/include/GL/wglext.h
    U xenocara/lib/mesa/include/GL/osmesa.h
    U xenocara/lib/mesa/include/GL/glx_mangle.h
    N xenocara/lib/mesa/include/GL/mesa_glinterop.h
    U xenocara/lib/mesa/include/GL/glx.h
    U xenocara/lib/mesa/include/GL/gl_mangle.h
    C xenocara/lib/mesa/include/GL/glext.h
    C xenocara/lib/mesa/include/GL/glcorearb.h
    U xenocara/lib/mesa/include/GL/gl.h
    C xenocara/lib/mesa/include/GL/glxext.h
    U xenocara/lib/mesa/include/GL/internal/dri_interface.h
    U xenocara/lib/mesa/include/d3dadapter/d3dadapter9.h
    U xenocara/lib/mesa/include/d3dadapter/present.h
    U xenocara/lib/mesa/include/d3dadapter/drm.h
    U xenocara/lib/mesa/include/HaikuGL/README
    U xenocara/lib/mesa/include/HaikuGL/OpenGLKit.h
    U xenocara/lib/mesa/include/HaikuGL/GLView.h
    U xenocara/lib/mesa/include/HaikuGL/GLRenderer.h
    U xenocara/lib/mesa/include/KHR/khrplatform.h
    N xenocara/lib/mesa/include/D3D9/.editorconfig
    U xenocara/lib/mesa/include/D3D9/d3d9types.h
    U xenocara/lib/mesa/include/D3D9/d3d9caps.h
    U xenocara/lib/mesa/include/D3D9/d3d9.h
    C xenocara/lib/mesa/include/GLES2/gl2platform.h
    C xenocara/lib/mesa/include/GLES2/gl2ext.h
    C xenocara/lib/mesa/include/GLES2/gl2.h
    U xenocara/lib/mesa/include/GLES/glplatform.h
    U xenocara/lib/mesa/include/GLES/glext.h
    U xenocara/lib/mesa/include/GLES/gl.h
    U xenocara/lib/mesa/include/GLES/egl.h
    U xenocara/lib/mesa/include/EGL/eglmesaext.h
    U xenocara/lib/mesa/include/EGL/eglextchromium.h
    C xenocara/lib/mesa/include/EGL/eglext.h
    U xenocara/lib/mesa/include/EGL/eglplatform.h
    U xenocara/lib/mesa/include/EGL/egl.h
    U xenocara/lib/mesa/include/CL/cl_gl_ext.h
    U xenocara/lib/mesa/include/CL/cl_d3d10.h
    U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing.h
    U xenocara/lib/mesa/include/CL/cl_gl.h
    U xenocara/lib/mesa/include/CL/cl_d3d11.h
    U xenocara/lib/mesa/include/CL/opencl.h
    U xenocara/lib/mesa/include/CL/cl.h
    U xenocara/lib/mesa/include/CL/cl.hpp
    U xenocara/lib/mesa/include/CL/cl_ext.h
    U xenocara/lib/mesa/include/CL/cl_platform.h
    U xenocara/lib/mesa/include/CL/cl_egl.h
    C xenocara/lib/mesa/include/GLES3/gl31.h
    C xenocara/lib/mesa/include/GLES3/gl3.h
    N xenocara/lib/mesa/include/GLES3/gl32.h
    U xenocara/lib/mesa/include/GLES3/gl3ext.h
    U xenocara/lib/mesa/include/GLES3/gl3platform.h
    N xenocara/lib/mesa/include/c11/.editorconfig
    U xenocara/lib/mesa/include/c11/threads_posix.h
    U xenocara/lib/mesa/include/c11/threads_win32.h
    U xenocara/lib/mesa/include/c11/threads.h
    N xenocara/lib/mesa/include/vulkan/vk_platform.h
    N xenocara/lib/mesa/include/vulkan/vk_icd.h
    N xenocara/lib/mesa/include/vulkan/vulkan.h
    N xenocara/lib/mesa/include/vulkan/vulkan_intel.h
    U xenocara/lib/mesa/include/pci_ids/virtio_gpu_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeon_pci_ids.h
    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/radeonsi_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i965_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r600_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r300_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/vmwgfx_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r200_pci_ids.h
    U xenocara/lib/mesa/doxygen/gbm.doxy
    U xenocara/lib/mesa/doxygen/common.doxy
    U xenocara/lib/mesa/doxygen/gallium.doc
    U xenocara/lib/mesa/doxygen/README
    U xenocara/lib/mesa/doxygen/tnl_dd.doxy
    U xenocara/lib/mesa/doxygen/swrast.doxy
    U xenocara/lib/mesa/doxygen/i965.doxy
    U xenocara/lib/mesa/doxygen/radeon_subset.doxy
    U xenocara/lib/mesa/doxygen/header_subset.html
    U xenocara/lib/mesa/doxygen/doxy.bat
    U xenocara/lib/mesa/doxygen/vbo.doxy
    N xenocara/lib/mesa/doxygen/nir.doxy
    U xenocara/lib/mesa/doxygen/tnl.doxy
    U xenocara/lib/mesa/doxygen/math.doxy
    U xenocara/lib/mesa/doxygen/swrast_setup.doxy
    U xenocara/lib/mesa/doxygen/main.doxy
    U xenocara/lib/mesa/doxygen/Makefile
    U xenocara/lib/mesa/doxygen/glapi.doxy
    U xenocara/lib/mesa/doxygen/core_subset.doxy
    U xenocara/lib/mesa/doxygen/math_subset.doxy
    U xenocara/lib/mesa/doxygen/glsl.doxy
    U xenocara/lib/mesa/doxygen/header.html
    U xenocara/lib/mesa/doxygen/gallium.doxy
    
    108 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	2016/12/11 01:53:22

Modified files:
	lib/mesa       : Makefile.bsd-wrapper Makefile.in configure 
	                 configure.ac 
	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: glcorearb.h glext.h glxext.h wglext.h 
	lib/mesa/include/GLES: egl.h gl.h glext.h glplatform.h 
	lib/mesa/include/GLES2: gl2.h gl2ext.h gl2platform.h 
	lib/mesa/include/GLES3: gl3.h gl31.h gl3ext.h gl3platform.h 
	lib/mesa/include/KHR: khrplatform.h 
	lib/mesa/src   : Makefile.in 
	lib/mesa/src/amd: Makefile.in 
	lib/mesa/src/amd/common: Makefile.in 
	lib/mesa/src/amd/vulkan: Makefile.in 
	lib/mesa/src/compiler: Makefile.am Makefile.glsl.am Makefile.in 
	lib/mesa/src/egl: Makefile.in 
	lib/mesa/src/egl/drivers/dri2: egl_dri2.c platform_x11.c 
	lib/mesa/src/egl/wayland/wayland-drm: Makefile.in 
	lib/mesa/src/egl/wayland/wayland-egl: Makefile.in 
	lib/mesa/src/gallium: Makefile.in 
	lib/mesa/src/gallium/auxiliary: Makefile.am Makefile.in 
	lib/mesa/src/gallium/auxiliary/pipe-loader: Makefile.in 
	lib/mesa/src/gallium/drivers/ddebug: Makefile.in 
	lib/mesa/src/gallium/drivers/freedreno: Makefile.in 
	lib/mesa/src/gallium/drivers/i915: Makefile.in 
	lib/mesa/src/gallium/drivers/ilo: Makefile.in 
	lib/mesa/src/gallium/drivers/llvmpipe: Makefile.in 
	lib/mesa/src/gallium/drivers/noop: Makefile.in 
	lib/mesa/src/gallium/drivers/nouveau: Makefile.in 
	lib/mesa/src/gallium/drivers/r300: Makefile.in 
	lib/mesa/src/gallium/drivers/r600: Makefile.in 
	lib/mesa/src/gallium/drivers/radeon: Makefile.in 
	lib/mesa/src/gallium/drivers/radeonsi: Makefile.am Makefile.in 
	lib/mesa/src/gallium/drivers/rbug: Makefile.in 
	lib/mesa/src/gallium/drivers/softpipe: Makefile.in 
	lib/mesa/src/gallium/drivers/svga: Makefile.in 
	lib/mesa/src/gallium/drivers/swr: Makefile.in 
	lib/mesa/src/gallium/drivers/trace: Makefile.in 
	lib/mesa/src/gallium/drivers/vc4: Makefile.in 
	lib/mesa/src/gallium/drivers/virgl: Makefile.in 
	lib/mesa/src/gallium/state_trackers/clover: Makefile.in 
	lib/mesa/src/gallium/state_trackers/dri: Makefile.in 
	lib/mesa/src/gallium/state_trackers/glx/xlib: Makefile.in 
	lib/mesa/src/gallium/state_trackers/nine: Makefile.in 
	lib/mesa/src/gallium/state_trackers/omx: Makefile.in 
	lib/mesa/src/gallium/state_trackers/osmesa: Makefile.in 
	lib/mesa/src/gallium/state_trackers/va: Makefile.in 
	lib/mesa/src/gallium/state_trackers/vdpau: Makefile.in 
	lib/mesa/src/gallium/state_trackers/xa: Makefile.in 
	lib/mesa/src/gallium/state_trackers/xvmc: Makefile.in 
	lib/mesa/src/gallium/targets/d3dadapter9: Makefile.in 
	lib/mesa/src/gallium/targets/dri: Makefile.in 
	lib/mesa/src/gallium/targets/libgl-xlib: Makefile.in 
	lib/mesa/src/gallium/targets/omx: Makefile.in 
	lib/mesa/src/gallium/targets/opencl: Makefile.in 
	lib/mesa/src/gallium/targets/osmesa: Makefile.in 
	lib/mesa/src/gallium/targets/pipe-loader: Makefile.in 
	lib/mesa/src/gallium/targets/va: Makefile.in 
	lib/mesa/src/gallium/targets/vdpau: Makefile.in 
	lib/mesa/src/gallium/targets/xa: Makefile.in 
	lib/mesa/src/gallium/targets/xvmc: Makefile.in 
	lib/mesa/src/gallium/tests/trivial: Makefile.in 
	lib/mesa/src/gallium/tests/unit: Makefile.in 
	lib/mesa/src/gallium/winsys/amdgpu/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/freedreno/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/i915/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/intel/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/nouveau/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/radeon/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/svga/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/dri: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/kms-dri: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/null: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/wrapper: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/xlib: Makefile.in 
	lib/mesa/src/gallium/winsys/vc4/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/virgl/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/virgl/vtest: Makefile.in 
	lib/mesa/src/gbm: Makefile.in 
	lib/mesa/src/getopt: getopt.h getopt_long.c 
	lib/mesa/src/glx: Makefile.am Makefile.in 
	lib/mesa/src/glx/apple: Makefile.in 
	lib/mesa/src/glx/tests: Makefile.in 
	lib/mesa/src/glx/windows: Makefile.in 
	lib/mesa/src/gtest: Makefile.in 
	lib/mesa/src/intel: Makefile.genxml.am Makefile.in 
	lib/mesa/src/intel/tools: Makefile.in 
	lib/mesa/src/intel/vulkan: Makefile.in 
	lib/mesa/src/loader: Makefile.in 
	lib/mesa/src/mapi: Makefile.am Makefile.in 
	lib/mesa/src/mapi/glapi/gen: Makefile.am Makefile.in 
	lib/mesa/src/mesa: Makefile.am Makefile.in 
	lib/mesa/src/mesa/drivers/dri: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/common: Makefile.am Makefile.in 
	lib/mesa/src/mesa/drivers/dri/common/xmlpool: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i915: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i965: Makefile.am Makefile.in 
	lib/mesa/src/mesa/drivers/dri/nouveau: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/r200: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/radeon: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/swrast: Makefile.in 
	lib/mesa/src/mesa/drivers/osmesa: Makefile.in 
	lib/mesa/src/mesa/drivers/x11: Makefile.in 
	lib/mesa/src/mesa/main/tests: Makefile.in 
	lib/mesa/src/util: Makefile.in u_atomic.h 
	lib/mesa/src/util/tests/hash_table: Makefile.in 
	lib/mesa/src/vulkan/wsi: Makefile.in 
Removed files:
	lib/mesa/docs  : COPYING GL3.txt 
	lib/mesa/doxygen: shader.doxy 
	lib/mesa/src/compiler/glsl: Makefile.sources SConscript 
	                            ir_import_prototypes.cpp 
	                            lower_clip_distance.cpp 
	lib/mesa/src/compiler/nir: Makefile.sources glsl_to_nir.cpp 
	                           glsl_to_nir.h 
	                           nir_lower_outputs_to_temporaries.c 
	lib/mesa/src/egl/docs: EGL_MESA_screen_surface 
	lib/mesa/src/gallium/auxiliary/target-helpers: 
	                                               inline_wrapper_sw_helper.h 
	lib/mesa/src/gallium/auxiliary/util: u_clear.h 
	                                     u_format_r11g11b10f.h 
	                                     u_format_rgb9e5.h u_slab.c 
	                                     u_slab.h u_staging.c 
	                                     u_staging.h 
	lib/mesa/src/gallium/drivers/nouveau/nvc0: nvc0_compute.h 
	lib/mesa/src/gallium/drivers/r600: r600_llvm.c r600_llvm.h 
	lib/mesa/src/gallium/drivers/radeon: r600d_common.h 
	                                     radeon_llvm.h 
	                                     radeon_llvm_emit.c 
	                                     radeon_llvm_emit.h 
	                                     radeon_llvm_util.c 
	                                     radeon_llvm_util.h 
	                                     radeon_setup_tgsi_llvm.c 
	lib/mesa/src/gallium/drivers/radeonsi: sid.h 
	lib/mesa/src/gallium/drivers/vc4: vc4_drm.h vc4_opt_cse.c 
	                                  vc4_opt_vpm_writes.c 
	lib/mesa/src/gallium/state_trackers/clover/core: compiler.hpp 
	lib/mesa/src/gallium/winsys/amdgpu/drm: amdgpu_id.h 
	lib/mesa/src/gallium/winsys/amdgpu/drm/addrlib: 
	                                                addrinterface.cpp 
	                                                addrinterface.h 
	                                                addrtypes.h 
	lib/mesa/src/gallium/winsys/amdgpu/drm/addrlib/core: 
	                                                     addrcommon.h 
	                                                     addrelemlib.cpp 
	                                                     addrelemlib.h 
	                                                     addrlib.cpp 
	                                                     addrlib.h 
	                                                     addrobject.cpp 
	                                                     addrobject.h 
	lib/mesa/src/gallium/winsys/amdgpu/drm/addrlib/inc: 
	                                                    lnx_common_defs.h 
	lib/mesa/src/gallium/winsys/amdgpu/drm/addrlib/inc/chip/r800: 
	                                                              si_gb_reg.h 
	lib/mesa/src/gallium/winsys/amdgpu/drm/addrlib/r800: 
	                                                     ciaddrlib.cpp 
	                                                     ciaddrlib.h 
	                                                     egbaddrlib.cpp 
	                                                     egbaddrlib.h 
	                                                     siaddrlib.cpp 
	                                                     siaddrlib.h 
	lib/mesa/src/gallium/winsys/amdgpu/drm/addrlib/r800/chip: 
	                                                          si_ci_vi_merged_enum.h 
	lib/mesa/src/gallium/winsys/radeon/drm: radeon_ctx.h 
	                                        radeon_drm_cs_dump.c 
	lib/mesa/src/mesa/drivers/dri/common: dri_test.c 
	lib/mesa/src/mesa/drivers/dri/i965: brw_blorp.cpp 
	                                    brw_blorp_blit.cpp 
	                                    brw_blorp_blit_eu.cpp 
	                                    brw_blorp_blit_eu.h 
	                                    brw_device_info.c 
	                                    brw_device_info.h 
	                                    brw_lower_unnormalized_offset.cpp 
	                                    brw_meta_fast_clear.c 
	                                    brw_meta_stencil_blit.c 
	                                    brw_meta_updownsample.c 
	                                    brw_tex.c gen6_blorp.cpp 
	                                    gen6_surface_state.c 
	                                    gen7_blorp.cpp 
	                                    gen8_misc_state.c 
	                                    intel_reg.h intel_syncobj.c 
	lib/mesa/src/mesa/main: texturebarrier.c texturebarrier.h 
	lib/mesa/src/mesa/program: hash_table.h prog_hash_table.c 
	                           string_to_uint_map.cpp 

Log message:
Merge Mesa 13.0.2


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/12/11 01:56:16

Modified files:
	distrib/sets/lists/xbase: md.alpha md.amd64 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	2016/12/11 01:59:23

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/11 02:22:52

Modified files:
	x11/gnome/libgepub: Makefile 

Log message:
REVIVISON -> REVISION


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/11 02:27:53

Modified files:
	graphics/ffmpeg: Makefile distinfo 
	graphics/ffmpeg/patches: patch-configure 

Log message:
Update to ffmpeg-20161210.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/11 02:28:20

Modified files:
	x11/mplayer    : Makefile 

Log message:
Sync FFMPEG_V.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/11 02:29:05

Modified files:
	net/ircd-hybrid: Makefile distinfo 
	net/ircd-hybrid/patches: patch-doc_reference_conf 
	                         patch-src_ircd_c 

Log message:
Update to ircd-hybrid-8.2.21.

from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/11 02:57:57

Modified files:
	lib/libcrypto/man: DSA_new.3 engine.3 rsa.3 

Log message:
some fixes for the dsa.3 -> DSA_new.3 changes;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/11 03:00:30

Modified files:
	lib/libcrypto/man: BN_get0_nist_prime_521.3 

Log message:
add missing section number to Xr;


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/12/11 03:01:01

Modified files:
	distrib/loongson/ramdisk: Makefile 

Log message:
Use makefs to build bsd.rd; build & boot tested by visa


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/12/11 03:03:01

Modified files:
	lib/mesa/src/compiler: Makefile.glsl.am Makefile.in 
	                       Makefile.nir.am 
	lib/mesa/src/gallium/drivers/swr: Makefile.am Makefile.in 
	lib/mesa/src/intel: Makefile.in Makefile.isl.am 

Log message:
disable additional rules to regen sources when python is not found

After a cvs import timestamps change which triggers rules that attempt
to call python to regenerate files.  When python is not found this
generates empty files that override those from the distfile, breaking
the build.

When building inside xenocara python is never found as the pkg paths
are not searched.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/11 05:21:48

Modified files:
	lib/libcrypto/man: ECDSA_SIG_new.3 EVP_PKEY_set1_RSA.3 
	                   RSA_blinding_on.3 RSA_check_key.3 
	                   RSA_generate_key.3 RSA_get_ex_new_index.3 
	                   RSA_padding_add_PKCS1_type_1.3 RSA_print.3 
	                   RSA_private_encrypt.3 RSA_public_encrypt.3 
	                   RSA_set_method.3 RSA_sign.3 
	                   RSA_sign_ASN1_OCTET_STRING.3 RSA_size.3 
	                   crypto.3 d2i_RSAPublicKey.3 engine.3 

Log message:
Change all references to rsa(3) to point to RSA_new(3) instead.
Make sure all RSA pages point back to RSA_new(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/11 05:52:29

Modified files:
	lib/libcrypto/man: Makefile RSA_new.3 
Removed files:
	lib/libcrypto/man: rsa.3 

Log message:
Merge all of rsa(3) into RSA_new(3).
In this case, keep the text about individual struct fields
because it contains some actual information.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/11 05:59:40

Modified files:
	audio/mpd      : Makefile distinfo 
	audio/mpd/patches: patch-doc_mpdconf_example 
Removed files:
	audio/mpd/patches: patch-src_LogInit_cxx 
	                   patch-src_decoder_plugins_FfmpegDecoderPlugin_cxx 
	                   patch-src_decoder_plugins_PcmDecoderPlugin_cxx 

Log message:
Update to mpd-0.19.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/12/11 06:25:27

Modified files:
	www/chromium/patches: patch-media_media_options_gni 

Log message:
unbreak build


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/12/11 07:08:39

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/pkg: PLIST 
Added files:
	sysutils/u-boot/patches: patch-tools_relocate-rela_c 
	sysutils/u-boot/pkg: PFRAG.aarch64 PFRAG.arm 

Log message:
Split sysutils/u-boot into two FLAVORs so that we can use the same
port to compile 32- and 64-bit ARM u-boots.

ok and with help from jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/12/11 07:09:58

Modified files:
	sysutils       : Makefile 

Log message:
+sysutils/u-boot,aarch64


CVSROOT:	/cvs
Module name:	ports
Changes by:	patrick@cvs.openbsd.org	2016/12/11 07:10:52

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
u-boot -> u-boot-arm

ok bmercer@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/11 07:22:43

Modified files:
	lib/libcrypto/man: ECDSA_SIG_new.3 EC_GFp_simple_method.3 
	                   EC_GROUP_copy.3 EC_GROUP_new.3 EC_KEY_new.3 
	                   EC_POINT_add.3 EC_POINT_new.3 Makefile 
	                   crypto.3 d2i_ECPKParameters.3 
Removed files:
	lib/libcrypto/man: ec.3 

Log message:
Distribute the text of ec(3) to the individual EC manuals where it belongs.
Make sure EC_GROUP_new(3) points to all EC manuals and all EC manuals
point back to EC_GROUP_new(3), and add some other useful links as well.
Change all links to ec(3) to point to EC_GROUP_new(3) instead.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/12/11 09:03:25

Modified files:
	lib/mesa/src/intel: Makefile.genxml.am Makefile.in 

Log message:
disable additional rules to regen sources when xxd is not found

Found the hard way by Mark Patruck and naddy.  Didn't encounter it here
with a post import build for reasons unknown.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/11 10:31:58

Modified files:
	bin/ksh        : exec.c 

Log message:
Fix for() loop indentation for TCASE  in execute() and add some
braces for improved readability.  Based on a diff from Kartik Agaram.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/11 10:37:38

Modified files:
	bin/ksh        : exec.c 

Log message:
In execute() we assign xerrorok to a dummy value if it is NULL
so there is no need to check xerrorok for NULL after that.
From Kartik Agaram.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/11 10:44:49

Modified files:
	bin/ksh        : exec.c 

Log message:
When ERREXIT (set -e) is in effect, don't disable it after a
short-circuited `&&` or `||` chain in later iterations of `for`
loops.  It should be disabled after a short-circuited `&&` or `||`
chain only in the *final* iteration of loops (as well as in
conditionals, which was already working).  From Kartik Agaram.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/11 10:49:19

Modified files:
	bin/ksh        : exec.c 

Log message:
I missed a bit of the indentation fix from Kartik Agaram.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/11 11:06:09

Modified files:
	lib/libcrypto/man: ASN1_generate_nconf.3 
	                   CONF_modules_load_file.3 Makefile 
	                   OPENSSL_config.3 
Added files:
	lib/libcrypto/man: openssl.cnf.5 x509v3.cnf.5 

Log message:
import openssl.cnf(5) and x509v3.cnf(5) from OpenSSL;
below OpenBSD quality standards, but better than nothing...


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/11 11:11:59

Modified files:
	regress/bin/ksh: obsd-regress.t 

Log message:
Fixes descriptions for seterror tests 1, 2 and 4.
Add seterror tests 8-10 for better "set -e" coverage.
Add seterror-11 test to exercise the bug with "set -e" and
short-ciruited "&&" chains.
From Kartik Agaram


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2016/12/11 11:45:00

Modified files:
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils: 
	                                                       MM_Unix.pm 
	gnu/usr.bin/perl/cpan/Sys-Syslog: Makefile.PL 
	gnu/usr.bin/perl/dist/ExtUtils-Install/lib/ExtUtils: Install.pm 

Log message:
Create perl directories 0775 in OBJDIR

Allows user to clean up after a noperm build

requested and makes sense to tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/11 12:03:35

Added files:
	geo/qgis/patches: patch-src_providers_wms_CMakeLists_txt 

Log message:
Another dependency fix.

Reported by ajacoutot@, ok landry@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/11 13:04:24

Modified files:
	regress/bin/ksh: obsd-regress.t 

Log message:
Remove and-list-error-3 test, it is obsoleted by seterror-11


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/12/11 14:32:54

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/11 14:45:06

Modified files:
	share/man/man9 : ieee80211_radiotap.9 

Log message:
Document how an MCS index is represented in ieee80211_radiotap(9).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/11 15:55:25

Modified files:
	usr.bin/tmux   : cmd-send-keys.c 

Log message:
-N without arguments needs to set prefix count for the mode command, so
that M-1 etc work. Reported by Theo Buehler.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/11 17:09:44

Modified files:
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/11 20:43:30

Modified files:
	sysutils/dtb   : Makefile distinfo 
	sysutils/dtb/pkg: PLIST 

Log message:
update dtb to linux 4.9


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/11 21:23:25

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
Add Option iCON 505 from Piotr Isajew and consistently
name other iCON devices the way Option does.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/11 21:24:03

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/11 21:26:29

Modified files:
	share/man/man4 : umsm.4 
	sys/dev/usb    : umsm.c 

Log message:
Add support for Option iCON 505 from Piotr Isajew and consistently
name other iCON devices the way Option does.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/11 21:35:04

Modified files:
	sys/dev/usb    : uftdi.c 

Log message:
Match on the FTDI Suunto product id, from Kristaps Dzonsons who tested
this with a Suunto D6i dive computer.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/11 23:23:03

Modified files:
	sys/dev        : audio.c 

Log message:
Remove few useless #ifdef AUDIO_DEBUG, spotted by
Michael W. Bombardieri <mb at ii.net>. Thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/11 23:43:01

Modified files:
	sys/dev/pci    : auacer.c 

Log message:
Simplify auacer_activate(). From Michael W. Bombardieri <mb at ii.net>


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/11 23:47:22

Modified files:
	sys/dev/pci    : esa.c 

Log message:
Remove (likely wrong) code commented since revision 1.1. From
Michael W. Bombardieri <mb at ii.net>


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/11 23:51:09

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Use DPRINTF instead of printf() in #ifdef UAUDIO_DEBUG section. From
Michael W. Bombardieri <mb at ii.net>


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/12 02:51:30

Modified files:
	sys/net        : if.c if.h if_tun.c switchctl.c 

Log message:
Remove most of the splsoftnet() recursions related to cloned interfaces.

inputs and ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/12 03:54:39

Modified files:
	textproc/mupdf : Makefile distinfo 
	textproc/mupdf/patches: patch-Makefile patch-Makerules 
	                        patch-Makethird 
	                        patch-platform_gl_gl-main_c 
	                        patch-platform_x11_jstest_main_c 
	                        patch-platform_x11_pdfapp_c 
	                        patch-platform_x11_x11_main_c 
	                        patch-source_fitz_load-jpx_c 
	                        patch-source_tools_mudraw_c 
	                        patch-source_tools_murun_c 
	                        patch-source_tools_pdfclean_c 
	                        patch-source_tools_pdfextract_c 
	                        patch-source_tools_pdfinfo_c 
	                        patch-source_tools_pdfpages_c 
	                        patch-source_tools_pdfshow_c 
	textproc/mupdf/pkg: PLIST 
Removed files:
	textproc/mupdf/patches: patch-source_pdf_pdf-shade_c 
	                        patch-source_pdf_pdf-xref_c 
	                        patch-source_tools_mutool_c 
	                        patch-thirdparty_mujs_jslex_c 

Log message:
update to mupdf-1.10a


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/12 05:27:17

Modified files:
	converters/p5-Net-IDN-Encode: Makefile distinfo 

Log message:
update p5-Net-IDN-Encode to 2.303


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/12 05:52:12

Modified files:
	lib/libcrypto/man: ASN1_STRING_new.3 

Log message:
Document DIRECTORYSTRING_new(3), DIRECTORYSTRING_free(3),
DISPLAYTEXT_new(3), DISPLAYTEXT_free(3).  These functions are clearly
public because OpenSSL documents them and they are in the public
<openssl/asn1.h> header.

OpenSSL documents these four functions in doc/man3/X509_dup.pod [sic],
but the information given is completely wrong: wrong header file,
wrong prototypes, misleading description.  Why, oh why do people even
bother to write documentation if nothing of what they write is true?


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/12/12 06:13:15

Modified files:
	sys/arch/amd64/amd64: efifb.c 

Log message:
Pass WSDISPLAYIO_{GET,SET}PARAM to ws_{get,set}_param.  This allows
the brightness on some machines to be adjusted through wsconsctl(8).

diff from Anton Lindqvist


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/12 06:30:05

Modified files:
	sys/net        : pf_if.c 

Log message:
Kill recursive splsoftnet().

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/12 06:35:58

Modified files:
	mail/gmime     : Makefile distinfo 
	mail/gmime/pkg : PLIST 

Log message:
Update to gmime-2.6.21.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/12 06:58:46

Modified files:
	lib/libcrypto/man: d2i_DSAPublicKey.3 

Log message:
Document DSAparams_dup(3).  It is in <openssl/dsa.h> and documented
by OpenSSL, so it is clearly public.

OpenSSL documents it in doc/man3/X509_dup.pod, but with wrong header
file, wrong prototype, and misleading description.

While here, fix the wrong d2i_DSA_SIG(3) return type and document
those RETURN VALUES that i could easily figure out.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/12 07:31:45

Modified files:
	www/liferea    : Makefile 

Log message:
Drop the devel/gettext MODULE.
Regen WANTLIB.
No need for GNU libtool.
Drop MODGCONF2_SCHEMAS_DIR, this port is using dconf.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/12 08:12:04

Modified files:
	net/bro        : Makefile 
	net/bro/pkg    : README 

Log message:
Tweak.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/12 08:41:05

Modified files:
	usr.sbin/dhcrelay: bpf.c dhcp.h dhcpd.h dhcrelay.8 dhcrelay.c 
	                   dispatch.c 

Log message:
Implement support for layer 2 relaying and add further Relay Agent
Information (RFC 3046) options. While at there change the naming of the
remote destination parameters: instead of "server" call it "destination".

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/12 09:25:47

Modified files:
	sys/arch/loongson/loongson: loongson3_intr.c 
	sys/arch/mips64/include: loongson3.h 

Log message:
Tweak IPI register definitions.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/12 10:46:23

Modified files:
	lib/libcrypto/man: OCSP_REQUEST_new.3 

Log message:
Document OCSP_SIGNATURE_new(3), OCSP_SIGNATURE_free(3),
OCSP_REQINFO_new(3), OCSP_REQINFO_free(3), OCSP_ONEREQ_new(3),
OCSP_ONEREQ_free(3), all in <openssl/ocsp.h> and in OpenSSL
doc/man3/X509_dup.pod.  Note that the OpenSSL documentation
specifies the wrong header file.

Add some information about what these objects actually represent,
along with the pertinent STANDARDS reference.
Minor wording tweaks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/12 10:55:24

Modified files:
	sysutils/collectd: Makefile 
	sysutils/collectd/patches: patch-src_processes_c 

Log message:
Ugly bandaid: bump CMDLINE_BUFFER_SIZE to 16k instead of defaulting to
4k, i'm hitting "processes plugin: Command line did not fit into
buffer." warning way too much and this spams logs. Better solution would
be to dynamically alloc the array on the fly as-needed like top/ps
does..


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/12 11:45:29

Modified files:
	lib/libcrypto/man: OCSP_response_status.3 

Log message:
Document OCSP_RESPONSE_new(3), OCSP_RESPONSE_free(3),
OCSP_RESPBYTES_new(3), OCSP_RESPBYTES_free(3), OCSP_BASICRESP_new(3),
OCSP_BASICRESP_free(3), OCSP_RESPDATA_new(3), OCSP_RESPDATA_free(3),
OCSP_RESPID_new(3), and OCSP_RESPID_free(3), all in <openssl/ocsp.h>
and in OpenSSL doc/man3/X509_dup.pod.  Note that the OpenSSL
documentation specifies the wrong header file.

Add some information about what these objects actually represent,
along with the pertinent STANDARDS reference.
Sort functions into a logical order and apply minor wording tweaks.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/12 13:10:04

Modified files:
	lib/libcrypto/man: OCSP_resp_find_status.3 

Log message:
Document OCSP_SINGLERESP_new(3), OCSP_SINGLERESP_free(3),
OCSP_CERTSTATUS_new(3), OCSP_CERTSTATUS_free(3), OCSP_REVOKEDINFO_new(3),
and OCSP_REVOKEDINFO_free(3), all in <openssl/ocsp.h> and in OpenSSL
doc/man3/X509_dup.pod.  Note that the OpenSSL documentation specifies
the wrong header file.

Add some information about what these objects actually represent,
along with the pertinent STANDARDS reference.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/12 13:41:48

Modified files:
	lib/libcrypto/man: OCSP_cert_to_id.3 

Log message:
Document OCSP_CERTID_new(3) listed in <openssl/ocsp.h> and in OpenSSL
doc/man3/X509_dup.pod.  Note that the OpenSSL documentation specifies
the wrong header file.

Add some information about what the OCSP_CERTID object actually
represents, along with the pertinent STANDARDS reference.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/12 14:33:40

Modified files:
	regress/sys/netinet/arp: arp_multicast.py 

Log message:
Set promiscuous mode during srp1() to receive the arp reply directed
to the ethernet multicast address.  This fixes the test on my
hardware setup, it was only passing in qemu before.  At least scapy
2.3.3p1 is needed to support the promisc=1 parameter here.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/12 15:02:55

Modified files:
	lib/libcrypto/man: X509_new.3 openssl.cnf.5 x509.3 x509v3.cnf.5 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/12 15:48:02

Modified files:
	lib/libcrypto/man: Makefile OCSP_REQUEST_new.3 
	                   OCSP_resp_find_status.3 
Added files:
	lib/libcrypto/man: OCSP_CRLID_new.3 OCSP_SERVICELOC_new.3 

Log message:
Write OCSP_CRLID_new(3) and OCSP_SERVICELOC_new(3) from scratch.
These two and OCSP_CRLID_free(3) and OCSP_SERVICELOC_free(3) are
public by being in OpenSSL doc/man3/X509_dup.pod.
OCSP_crlID_new(3) and OCSP_url_svcloc_new(3) are related and,
even though completely undocumented in OpenSSL, obviously much
more important.

If you had told me a year ago that i would ever write such text,
i would have called you crazy.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/12 16:56:53

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/12 17:19:05

Modified files:
	regress/sys/netinet/pmtu: tcp_connect.py tcp_connect6.py 
	                          udp_echo6.py 

Log message:
Print better error messages in case an expected packet is missing.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/12/12 18:36:21

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
make setting and getting tunnel addresses wrt to ipv6 scope handling.

setting a tunnel addresses uses a sockaddr_in6 from getaddrinfo, which
sets sin6_scope_id for scoped addresses. this is nice and portable.

reading a tunnel address assumed the scope was embedded in link local
addresses in sin6_addr, and unpacked the scope back into sin6_scope_id.
this is inconsistent with the code that sets tunnel addresses.

this fixes the read path so it assumes the kernel sets sin6_scope_id
like it it assumes the kernel will read on the set side. noone likes
the kame hack of embedding the scope id in the addreses.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/12 18:53:34

Modified files:
	share/man/man5 : spamd.conf.5 

Log message:
In troff, a literal backslash character needs an 'e' at the end.
The nixspam example was missing this.  From Larry Hynes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/12 19:47:01

Modified files:
	lang/bacon     : Makefile distinfo 
	lang/bacon/patches: patch-Makefile_in 

Log message:
Update to BaCon 3.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/12/12 23:40:21

Modified files:
	usr.sbin/tcpdump: print-gre.c print-ip6.c 

Log message:
teach tcpdump some more things about gre.

gre can be encapsulated in ipv6.
gre can encapsulate ipv6, mpls, and ethernet.
nvgre is based on gre, so if the header could be nvgre print the
vsid and flow id as well as the key.

ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2016/12/12 23:51:11

Modified files:
	sys/net        : if_vxlan.c if_gif.c if_etherip.c 

Log message:
make v6 tunnel address handling consider ipv6 scope.

an earlier version of this diff was ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/12 23:55:32

Modified files:
	usr.sbin/dhcrelay: dhcrelay.8 dhcrelay.c 

Log message:
simplify previous; ok reyk


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/13 00:25:47

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
Add support for MODFOO_post-extract so that modules can hook up commands
after post-extract.

From semarie@, ok espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2016/12/13 00:26:16

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Document MODFOO_post-extract.

From semarie@, ok espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/13 01:40:54

Modified files:
	sbin/route     : route.c show.c show.h 

Log message:
Print the correct netmask instead of /0 when flushing routes to networks.

Issue reported by jsing@, ok stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 01:44:28

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.295.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 02:01:48

Added files:
	net/bro/patches: patch-cmake_OSSpecific_cmake 
Removed files:
	net/bro/patches: patch-aux_broctl_cmake_OSSpecific_cmake 

Log message:
Rename patch, from Daniel Thayer.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/13 02:22:18

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Propagate the routing table id in ip_mrouter_set() so the MRT_ADD_VIF
calls won't fail anymore when doing from a different rdomain.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/13 02:29:05

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 

Log message:
Filter DHCP reply messages that were not meant for us by looking at the
gateway set. This happens mostly because we are watching a BPF socket.

Suggested by and ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 02:34:06

Modified files:
	graphics/shotwell: Makefile distinfo 
	graphics/shotwell/pkg: PLIST 

Log message:
Update to shotwell-0.25.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/13 02:42:19

Log message:
    Import sysutils/psftools.
    
    The PSFTOOLS are designed to manipulate fixed-width bitmap fonts, such as
    DOS or Linux console fonts. Both the PSF1 (8 pixels wide) and PSF2 (any
    width) formats are supported; the default output format is PSF2.
    
    OK juanfra@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20161213
    
    N ports/sysutils/psftools/Makefile
    N ports/sysutils/psftools/distinfo
    N ports/sysutils/psftools/pkg/PLIST
    N ports/sysutils/psftools/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/13 02:44:44

Modified files:
	sysutils       : Makefile 

Log message:
Add psftools.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 03:14:58

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 03:15:15

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 03:15:44

Modified files:
	mail/evolution-ews: Makefile distinfo 

Log message:
Update to evolution-ews-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/13 04:21:52

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/13 05:59:36

Modified files:
	lib/libcrypto/man: OCSP_SERVICELOC_new.3 

Log message:
typo fix; ok schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/13 06:15:18

Modified files:
	textproc/zathura/plugins/mupdf: Makefile 
	textproc/zathura/plugins/mupdf/patches: patch-document_c 
	                                        patch-image_c 
	                                        patch-page_c 
	                                        patch-utils_c 
Added files:
	textproc/zathura/plugins/mupdf/patches: patch-index_c 
	                                        patch-links_c 
	                                        patch-render_c 

Log message:
chase mupdf 1.10 api changes; breakage reported by naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/13 06:47:36

Modified files:
	share/man/man5 : spamd.conf.5 

Log message:
one more `e' required to mark up correctly; ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/13 06:56:15

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Convert ssl3_send_client_kex_ecdhe() to CBB. Also check the return value of
the EC_POINT_point2oct() calls.

Feedback from and ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/13 07:31:55

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: PKCS7_new.3 

Log message:
Write PKCS7_new(3) manual page from scratch.  All the functions are
public: listed in <openssl/pkcs7.h> and OpenSSL doc/man3/X509_dup.pod.
Note that the OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:43:50

Modified files:
	devel/py-nbformat: Makefile distinfo 
	devel/py-nbformat/pkg: PLIST 

Log message:
Update to py-nbformat 4.2.0. Add py3 flavor and take maintainership.

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:45:43

Modified files:
	devel/py-nbconvert: Makefile distinfo 
	devel/py-nbconvert/pkg: PLIST 

Log message:
Update to py-nbconvert 4.2.0. Add py3 flavor and take maintainership.

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:46:43

Modified files:
	devel/py-jupyter_core: Makefile distinfo 
	devel/py-jupyter_core/pkg: PLIST 
Added files:
	devel/py-jupyter_core/patches: patch-jupyter_core_command_py 
	                               patch-jupyter_core_tests_test_command_py 
	                               patch-setup_py 

Log message:
Update to py-jupyter_core 4.2.1. Add py3 flavor and take maintainership.

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 07:47:59

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 
	graphics/gdk-pixbuf2/pkg: PLIST 

Log message:
SECURITY update to gdk-pixbuf-2.36.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:48:23

Modified files:
	devel/py-jupyter_client: Makefile distinfo 
	devel/py-jupyter_client/pkg: PLIST 

Log message:
Update to py-jupyter_client 4.4.0. Add py3 flavor and take maintainership.

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:49:47

Modified files:
	devel/py-ipykernel: Makefile distinfo 
	devel/py-ipykernel/pkg: PLIST 

Log message:
Update to py-ipykernel 4.5.2. Add py3 flavor and take maintainership.

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:50:45

Modified files:
	devel/ipython  : Makefile distinfo 
	devel/ipython/patches: 
	                       patch-IPython_core_tests_test_interactiveshell_py 
	                       patch-docs_source_conf_py 
	                       patch-setupbase_py 
	devel/ipython/pkg: PLIST 
Added files:
	devel/ipython/patches: patch-docs_autogen_shortcuts_py 
	                       patch-examples_IPython_Kernel_ipython_desktop 

Log message:
Update to ipython 5.1.0. Add py3 flavor.

ok edd@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 07:50:52

Modified files:
	graphics/gdk-pixbuf2: Tag: OPENBSD_6_0 Makefile 
Added files:
	graphics/gdk-pixbuf2/patches: Tag: OPENBSD_6_0 
	                              patch-gdk-pixbuf_io-jpeg_c 

Log message:
Check for integer overflows in app1 EXIF tags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:52:15

Modified files:
	www/jupyter-notebook: Makefile distinfo 
	www/jupyter-notebook/pkg: PLIST 

Log message:
Update to jupyter-notebook 4.2.3. Add py3 flavor and take maintainership.

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/13 07:54:13

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.12rc1 (release candidate); it will hopefully fix mpi
multiple crashes with the current (old) stable version.

"can't be worse, OK" mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 07:57:40

Modified files:
	devel          : Makefile 

Log message:
+ipython,python3
+py-ipykernel,python3
+py-jupyter_client,python3
+py-jupyter_core,python3
+py-nbconvert,python3
+py-nbformat,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/13 08:00:22

Modified files:
	lib/libcrypto/man: PEM_write_bio_PKCS7_stream.3 PKCS7_decrypt.3 
	                   PKCS7_encrypt.3 PKCS7_sign.3 
	                   PKCS7_sign_add_signer.3 PKCS7_verify.3 
	                   SMIME_read_PKCS7.3 SMIME_write_PKCS7.3 
	                   i2d_PKCS7_bio_stream.3 

Log message:
tweak SEE ALSO; in particular,
make sure that all PKCS7 pages point to PKCS7_new(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 08:00:44

Modified files:
	www            : Makefile 

Log message:
+jupyter-notebook,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/13 08:28:19

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 

Log message:
Unbreak the insertion of Relay Agent Information on layer 3 mode when
using the default values: use the right address for remote-id.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/13 09:07:00

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Convert ssl3_send_client_kex_gost() to CBB.

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/13 09:10:21

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Complete the CBB conversion and cleanup of send_client_key_exchange().

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/13 10:06:04

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 10:39:52

Modified files:
	devel/py-sh    : Makefile distinfo 
	devel/py-sh/pkg: PLIST 

Log message:
Update to py-sh 1.12.7, from Johan Huldtgren (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/13 10:40:41

Modified files:
	usr.sbin/dhcrelay: dhcrelay.c 

Log message:
Unbreak the dhcrelay(8) support to run on enc(4) interfaces.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/13 11:22:22

src/sys/stand/efi/include/arm64

Update of /cvs/src/sys/stand/efi/include/arm64
In directory cvs.openbsd.org:/tmp/cvs-serv50012/arm64

Log Message:
Directory /cvs/src/sys/stand/efi/include/arm64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/13 11:23:16

Added files:
	sys/stand/efi/include/arm64: efibind.h 

Log message:
Add an efibind.h for arm64.  Taken from edk2, modified to be similar
to our arm version.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/13 11:27:24

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Poll until the ITSDONE flag is set on the transfer


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/13 12:02:39

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Bounce unaligned transfer data through a scratch buffer

Thanks to the detailed report from Nathanael Rensen, the issue
with unaligned transfer data became apparent: the backend expects
buffers be multiple of 512 bytes and to be 512 byte aligned, which
is not always satisfied.

This isn't an issue when requests are coming from the buffer cache,
but can happen with raw device access since physio(9) ensures the
former requirement is met by disallowing non-block sized reads, but
doesn't enforce the latter.  It remaps userland buffers into the
kernel virtual space which preserves the data offset within the
memory page and thus the original alignment.

Buffers with offsets under the block size can't be referenced by
Blkfront ring descriptors that measure data in blocks and must be
substituted with temporary buffers for the duration of the I/O
operation.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/13 12:47:32

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
Enable xbf(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/13 12:54:29

Modified files:
	sys/dev/pci    : if_vio.c 

Log message:
Fix up tsleep priorities and make them interruptible

With help from and OK sf, OK mpi on the previous version.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/13 13:41:35

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: RSA_PSS_PARAMS_new.3 

Log message:
Start RSA_PSS_PARAMS_new(3) stub from scratch.  Both functions
are listed in <openssl/rsa.h> and OpenSSL doc/man3/X509_dup.pod.
Note that the OpenSSL documentation specifies the wrong header file.
More could probably be said about PSS, but this is a start...


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/13 14:01:46

Modified files:
	sys/dev/pv     : if_xnf.c 

Log message:
Use new xs_{get,set}num functions instead of hand-rolled weirdness


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/13 14:06:28

Modified files:
	sys/net        : if_media.h 

Log message:
New media types from FreeBSD

No objections from deraadt@, OK dlg
Thanks to stsp@ who has extended ifm_media field to 64 bits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/13 14:44:14

Modified files:
	net/openconnect: Makefile distinfo 
	net/openconnect/pkg: PLIST 

Log message:
update to openconnect-7.08


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/13 15:29:00

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.808


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/13 17:36:34

Modified files:
	usr.bin/ssh    : serverloop.c 

Log message:
disable Unix-domain socket forwarding when privsep is disabled


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/13 19:03:50

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: ESS_SIGNING_CERT_new.3 TS_REQ_new.3 

Log message:
New manuals ESS_SIGNING_CERT_new(3) and TS_REQ_new(3) written
from scratch.  All these functions are listed in <openssl/ts.h>
and in OpenSSL doc/man3/X509_dup.pod.
Note that the OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/13 23:39:20

Modified files:
	devel/py-coveralls: Makefile distinfo 
	devel/py-coveralls/pkg: PLIST 

Log message:
Update to py-coveralls 1.1, from Johan Huldtgren (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/13 23:59:12

Modified files:
	usr.sbin/vmd   : config.c vmd.c vmd.h 

Log message:
If a VM terminates with the result EAGAIN, close all fds except the
pty and re-send it to the vmm monitor process.  With additional
changes in vmm.c, this will allow perform a cold reboot of VM.

With testing and feedback from Jon Bernard
OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/14 00:00:35

Modified files:
	lib/libcrypto/man: ESS_SIGNING_CERT_new.3 TS_REQ_new.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/14 00:59:49

Modified files:
	devel/py-nbconvert: Makefile distinfo 
	devel/py-nbconvert/pkg: PLIST 

Log message:
Minor update to py-nbconvert 4.3.0


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/12/14 01:16:56

Modified files:
	sys/net        : if_media.h 

Log message:
fix typo (bas->base), "please commit" mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2016/12/14 01:22:39

Modified files:
	usr.sbin/unbound/services: listen_dnsport.c 

Log message:
Remove a resource leak by closing the socket in all error cases.
The patch was already committed upstream.

OK tb@ and sthen@. jca@ has a valid point that the error would be fatal and
most likely the socket would not leak, nevertheless create_tcp_accept_sock()
close the socket everytime so for clarity apply the same principal here in
create_local_accept_sock()


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/12/14 01:35:49

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 55.0.2883.87


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/14 01:58:03

Modified files:
	sysutils/salt  : Makefile distinfo 
	sysutils/salt/pkg: PLIST 

Log message:
Update to salt-2016.11.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/14 03:17:21

Modified files:
	www/urlwatch   : Makefile distinfo 
	www/urlwatch/pkg: PLIST 
Added files:
	www/urlwatch/patches: patch-lib_urlwatch_config_py 
Removed files:
	www/urlwatch/patches: patch-urlwatch 

Log message:
update to urlwatch-2.6


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/14 03:30:59

Modified files:
	sys/arch/amd64/include: cpu.h 
	sys/arch/amd64/amd64: identcpu.c 

Log message:
Add the TSC timecounter and use it on Skylake machines where the HPET
is too slow and the invariant TSC more accurate.

The commit includes joint work by mikeb@ kettenis@ and me;
tested for some time by a large group of volunteers.

OK mikeb@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/14 04:39:30

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Various typos and minor cleanup


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/14 05:29:06

Modified files:
	net/mosh       : Makefile 
Removed files:
	net/mosh/patches: patch-src_crypto_ocb_cc 

Log message:
No need to disable inline asm on arm any more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/14 06:14:05

Modified files:
	x11/gnome/session: Makefile 
Removed files:
	x11/gnome/session/patches: patch-gnome-session_main_c 

Log message:
Remove uneeded patch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/14 06:30:34

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Bugfix update to firefox 50.1.0.

See https://www.mozilla.org/en-US/firefox/50.1.0/releasenotes/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2016-94/.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/14 06:44:19

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox-esr 45.6.0.

See https://www.mozilla.org/en-US/firefox/45.6.0/releasenotes/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2016-95/


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/14 07:17:31

Log message:
    Import py-jedi 0.9.0, ok edd@
    
    Jedi is a static analysis tool for Python that can be used in IDEs/editors.
    Its historic focus is autocompletion, but does static analysis for now as
    well. Jedi is fast and is very well tested. It understands Python on a deeper
    level than all other static analysis frameworks for Python.
    
    Jedi has support for two different goto functions. Jedi understands
    docstrings and you can use Jedi autocompletion in your REPL as well.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20161214
    
    N ports/devel/py-jedi/Makefile
    N ports/devel/py-jedi/distinfo
    N ports/devel/py-jedi/pkg/DESCR
    N ports/devel/py-jedi/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/14 07:20:18

Modified files:
	devel          : Makefile 

Log message:
+py-jedi
+py-jedi,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/14 07:21:44

Modified files:
	security       : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	security/l0phtcrack: Makefile distinfo 
	security/l0phtcrack/patches: patch-Makefile patch-chal_resp_c 
	                             patch-includes_h patch-readsmb_c 
	                             patch-util_c patch-ztest_c 
	security/l0phtcrack/pkg: DESCR PLIST 

Log message:
Remove security/l0phtcrack

Reasons include:
- i386 only
- full of scary patches and build warnings, embeds old libcrypto code,
readsmb is a pcap listener that needs to run as root...
- no licensing information for l0phtcrack itself
- LANMAN and NTLMv1 auth are so old and braindead it's not even funny.
Yes, they are still used out there, no, they really shouldn't be.

ok mestre@ sthen@ ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/14 07:26:25

Modified files:
	security       : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	security/bunny : Makefile distinfo 
	security/bunny/pkg: DESCR PLIST 

Log message:
Remove security/bunny

Unmaintained upstream, superseded by devel/afl.

ok Peter Valchev (maintainer) fcambus@ ajacoutot@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/14 07:28:55

Modified files:
	mail/sendmail  : Makefile 
Added files:
	mail/sendmail/patches: patch-cf_m4_proto_m4 

Log message:
Also add user _uucp to trusted users.

This avoids useless Auth warnings with the upcoming changes in net/uucp.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/14 07:38:42

Modified files:
	usr.bin/bgplg  : bgplg.8 

Log message:
Some of the executables that are used by bgplg need the set-user-ID
bit, so they should be mounted on a filesystem without the nosuid
option.  OpenBSD's /var/www is mounted nosuid by default and using
bgplg with the statically-linked "ping" doesn't work with nosuid.

Reported by Michael W. Lucas (mwlucas at michaelwlucas.com)

OK jmc@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/14 08:04:13

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_NAME_new.3 

Log message:
Write X509_NAME_new(3) manual from scratch.  Both functions are
listed in <openssl/x509.h> and in OpenSSL doc/man3/X509_dup.pod.
Note that the OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/14 09:07:05

Modified files:
	lib/libcrypto/man: X509_NAME_ENTRY_get_object.3 

Log message:
Document X509_NAME_ENTRY_new(3) and X509_NAME_ENTRY_free(3),
both listed in <openssl/x509.h> and in OpenSSL doc/man3/X509_dup.h.
Note that the OpenSSL documentation specifies the wrong header file.

Explain what X509_NAME_ENTRY represents.
Simplify and clarify some wording.
Sort parts of the text into a more logical order.
Delete an irrelevant cross reference and add some relevant ones.
Add a STANDARDS section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/14 09:18:31

Modified files:
	lib/libcrypto/man: d2i_X509_NAME.3 

Log message:
Complete rewrite to improve clarity.
Add some cross references and STANDARDS.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/14 09:20:28

Modified files:
	lib/libcrypto/man: OCSP_SERVICELOC_new.3 OCSP_cert_to_id.3 
	                   X509_NAME_add_entry_by_txt.3 
	                   X509_NAME_get_index_by_NID.3 
	                   X509_NAME_print_ex.3 X509_get_subject_name.3 
	lib/libssl/man : SSL_CTX_set_client_CA_list.3 SSL_dup_CA_list.3 
	                 SSL_get_client_CA_list.3 
	                 SSL_load_client_CA_file.3 

Log message:
Make sure all manual pages discussing X509_NAME objects
reference X509_NAME_new(3).  Sparingly add a few other
references to relevant X509_NAME*(3) pages while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/14 09:53:32

Modified files:
	lib/libcrypto/man: x509.3 

Log message:
Clarify X509_NAME stuff and cut back excessive references.
Ultimately, this page will have to be merged into X509_new(3),
but we're not quite ready for that just yet.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/14 10:15:56

Modified files:
	sys/netinet    : igmp.c 

Log message:
Set the rtableid for new mbufs when sending packets in igmp_sendpkt().

ok mikeb@, phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/14 10:26:35

Modified files:
	lib/libcrypto/man: d2i_X509_NAME.3 

Log message:
Document X509_NAME_dup(3) and X509_NAME_ENTRY_dup(3) listed in
OpenSSL doc/man3/X509_dup.pod and d2i_X509_NAME_ENTRY(3) and
i2d_X509_NAME_ENTRY(3) listed in OpenSSL doc/man3/d2i_X509.pod.
Also add a RETURN VALUES section.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/14 10:29:51

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/14 10:38:59

Modified files:
	usr.bin/tmux   : cmd-swap-window.c 

Log message:
Fix up winlink lists after swap-window.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/14 10:56:19

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Allow a guest to reboot by reinitializing its state and booting again.
This is technically a reset since memory is cleared and the dmesg
buffer is lost.

Patch from Jon Bernard (jbernard at jbernard.io) - Thanks

OK reyk@ mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/14 11:48:24

Modified files:
	security/oledump: Makefile distinfo 
	security/oledump/pkg: PLIST 

Log message:
update oledump to 0.0.26.
ok shadchin@ benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/14 11:59:12

Modified files:
	sys/dev        : vnd.c vndioctl.h 

Log message:
Kill compat for old VNDIOCSET; ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/14 12:12:16

Modified files:
	usr.sbin/tcpdump: addrtoname.c 

Log message:
Sync extern decl of eproto_db with what's in libpcap.

For some reason this crashes on armv7.  Issue reported by Lars Nooden.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/14 13:05:37

Modified files:
	net/ntp        : Makefile distinfo 
Added files:
	net/ntp/patches: patch-include_libssl_compat_h 
	                 patch-libntp_libssl_compat_c 

Log message:
Security update to 4.2.8p9:
CVE-2016-9311: Trap crash
CVE-2016-9310: Mode 6 unauthenticated trap information disclosure and DDoS vector
CVE-2016-7427: Broadcast Mode Replay Prevention DoS
CVE-2016-7428: Broadcast Mode Poll Interval Enforcement DoS
CVE-2016-9312: Windows: ntpd DoS by oversized UDP packet
CVE-2016-7431: Regression: 010-origin: Zero Origin Timestamp Bypass
CVE-2016-7434: Null pointer dereference in _IO_str_init_static_internal()
CVE-2016-7429: Interface selection attack
CVE-2016-7426: Client rate limiting and server responses
CVE-2016-7433: Reboot sync calculation problem


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/14 13:34:57

Modified files:
	net/ntp        : Tag: OPENBSD_6_0 Makefile distinfo 
Added files:
	net/ntp/patches: Tag: OPENBSD_6_0 patch-include_libssl_compat_h 
	                 patch-libntp_libssl_compat_c 

Log message:
Security update to 4.2.8p9:
CVE-2016-9311: Trap crash
CVE-2016-9310: Mode 6 unauthenticated trap information disclosure and DDoS vector
CVE-2016-7427: Broadcast Mode Replay Prevention DoS
CVE-2016-7428: Broadcast Mode Poll Interval Enforcement DoS
CVE-2016-9312: Windows: ntpd DoS by oversized UDP packet
CVE-2016-7431: Regression: 010-origin: Zero Origin Timestamp Bypass
CVE-2016-7434: Null pointer dereference in _IO_str_init_static_internal()
CVE-2016-7429: Interface selection attack
CVE-2016-7426: Client rate limiting and server responses
CVE-2016-7433: Reboot sync calculation problem


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/14 13:35:20

Modified files:
	sys/net        : route.c 

Log message:
Make 'route add default' show a nicer error message if the provided
gateway is not reachable (e.g. not on a local subnet).
ok millert@ mikeb@ mpi@
(and shrugs by jca@)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/14 14:17:25

Modified files:
	usr.sbin/vmctl : vmctl.c 
	usr.sbin/vmd   : parse.y vmd.c vmd.h 

Log message:
Allow to start disabled and pre-configured VMs by name, "vmctl start foo".

With testing from Jon Bernard

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/14 14:22:06

Modified files:
	lib/libcrypto/man: PEM_write_bio_PKCS7_stream.3 
	                   X509_NAME_ENTRY_get_object.3 

Log message:
an Xr and new line fix;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/14 14:37:03

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-config_php_default patch-daily_sh 
	                      patch-html_install_php 
	                      patch-html_pages_about_inc_php 
	                      patch-includes_common_php 
	                      patch-includes_defaults_inc_php 
	                      patch-includes_functions_php 
	                      patch-validate_php 
	net/librenms/pkg: PLIST 
Removed files:
	net/librenms/patches: patch-alerts_php 

Log message:
update to librenms-1.22.01


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/14 20:41:15

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
fix build when DIAGNOSTIC is not defined
ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/14 23:52:02

Modified files:
	lib/libcrypto/man: RAND_add.3 

Log message:
remove "(DEPRECATED)" from the Nd: none of the other base pages
document things this way and DESCRIPTION is clear anyway that this
should not be used; wording of the Nd suggested by schwarze

ok schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/15 01:23:10

Added files:
	x11/gnome/session/patches: patch-gnome-session_main_c 

Log message:
I am stupid; while hunting for some other issue, I misread my own patch.
Bring it back, it _is_ needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/15 02:16:06

Modified files:
	net/py-boto    : Makefile distinfo 

Log message:
Update to py-boto-2.45.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/15 02:16:24

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.4.86.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/15 02:16:44

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.29.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/15 02:21:52

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 
Removed files:
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_config_py 

Log message:
Update to google-cloud-sdk-138.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/15 02:31:15

Modified files:
	www/owncloud   : Makefile distinfo 
	www/owncloud/patches: patch-version_php 
	www/owncloud/pkg: PLIST 

Log message:
Update to owncloud-9.1.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/15 02:42:01

Modified files:
	www/owncloud   : Tag: OPENBSD_6_0 Makefile distinfo 
	www/owncloud/patches: Tag: OPENBSD_6_0 patch-version_php 
	www/owncloud/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
Maintenance update to owncloud-9.0.7; keeping up-to-date on the previous
release to ease upgrade to 9.1.X for 6.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/15 03:00:15

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-2.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/15 03:15:53

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Update to nss 3.27.2.

See
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.27.2_release_notes


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/12/15 03:23:21

Added files:
	lib/libcrypto  : format-pem.pl 

Log message:
Add a helper script, format-pem.pl: a filter to sort and pretty-print
cert.pem entries.  ok jsg


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/15 03:59:12

Modified files:
	audio/mpd      : Makefile distinfo 
	audio/mpd/patches: patch-Makefile_in patch-configure 

Log message:
Bugfixing update to mpd-0.19.21


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/15 04:06:15

Modified files:
	security/pcsc-lite: Makefile distinfo 

Log message:
Update to pcsc-lite-1.8.19


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2016/12/15 04:41:43

Modified files:
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/patches: patch-conf_server_xml 
	www/tomcat/v8/pkg: PLIST-examples 

Log message:
Update to tomcat-8.5.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/15 07:16:38

Modified files:
	textproc/the_silver_searcher: Makefile distinfo 

Log message:
Update the_silver_searcher to 1.0.2, from maintainer Florian Stinglmayr.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/15 08:13:54

Modified files:
	lib/libcrypto/man: X509_EXTENSION_set_object.3 

Log message:
Document X509_EXTENSION_new(3) and X509_EXTENSION_free(3) listed
in <openssl/x509.h> and in OpenSSL doc/man3/X509_dup.pod.

Explain what an X509_EXTENSION object is and where it is used.
Add STANDARDS references.
Sort the functions into a more logical order.
Link to all other pages dealing with X509_EXTENSION objects.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/15 08:21:07

Modified files:
	lib/libcrypto/man: X509V3_get_d2i.3 

Log message:
cut back some excessive cross references
and link to X509_EXTENSION_new(3) instead


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/15 08:22:17

Modified files:
	lib/libcrypto/man: OCSP_CRLID_new.3 OCSP_SERVICELOC_new.3 
	                   X509v3_get_ext_by_NID.3 x509.3 

Log message:
Make sure all pages talking about X509_EXTENSION objects
link back to X509_EXTENSION_new(3).


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/15 08:28:53

Modified files:
	www/py-requests: Makefile distinfo 

Log message:
Bugfix update to py-requests 2.12.4


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/12/15 08:42:05

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
Add Intel Bluetooth devices found on x250 and x260 Thinkpads.


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2016/12/15 08:44:46

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
Regen usbdevs


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/15 10:37:17

Modified files:
	lib/libcrypto/man: X509_EXTENSION_set_object.3 

Log message:
provide missing section number to Xr;


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/12/15 12:18:41

Modified files:
	sys/conf       : files 
	sys/dev/rasops : files.rasops rasops.c rasops.h 
Removed files:
	sys/dev/rasops : rasops2.c 

Log message:
Remove rasops2 (2-bit color depth) functions, they are unused.

It seems unlikely that any future new platform will ever need them.

OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/15 13:25:19

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 
	x11/gnome/online-accounts/pkg: PLIST 

Log message:
update to gnome-online-accounts-3.22.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/15 13:27:11

Modified files:
	net/apache-activemq: Makefile distinfo 
	net/apache-activemq/pkg: PLIST 

Log message:
update to apache-activemq-5.14.2


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/15 13:32:44

Modified files:
	distrib/special/doas: doas.c 

Log message:
Nuke a couple of unused variables making gcc upset. Leftovers from stripping
down doas for install media.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/15 13:50:36

Modified files:
	lib/libc/net   : if_nameindex.c 

Log message:
Nuke some trailing tabs.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/12/15 14:20:41

Modified files:
	usr.bin/ssh    : dh.c 

Log message:
Fix text in error message.  Patch from zev at bewilderbeest.net.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/12/15 14:29:05

Modified files:
	usr.bin/ssh    : auth.c 

Log message:
Add missing braces in DenyUsers code.  Patch from zev at bewilderbeest.net,
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/15 14:44:31

Modified files:
	graphics/pdf2djvu: Makefile distinfo 
	graphics/pdf2djvu/pkg: PLIST 
Removed files:
	graphics/pdf2djvu/patches: patch-tests_common_py 

Log message:
Update to pdf2djvu 0.9.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/15 15:08:23

Modified files:
	lib/libcrypto/man: X509_ALGOR_dup.3 

Log message:
Document X509_ALGOR_new(3) and X509_ALGOR_free(3)
listed in <openssl/x509.h> and in OpenSSL doc/man3/X509_dup.pod.

Explain what an X509_ALGOR object represents and where it is used.
Explain how copying works, like in similar pages.
New RETURN VALUES, SEE ALSO, and STANDARDS sections.
Some macro and wording fixes.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/15 15:09:22

Modified files:
	lib/libcrypto/man: d2i_X509_ALGOR.3 

Log message:
link back to X509_ALGOR_new(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/15 15:24:45

Modified files:
	lib/libcrypto/man: X509_PUBKEY_new.3 

Log message:
Add a STANDARDS section and mention the relevant section of the standard.
Link to X509_ALGOR_new(3) because one of the functions uses X509_ALGOR.
Delete a sentence about a function we don't have.
Delete another sentence that says nothing new.
Remove some macros that we don't normally use.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/15 16:29:38

Modified files:
	lib/libcrypto/man: X509_ALGOR_dup.3 

Log message:
markup fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/12/15 16:50:37

Modified files:
	regress/usr.bin/ssh: reexec.sh 

Log message:
Use $SUDO to read pidfile in case root's umask is restricted.  From
portable.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/15 18:01:07

Modified files:
	regress/usr.bin/ssh: cert-file.sh 

Log message:
regression test for certificates along with private key with no
public half. bz#2617, mostly from Adam Eijdenberg


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/12/15 18:06:27

Modified files:
	regress/usr.bin/ssh: login-timeout.sh reexec.sh test-exec.sh 

Log message:
Move the "stop sshd" code into its own helper function.  Patch from
Zev Weiss <zev at bewilderbeest.net>, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/15 19:48:55

Modified files:
	regress/usr.bin/ssh: cert-file.sh 

Log message:
revert to rev1.2; the new bits in this test depend on changes to ssh
that aren't yet committed


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/12/15 20:51:19

Modified files:
	regress/usr.bin/ssh: Makefile 
Added files:
	regress/usr.bin/ssh: allow-deny-users.sh 

Log message:
Add regression test for AllowUsers and DenyUsers.  Patch from Zev Weiss
<zev at bewilderbeest.net>


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/12/16 00:28:34

Modified files:
	lib/libXpm     : ChangeLog configure configure.ac 
	lib/libXpm/src : CrDatFrI.c RdFToBuf.c WrFFrBuf.c create.c 
	                 parse.c 

Log message:
Update to libXpm 3.5.12


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2016/12/16 00:31:10

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 01:41:16

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 01:45:58

Modified files:
	devel/appstream-glib: Makefile distinfo 
	devel/appstream-glib/pkg: PLIST 

Log message:
Update to appstream-glib-0.6.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 01:46:19

Modified files:
	x11/gnome/gvfs : Makefile distinfo 

Log message:
Update to gvfs-1.30.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/16 01:49:43

Modified files:
	lib/libcrypto/man: BUF_MEM_new.3 

Log message:
Fix error in the description of BUF_reverse(3), tweaked by me.

OpenSSL commit 498180de5c766f68f6d2b65454357bc263773c66
Author: Dmitry Belyavskiy <beldmit@gmail.com>
Date:   Mon Dec 12 15:35:09 2016 +0300


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 01:51:49

Modified files:
	security/libgcrypt: Makefile distinfo 

Log message:
Update to libgcrypt-1.7.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/16 01:53:30

Modified files:
	lib/libcrypto/man: ERR_GET_LIB.3 

Log message:
Document ERR_FATAL_ERROR(3), tweaked by me.

OpenSSL commit 036ba500f7886ca2e7231549fa574ec2cdd45cef
Author: Benjamin Kaduk <bkaduk@akamai.com>
Date:   Thu Dec 8 12:01:31 2016 -0600


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 01:56:14

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.87.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 01:56:34

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.1.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 01:56:54

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.30.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/16 01:58:43

Modified files:
	net/seafile    : Makefile.inc 
	net/seafile/ccnet: Makefile distinfo 
	net/seafile/client: Makefile distinfo 
	net/seafile/seafile: Makefile distinfo 

Log message:
Bugfix update to seafile-6.0.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/16 02:17:59

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_CINF_new.3 

Log message:
Write new X509_CINF_new(3) manual page from scratch.  These functions
are listed in <openssl/x509.h> and in OpenSSL doc/man3/X509_dup.pod.
Note that the OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2016/12/16 02:25:15

Modified files:
	x11/lsw        : Makefile 

Log message:
Fix typo in COMMENT: runnnig -> running.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/16 02:56:33

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_CRL_new.3 

Log message:
Write X509_CRL_new(3) manual page from scratch.  These four functions
are listed in <openssl/x509.h> and in OpenSSL doc/man3/X509_dup.pod.
Note that the OpenSSL documentation specifies the wrong header file.

Link to all pages dealing with X509_CRL objects.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/16 03:36:31

Modified files:
	.              : httpd.conf 

Log message:
typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/16 04:22:39

Modified files:
	audio/beets    : Makefile distinfo 

Log message:
update to beets-1.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2016/12/16 05:01:19

Modified files:
	etc/etc.loongson: sysctl.conf 
	sys/arch/loongson/loongson: machdep.c 
	sys/arch/mips64/include: cpu.h 

Log message:
Provide the "machdep.lidsuspend" sysctl on Loongson.

OK visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/16 05:24:43

Modified files:
	sys/netinet    : igmp.c 

Log message:
Move the if_get/if_put to the caller of igmp_sendpkt so we avoid having
to do this lookup twice.

Suggested by and ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/16 06:59:38

Modified files:
	x11/gnome/tracker: Makefile distinfo 

Log message:
Update to meta-tracker-1.10.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/16 07:50:58

Modified files:
	lib/libcrypto/man: Makefile X509_CRL_get0_by_serial.3 
Added files:
	lib/libcrypto/man: X509_REVOKED_new.3 

Log message:
Document X509_REVOKED_new(3) and X509_REVOKED_free(3) and move
X509_REVOKED_set_serialNumber(3) and X509_REVOKED_set_revocationDate(3)
into this new page.  Replace irrelevant cross references with
relevant cross references to X509_CRL* pages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/16 08:26:14

Modified files:
	sysutils/ansible: Makefile 
	sysutils/ansible/pkg: README 

Log message:
re-add paramiko dep; ansible doesn't start ("Unexpected Exception: The
'paramiko' distribution was not found") if it's missing. discussed with
landry, ok jasper (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/16 08:39:08

Modified files:
	lib/libssl/man : BIO_f_ssl.3 SSL_CTX_set_cert_store.3 
	                 SSL_CTX_set_tlsext_ticket_key_cb.3 
	                 SSL_CTX_set_verify.3 SSL_connect.3 
	                 SSL_do_handshake.3 SSL_load_client_CA_file.3 
	                 SSL_set_max_send_fragment.3 SSL_want.3 ssl.3 

Log message:
various minor cleanup;


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/16 08:54:05

Modified files:
	build/mirrors  : ftp.html.end 

Log message:
use a simple bullet list rather than a paragraph of text to explain
requirements for listing a distribution mirror - easier to follow this way.
ok krw millert


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/16 08:54:30

Modified files:
	.              : ftp.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/16 09:56:13

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2016/12/16 10:17:19

Modified files:
	sys/dev/pv     : hypervic.c 

Log message:
When running on Azure, the initial timesync "sync" message is not correct,
ignore it and only use the timesync "sample" messages.

OK mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2016/12/16 10:27:45

Modified files:
	devel/jdk/1.8  : Makefile distinfo 

Log message:
Update to u112.

Contains many upstream bug fixes and security fixes which
can be mined from u72-u112 release notes here:

http://www.oracle.com/technetwork/java/javase/8u-relnotes-2225394.html

Tested by naddy@ edd@ sthen@. okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/16 10:44:59

Modified files:
	bin/md5        : md5.c 
	lib/libc/net   : if_nameindex.c 
	sbin/fsck_ext2fs: inode.c 
	sbin/fsck_ffs  : inode.c 
	sbin/umount    : umount.c 
	usr.bin/ftp    : fetch.c main.c small.c 

Log message:
Eliminate some gcc warnings about 'unused variables', mostly by
adding appropriate #ifdef's around declarations.

ok millert@ (with a tweak I will commit separately)


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/16 10:55:27

Modified files:
	bin/md5        : md5.c 

Log message:
Move declaration of an 'i' inside the scope of its use. Which in
turn is inside an #ifdef. Thus making the code clearer by eliminating
an #ifdef in the middle of the declarations.

Suggested by millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/16 11:38:39

Modified files:
	usr.sbin/dhcrelay: dhcrelay.8 dhcrelay.c 

Log message:
Add dhcrelay(8) command-line option for replacing Relay Agent Information
on the incoming packets.

Man page tweaks from jmc@
ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/16 14:24:54

Modified files:
	emulators/advancemess: Makefile distinfo 

Log message:
Update advancemess to 3.0.

Both AdvanceMAME and AdvanceMESS are now distributed in one unique
tarball, and a configure switch has been introduced to choose which
emulator to build.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/16 18:08:14

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_REQ_new.3 

Log message:
Write a new manual page X509_REQ_new(3) from scratch.
These four functions are listed in <openssl/x509.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/16 18:20:10

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/patches: patch-configure_ac patch-poppler_XRef_cc 
	                       patch-qt5_src_Makefile_in 
	print/poppler/pkg: PLIST-qt4 PLIST-qt5 

Log message:
aja@ wants a new poppler, so update to 0.50.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/16 19:25:30

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2016/12/16 22:22:34

Modified files:
	sys/arch/luna88k/conf: GENERIC files.luna88k 
	sys/arch/luna88k/include: conf.h 
	sys/arch/luna88k/luna88k: conf.c mainbus.c 
Added files:
	sys/arch/luna88k/dev: xp.c 
	sys/arch/luna88k/include: xpio.h 

Log message:
Add new device xp(4), preliminary support for LUNA's I/O processor.

This is a straightforward port of NetBSD/luna68k by Izumi Tsutsui(*),
and makes LUNA's I/O auxiliary processor (called XP, actually
HD647180) possible to load and run programs.

(*): http://mail-index.netbsd.org/source-changes/2016/12/03/msg079493.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/17 02:21:24

Modified files:
	textproc/gspell: Makefile distinfo 

Log message:
Update to gspell-1.2.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/17 02:51:37

Modified files:
	x11/gnome/builder: Makefile 

Log message:
Add dependency on py3-jedi and py3-lxml for Python auto-completion.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/17 03:09:30

Modified files:
	textproc/py-lxml: Makefile distinfo 
	textproc/py-lxml/pkg: PLIST 

Log message:
Update to py-lxml-3.7.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/17 04:11:13

Modified files:
	devel/py-path.py: Makefile distinfo 
Removed files:
	devel/py-path.py/patches: patch-pytest_ini 

Log message:
Update to py-path.py 9.0.1


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/17 04:17:56

Modified files:
	sys/arch/octeon/octeon: machdep.c 

Log message:
On some systems, the firmware advertises multiple tiny and disjoint
regions of free memory whose size is no more than a few page frames.
Ignore them in order not to clutter uvm with fragments.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/17 04:25:33

Modified files:
	devel/py-xdis  : Makefile distinfo 
	devel/py-xdis/pkg: PLIST 

Log message:
Update to py-xdis 3.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/17 04:45:38

Modified files:
	devel/py-uncompyle6: Makefile distinfo 

Log message:
Update to py-uncompyle6 2.9.8


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/17 04:51:02

Modified files:
	sys/arch/mips64/include: cpu.h 
	sys/arch/mips64/mips64: cpu.c 

Log message:
Make Octeon model strings a bit more specific. While there,
add CN70xx/CN71xx.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:06:25

Modified files:
	lang/erlang/19 : Makefile distinfo 
	lang/erlang/19/pkg: PLIST-main PLIST-wx 

Log message:
update to erlang-19.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:06:31

Modified files:
	lang/elixir    : Makefile distinfo 

Log message:
update to elixir-1.3.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:07:19

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 
	devel/ruby-rspec/specinfra/pkg: PLIST 

Log message:
update to specinfra-2.66.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:11:02

Modified files:
	textproc/elasticsearch: Makefile distinfo 
	textproc/elasticsearch/patches: patch-config_elasticsearch_yml 
	textproc/elasticsearch/pkg: PLIST README elasticsearch.rc 

Log message:
- update to elasticsearch-5.1.1

please refer to the changelog [1] and list of breaking changes between 2 and 5 [2]
before upgrading (requires a cluster restart)

1: https://www.elastic.co/blog/elasticsearch-5-1-1-released
2: https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes.html

from Pavel Korovin
additional testing by sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:11:24

Added files:
	textproc/elasticsearch/patches: patch-bin_elasticsearch 
	                                patch-bin_elasticsearch-plugin 
	                                patch-bin_elasticsearch-translog 

Log message:
missed in previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:13:22

Modified files:
	www/kibana     : Makefile distinfo 
	www/kibana/patches: patch-config_kibana_yml 
	www/kibana/pkg : PLIST README kibana.rc 

Log message:
update to kibana-5.1.1

please refer to the release notes [1] and list of breaking changes between
kibana 4 and 5 [2]

1: https://www.elastic.co/blog/kibana-5-1-1-released
2: https://www.elastic.co/guide/en/kibana/current/breaking-changes-5.0.html

from Pavel Korovin (MAINTAINER)
additional testing by sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:13:42

Added files:
	www/kibana/patches: patch-bin_kibana patch-bin_kibana-plugin 

Log message:
lalala


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:16:33

Removed files:
	textproc/elasticsearch/patches: patch-bin_plugin 

Log message:
this patch should've been removed in previous commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/17 05:37:58

Modified files:
	devel/p5-Search-Elasticsearch: Makefile 

Log message:
mark broken after ES update; this port will be updated shortly by giovanni@

requested by giovanni@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/17 06:13:57

Modified files:
	sys/arch/octeon/dev: octrtc.c 
	sys/arch/octeon/include: octeonvar.h 

Log message:
There is no RTC on Shasta, so do not attach the driver.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/17 07:11:21

Modified files:
	databases      : Makefile 
	databases/openldap: Makefile 
	databases/openldap/pkg: DESCR-server 

Log message:
revert openldap gssapi stuff that doesn't work. pointed out by aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/17 07:14:09

Modified files:
	sys/arch/octeon/include: octeon_model.h octeonreg.h 
	sys/arch/octeon/octeon: machdep.c 

Log message:
Fix IO clock speed and system reset on Octeon III.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/17 07:26:53

Modified files:
	sys/net        : route.c 

Log message:
Insert RTF_CLONED routes at a higher priority than their partent to
prevent a mpath conflict for /32 RTF_CLONING routes.

Found the hardway by jsing@ on Google Compute Engine.

ok bluhm@, jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/17 07:51:09

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_ATTRIBUTE_new.3 

Log message:
Write new X509_ATTRIBUTE(3) manual page from scratch.
Both functions are listed in <openssl/x509.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.

The design and use of this data type feels horrific.
If you understand PKCS#8 or PKCS#10 and can explain why this was
designed as it is, your contribution to this manual page is welcome.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/17 07:58:31

Modified files:
	security/heimdal: Makefile distinfo heimdal.port.mk 
	security/heimdal/patches: patch-kadmin_add-random-users_c 
	                          patch-kpasswd_kpasswd-generator_c 
	                          patch-kuser_generate-requests_c 
	                          patch-lib_hcrypto_test_rsa_c 
	                          patch-lib_hx509_softp11_c 
	                          patch-lib_krb5_crypto-rand_c 
	                          patch-lib_krb5_krb5_h 
	                          patch-lib_roken_rand_c 
	                          patch-lib_sqlite_sqlite3_c 
	                          patch-tools_krb5-config_in 
	security/heimdal/pkg: PLIST-devel-docs PLIST-libs PLIST-main 
Added files:
	security/heimdal/patches: patch-lib_hcrypto_evp-openssl_c 
	                          patch-lib_krb5_send_to_kdc_c 
	                          patch-lib_roken_Makefile_in 
	                          patch-lib_roken_roken_h_in 
Removed files:
	security/heimdal/patches: patch-appl_Makefile_in 
	                          patch-appl_xnlock_xnlock_c 
	                          patch-kuser_kswitch_1 
	                          patch-lib_com_err_com_right_h 
	                          patch-lib_gssapi_spnego_external_c 
	                          patch-lib_hcrypto_rand_h 
	                          patch-lib_hcrypto_randi_h 
	                          patch-lib_hx509_ref_pkcs11_h 
	                          patch-lib_ipc_server_c 
	                          patch-lib_libedit_src_unvis_c 
	                          patch-lib_libedit_src_vis_c 

Log message:
Update to heimdal-7.0.3.
This is still an RC but the final version is supposed to come out in a
couple of days. Committing early to catch regressions and all.
Not much depends on this in ports anyway...


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/17 07:58:54

Modified files:
	sysutils/login_krb5: Makefile distinfo 

Log message:
Update to login_krb5-6.1.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/17 08:00:22

Modified files:
	security/cyrus-sasl2: Makefile 
	x11/gnome/initial-setup: Makefile 
	x11/gnome/control-center: Makefile 

Log message:
Sync WANTLIB after heimdal update.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 08:20:10

Modified files:
	usr.sbin/makefs: ffs.c 

Log message:
Nuke unused variable and some extra whitespace.

ok natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 08:31:57

Modified files:
	print/poppler  : Makefile 

Log message:
poppler 0.50 picks up openjp2 by default, unlike previous versions, which
preferred openjpeg due to some bugs in openjp2.

Tweaking LIB_DEPENDS and WANTLIB entries. More stuff to come with Qt update.

Comitting now to avoid bulk builds breakage.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 09:05:45

Modified files:
	math/graphviz  : Makefile 

Log message:
Unbreak after poppler switch to openjp2.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 09:12:15

Modified files:
	usr.sbin/makefs: README cd9660.c cd9660.h makefs.c makefs.h 
	                 msdos.c walk.c 

Log message:
While here nuke some more annoying whitespace nits.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 09:14:18

Modified files:
	usr.sbin/makefs: ffs.c 

Log message:
While here nuke some more annoying whitespace nits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 09:15:36

Modified files:
	print/cups-filters: Makefile 

Log message:
Unbreak after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/17 09:20:03

Modified files:
	lib/libcrypto/curve25519: curve25519.c curve25519.h 

Log message:
Define X25519_KEY_LENGTH and use it so we have fewer magic numbers.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 09:22:05

Modified files:
	usr.sbin/makefs/cd9660: cd9660_eltorito.c cd9660_eltorito.h 
	                        cd9660_write.c iso.h iso9660_rrip.h 

Log message:
While here nuke some more annoying whitespace nits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 09:23:54

Modified files:
	x11/gnome/tracker: Makefile 

Log message:
Unbreak after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 09:25:31

Modified files:
	print/py-poppler: Makefile 

Log message:
Unbreak after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 09:26:46

Modified files:
	usr.sbin/makefs/ffs: buf.c ffs_alloc.c ufs_bmap.c ufs_inode.h 

Log message:
While here nuke some more annoying whitespace nits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 09:27:38

Modified files:
	x11/xfce4/tumbler: Makefile 

Log message:
Unbreak after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 09:43:30

Modified files:
	usr.sbin/makefs/msdos: denode.h mkfs_msdos.c mkfs_msdos.h 
	                       msdosfs_fat.c msdosfs_unicode.c 
	                       msdosfs_vfsops.c msdosfs_vnops.c 

Log message:
While here nuke some more annoying whitespace nits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 09:54:25

Modified files:
	graphics/evince: Makefile 

Log message:
Tweak WANTLIB after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 10:27:02

Modified files:
	graphics/gimp/stable: Makefile 

Log message:
The graphics/openjpeg wasn't the LIB_DEPENDS of gimp, it came through
the poppler. So zap the LIB_DEPENDS line and change openjpeg to openjp2
in WANTLIB. The "make lib-depends-check" agrees.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/17 11:35:54

Modified files:
	sys/net80211   : ieee80211_crypto.c ieee80211_crypto.h 
	                 ieee80211_crypto_tkip.c ieee80211_node.c 
	                 ieee80211_var.h 

Log message:
Complete our half-done implementation of TKIP countermeasures in hostap mode.

The previous code would disable the AP until next reboot upon MIC failure.
Instead, disable the AP for 60 seconds, as required by the 802.11 standard.
I randomly added a bit of time (up to 120 seconds total) just because we can.

Problem reported by Mathy Vanhoef, thanks!
ok deraadt@
random input reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/17 11:36:23

Modified files:
	sys/net80211   : ieee80211_pae_output.c 

Log message:
Don't crash while sending a TKIP MIC failure report to the AP.
Client-side bug found while investigating TKIP countermeasures.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 12:06:28

Modified files:
	graphics/inkscape: Makefile 

Log message:
Unbreak after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/17 12:10:55

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 13:40:29

Modified files:
	print/texlive/base: Makefile 

Log message:
Unbreak after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/17 13:43:36

Modified files:
	mail/claws-mail: Makefile 

Log message:
Unbreak after poppler switch from openjpeg to openjp2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/12/17 14:42:52

Modified files:
	www/py-urllib3 : Makefile 

Log message:
Update to 1.19.1

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/12/17 14:44:06

Modified files:
	sysutils/py-elasticsearch-curator: Makefile distinfo 
	sysutils/py-elasticsearch-curator/pkg: PLIST 

Log message:
Update to 4.2.4
new RDEP to py-certifi

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/12/17 15:44:53

Modified files:
	devel/p5-Params-Validate: Makefile distinfo 
	devel/p5-Params-Validate/pkg: PLIST 

Log message:
Update devel/p5-Params-Validate to 1.26


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/17 16:31:36

Modified files:
	www/py-urllib3 : distinfo 

Log message:
update distinfo after the update to unbreak


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:33:00

src/sys/arch/arm64

Update of /cvs/src/sys/arch/arm64
In directory cvs.openbsd.org:/tmp/cvs-serv25266/arm64

Log Message:
Directory /cvs/src/sys/arch/arm64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:35:34

src/sys/arch/arm64/arm64

Update of /cvs/src/sys/arch/arm64/arm64
In directory cvs.openbsd.org:/tmp/cvs-serv28456/arm64/arm64

Log Message:
Directory /cvs/src/sys/arch/arm64/arm64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:35:34

src/sys/arch/arm64/compile

Update of /cvs/src/sys/arch/arm64/compile
In directory cvs.openbsd.org:/tmp/cvs-serv28456/arm64/compile

Log Message:
Directory /cvs/src/sys/arch/arm64/compile added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:35:34

src/sys/arch/arm64/conf

Update of /cvs/src/sys/arch/arm64/conf
In directory cvs.openbsd.org:/tmp/cvs-serv28456/arm64/conf

Log Message:
Directory /cvs/src/sys/arch/arm64/conf added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:35:34

src/sys/arch/arm64/dev

Update of /cvs/src/sys/arch/arm64/dev
In directory cvs.openbsd.org:/tmp/cvs-serv28456/arm64/dev

Log Message:
Directory /cvs/src/sys/arch/arm64/dev added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:35:34

src/sys/arch/arm64/include

Update of /cvs/src/sys/arch/arm64/include
In directory cvs.openbsd.org:/tmp/cvs-serv28456/arm64/include

Log Message:
Directory /cvs/src/sys/arch/arm64/include added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:35:34

src/sys/arch/arm64/stand

Update of /cvs/src/sys/arch/arm64/stand
In directory cvs.openbsd.org:/tmp/cvs-serv28456/arm64/stand

Log Message:
Directory /cvs/src/sys/arch/arm64/stand added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:36:31

src/sys/arch/arm64/compile/GENERIC

Update of /cvs/src/sys/arch/arm64/compile/GENERIC
In directory cvs.openbsd.org:/tmp/cvs-serv74373/compile/GENERIC

Log Message:
Directory /cvs/src/sys/arch/arm64/compile/GENERIC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:36:31

src/sys/arch/arm64/compile/RAMDISK

Update of /cvs/src/sys/arch/arm64/compile/RAMDISK
In directory cvs.openbsd.org:/tmp/cvs-serv74373/compile/RAMDISK

Log Message:
Directory /cvs/src/sys/arch/arm64/compile/RAMDISK added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:36:31

src/sys/arch/arm64/stand/efiboot

Update of /cvs/src/sys/arch/arm64/stand/efiboot
In directory cvs.openbsd.org:/tmp/cvs-serv74373/stand/efiboot

Log Message:
Directory /cvs/src/sys/arch/arm64/stand/efiboot added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/17 16:38:33

Added files:
	sys/arch/arm64 : Makefile 
	sys/arch/arm64/arm64: arm64_a4x_iobus.c arm64_iobus.c 
	                      arm64_machdep.h arm64_mutex.c arm64var.h 
	                      ast.c autoconf.c bus_dma.c conf.c copy.S 
	                      copystr.S cpuswitch.S db_disasm.c 
	                      db_interface.c db_trace.c disksubr.c 
	                      exception.S genassym.cf intr.c locore.S 
	                      machdep.c mem.c pmap.c process_machdep.c 
	                      sig_machdep.c softintr.c support.S 
	                      sys_machdep.c syscall.c trap.c vfp.c 
	                      vm_machdep.c 
	sys/arch/arm64/compile: Makefile Makefile.inc 
	sys/arch/arm64/compile/GENERIC: Makefile 
	sys/arch/arm64/compile/RAMDISK: Makefile 
	sys/arch/arm64/conf: GENERIC Makefile.arm64 files.arm64 
	                     kern.ldscript 
	sys/arch/arm64/dev: agtimer.c ampintc.c arm64_bus_space.c 
	                    com_fdt.c mainbus.c mainbus.h pluart.c 
	                    simplebus.c simplebusvar.h virtio_mmio.c 
	sys/arch/arm64/include: _float.h _types.h apmvar.h armreg.h 
	                        asm.h atomic.h bootconfig.h bus.h 
	                        cdefs.h conf.h cpu.h db_machdep.h 
	                        disklabel.h endian.h exec.h fdt.h fenv.h 
	                        float.h frame.h hypervisor.h ieee.h 
	                        ieeefp.h internal_types.h intr.h kcore.h 
	                        limits.h loadfile_machdep.h lock.h 
	                        machdep.h machine_reg.h mplock.h mutex.h 
	                        param.h pcb.h pmap.h proc.h profile.h 
	                        pte.h ptrace.h reg.h reloc.h setjmp.h 
	                        signal.h softintr.h spinlock.h stdarg.h 
	                        swi.h sysarch.h tcb.h trap.h vfp.h 
	                        vmparam.h 
	sys/arch/arm64/stand: Makefile 
	sys/arch/arm64/stand/efiboot: Makefile conf.c disk.h efiboot.c 
	                              efiboot.h eficall.h efidev.c 
	                              efidev.h exec.c fdt.c fdt.h heap.h 
	                              ldscript.arm64 libsa.h 
	                              self_reloc.c start.S 

Log message:
Import of OpenBSD/arm64

This commit contains all the kernel files related to the OpenBSD/arm64
port.  It is based on the PowerPC pmap, loongson, arm/armv7 code and
FreeBSD aarch64 code.  Hard work done by Dale Rahn.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/17 17:54:22

Modified files:
	lang/chicken   : Makefile.inc 
	lang/chicken/core: Makefile 
Added files:
	lang/chicken/core/patches: patch-irregex-core_scm 

Log message:
Update chicken's irregex to 0.9.6 in order to fix CVE-2016-9954.

http://lists.gnu.org/archive/html/chicken-hackers/2016-12/msg00010.html

From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/17 18:03:11

Modified files:
	lang/chicken   : Tag: OPENBSD_6_0 Makefile.inc 
	lang/chicken/core: Tag: OPENBSD_6_0 Makefile 
Added files:
	lang/chicken/core/patches: Tag: OPENBSD_6_0 
	                           patch-irregex-core_scm 

Log message:
Update chicken's irregex to 0.9.6 in order to fix CVE-2016-9954.

http://lists.gnu.org/archive/html/chicken-hackers/2016-12/msg00010.html

From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 18:34:51

Modified files:
	lib/libc/asr   : asr_private.h 

Log message:
Remove prototype for static function _asr_resolver. Eliminates gcc
whining about undefined static in all the .c files that include
asr_private.h. _asr_resolver() is defined and used in asr.c only.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/17 23:11:23

Modified files:
	usr.bin/lex    : filter.c 
	usr.bin/vi/cl  : cl_term.c 
	usr.bin/vi/vi  : vs_msg.c 
	usr.sbin/rarpd : rarpd.c 

Log message:
Nuke more unused variables.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/18 01:00:20

Modified files:
	sys/net80211   : ieee80211_crypto_tkip.c 

Log message:
Set the maximum TKIP countermeasure timeout to 90 seconds instead of 120.
Waiting more time does not buy us anything and makes a denial of service
a tiny bit easier.
Suggested by Mathy Vanhoef.


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2016/12/18 01:18:12

Modified files:
	.              : alpha.html sgi.html 

Log message:
isp(4) -> qlw(4)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/18 02:01:07

Modified files:
	security/heimdal/patches: patch-lib_hcrypto_evp-openssl_c 

Log message:
Pushed upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/18 02:36:04

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.13.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/18 02:53:18

Modified files:
	productivity/tryton/account_dunning: Makefile distinfo 
	productivity/tryton/account_invoice: Makefile distinfo 
	productivity/tryton/sale_shipment_cost: Makefile distinfo 

Log message:
Update a few tryton modules to the latest stable release in their branch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/18 02:53:39

Modified files:
	productivity/tryton/trytond: Makefile distinfo 

Log message:
Update to trytond-3.2.18.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/18 02:56:17

Modified files:
	textproc/meld  : Makefile distinfo 

Log message:
Update to meld-3.16.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/18 03:00:06

Modified files:
	mail/gmime     : Makefile distinfo 

Log message:
Update to gmime-2.6.22.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/18 03:37:42

Modified files:
	sys/dev/pci    : if_iwm.c if_iwn.c 
	sys/net80211   : ieee80211_ioctl.c 

Log message:
While copying out channel flags to userspace, omit the HT channel flag if
we're not in 11n mode. This will allow tcpdump to show the mode correctly.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/18 03:38:01

Modified files:
	usr.sbin/tcpdump: print-802_11.c 

Log message:
Make tcpdump show "11n" for a channel which is used in 11n mode.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/18 04:15:02

Modified files:
	usr.sbin/tcpdump: print-802_11.c 

Log message:
Remove duplicated lines of code introduced in my previous tcpdump commit.
Noticed by claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/18 05:26:33

Modified files:
	comms/gammu    : Makefile distinfo 
	comms/gammu/patches: patch-CMakeLists_txt 
	                     patch-tests_CMakeLists_txt 
	comms/gammu/pkg: PLIST 

Log message:
Update to gammu-1.38.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/18 05:27:15

Modified files:
	comms/py-gammu : Makefile distinfo 

Log message:
Update to python-gammu-2.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/18 05:31:02

Modified files:
	comms/wammu    : Makefile distinfo 
	comms/wammu/patches: patch-setup_py 

Log message:
Update to wammu-0.43


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/18 06:52:53

Modified files:
	lib/libssl     : s3_clnt.c ssl_locl.h t1_lib.c 

Log message:
Convert ssl3_get_server_hello() to CBS.

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/18 06:54:15

Modified files:
	regress/lib/libssl/unit: tls_ext_alpn.c 

Log message:
Revise regress for changes to ssl_parse_serverhello_tlsext().

Same diff from inoguchi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/18 06:58:21

Modified files:
	math/netcdf    : Makefile 

Log message:
Update homepage and remove trailing whitespace while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/18 07:31:31

Modified files:
	www/logswan    : Makefile distinfo 

Log message:
Update logswan to 1.06.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/18 07:34:20

Modified files:
	sys/dev/ic     : ar5xxx.h athnreg.h 

Log message:
Add cast to mask and shift macros to silence warnings generated by clang.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/18 07:40:25

Modified files:
	sys/arch/arm64/arm64: locore.S support.S 
	sys/arch/arm64/include: armreg.h bootconfig.h hypervisor.h vfp.h 
	sys/arch/arm64/stand/efiboot: self_reloc.c start.S 

Log message:
Adjust OpenBSD/arm64 files with FreeBSD origin to show the upstream
revision.  While there, update a few of those files.

Prompted by mikeb@.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/18 08:59:22

Modified files:
	sys/dev/acpi   : dsdt.c 

Log message:
Remove comparison of array which is always non-NULL.  Fixes clang warning.

ok jca@ (a while back)


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/18 09:10:11

Modified files:
	devel/tig      : Makefile distinfo 

Log message:
Update tig to 2.2.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/18 10:02:21

Modified files:
	share/mk       : bsd.own.mk 

Log message:
Introduce a list of architectures that use clang as compiler.  The
first arch on that list is aarch64.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/18 10:03:08

Modified files:
	.              : Makefile.cross 

Log message:
Implement support for cross-compiling arm64 in Makefile.cross.  This
adds code to build clang as cross-compiler instead of gcc.  Since we
don't have binutils for aarch64 in base, skip the binutils cross-
toolchain build for that architecture.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/18 10:07:58

Modified files:
	lib/libc/db/hash: hash_page.c 

Log message:
Another whitespace nit that wandered into my sights.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/12/18 10:15:07

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
Correct logic, make it the same as in the other mrt_dump_bgp_msg case.
Found while looking for something else.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/18 10:46:52

Modified files:
	sys/arch/arm64/arm64: exception.S trap.c 

Log message:
Adjust OpenBSD/arm64 files with FreeBSD origin to show the upstream
revision.

Prompted by mikeb@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/18 11:13:26

Log message:
    Import postgresql-previous 9.5.5
    
    This imports the previous version of PostgreSQL supported
    by the ports tree into a versioned directory.  It's
    designed for use by pg_upgrade, which allows upgrading of
    PostgreSQL databases without a dump and restore.
    
    OK pea@ landry@
    
    Status:
    
    Vendor Tag:	jeremy
    Release Tags:	jeremy_2016-Dec-18
    
    N ports/databases/postgresql-previous/Makefile
    N ports/databases/postgresql-previous/distinfo
    N ports/databases/postgresql-previous/patches/patch-src_backend_libpq_ip_c
    N ports/databases/postgresql-previous/patches/patch-src_Makefile_shlib
    N ports/databases/postgresql-previous/patches/patch-src_interfaces_ecpg_compatlib_Makefile
    N ports/databases/postgresql-previous/patches/patch-src_backend_storage_lmgr_s_lock_c
    N ports/databases/postgresql-previous/patches/patch-src_bin_scripts_vacuumdb_c
    N ports/databases/postgresql-previous/patches/patch-src_include_storage_s_lock_h
    N ports/databases/postgresql-previous/patches/patch-src_interfaces_ecpg_pgtypeslib_Makefile
    N ports/databases/postgresql-previous/patches/patch-src_interfaces_ecpg_ecpglib_Makefile
    N ports/databases/postgresql-previous/patches/patch-src_interfaces_libpq_Makefile
    N ports/databases/postgresql-previous/pkg/DESCR
    N ports/databases/postgresql-previous/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/18 11:14:46

Modified files:
	databases      : Makefile 

Log message:
Hookup postgresql-previous


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/12/18 11:15:14

Modified files:
	distrib/miniroot: install.sub 

Log message:
Split _issue msg and "Continue without verification?" question.

Prodded by and OK aja@
OK halex@ krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/18 11:18:27

Modified files:
	databases/postgresql: Makefile distinfo 
	databases/postgresql/patches: 
	                              patch-src_interfaces_ecpg_compatlib_Makefile 
	                              patch-src_interfaces_ecpg_ecpglib_Makefile 
	                              patch-src_interfaces_ecpg_pgtypeslib_Makefile 
	                              patch-src_interfaces_libpq_Makefile 
	databases/postgresql/pkg: PLIST-contrib PLIST-docs PLIST-main 
	                          PLIST-server README-server 
Added files:
	databases/postgresql/pkg: DESCR-pg_upgrade PLIST-pg_upgrade 

Log message:
Update to PostgreSQL 9.6.1

This moves pg_upgrade to a subpackage, and has that
subpackage depend on postgresql-previous.

pthread is removed from WANTLIB, as it is no longer
needed for suppoting threaded extensions.

This adds support for PostgreSQL 9.6's new BSD
authentication.

OK pea@ landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/18 11:19:37

Modified files:
	databases/postgresql-pllua: Makefile 

Log message:
Depend on PostgreSQL 9.6

OK pea@ landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/18 11:20:00

Modified files:
	databases/postgresql-plv8: Makefile 

Log message:
Depend on PostgreSQL 9.6

OK pea@ landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/18 11:21:03

Modified files:
	databases/pg_statsinfo: Makefile 
	databases/pg_statsinfo/patches: patch-agent_lib_libstatsinfo_c 

Log message:
Update patch to work on PostgreSQL 9.6

OK pea@ landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/18 11:21:40

Modified files:
	databases/skytools: Makefile 
Added files:
	databases/skytools/patches: patch-sql_pgq_triggers_stringutil_c 

Log message:
Add patch to work on PostgreSQL 9.6

OK pea@ landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/18 11:28:39

Modified files:
	sys/dev/microcode/bnx: build.c 
	sys/dev/microcode/cirruslogic: build.c 
	sys/dev/microcode/fxp: build.c 
	sys/dev/microcode/kue: build.c 
	sys/dev/microcode/tusb3410: build.c 
	sys/dev/microcode/typhoon: build.c 
	sys/dev/microcode/yds: build.c 
	usr.bin/vi/common: msg.c 

Log message:
Use %zu/%d to print size_t/ssize_t. Cast recno_t (a.k.a. u_int32_t)
to (unsigned long) to match %lu formats. Makes gcc happier and
quieter.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 11:38:59

Modified files:
	plan9/drawterm : Makefile 
	plan9/drawterm/patches: patch-Make_openbsd 

Log message:
Add arm to ONLY_FOR_ARCHS, give a chance to mips64* while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/18 11:44:54

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update to offlineimap-7.0.12

From Remi Locherer (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 11:58:01

Modified files:
	net/openvpn    : Makefile distinfo 
	net/openvpn/patches: patch-src_openvpn_route_c 
	                     patch-src_openvpn_tun_c 

Log message:
Update to openvpn-2.3.14

Kill most of our tun patches go away in the process.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/18 12:21:00

Removed files:
	print/texlive/base/patches: patch-texk_kpathsea_Makefile_in 
	                            patch-texk_ptexenc_Makefile_in 

Log message:
Zap patches not needed anymore, since our libtool "supports" -bindir.

In some cases there still happen -bindir-related failure, but I failed
to reproduce, and noone else sees them for now. Even more, those two
patches do not cover all -bindir cases in sources, so if/when libtool
will fail, you'd need two more patches anyway.

okay aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2016/12/18 12:39:30

Modified files:
	usr.bin/systat : pftop.c 

Log message:
increase width of interface column in the pf rules view by 2 chars, so that 'vetherXY' fits

ok deraadt@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 12:45:16

Modified files:
	infrastructure/db: user.list 

Log message:
leafnode shall move to group _news


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 12:48:29

Modified files:
	infrastructure/db: user.list 

Log message:
net/uucp will switch to _uucp:_uucp


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 12:50:59

Modified files:
	news/leafnode  : Makefile 
	news/leafnode/pkg: PLIST 

Log message:
Run as group `_news'.

ok sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2016/12/18 12:52:17

Modified files:
	faq            : current.html 

Log message:
Instructions to move leafnode to group _news.

Tweaks from tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/18 13:10:39

Modified files:
	sys/kern       : kern_xxx.c 

Log message:
Include sys/proc.h when compiled with SYSCALL_DEBUG to get access to
struct proc.  Also bump the printf of "code" to %ld and remove a few
casts to long as register_t is always long.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 13:25:50

Modified files:
	net/uucp       : Makefile 
	net/uucp/patches: patch-policy_h 
	net/uucp/pkg   : PLIST 

Log message:
Run as _uucp, who takes ownership of /var/spool/uucp*

Previous diff looked good to sthen@.  This updated diff stops putting
lock files in /var/spool/locks.  This means that one should avoir
running uucp and pppd/whatever uses uu_lock(3) on the same tty.
Hopefully nobody actually does that...


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 13:28:40

Modified files:
	mail/postfix/snapshot: Makefile 
	mail/postfix/snapshot/patches: patch-conf_master_cf 
	mail/postfix/stable: Makefile 
	mail/postfix/stable/patches: patch-conf_master_cf 

Log message:
Tweak uucp transport example; ok sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2016/12/18 13:43:42

Modified files:
	faq            : current.html 

Log message:
Switch net/uucp to user _uucp.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/18 14:01:39

Modified files:
	faq            : current.html 

Log message:
start new sentences on new lines and simplify the text a bit


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/18 14:42:41

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.040


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/18 15:19:36

Modified files:
	sys/arch/arm64/conf: files.arm64 
	sys/arch/arm64/dev: arm64_bus_space.c 
Removed files:
	sys/arch/arm64/arm64: arm64_a4x_iobus.c arm64_iobus.c 

Log message:
Consolidate bus space tags into generic bus space code.  Especially
considering we don't have a separate iobus and the a4x iobus wasn't
even compiled it does not make sense to declare those in iobus.
Improves code readability as well.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 15:32:38

Removed files:
	devel/doxygen/patches: patch-addon_doxywizard_CMakeLists_txt 
	                       patch-libmd5_libmd5_pro_in 
	                       patch-qtools_qtools_pro_in 
	                       patch-src_CMakeLists_txt 

Log message:
Zap empty patches.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/18 15:36:52

Modified files:
	www/squid      : Makefile distinfo 

Log message:
update to squid-3.5.23

<http://www.squid-cache.org/Advisories/SQUID-2016_10.txt>
Incorrect HTTP Request header comparison results in Collapsed
Forwarding feature mistakenly identifying some private responses as
being suitable for delivery to multiple clients.

<http://www.squid-cache.org/Advisories/SQUID-2016_11.txt>
Incorrect processing of responses to If-None-Modified HTTP conditional
requests leads to client-specific Cookie data being leaked to other
clients. Attack requests can easily be crafted by a client to probe a
cache for this information.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/18 16:03:03

Modified files:
	databases/xapian-core: Makefile 

Log message:
Disable -Wredundant-decls to get useful warnings


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/18 16:36:32

Modified files:
	usr.bin/systat : vmstat.c 

Log message:
Remove statements that have no effect from X(), Y() and Z() #define's.
Leftovers from the re-engining of systat eight years ago. Makes gcc
quieter.

ok otto@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/18 18:25:53

Modified files:
	sys/arch/arm64/arm64: sig_machdep.c 

Log message:
Fix an off by one when saving and restoring an array of registers.
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2016/12/18 20:32:57

Modified files:
	regress/usr.bin/ssh: allow-deny-users.sh 

Log message:
Use LOGNAME to get current user and fall back to whoami if not set.
Mainly to benefit -portable since some platforms don't have whoami.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/18 21:55:18

Modified files:
	regress/usr.bin/ssh/unittests/utf8: tests.c 

Log message:
remove testcase that depends on exact output and behaviour of
snprintf(..., "%s", NULL)


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/18 21:55:51

Modified files:
	usr.bin/ssh    : version.h 

Log message:
openssh-7.4


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2016/12/19 00:19:55

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
In parse_header() not all of the bgp message may be in the buffer yet so
move the MRT msg dump to session_process_msg() after the point the full
message is in the read buffer.
Bug found and fix tested by Ian Bobbitt


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/19 00:28:58

Modified files:
	sys/arch/arm64/arm64: db_trace.c 

Log message:
ansify function declaration; better whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/19 00:36:49

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
remove redundant return statements
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/19 00:44:54

Modified files:
	sys/arch/arm64/arm64: db_trace.c machdep.c 

Log message:
fix uninitialised variable warnings from clang
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 01:36:50

Modified files:
	sys/kern       : sys_socket.c uipc_socket.c uipc_socket2.c 
	                 uipc_syscalls.c uipc_usrreq.c 
	sys/miscfs/fifofs: fifo_vnops.c 
	sys/net        : if.c if_spppsubr.c raw_usrreq.c route.c 
	                 rtsock.c 
	sys/netinet    : if_ether.c ip_carp.c ip_divert.c ip_icmp.c 
	                 ip_input.c ip_ipsp.c ip_output.c raw_ip.c 
	                 tcp_input.c tcp_timer.c tcp_usrreq.c 
	                 udp_usrreq.c 
	sys/netinet6   : icmp6.c ip6_divert.c ip6_input.c nd6.c 
	                 raw_ip6.c 
	sys/nfs        : nfs_boot.c nfs_socket.c 
	sys/sys        : socketvar.h systm.h 

Log message:
Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts
of the network stack that are not yet ready to be executed in parallel or
where new sleeping points are not possible.

This first pass replace all the entry points leading to ip_output(). This
is done to not introduce new sleeping points when trying to acquire ART's
write lock, needed when a new L2 entry is created via the RT_RESOLVE.

Inputs from and ok bluhm@, ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/19 02:02:27

Modified files:
	productivity/tryton/tryton: Makefile distinfo 

Log message:
Update to tryton-3.2.20.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/19 02:03:15

Modified files:
	productivity/tryton/account: Makefile distinfo 
	productivity/tryton/purchase_shipment_cost: Makefile distinfo 
	productivity/tryton/stock_lot: Makefile distinfo 

Log message:
Update a few tryton modules to their latest branch release.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/19 02:06:15

Modified files:
	productivity/gnucash: Makefile distinfo 
	productivity/gnucash/pkg: PLIST 

Log message:
Update to gnucash-2.6.15.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/19 02:16:32

Modified files:
	x11/gnome/latexila: Makefile distinfo 

Log message:
Update to latexila-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/19 02:17:58

Modified files:
	devel/py-astroid: Makefile distinfo 

Log message:
Update to py-astroid 1.4.9


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/19 02:22:24

Modified files:
	sys/netinet    : igmp.c ip_input.c ip_mroute.c ip_mroute.h 
	                 ip_output.c ip_var.h raw_ip.c 

Log message:
Extend the multicast sockets and multicast hash table support to multiple
domains. This is one step towards supporting to run more than one multicast
socket in different domains at the same time.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/19 02:29:27

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Fix debug printf format and arguments.

Found by and input from jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/19 02:53:21

Modified files:
	sys/arch/arm64/conf: Makefile.arm64 

Log message:
Adjust Makefile to gain improvements that were made in other archs
already.  This means for example dropping -Wno-format or adding -g
by default.

Prompted by jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/19 03:12:18

Modified files:
	net/samba      : Makefile distinfo 
	net/samba/pkg  : PLIST-main 

Log message:
Update to samba-4.5.2


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/19 03:35:12

Modified files:
	sys/netinet    : in.c 

Log message:
If rt_ifa_addlocal() in in_ifinit() fails, the address has been
added to the interface address list, but the local route is missing.
This inconsistency could result in a "ifa == rt->rt_ifa" assertion
panic later.  So in case of a route add error, remove the interface
address to get a consistent state again.
OK stsp@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 04:30:26

Modified files:
	sys/netinet    : in.c 

Log message:
Remove a recursive splsoftnet() in in_ioctl() that already asserts that
it is called at IPL_SOFTNET.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/19 04:55:56

Modified files:
	x11/dbusmenu-qt: Makefile distinfo 
	x11/dbusmenu-qt/pkg: PLIST 

Log message:
Minor update of libdbusmenu-qt, switching off doxygen dependency.

From Rafael Sadowski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/19 04:57:22

Modified files:
	x11/tellico-kde4: Makefile distinfo 
	x11/tellico-kde4/patches: patch-src_fetch_allocinefetcher_cpp 
	                          patch-src_fetch_discogsfetcher_cpp 
	                          patch-src_fetch_moviemeterfetcher_cpp 
	                          patch-src_fetch_themoviedbfetcher_cpp 
	                          patch-src_fetch_vndbfetcher_cpp 
	                          patch-src_tests_discogsfetchertest_cpp 
	x11/tellico-kde4/pkg: PLIST 

Log message:
Minor update to Tellico 2.3.11. All patches went upstream.

From Rafael Sadowski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2016/12/19 05:29:01

Modified files:
	games/warzone2100: Makefile distinfo 
	games/warzone2100/patches: patch-icons_Makefile_in 
	                           patch-src_Makefile_in 
	games/warzone2100/pkg: PLIST 

Log message:
Bugfix update to warzone2100-3.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/19 05:52:41

Modified files:
	sys/netinet    : ip_mroute.c ip_mroute.h 

Log message:
Kill unused function.

ok mpi@


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2016/12/19 06:40:47

Added files:
	openssh/txt    : release-7.4 

Log message:
release notes for openssh-7.4


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2016/12/19 06:42:50

Modified files:
	build          : Makefile 
	build/mirrors  : openssh-ftp.html.head 
	openssh        : ftp.html index.html openbsd.html 
	                 releasenotes.html 

Log message:
openssh-7.4


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2016/12/19 07:17:26

Modified files:
	app/cwm        : client.c 

Log message:
When a window has a user or program specified position, ensure the edge of the
final position is at least viewable and warp'able by the difference of bwidth;
prevents mapping windows completely off the virtual screen.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/19 08:37:27

Modified files:
	lib/libcrypto/man: RSA_generate_key.3 

Log message:
fix typo, from OpenSSL

commit 0b742f93ea7882a447f6523ac56a6f847d9f8e92
Author: Finn Hakansson <finn_hakansson@yahoo.com>
Date:   Thu Dec 15 12:58:19 2016 -0500


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 08:46:28

Modified files:
	sys/net        : if_pfsync.c 

Log message:
Timer sending packets need to grab the NET_LOCK().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 08:47:19

Modified files:
	sys/netinet    : udp_usrreq.c 
	sys/netinet6   : udp6_output.c 

Log message:
Remove redundant splsoftnet().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 08:49:28

Modified files:
	sys/net        : if_bridge.c 

Log message:
Assert that IPL_SOFTNET is needed rather than calling splsoftnet()
recursively.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 08:50:18

Modified files:
	sys/net        : if_gre.c 

Log message:
Sending keep alive ends up in ip_output(), so it needs the NET_LOCK().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 08:51:53

Modified files:
	sys/net        : pipex.c 

Log message:
Kill useless comment about splsoftnet() which is going away.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/19 08:57:30

Modified files:
	sys/net        : ppp_tty.c 

Log message:
Stop mentioning splsoftnet() in comments, it's almost history.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/19 09:11:38

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Put ac_cv_path_SED=/usr/bin/sed in CONFIGURE_ENV, should fix another
build failure seen by ajacoutot@. damn libffi's configure script tries
hard to detect and use gsed...


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2016/12/19 09:35:27

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/jakarta-servletapi: Makefile distinfo 
	devel/jakarta-servletapi/pkg: DESCR PLIST 

Log message:
remove jakarta-servletapi. unmaintained and not useful.
okay ian@ ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/19 09:37:40

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_man_nano_1 patch-src_Makefile_in 

Log message:
Update to 2.7.2.  New feature: complete with one keystroke (^] by
default) a fragment of a word to a full word existing elsewhere in
the current buffer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2016/12/19 09:44:50

Modified files:
	textproc/xerces: Makefile distinfo 
	textproc/xerces/pkg: PLIST 

Log message:
update to 2.11.0. okay ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/12/19 10:31:45

Modified files:
	www/awstats    : Makefile distinfo 
	www/awstats/pkg: PLIST 

Log message:
Update www/awstats to version 7.6

Noteable changes:
- Security fix: "|" not allowed into DirLang parameter.
- Security fix: More restrictive rule for using AWSTATS_ENABLE_CONFIG_DIR.

OK @aja


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/19 11:30:50

Modified files:
	lib/csu        : boot.h 
	gnu/lib/libreadline: histfile.c 

Log message:
A couple more unused variables.

tweak & ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/12/19 11:52:54

Modified files:
	distrib/miniroot: install.sub 

Log message:
- no need to export the TERM variable twice
- re-format case-block
- unquote single word default answer
- use 'break' instead of return to leave (same effect here, but
needed later when the function is no function anymore)
- use -q option with kbd to limit output to warnings/errors only

discussed with and OK krw@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/12/19 12:59:39

Modified files:
	distrib/miniroot: install.sub 

Log message:
Revert r1.934 to unbreak autoinstall


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/19 13:03:15

Modified files:
	sys/arch/amd64/amd64: acpi_wakecode.S mptramp.S 

Log message:
Generating mixed 16-bit/32-bit/64-bit code with clang's integrated
assembler is a bit tricky.  It supports the .code16, .code32 and
.code64 directives.  But it doesn't know about the data16/data32 and
addr16/addr32 instruction prefixes.  Instead it tries to determine
those from the instruction opcode.  It mostly succeeds, but there are
a couple of corner cases where clang will generate the "addr32" form
where gas generates the "addr16" form in .code16 segments.  That
should be no problem (and just waste a couple of bytes), but it makes
comparing the generated code a bit difficult.

Allow the trampoline code to be compiled with both.  For clang #define
away the addr32 prefix and avoid using the data32 prefix by using a
mnemonic that explicitly encodes the size of the operand.  Add a few
addr32 prefixes in .code16 blocks to reduce the differences between
code generated by clang and gas.

ok patrick@, deraadt@, mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2016/12/19 13:34:22

Modified files:
	lang/php/5.5   : Makefile distinfo 
	lang/php/5.5/patches: patch-main_php_ini_c 

Log message:
update to php-5.5.38, ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2016/12/19 13:35:09

Modified files:
	lang/php/5.6   : Makefile distinfo 
	lang/php/5.6/patches: patch-ext_mcrypt_mcrypt_c 
	                      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 

Log message:
update to php-5.6.29, ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2016/12/19 13:35:47

Modified files:
	lang/php/7.0   : Makefile distinfo 
	lang/php/7.0/patches: patch-ext_pcre_php_pcre_c 
	                      patch-main_php_ini_c 

Log message:
update to php-7.0.14 ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/19 13:43:49

Modified files:
	sysutils/ggrep : Makefile distinfo 

Log message:
maintenance update to 2.27


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/19 13:47:26

Modified files:
	lang/python/2.7: Makefile distinfo 
	lang/python/2.7/patches: patch-Lib_test_regrtest_py 
	                         patch-Makefile_pre_in 
	                         patch-configure_ac 
	lang/python/2.7/pkg: PLIST-main PLIST-tests PLIST-tools 
Added files:
	lang/python/2.7/patches: patch-Python_random_c 

Log message:
update Python to 2.7.13.
ok juanfra@ shadchin@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/12/19 13:53:57

Modified files:
	gnu/gcc/gcc/config/m88k: m88k.md 

Log message:
Convert the gcc 3 scheduling information to the gcc 4 model.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/19 14:07:10

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Add experimental support for device hot-plugging

We're installing watches on all nodes under "device/" and re-scan
the subtree every time the watch is triggered looking for changes
in the output.  Tested with xnf(4) and xbf(4), helpful hints from
Roger Pau Monne, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/19 14:08:57

Modified files:
	sys/dev/pv     : if_xnf.c 

Log message:
Implement interface detaching


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2016/12/19 14:26:22

Modified files:
	openssh        : releasenotes.html 
	openssh/txt    : release-7.4 

Log message:
typo in release notes: DisableForwaring => DisableForwarding
spotted by espie@ and Jann Horn


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/19 14:48:12

Modified files:
	devel/gmp      : Makefile distinfo 

Log message:
update to 6.1.2: bug fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/19 15:35:23

Modified files:
	regress/usr.bin/ssh: allow-deny-users.sh 

Log message:
use standard /bin/sh equality test; from Mike Frysinger


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/19 15:52:46

Modified files:
	audio/moc      : Makefile 

Log message:
Apply the same workaround for estdc++ issue to audio/moc that was done
for, e.g., multimedia/gstreamer1/plugins-good. This way it should build
on non-Intel archs.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/19 16:50:41

Modified files:
	lib/libcxxabi  : Makefile 
	lib/libcxx     : Makefile 

Log message:
Compile libc++ and libc++abi with clang by default instead of egcc.
This allows our build system to selfhost itself after the initial
clang bootstrap without relying on an external compiler.

with input from and ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/19 21:37:27

Modified files:
	faq            : faq4.html 

Log message:
add back instructions on fetching the PBR that were lost during some overly
aggressive pruning by me.  while there, remove a reference to the ntloader.

from nick holland


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/20 00:05:24

Modified files:
	sys/arch/amd64/amd64: vmm_support.S 

Log message:
Fix operand of pushq instruction; clang's integrated assembler is less
forgiving than gas and insists that we use a 64-bit integer.  No binary
change.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/20 00:32:18

Modified files:
	gnu/usr.bin/clang: Makefile.inc 

Log message:
Compile clang with clang by default instead of egcc.  This allows our
build system to selfhost itself after the initial clang bootstrap
without relying on an external compiler.  Setting BOOTSTRAP_CLANG
allows bootstrapping clang with egcc.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/20 02:33:13

Modified files:
	sys/netinet    : ip_mroute.c ip_mroute.h 

Log message:
Remove unused timeout that was never being set.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/20 02:57:10

Modified files:
	sys/netinet    : tcp_subr.c 

Log message:
No need for splsoftnet()/splx() dance around a pool_put() if the pool
has IPL_SOFTNET as ipl.

ok mikeb@, kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/12/20 03:40:53

Modified files:
	sysutils/ruby-r10k: Makefile distinfo 

Log message:
simple update to 2.5.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/12/20 03:41:44

Modified files:
	sysutils/ruby-puppet/4: Makefile distinfo 

Log message:
Simple update to 4.8.1, runs for me since some days


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2016/12/20 03:42:42

Modified files:
	sysutils/mcollective: Makefile distinfo 
	sysutils/mcollective/pkg: PLIST 

Log message:
simple update to 2.9.1


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/20 03:54:52

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Call the multicast timer callback per domain instead of for all domains
this way we save doing big tables walk and iterating tables that we don't
need to.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/20 04:27:11

Modified files:
	usr.sbin/mkuboot: mkuboot.c 

Log message:
Add the u-boot arm64 architecture number and map it to "aarch64" to
match OpenBSD/arm64 MACHINE_ARCH.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/20 04:52:56

Modified files:
	x11/gnome/todo : Makefile distinfo 

Log message:
Update to gnome-todo-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/20 04:55:39

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.88.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/20 04:55:58

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.31.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/20 05:07:14

Modified files:
	sys/sys        : percpu.h 

Log message:
Put a write memory barrier into counters_enter().  This ensures
that the generation number increment is written before the function
returns and anything else is written.
OK patrick@ mpi@ dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/20 05:08:01

Modified files:
	sys/arch/powerpc/powerpc: trap.c 

Log message:
fix an uninitialised variable on altivec assist trap
ok krw@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/20 05:18:44

Modified files:
	sys/net        : if_mpe.c if_mpw.c 

Log message:
Kill recursive splsoftnet()/splx() dances in ioctl(2) path.

ok rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/20 05:35:38

Modified files:
	sys/netinet    : in.c 

Log message:
Remove duplicate in_ioctl() prototype, it is in in_var.h now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	millert@cvs.openbsd.org	2016/12/20 06:21:59

Modified files:
	security/sudo  : Makefile distinfo 

Log message:
Update to sudo 1.8.19


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/20 06:26:24

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
Make 'ifconfig if0 wpa' and 'ifconfig if0 -wpa' reset WPA params (does not
include the wpakey) to their defaults.
And make 'ifconfig if0 wpaprotos' reset WPA crypto parameters to settings
which are appropriate for the specified WPA protocol version.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/20 06:27:58

Modified files:
	sys/net80211   : ieee80211_crypto.c ieee80211_ioctl.c 

Log message:
Disable TKIP (WPA1) by default.

It is time for this legacy of WEP to die (remember WEP?).
The 802.11-2012 standard says:
The use of TKIP is deprecated. The TKIP algorithm is unsuitable for
the purposes of this standard.

TKIP has numerous problems. One of which is that TKIP allows a denial of
service attack which can be triggered by any client. Report 2 Michael MIC
failures to a TKIP AP to trigger "TKIP countermeasures". The AP is now
required by the 802.11 standard to lock everyone out for at least 60 seconds.
The network will remain unusable for as long as such MIC failure reports
are sent twice per minute.

TKIP remains available for interoperability purposes, for now.
It must be enabled manually with ifconfig(8).

Prompted by discussion with Mathy Vanhoef.
ok deraadt@ sthen@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/20 06:28:51

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
Document our new WPA default settings. Discourage use of TKIP.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/20 06:40:50

Modified files:
	sys/arch/sparc64/dev: cbus.c pyro.c vpci.c 

Log message:
no need to test if an array is non-NULL
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/20 06:47:38

Modified files:
	sys/arch/sparc64/sparc64: trap.c 
	sys/arch/sparc64/dev: uperf.c 

Log message:
fix use of uninitialised variables
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/20 06:52:01

Modified files:
	security/xca   : Makefile 
	security/xca/pkg: DESCR 

Log message:
Rework DESCR. Final text from sthen@ (MAINTINER), committing on his behalf.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/20 07:10:00

Modified files:
	sys/netinet    : tcp_usrreq.c 

Log message:
Kill recursive splsoftnet()/splx() in tcp_ctloutput().

ok mikeb@, bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/20 07:15:11

Modified files:
	net/samba      : Makefile distinfo 

Log message:
SECURITY update to samba-4.5.3

CVE-2016-2123 (Samba NDR Parsing ndr_pull_dnsp_name Heap-based Buffer
Overflow Remote Code Execution Vulnerability).

CVE-2016-2125 (Unconditional privilege delegation to Kerberos servers in
trusted realms).

CVE-2016-2126 (Flaws in Kerberos PAC validation can trigger privilege
elevation).

ok Ian McWilliam


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/20 07:30:52

Modified files:
	sys/netinet    : ip_carp.c 

Log message:
Prevent grabing the NET_LOCK() twice in the ioctl(2) and input path.

While here remove two redundant splsoftnet()/splx() dances.

inputs and ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/20 08:07:33

Modified files:
	sys/net        : if_pflow.c 

Log message:
Release the NET_LOCK() before calling any socket function since it is
not recursive.

This is temporary until all recursions are found and can be addressed
in a correct way.

With inputs from bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/20 08:31:00

Modified files:
	sys/dev/pci    : fms.c 

Log message:
Set free(9) size argument. From Michael W. Bombardieri <mb at ii.net>.
Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/20 08:32:08

Modified files:
	sys/dev/usb    : umidi.c 

Log message:
Group identical close_in_jack() and close_out_jack() into a single
routine. From Michael W. Bombardieri <mb at ii.net>. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/20 08:38:46

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
This commit removes bio_status() calls after a BIOCLOCATE since the
bio status will never be updated on a BIOCLOCATE.  In addition with
missed zeroing of the passed bio struct, this could lead to a print
of uninitialized memory.  While there, properly zero the bio struct
before passing it to ioctl().

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/20 08:42:25

ports/devel/p5-Catalyst-Manual/patches

Update of /cvs/ports/devel/p5-Catalyst-Manual/patches
In directory cvs.openbsd.org:/tmp/cvs-serv63309/patches

Log Message:
Directory /cvs/ports/devel/p5-Catalyst-Manual/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/20 08:45:29

Modified files:
	sys/dev/pci    : auglx.c autri.c auvia.c 

Log message:
Simplify the activate() functions of auglx(4), autri(4), and
auvia(4). From Michael W.  Bombardieri <mb at ii.net>. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/20 08:59:07

Modified files:
	sys/dev        : audio.c 

Log message:
Fix many typos. From Michael W. Bombardieri <mb at ii.net>. Thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2016/12/20 09:03:40

Modified files:
	sys/dev        : midi.c 

Log message:
In midiread() and midiwrite(), add a second goto label to
factor calls to mtx_leave() before returning. From Michael
W. Bombardieri <mb at ii.net>. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	millert@cvs.openbsd.org	2016/12/20 10:35:18

Modified files:
	security/sudo  : Makefile distinfo 

Log message:
Update to sudo 1.8.19p1


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/20 11:33:43

Modified files:
	sys/kern       : uipc_domain.c 
	sys/net        : rtsock.c 
	sys/netinet    : ip_icmp.c ip_input.c tcp_usrreq.c 
	sys/netinet6   : ip6_input.c nd6.c 

Log message:
A NET_LOCK() was is missing in tcp_sysctl() which shows up as spl
softnet assert failures.  It is better to place the lock into
net_sysctl() where all the protocol sysctls are called via pr_sysctl.
As calling sysctl(2) is in the slow path, doing fine grained locking
has no benefit.  Many sysctl cases copy out a struct.  Having a
lock around that keeps the struct consistent.  Put assertions in
the protocol sysctls that need it.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/20 11:46:46

Modified files:
	sysutils/borgbackup: Makefile distinfo 

Log message:
Update to borgbackup-1.0.9

From Bjorn Ketelaars (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/20 11:49:17

Modified files:
	textproc/elasticsearch: Makefile 

Log message:
missing RDEP on bash; found the hard way by rpointel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/20 12:26:32

Modified files:
	net/openfire   : Makefile 
	net/openfire/pkg: README 

Log message:
/etc/rc.d/foo -> rcctl

from tyr at poczta dot fm


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/20 12:34:56

Modified files:
	sys/net        : if.c 

Log message:
Grab the netlock during interface attach and detach.

With help from and OK mpi.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/20 12:46:20

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 
	graphics/gdk-pixbuf2/pkg: PLIST 

Log message:
Update to gdk-pixbuf-2.36.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/20 13:12:29

Modified files:
	lang/ecl       : Makefile distinfo 
	lang/ecl/patches: patch-src_Makefile_in patch-src_compile_lsp_in 
	                  patch-src_configure 
	lang/ecl/pkg   : PLIST 

Log message:
Update to ecl 16.1.3. From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/20 13:28:29

Log message:
    Help from upstream. Tests and OK fcambus@.
    
    Comment:
    Dragon and CoCo emulator
    
    Description:
    XRoar is a Dragon emulator. Due to hardware similarities, also emulates the
    Tandy Colour Computer (CoCo) models 1 & 2. Some features are:
    
    - Emulates Dragon 32, Dragon 64, Dragon 200-E, Tandy CoCo 1 & 2, and
    compatibles.
    - Emulates DragonDOS, Delta and RSDOS disk systems.
    - Emulates the Orchestra 90-CC stereo sound cartridge.
    - Supports both raw and translated keyboard modes.
    - Reads and writes virtual cassettes (compact .cas files and audio files).
    - Reads and writes VDK, JVC and DMK format virtual floppy diskettes.
    - Saves and loads machine snapshots.
    - Provides a GDB target for remote debugging.
    - Initial Glenside IDE support.
    
    Maintainer: Juan Francisco Cantero Hurtado <juanfra@openbsd.org>
    
    WWW: http://www.6809.org.uk/xroar/
    
    Status:
    
    Vendor Tag:	juanfra
    Release Tags:	juanfra_20161220
    
    N ports/emulators/xroar/Makefile
    N ports/emulators/xroar/distinfo
    N ports/emulators/xroar/pkg/DESCR
    N ports/emulators/xroar/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/20 13:30:36

Modified files:
	emulators      : Makefile 

Log message:
+xroar


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/20 14:07:02

Modified files:
	sys/dev/pci/drm/radeon: rs690.c rv515.c 

Log message:
Fix compiler warnings generated by clang.  This matches upstream commit
1cd73ff70d13a22faa95db8323382dd6d036554e by Alex Deucher, whose commit
message makes me suspect that Brad Smith mailed us a diff back in 2013
that we ignored.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/20 14:10:29

Modified files:
	usr.bin/rpcgen : rpc_cout.c 

Log message:
Tweak generated .c output so switch statements always have a
'default:' case.

Several hundred "not handled" warnings go away.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/20 14:15:36

Modified files:
	sys/kern       : uipc_domain.c uipc_socket.c 

Log message:
Grab the NET_LOCK() in so{s,g}etopt(), pffasttimo() and pfslowtimo().

ok rzalamena@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/20 14:29:08

Modified files:
	bin/pax        : buf_subs.c 

Log message:
Fix a bug where archives smaller than 512 bytes would trigger a next volume
prompt.  From NetBSD.

ok millert@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	zhuk@cvs.openbsd.org	2016/12/20 14:47:30

Modified files:
	usr.sbin/sa    : sa.8 

Log message:
Explain what the trailing '*' in command names output by sa(8) mean.

Reworked version from deraadt@, final okay from jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/20 15:06:05

Modified files:
	net/tor        : Makefile distinfo 
	net/tor/patches: patch-src_config_torrc_sample_in 

Log message:
Update to tor 0.2.9.8.  Also fixes CVE-2016-1254.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/20 15:06:25

Modified files:
	infrastructure/db: user.list 

Log message:
reserve 786 for sysutils/riemann; from Pavel Korovin


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/20 15:19:08

Modified files:
	distrib/special/libstubs: db.c 
	lib/libc/rpc   : rpc_prot.c xdr.c xdr_array.c xdr_reference.c 
	usr.bin/rpcgen : rpc_cout.c rpc_hout.c 
	usr.sbin/amd/amq: amq.c 
	usr.sbin/mopd/mopa.out: mopa.out.c 

Log message:
Add 'default:' cases to switch statements that gcc whines about.

ok jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/12/20 16:14:37

Modified files:
	lib/libcrypto/bio: b_sock.c 
	lib/libcrypto/man: BIO_s_connect.3 

Log message:
Delete completely useless crap and just use getaddrinfo. Fix man page
while we're at it.
Note for the nostalgic, since "wais" is still an alias in /etc/services
it will continue to work..
ok deraadt@ millert@ krw@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/12/20 18:14:37

Modified files:
	.              : want.html 

Log message:
remove some older stuff


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/21 00:02:05

Modified files:
	usr.sbin/sa    : sa.8 

Log message:
rework the end text somewhat so that the informatiom pertaining to -m
and -u is a) not repeated and b) listed under the respective options
instead of in isolation;


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2016/12/21 00:22:20

Modified files:
	lang/ruby/2.3  : Makefile 

Log message:
arm: OOM when building ext/ripper/ripper.c


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2016/12/21 00:43:57

Modified files:
	databases/postgresql: Makefile 

Log message:
disable spinlocks on arm, so we can have a postgresql package


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/21 02:03:13

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.4.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/21 02:03:28

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.89.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/21 02:03:49

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.32.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/21 02:27:57

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp 

Log message:
Recognise an OpenBSD aarch64 triple.  This enables some OpenBSD specific
builtin defines such as __OpenBSD__.  Same patch that patrick committed
to llvm in base.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/21 02:52:29

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Fix PIM compilation even though it is disabled.

ok bluhm@


CVSROOT:	/cvs
Module name:	www
Changes by:	zhuk@cvs.openbsd.org	2016/12/21 02:56:58

Modified files:
	.              : want.html 

Log message:
16GB SSD looked like large enough for port development two years ago.
Now I can't even have both .ccache and Octave 4.2 WRKDIR on it.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/21 03:22:14

Modified files:
	sys/net        : if.c 

Log message:
Generate an IFINFO message when changing the MTU of an interface.

Helps route(4) listeners to refresh their knowledge of the MTU of
interfaces.  Prompted by a diff for ospfd(8) by Remi Locherer, ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/21 03:28:48

Modified files:
	usr.sbin/ospfd : ospfe.c 

Log message:
When receiving an IFINFO message, also update the MTU of the interface

Helps recovering from MTU mismatches.  Prompted by a diff from Remi
Locherer, ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/21 03:30:11

Modified files:
	usr.sbin/ospfd : ospfe.c 

Log message:
For IFINFO msgs, don't run the FSM if the interface state hasn't changed.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/21 05:05:01

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Fix build without PIM defined.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/21 05:11:12

Modified files:
	sys/netinet6   : in6.c 

Log message:
Remove recursive splsoftnet() from the ioctl(2) path.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/21 05:12:13

Modified files:
	sys/netinet6   : mld6.c 

Log message:
Remove recursive splsoftnet().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/21 05:17:15

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Remove the rwlock paranoia since we're under KERNEL_LOCK anyway


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/21 05:28:49

Modified files:
	sys/net        : if_pflow.c 

Log message:
Remove the netlock workaround since if_detach is doing it for us now.

ok mpi, bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/21 05:30:19

Modified files:
	sys/netinet6   : nd6_nbr.c 

Log message:
Use __func__ in debug log to reduce noise when grepping.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/21 05:51:56

Log message:
    Import riemann 0.2.12, from MAINTAINER Pavel Korovin /p/tristero/se
    
    Riemann provides low-latency, transient shared state for systems with many
    moving parts.
    Riemann aggregates events from your servers and applications with a powerful
    stream processing language. Send an email for every exception raised by your
    code. Track the latency distribution of your web app. See the top processes
    on any host, by memory and CPU. Combine statistics from every Riak node in
    your cluster and forward to Graphite. Send alerts when a key process fails
    to check in. Know how many users signed up right this second.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	pkorovin
    Release Tags:	landry_20161221
    
    N ports/sysutils/riemann/Makefile
    N ports/sysutils/riemann/distinfo
    N ports/sysutils/riemann/patches/patch-etc_riemann_config
    N ports/sysutils/riemann/patches/patch-bin_riemann
    N ports/sysutils/riemann/pkg/riemann.rc
    N ports/sysutils/riemann/pkg/DESCR
    N ports/sysutils/riemann/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/21 05:52:45

Modified files:
	sysutils       : Makefile 

Log message:
+riemann


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/21 06:13:01

Modified files:
	sys/net        : if_tun.c 

Log message:
Grab the netlock when opened and closed;  ok mpi, rzalamena


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/21 06:59:57

Modified files:
	sys/arch/mips64/include: cache.h 
	sys/arch/mips64/mips64: cache_octeon.c 
	sys/arch/octeon/conf: GENERIC RAMDISK files.octeon 
Added files:
	sys/arch/octeon/dev: octmmc.c octmmcreg.h 

Log message:
Add a driver for OCTEON MMC host controller.

Tested on EdgeRouter Pro, and Shasta.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/21 07:04:54

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: octmmc.4 

Log message:
Add octmmc(4).


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2016/12/21 07:16:30

Modified files:
	math/maxima    : Makefile distinfo 
	math/maxima/pkg: PLIST 

Log message:
Update to Maxima 5.39.0

OK pirofti@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 08:13:29

Modified files:
	regress/lib/libssl/asn1: asn1test.c 

Log message:
Ensure negative time/timeout are handled appropriately.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/21 08:13:50

Modified files:
	lib/libc/regex : regcomp.c 

Log message:
Adopt relevant part of NetBSD's r1.7 commit to discard unused results of the
expressions generated by the REQUIRE() macro. Thus eliminating from build
output 100 lines or so of gcc complaints about "computed but not used".

cluebat & ok tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 08:15:45

Modified files:
	lib/libcrypto/x509: x509_vfy.h x509_vpm.c 

Log message:
Remove prototypes from the public header for X509_VERIFY_PARAM functions
that were recently added but not intended to be made public at this stage.

Discussed with beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 08:49:29

Modified files:
	lib/libcrypto  : Makefile constant_time_locl.h o_time.h 
	lib/libcrypto/aes: aes_locl.h 
	lib/libcrypto/asn1: asn1_locl.h charmap.h 
	lib/libcrypto/bf: bf_pi.h 
	lib/libcrypto/bn: bn.h bn_lcl.h bn_prime.h 
	lib/libcrypto/camellia: cmll_locl.h 
	lib/libcrypto/cast: cast_s.h 
	lib/libcrypto/conf: conf_def.h 
	lib/libcrypto/des: des_locl.h spr.h 
	lib/libcrypto/dsa: dsa_locl.h 
	lib/libcrypto/ec: ec_lcl.h ecp_nistz256_table.h 
	lib/libcrypto/ecdh: ech_locl.h 
	lib/libcrypto/ecdsa: ecs_locl.h 
	lib/libcrypto/engine: eng_int.h 
	lib/libcrypto/evp: evp_locl.h 
	lib/libcrypto/gost: gost_asn1.h gost_locl.h 
	lib/libcrypto/md4: md4_locl.h 
	lib/libcrypto/md5: md5_locl.h 
	lib/libcrypto/modes: modes_lcl.h 
	lib/libcrypto/objects: obj_xref.h 
	lib/libcrypto/ripemd: rmd_locl.h rmdconst.h 
	lib/libcrypto/rsa: rsa_locl.h 
	lib/libcrypto/sha: sha_locl.h 
	lib/libcrypto/ui: ui_locl.h 
	lib/libcrypto/whrlpool: wp_locl.h 
	lib/libcrypto/x509: vpm_int.h x509_lcl.h 
	lib/libcrypto/x509v3: ext_dat.h pcy_int.h 
Added files:
	lib/libcrypto  : Symbols.list 

Log message:
Explicitly export a list of symbols from libcrypto.

Move the "internal" BN functions from bn.h to bn_lcl.h and stop exporting
the bn_* symbols. These are documented as only being intended for internal
use, so why they were placed in a public header is beyond me...

This hides 363 previously exported symbols, most of which exist in headers
that are not installed and were never intended to be public. This also
removes a few crusty old things that should have died long ago (like
_ossl_old_des_read_pw). But don't worry... there are still 3451 symbols
exported from the library.

With input and testing from inoguchi@.

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/21 08:50:58

Modified files:
	share/man/man4/man4.octeon: octmmc.4 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 08:51:05

Modified files:
	regress/lib/libcrypto/bn/general: Makefile bntest.c 
	regress/lib/libcrypto/utf8: Makefile 
Added files:
	regress/lib/libcrypto: Makefile.inc 

Log message:
Update libcrypto regress to handle header and non-exported symbol changes.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 09:44:31

Modified files:
	lib/libssl     : s3_clnt.c s3_lib.c s3_srvr.c ssl3.h ssl_cert.c 
	                 ssl_locl.h t1_lib.c 

Log message:
Add support for ECDHE with X25519.

Testing of an earlier revision by naddy@.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 09:51:10

Modified files:
	lib/libssl     : ssl.h 

Log message:
Add minimum and maximum version fields to SSL, SSL_CTX and SSL_METHOD
for future work.

Discussed with beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 09:52:48

Modified files:
	lib/libcrypto  : shlib_version 
	lib/libssl     : shlib_version 
	lib/libtls     : shlib_version 

Log message:
Bump libcrypto/libssl/libtls majors due to libcrypto symbol removal and
changes to libssl non-opaque structs.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/21 10:18:54

Modified files:
	regress/lib/libssl/client: clienttest.c 

Log message:
Update regress for ECDHE with X25519.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/21 10:43:32

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/21 11:13:08

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Pacify compiler warning about an unitialized variable which is obviously
not really being used.
ok beck.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/12/21 11:13:59

Modified files:
	lib/libcrypto/ocsp: ocsp_lib.c 

Log message:
rewrite OCSP_parse_url to be sligthly less nasty and not have one byte buffer overreads
helpful nitpicking and ok tb@ miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/21 11:28:19

Modified files:
	games/adventure: io.c 

Log message:
Eliminate another 'calculated, not used' warning by nuking a spurious
dereference.

Same change made in NetBSD in 1997.

ok tb@ millert@ tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/21 12:17:15

Log message:
    import msgpack-2.0.0
    
    MessagePack is an efficient binary serialization format, which lets you
    exchange data among multiple languages like JSON, except that it's
    faster and smaller. Small integers are encoded into a single byte while
    typical short strings require only one extra byte in addition to the
    strings themselves.
    
    initial port by edd@
    OK edd@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20162112
    
    N ports/devel/msgpack/Makefile
    N ports/devel/msgpack/distinfo
    N ports/devel/msgpack/pkg/DESCR
    N ports/devel/msgpack/pkg/PLIST
    N ports/devel/msgpack/patches/patch-CMakeLists_txt
    N ports/devel/msgpack/patches/patch-test_CMakeLists_txt
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/21 12:18:22

Modified files:
	devel          : Makefile 

Log message:
+msgpack


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2016/12/21 13:40:39

Added files:
	.              : httpslist 

Log message:
I'm going to want this for a new thing


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/21 13:54:16

src/distrib/special/ftp-ssl

Update of /cvs/src/distrib/special/ftp-ssl
In directory cvs.openbsd.org:/tmp/cvs-serv2063/ftp-ssl

Log Message:
Directory /cvs/src/distrib/special/ftp-ssl added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/21 13:54:16

Modified files:
	www/w3m        : Makefile distinfo 
	www/w3m/patches: patch-configure 
	www/w3m/pkg    : DESCR PFRAG.image PLIST 
Added files:
	www/w3m/pkg    : PFRAG.no-image 
Removed files:
	www/w3m/patches: patch-Makefile_in patch-config_h_in 
	                 patch-main_c 
	www/w3m/pkg    : PFRAG.japanese PFRAG.no-japanese 

Log message:
Security update, switch to Debian upstream (0.5.3+git20161120), and
complete overhaul:
* Fixes for 23 CVEs.
* Switch the image flavor to use the lighter imlib2 dependency.
* Drop the japanese flavor; gettext localization is sufficient.
* Convert Japanese docs to UTF-8.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/21 13:55:43

Added files:
	distrib/special/ftp-ssl: Makefile 

Log message:
stub for building HTTPS-enabled client


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/21 13:57:09

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	www            : Makefile 

Log message:
Japanese w3m is gone, upgrade to plain w3m


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/21 14:01:28

Modified files:
	build          : mirrors.dat 

Log message:
add marker comments for the mirrors which currently have https


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/21 14:13:42

Modified files:
	build          : mirrors.pl mirrors.dat mirrors.tmpl 

Log message:
add separate UHS lines for https with the url.
add code to mirrors.pl to write out ../httpslist from these.


CVSROOT:	/cvs
Module name:	www
Changes by:	zhuk@cvs.openbsd.org	2016/12/21 15:54:05

Modified files:
	.              : want.html 

Log message:
The SSD is being cared of, thanks a lot!


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/21 17:09:07

Modified files:
	lib/libc/regex : regcomp.c 

Log message:
Clarify code by eliminating unused #define's MUSTSEE, MUSTNOTSEE and inlining
MUSTEAT.

ok tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/21 18:52:40

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Work around a NET_LOCK() recursion seen during NFS netboot:

sosend  <- NET_LOCK()
nfs_send
nfs_request
nfs_lookup
VOP_LOOKUP
vfs_lookup
namei
unp_connect
uipc_usrreq
soconnect  <- NET_LOCK()
sys_connect

OK bluhm@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2016/12/22 01:10:21

Modified files:
	x11/qt4        : Makefile 
	audio/jack     : Makefile 

Log message:
these use atomics not currently available on arm


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 01:17:49

Modified files:
	security/libgpg-error: Makefile distinfo 
	security/libgpg-error/pkg: PLIST 

Log message:
Update to libgpg-error-1.26.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 02:02:50

Modified files:
	x11/gnome/builder: Makefile distinfo 
	x11/gnome/builder/pkg: PLIST 

Log message:
Update to gnome-builder-3.22.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 02:05:06

Modified files:
	emulators/qemu : Makefile distinfo 
	emulators/qemu/patches: patch-block_curl_c patch-configure 
	                        patch-tcg_ppc_tcg-target_inc_c 
	emulators/qemu/pkg: PLIST 
Removed files:
	emulators/qemu/patches: patch-net_tap-bsd_c 

Log message:
Update to qemu-2.8.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 02:20:19

Modified files:
	security/heimdal: Makefile distinfo 
Removed files:
	security/heimdal/patches: patch-lib_hcrypto_evp-openssl_c 
	                          patch-lib_roken_Makefile_in 

Log message:
Update to heimdal-7.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 02:31:00

Modified files:
	x11/paper-gtk-theme: Makefile 

Log message:
Missing rdep on x11/gtk2-murrine-engine.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/22 02:32:04

Modified files:
	lib/csu        : crtbegin.c 

Log message:
Don't make __CTOR_LIST__ and __DTOR_LIST__ const.  This makes the .ctors and
.dtors sections writable just like they are in crtend.o and code generated
by compilers.  This is necessary to make sure that linkers that respect the
ELF spec a bit better (such as lld) correctly concatenate the secttions.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2016/12/22 03:26:47

Modified files:
	distrib/socppc/ramdisk: Makefile 

Log message:
Use makefs to build bsd.rd; build & boot tested by mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 03:52:54

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.4.90.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 03:53:08

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.33.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/22 04:04:44

Modified files:
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 
	sbin/sysctl    : sysctl.c 
	share/man/man4 : Makefile multicast.4 
	sys/conf       : GENERIC 
	sys/netinet    : in.h in_proto.c ip_mroute.c ip_mroute.h 
	sys/netinet6   : in6.h in6_proto.c ip6_mroute.c ip6_mroute.h 
	                 raw_ip6.c 
	usr.bin/netstat: inet.c inet6.c main.c mroute6.c 
Removed files:
	share/man/man4 : pim.4 
	sys/netinet    : pim.h pim_var.h 
	sys/netinet6   : pim6.h pim6_var.h 

Log message:
Remove PIM support from the multicast stack.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 04:07:13

Modified files:
	devel/llvm     : Makefile distinfo 
	devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp 
	                    patch-tools_lld_ELF_InputFiles_cpp 
	devel/llvm/pkg : PLIST 
Removed files:
	devel/llvm/patches: patch-include_llvm_Support_Threading_h 
	                    patch-lib_Transforms_InstCombine_InstCombineCompares_cpp 
	                    patch-tools_lld_COFF_CMakeLists_txt 

Log message:
Update to llvm-3.9.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 05:10:06

Modified files:
	lib/libcrypto/man: Makefile d2i_PKCS8PrivateKey_bio.3 
Added files:
	lib/libcrypto/man: PKCS8_PRIV_KEY_INFO_new.3 

Log message:
Write new PKCS8_PRIV_KEY_INFO_new(3) manual page from scratch.
Both functions are listed in <openssl/x509.h>
and in OpenSSL doc/man3/X509_dup.pod.
Note that OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 05:21:19

Modified files:
	lib/libcrypto/man: Makefile 

Log message:
Stop installing the bn_dump(3) manual page.
The functions documented there are no longer public.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 06:05:59

Modified files:
	lib/libcrypto/man: Makefile X509_new.3 
Removed files:
	lib/libcrypto/man: x509.3 

Log message:
Delete the x509(3) manual page and merge what little content remained
into X509_new(3).  Add information about STANDARDS.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 06:12:16

Modified files:
	lib/libcrypto/man: crypto.3 

Log message:
reference X509_new(3) instead of x509(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/22 06:30:09

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Revert workaround for NFS boot, it triggers the following assert:

swakeup
sowakeup
sowwakeup
unp_connect2
unp_connect
uipc_usrreq
soconnect
sys_connect

reported by stsp@, tb@ and RT Thrush


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/22 06:39:32

Modified files:
	sys/netinet6   : nd6.c nd6_nbr.c nd6_rtr.c 

Log message:
Remove all splsoftnet() from ND6 converting the non-recrusive ones to
NET_LOCK().

ok bluhm@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/22 06:56:46

Modified files:
	build          : mirrors.dat 

Log message:
comment out UHS lines unless they do TLS1.2 and stapling


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/22 07:06:17

Modified files:
	.              : httpslist 

Log message:
update httpslist with the set of existing mirrors that are doing all of the
following:

- https with a cert for the correct hostname
- TLS 1.2 with strong ciphers
- OCSP stapling


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 07:06:51

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_SIG_new.3 

Log message:
Write X509_SIG_new(3) manual page from scratch.  Both functions are
listed in <openssl/x509.h> and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/22 07:07:23

Modified files:
	build          : mirrors.tmpl 

Log message:
list current https requirements


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 07:10:27

Modified files:
	lang/clang     : clang.port.mk 

Log message:
MODCLANG_VERSION=3.9.1

prodded by Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/22 07:44:48

Modified files:
	lib/libcrypto/man: crypto.3 

Log message:
spelling fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/22 08:06:47

Modified files:
	sys/net        : switchctl.c 

Log message:
Grab the netlock when device is opened;  ok mpi, rzalamena


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 08:11:53

Modified files:
	sysutils/awscli: Makefile 

Log message:
Needs groff.
spotted by abieber@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/22 08:14:05

Modified files:
	sys/net        : if_switch.c switchofp.c 

Log message:
Validate the OFP header to make sure it always have a sane size, also
make sure to not accept anything else outside of the header size
boundaries.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/22 08:15:28

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Release the NET_LOCK() before namei(9) as a workaround to let NFS boot
work without assert.

ok visa@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/22 08:31:43

Modified files:
	usr.sbin/switchd: ofp.c ofp13.c ofp_common.c ofrelay.c switchd.h 

Log message:
Learn remote switch flow tables properties to find out where to install
the default table-miss flow for OpenFlow 1.3.5. This is enough to make
switchd(8) to work with switch(4) and HP 3800 switch out-of-the-box.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/22 08:33:36

Modified files:
	sys/arch/mips64/include: pmap.h vmparam.h 
	sys/arch/mips64/mips64: exception_tfp.S genassym.cf pmap.c 
	                        r4000_errata.c tlbhandler.S 

Log message:
Extend the size of user virtual address space from 2GB to 1TB on mips64
by adding another level to page directories. This improves ASLR and
complements W^X added earlier on some systems, giving a notable update
to the architecture's security. Besides, there is now more room for
running tasks that hog memory.

Testing help from deraadt@ and fcambus@.
Platforms tested: loongson, octeon, sgi/IP27 and sgi/IP30
(IP30 also with 4KB pages).


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/22 08:40:07

Modified files:
	regress/usr.sbin/switchd: OFP.pm run.pl 

Log message:
Update the regress test to work with the new changes in the switchd(8)
table learning implementation.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2016/12/22 08:45:37

Modified files:
	usr.sbin/switchctl: parser.c 

Log message:
Don't convert endianess for flow-mod command field, it is a 8 bit field.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 09:05:22

Modified files:
	lib/libcrypto/man: Makefile X509_ATTRIBUTE_new.3 
Added files:
	lib/libcrypto/man: PKCS12_SAFEBAG_new.3 PKCS12_new.3 

Log message:
Write new manual pages PKCS12_new(3) and PKCS12_SAFEBAG_new(3) from
scratch.  All these functions are listed in <openssl/pkcs12.h> and
in OpenSSL doc/man3/X509_dup.pod.  As usual, OpenSSL documentation
specifies the wrong header file.

Note that PKCS#12 documentation is still scanty at best.
For example, out of 19 public functions handling PKCS12 objects,
five are now documented, and this commit documents the first two
out of 24 public functions handling PKCS12_SAFEBAG objects.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/22 09:05:26

Modified files:
	sysutils/consul: Makefile distinfo 

Log message:
Update to consul-0.7.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2016/12/22 09:11:26

Modified files:
	lib/libm/arch/amd64: s_copysign.S s_copysignf.S 
	lib/libm/arch/i387: s_copysign.S s_copysignf.S 

Log message:
copysign and copysignf are used within libm, so declare them accordingly.
Required if the compiler doesn't replace them with builtins (e.g. clang
on amd64).
ok kettenis@ guenther@
i386 sync requested by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2016/12/22 09:30:03

Modified files:
	usr.bin/ftp    : ftp.1 main.c 

Log message:
add muststaple option so that oscp stapling can be required for sites you
expect to provide it.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/22 09:36:18

Modified files:
	usr.bin/gprof  : printgprof.c 

Log message:
Simply some for() loops to eliminate "computed, not used" warnings.

Also makes the code much easier to understand.

ok tom@ ok millert@ pirofti@ on earlier version.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/22 09:42:55

Modified files:
	usr.bin/rpcgen : rpc_cout.c 

Log message:
Avoid "unused variable 'i'" warnings in generated .c files by only emitting
the "int i;" for non-opaque arrays. Opaque arrays use xdr_opaque() rather
than iterating over the array.

Eliminates another couple of dozen warnings from snap build output.

ok deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/22 09:49:59

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2016/12/22 09:57:38

Modified files:
	lib/libcrypto/objects: obj_dat.c 

Log message:
OBJ_obj2txt() should return the total amount of space required
reported by @rhenium on GitHub
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/22 10:26:18

Modified files:
	usr.bin/ftp    : ftp.1 

Log message:
missing full stop;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/22 12:33:57

Modified files:
	lib/libcrypto/man: BN_new.3 

Log message:
no more bn_dump(3);


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/22 12:54:56

Modified files:
	x11/gnome/calendar: Makefile distinfo 

Log message:
update to gnome-calendar-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/22 14:26:20

Modified files:
	graphics/ImageMagick: Makefile distinfo 
	graphics/ImageMagick/pkg: PLIST 

Log message:
update to ImageMagick-6.9.7-0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/22 14:34:06

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-src_app_qgisapp_cpp 
Removed files:
	geo/qgis/patches: patch-src_gui_qgisgui_h 

Log message:
Update to qgis 2.18.2.

Remove patch-src_gui_qgisgui_h which was part of
https://github.com/qgis/QGIS/commit/3e738405e2e91eaf8a54f82640e5f59fc977e21a
upstream.

Switch to use gcc4 on all platforms (not only on i386), the new DWG
importer (added in a stable branch.. sigh) doesn't build with base gcc,
and what's the point of trying to build a modern c++ codebase with a 10
year-old compiler ?

Bump all shlib majors for lots of symbols removed as a consequence.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/22 14:58:40

Modified files:
	net/nmap       : Makefile distinfo 
	net/nmap/patches: patch-libnetutil_netutil_cc 
	                  patch-scan-engine_cc patch-timing_cc 
	                  patch-zenmap_install_scripts_unix_zenmap-root_desktop 
	                  patch-zenmap_install_scripts_unix_zenmap_desktop 
	                  patch-zenmap_setup_py 
	net/nmap/pkg   : PLIST-main 

Log message:
update to nmap-7.40, from maintainer David CARLIER


CVSROOT:	/cvs
Module name:	www
Changes by:	millert@cvs.openbsd.org	2016/12/22 15:27:18

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
Add https for my mirrors.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2016/12/22 15:53:49

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
another mirror just enabled https


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/22 15:56:52

Modified files:
	usr.sbin/ospf6d: ospfe.c 

Log message:
Don't run the FSM if the interface state hasn't changed.

ok benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/22 16:01:58

Modified files:
	usr.sbin/ospf6d: kroute.c 

Log message:
Let rde and ospfe know about all IFINFO messages (eg an interface MTU change).

The parent now passes all IFINFO messages down to the children, then
looks whether he has any work to do.  Same idea as ospfd.

ok benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/22 16:03:55

Modified files:
	usr.sbin/ospf6ctl: ospf6ctl.c 

Log message:
Also print the mtu in detailed interface info.

Copied on the diff from Remi Locherer for ospfctl.  ok benno@ claudio@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/22 17:01:01

Modified files:
	faq            : faq7.html 

Log message:
changing console fonts doesn't work on cards supported by drm(4).  move the
warning to the top to make it more prominent.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/22 17:25:53

Modified files:
	emulators/xroar: Makefile distinfo 

Log message:
Update to xroar 0.34.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 17:40:16

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: GENERAL_NAME_new.3 

Log message:
Write GENERAL_NAME_new(3) manual page from scratch - as if plain X.501
Name structures weren't already complicated enough, see X509_NAME_new(3).
All these functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/22 18:01:55

Modified files:
	lib/libcrypto/man: X509_new.3 

Log message:
Link to Peter Gutmann's classic "X.509 Style Guide".
Thanks to otto@ for making me aware of it.

If people know newer documents that are similarly readable and
interesting, please speak up.  I hate sending people to the STANDARDS
only for more information.  On the one hand, that's torture, and
on the other hand, if i read Gutmann correctly, the standards
sometimes provide bad advice, and often none at all.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/22 18:08:02

Modified files:
	faq            : faq7.html 

Log message:
halve the number of lines used to explain how to double the number of
lines on the console.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/22 18:58:18

Log message:
    Import cargo-generate-vendor from Sebastien Marie (uptream/maintainer)
    
    cargo-generate-vendor is used to help building vendored crate for use with
    devel/cargo.
    
    It will generate the required metadata for this purpose.
    
    ok landry@
    
    Status:
    
    Vendor Tag:	danj
    Release Tags:	danj_20161222
    
    N ports/devel/cargo-generate-vendor/Makefile
    N ports/devel/cargo-generate-vendor/distinfo
    N ports/devel/cargo-generate-vendor/pkg/DESCR
    N ports/devel/cargo-generate-vendor/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/22 19:03:02

Modified files:
	devel          : Makefile 

Log message:
+ cargo-generate-vendor


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/22 19:25:56

Modified files:
	faq            : faq7.html 

Log message:
an extra "of" snuck in


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/12/22 20:06:16

Modified files:
	libressl       : index.html 

Log message:
adjust columns a bit to avoid wrap


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2016/12/22 20:08:32

Modified files:
	usr.sbin/trpt  : trpt.c 

Log message:
Replace the archaic n_time data type with u_int32_t.  This also allows the
removal of the <netinet/in_systm.h> include.

ok mpi@ stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/12/22 22:57:26

Modified files:
	sys/arch/amd64/stand/efiboot: efidev.c 

Log message:
The efi disk i/o to read sectors properly when the sector size is not
512.  The problem actually had happened on macbookair7,1.  reported
and tested by gonzalo@.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/12/23 00:35:01

Modified files:
	sys/arch/amd64/stand/efiboot: efidev.c 

Log message:
Convert the sector number in the patition table to the sector number
in 512 byte blocks.  This fixes efiboot to read disklabel on 4K sector
size disk properly.  tested by gonzalo@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/23 00:36:55

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2016/12/23 01:07:54

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl 2016.12.22

New extractors:
- ism
- beatport
- ccma
- fox9
- huajiao
- jamendo
- meipai
- melonvod
- nobelprize
- ondemandkorea
- pandatv
- piksel
- rentv
- teamfourstar
- tvanouvelles
- uktvplay
- viu
- vvvvid
- vzaar
- webcaster

Removed
- beatportpro
- screenwavemedia


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/23 03:29:14

Modified files:
	sys/arch/arm64/dev: ampintc.c 
	sys/arch/arm/cortex: ampintc.c 

Log message:
The code to retrieve the interrupt ID only works if the amount of IRQs
supported by the controller is not too big.  Otherwise the mask will be
wrong and the calculated IRQ as well.  Split the dynamic mask into two
pieces.  First of all use a static mask to remove the bits we don't want
to look at.  Then we use that value to check for spurious or false IRQs.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/23 04:28:01

Modified files:
	net/oidentd    : Makefile 

Log message:
perl -pi -> sed -i


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/23 04:28:25

Modified files:
	sys/arch/arm64/include: _types.h 

Log message:
Update and add wide character support types.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/23 04:28:27

Modified files:
	net/oidentd    : Makefile 

Log message:
Tighten license marker


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/23 05:38:16

Modified files:
	sys/arch/mips64/include: vmparam.h 
	sys/arch/mips64/mips64: pmap.c 

Log message:
Tweaks suggested by miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2016/12/23 05:52:12

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Implement disk detaching


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/23 06:19:56

Modified files:
	devel/py-hypothesis: Makefile distinfo 

Log message:
Update to py-hypothesis 3.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rzalamena@cvs.openbsd.org	2016/12/23 06:44:31

Modified files:
	net/igmpproxy  : Makefile 
	net/igmpproxy/patches: patch-config_c patch-defs_h patch-ifvc_c 
	                       patch-igmpproxy_c patch-request_c 
	                       patch-rttable_c 
Added files:
	net/igmpproxy/patches: patch-mcgroup_c 

Log message:
Improved the igmpproxy code to be able to run on multiple rdomains, here
is a list of changes:
- Ignore interfaces that are not listed in the configuration file: fixes
an abort when trying to configure interface located in a different
rdomain and doesn't look to the address of interfaces outside the
configuration (otherwise it would pick the wrong interface in some cases).
- Improve the routing code: use a rb-tree to store groups avoiding group
duplications and having to fix hand-rolled list implementations.
- Fixed some warnings and improved debug messages.

As discussed with ajacoutot@,
ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 07:37:08

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: AUTHORITY_KEYID_new.3 

Log message:
Write new AUTHORITY_KEYID_new(3) manual page from scratch.
Both functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/23 07:38:36

Modified files:
	net/bird       : Makefile distinfo 
	net/bird/patches: patch-sysdep_unix_io_c 
	net/bird/pkg   : PLIST-doc 

Log message:
update to BIRD 1.6.3
- Large BGP communities
- BFD authentication (MD5, SHA1)
- SHA1 and SHA2 authentication for RIP and OSPF
- Improved documentation
- Several bug fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/23 07:53:16

Modified files:
	usr.sbin/ripd  : packet.c 

Log message:
Support p2p links where endpoints aren't in the same subnet.

Diff from Piotr Durlej, similar diff from chris@, ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/23 08:08:54

Modified files:
	sys/netinet6   : nd6.c 

Log message:
Do not call timeout_set(9) multiple times for nd6_slowtimo(), especially
whem timeout_set_proc(9) is what we need.

Found the hardway by and ok visa@, ok mikeb@, bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/23 08:23:11

Modified files:
	devel/doxygen  : Makefile 
	devel/doxygen/patches: patch-doc_CMakeLists_txt 
Added files:
	devel/doxygen/pkg: DESCR PLIST 
Removed files:
	devel/doxygen/pkg: DESCR-gui DESCR-main PLIST-gui PLIST-main 

Log message:
Move the gui to a different port.

From maintainer Rafael Sadowski.  Input from sthen@, ok zhuk@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 08:25:19

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: DIST_POINT_new.3 

Log message:
Write new DIST_POINT_new(3) manual page from scratch.
All functions documented here are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/23 08:29:22

Log message:
    Import the doxygen gui as a different port.
    
    This package contains a GUI front-end for configuring and running
    doxygen.
    
    The gui uses Qt5 which is slow to build, depends on gcc from ports and
    is known to fail on some archs.
    
    Port from maintainer Rafael Sadowski, ok zhuk@
    
    Status:
    
    Vendor Tag:	jca
    Release Tags:	jca_20161223
    
    N ports/devel/doxygen-gui/Makefile
    N ports/devel/doxygen-gui/distinfo
    N ports/devel/doxygen-gui/pkg/DESCR
    N ports/devel/doxygen-gui/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/23 08:33:25

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.91.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/23 08:33:32

Modified files:
	devel          : Makefile 

Log message:
+doxygen-gui


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/23 08:33:41

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.34.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/23 08:39:09

Modified files:
	net            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	net/ldistfp    : Makefile distinfo 
	net/ldistfp/patches: patch-src_ldistfp_c 
	net/ldistfp/pkg: DESCR PLIST 

Log message:
Remove ldistfp

No licensing, doesn't work (connect(2) fails because 255.255.255.255 is
invalid), out of date signature database, and less relevant now that few
people run an ident daemon.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 10:02:41

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: BASIC_CONSTRAINTS_new.3 

Log message:
Write new BASIC_CONSTRAINTS_new(3) manual from scratch, explaining
the important point of how to distinguish CA certificates from end
entity certificates.  Both functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 10:41:29

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: NAME_CONSTRAINTS_new.3 

Log message:
Write new NAME_CONSTRAINTS_new(3) manual page from scratch.
These functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/23 11:10:19

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2016/12/23 11:12:44

Modified files:
	security/burpsuite: Makefile distinfo 

Log message:
- update security/burpsuite to 1.7.14
- fix distfile download

OK rpointel@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/23 11:44:51

Modified files:
	sys/dev/pci    : if_iwn.c if_wpi.c 

Log message:
Hide static inline functions that are only used in debug code behind the same
#ifdef as the debug code itself.  Prevents clang from warning about these
functions being unused.

ok stsp@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 11:50:23

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: POLICYINFO_new.3 

Log message:
Write new POLICYINFO_new(3) manual page from scratch; i can't say that
i particularly like these fourteen functions, but they are all listed
in <openssl/x509v3.h> and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/23 12:46:13

Modified files:
	sys/net        : pf.c 

Log message:
Fix white spaces.  No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/23 12:55:02

Modified files:
	sys/dev/acpi   : acpials.c 

Log message:
Add missing sentinel.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 13:43:02

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: EXTENDED_KEY_USAGE_new.3 

Log message:
Write new EXTENDED_KEY_USAGE_new(3) manual page from scratch.
Both functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/23 13:49:41

Modified files:
	sys/net        : pf.c 

Log message:
Replace function names with __func__ in debug prints to make grep
happy.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/23 13:59:58

Modified files:
	x11/ede/lib    : Makefile 

Log message:
devel/doxygen,-main -> devel/doxygen


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/23 14:58:50

Modified files:
	sys/dev/ic     : ar5xxx.h 

Log message:
Define HAL_OPCODE using enum ieee80211_opmode to prevent clang from warning
about an implicit enum conversion.

ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 15:21:40

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: ACCESS_DESCRIPTION_new.3 

Log message:
Write ACCESS_DESCRIPTION_new(3) manual page from scratch.
All four functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/23 15:25:16

Modified files:
	faq            : faq7.html 

Log message:
save some vertical space and explain the rc.local(8) lines in comments;
minor wording tweaks while there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/23 15:35:36

Modified files:
	net/samba      : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/samba/patches: Tag: OPENBSD_6_0 
	                   patch-auth_kerberos_kerberos_pac_c 
	                   patch-source3_librpc_crypto_gse_c 
	                   patch-source4_auth_gensec_gensec_gssapi_c 
	                   patch-source4_scripting_bin_nsupdate-gss 

Log message:
SECURITY update for 4.4.8 CVEs

CVE-2016-2123: Fix DNS vuln ZDI-CAN-3995.
CVE-2016-2125: Don't send delegated credentials to all servers.
CVE-2016-2126: auth/kerberos: Only allow known checksum types in check_pac_checksum().

Test by Ian MacWilliam


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/23 16:01:48

Modified files:
	usr.sbin/syslogd: syslogd.c 

Log message:
When the kernel message buffer overflows, a message is printed by
syslogd(8) and the buffer is overwritten.  But after a complete
message buffer was read, we got a split line.  This happened as
syslogd did a partial read which ended within a line.  To avoid the
latter, syslogd has to reserve space for the kernel message buffer
plus 64 chars for the buffer full message.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 16:19:57

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: PROXY_POLICY_new.3 

Log message:
Write RFC 3820 manual page PROXY_POLICY_new(3) from scratch.
These four functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2016/12/23 16:22:25

Modified files:
	lib/libcrypto/sha: sha_locl.h 

Log message:
Move __BEGIN_HIDDEN_DECLS out of the middle of a function declaration.

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/23 16:27:15

Modified files:
	mail/gmime     : Makefile 

Log message:
Add security/gpgme to LIB_DEPENDS (and adjust WANTLIB), because
without this we get different .la files depending on wether gpgme
is installed or not.

The security/libgpg-error bdep is no longer needed, because it's pulled
in by gpgme, so drop it.

ok aja@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/23 16:49:29

Modified files:
	faq            : faq7.html index.html 

Log message:
1. split the "switching consoles" section into its two pieces:
"switching consoles" and "adding more virtual consoles".
2. move the vga(4)-specific sections together to prepare further work.

discussed with tj


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 16:50:04

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: PKEY_USAGE_PERIOD_new.3 

Log message:
Write new PKEY_USAGE_PERIOD_new(3) manual page from scratch,
documenting the dubious RFC 3280 PrivateKeyUsagePeriod extension.
Both functions are listed in <openssl/x509v3.h>
and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/23 17:32:43

Modified files:
	faq            : faq7.html index.html 

Log message:
merge the vga(4)-specific sections on the scrollback buffer, adding extra
consoles and changing fonts into one section with a big fat warning that
this won't work on drm(4) systems in particular.

discussed with tj


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 18:00:48

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: SXNET_new.3 

Log message:
Write new SXNET_new(3) manual page from scratch.  All four functions
are listed in <openssl/x509v3.h> and in OpenSSL doc/man3/X509_dup.pod.
OpenSSL documentation specifies the wrong header file.

I consider the quotation from
http://www-03.ibm.com/security/library/wp_pki0730.shtml
fair use because
(1) it is a very brief extract from a long text,
(2) no other source of information is available,
(3) it is quoted for the purpose of education and research,
(4) republishing happens in a not-for-profit context.

I'm not including the URI into the manual page because large corporate
websites are notorious for changing URIs during each spring cleaning.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/23 18:25:20

Modified files:
	faq            : index.html faq7.html 

Log message:
merge the three short sections on remapping the keyboard, the console mouse
and switching into one section on working on the console.

discussed with tj


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/23 18:29:40

Modified files:
	lib/libcrypto/man: OCSP_REQUEST_new.3 TS_REQ_new.3 
	                   X509_CRL_new.3 X509_EXTENSION_set_object.3 
	                   X509_NAME_new.3 X509_new.3 

Log message:
sprinkle some cross references to newly written x509v3 manual pages


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/23 18:29:53

Modified files:
	faq            : faq7.html 

Log message:
rc.local(8) file -> rc.local(8) script


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/23 18:55:36

Modified files:
	sys/arch/arm/cortex: ampintc.c 
	sys/arch/arm64/dev: ampintc.c 

Log message:
Match on "arm,gic-400" another GICv2 compat string.
ok patrick@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/24 01:19:04

Modified files:
	lib/libcrypto/man: PKEY_USAGE_PERIOD_new.3 

Log message:
minor fixes;


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/12/24 01:41:13

Modified files:
	sys/arch/amd64/stand/efiboot: efidev.c 

Log message:
The unit of the parition offset in disklabel is number of sectors in the
sector size, not in 512 byte blocks.  tested by gonzalo.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/24 04:17:35

Modified files:
	sys/netinet    : ip_ah.c ip_esp.c ip_ipcomp.c 

Log message:
Grab the NET_LOCK() before calling ipsp_process_done() as it ends up
in ip_output().

Found the hardway by and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/24 06:52:42

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
Correctly handle tls_read()/tls_write().

In one tls_read() case, we failed to check for WANT_{POLLIN,POLLOUT}, so
fix that. In the same tls_read() case and the tls_write() case we fail to
handle errors correctly, which means that error is not reported and can be
lost by a futher libtls call.

ok beck@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/24 07:58:55

Modified files:
	usr.sbin/ospf6d: printconf.c 

Log message:
Print metric and type for "redistribute" in ospf6d -v.

Similar diff as for ospfd, from Remi Locherer.  ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/24 08:55:07

Modified files:
	lib/csu        : boot.h 

Log message:
Remove code that reprotects the GOT based on the __got_start and __got_end
symbols.  Either the PT_LOAD RWX->RX case ot PT_GNU_RELRO should cover this
already for anything we care about.  And lld, the llvm linker, doesn't emit
the __got_start and __got_end symbols and there are good reasons to leave it
that way.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/24 09:00:35

Modified files:
	lib/csu        : boot.h 

Log message:
Replace return by break; requested by guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/24 09:02:10

Modified files:
	mail/exim      : Makefile 
	mail/exim/files: Makefile 
	mail/exim/patches: patch-src_tls-openssl_c 

Log message:
Enable LMTP transport in mail/exim, requested by Thomas Schneider


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/24 10:14:36

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/24 13:15:06

Modified files:
	www/tor-browser: Makefile.inc 
	www/tor-browser/browser: Makefile distinfo 
	www/tor-browser/browser/files: extension-overrides.js 
	www/tor-browser/https-everywhere: Makefile distinfo 
	www/tor-browser/torbutton: Makefile distinfo 
	meta/tor-browser: Makefile 

Log message:
Update to tor-browser 6.0.8.

Contains:
- esr fork base updated to 45.6.0
- https-everywhere updated to 5.2.8
- torbutton updated to 1.9.5.13

From MAINTAINER attila / stalphonsos / com


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/24 14:42:30

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: ASN1_item_d2i.3 ASN1_item_new.3 

Log message:
Very carefully tweak OpenSSL doc/man3/d2i_X509.pod and create a new
ASN1_item_d2i(3) manual page from it.  Enough text remains to keep
Stephen Henson's Copyright.

The eight functions documented in this new page are listed in
<openssl/asn1.h> and in Symbols.list, so they are public even though
OpenSSL does not document them.  They are very important because
hundreds of documented, much-used public interface functions are
trivial wrappers around them, sharing their complicated semantics
and their copious CAVEATS and BUGS.

The plan is for the many pages documenting the wrappers to become
very concise, to focus on the few type-dependent specifics, and to
point to this new page for the details of the semantics, for the
CAVEATS, and for the BUGS.

While here, write a companion page ASN1_item_new(3) from scratch.
The user interface described in that page scares the hell out of
me, and i think people writing code to handle ASN.1 ought to be
aware of that dangerous user interface design, or they will sooner
or later get trapped.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/24 14:52:24

Modified files:
	sys/dev/pci/drm/i915: intel_lvds.c 

Log message:
Put a bit more unused code under #ifdef notyet to prevent a clang warning.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/24 15:32:53

Modified files:
	sys/dev/pci/drm/i915: intel_tv.c 

Log message:
Remove some unused variables that have been removed upstream as well.
Fixes some clang warnings.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/24 15:42:26

Modified files:
	sys/arch/armv7/sunxi: sxipio.c sxipio_pins.h sxipiovar.h 

Log message:
Add support for the 2nd sxipio(4) device on the Allwinner H3.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/12/24 15:49:38

Modified files:
	sys/arch/amd64/stand/libsa: softraid_amd64.c 
	sys/dev        : softraidvar.h 

Log message:
Make the boot programs support booting from softraid on 4K byte sector
disks.

test gonzalo
ok tom krw jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/24 15:59:55

Modified files:
	graphics/darktable: Makefile distinfo 
	graphics/darktable/pkg: PLIST 

Log message:
update to darktable 2.2.0, new feature update, for more information see
http://www.darktable.org/2016/12/darktable-2-2-0-released/

"when updating from the currently stable 2.0.x series, please bear in mind that
your edits will be preserved during this process, but it will not be possible
to downgrade from 2.2 to 2.0.x any more."


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/24 16:22:52

Modified files:
	lib/libcrypto/man: d2i_DSAPublicKey.3 

Log message:
First example of how to fix the d2i_*() manuals:
- add four missing functions found in OpenSSL doc/man3/d2i_X509.pod
- simplify .Nd
- drop needless extra include line
- use the same parameter names as in ASN1_item_d2i(3)
- point to ASN1_item_d2i(3) for details
- sort the text and simplify the wording

More work is needed on STANDARDS references.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/12/24 18:10:04

Modified files:
	textproc/p5-Text-Unidecode: Makefile distinfo 

Log message:
Update textprox/p5-Text-Unidecode to 1.30

From maintainer Mikolaj Kucharski


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/25 01:44:41

Modified files:
	www/tor-browser/noscript: Makefile 
	www/tor-browser/tor-launcher: Makefile 

Log message:
Missed REVISION bump, as TB_VERSION changed the PLIST changed for those
two ports.

Spotted by nigel@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/25 03:33:27

Modified files:
	www/lighttpd   : Makefile distinfo 
Removed files:
	www/lighttpd/patches: patch-src_mod_scgi_c 

Log message:
Update to lighttpd-1.4.44.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 06:05:12

Modified files:
	tests/portbump/t2: Makefile.inc 

Log message:
Unbreak test, iconv.port.mk is gone.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 06:34:44

Log message:
    Import meta/qt5, this will replace qt5, qt5-html, qt5-qch
    and qt5-examples soon.
    
    Status:
    
    Vendor Tag:	zhuk
    Release Tags:	zhuk_20161225
    
    N ports/meta/qt5/Makefile
    N ports/meta/qt5/pkg/DESCR-examples
    N ports/meta/qt5/pkg/DESCR-html
    N ports/meta/qt5/pkg/DESCR-main
    N ports/meta/qt5/pkg/DESCR-qch
    N ports/meta/qt5/pkg/PLIST-examples
    N ports/meta/qt5/pkg/PLIST-html
    N ports/meta/qt5/pkg/PLIST-main
    N ports/meta/qt5/pkg/PLIST-qch
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 06:37:27

Modified files:
	devel/qmake    : qmake.port.mk 

Log message:
Improvements for qmake.port.mk:

* Pass LIBfoo_VERSION environment variables like it's done for simple and
gnu configure scripts. This unbreaks generating CMake config files
in the upcoming Qt 5.6.2.

* Don't call -recursive for Qt3's qmake, it doesn't support this flag.


CVSROOT:	/cvs
Module name:	src
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 06:46:18

Modified files:
	usr.bin/libtool/LT: UList.pm 
	usr.bin/libtool/LT/Mode: Link.pm 

Log message:
Teach libtool how to deal with both -lestdc++ and -lstdc++ in command line.

This helps to avoid linking both libraries, making -lestdc++ the only one
there. The concrete example would be print/poppler port after Qt5 update,
which is coming right now.

This hack would go away together with libestdc++...

Kind support on all the way by aja@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 06:54:34

Modified files:
	print/poppler  : Makefile 

Log message:
Tweak the poppler linking bits, making -lestdc++ come only to those
subpackages where it's really needed.

Relies on the recent libtool from base.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 07:13:28

Log message:
    Import Qt 5.6.2.
    
    The port is now being split into pieces. Cleanup and conflict resolving
    to follow.
    
    Status:
    
    Vendor Tag:	zhuk
    Release Tags:	zhuk_20161225
    
    C ports/x11/qt5/Makefile
    N ports/x11/qt5/Makefile.inc
    N ports/x11/qt5/Makefile.version
    C ports/x11/qt5/qt5.port.mk
    N ports/x11/qt5/qtbase/Makefile
    N ports/x11/qt5/qtbase/distinfo
    N ports/x11/qt5/qtbase/patches/patch-mkspecs_features_qt_module_prf
    N ports/x11/qt5/qtbase/patches/patch-qmake_generators_unix_unixmake_h
    N ports/x11/qt5/qtbase/patches/patch-qmake_generators_makefile_cpp
    N ports/x11/qt5/qtbase/patches/patch-mkspecs_features_create_cmake_prf
    N ports/x11/qt5/qtbase/patches/patch-qmake_generators_unix_unixmake2_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_corelib_tools_qbytearray_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_corelib_tools_qbytearray_h
    N ports/x11/qt5/qtbase/patches/patch-src_gui_image_qxbmhandler_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_network_kernel_qdnslookup_unix_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_testlib_qtestcase_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_network_socket_qnativesocketengine_unix_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_network_ssl_qsslsocket_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_widgets_styles_qgtkstyle_p_cpp
    N ports/x11/qt5/qtbase/patches/patch-mkspecs_openbsd-g++_qmake_conf
    N ports/x11/qt5/qtbase/patches/patch-src_network_ssl_qsslcontext_openssl_cpp
    N ports/x11/qt5/qtbase/patches/patch-config_tests_unix_compile_test
    N ports/x11/qt5/qtbase/patches/patch-src_platformheaders_platformheaders_pro
    N ports/x11/qt5/qtbase/patches/patch-src_widgets_styles_qgtk2painter_cpp
    N ports/x11/qt5/qtbase/patches/patch-config_tests_unix_openssl_openssl_cpp
    N ports/x11/qt5/qtbase/patches/patch-configure
    N ports/x11/qt5/qtbase/patches/patch-qmake_generators_unix_unixmake_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_3rdparty_forkfd_forkfd_c
    N ports/x11/qt5/qtbase/patches/patch-tests_auto_corelib_tools_qbytearray_tst_qbytearray_cpp
    N ports/x11/qt5/qtbase/patches/patch-src_corelib_global_global_pri
    N ports/x11/qt5/qtbase/patches/patch-src_corelib_global_qversiontagging_cpp
    N ports/x11/qt5/qtbase/pkg/DESCR-examples
    N ports/x11/qt5/qtbase/pkg/PLIST-main
    N ports/x11/qt5/qtbase/pkg/DESCR-main
    N ports/x11/qt5/qtbase/pkg/DESCR-mysql
    N ports/x11/qt5/qtbase/pkg/DESCR-psql
    N ports/x11/qt5/qtbase/pkg/DESCR-sqlite2
    N ports/x11/qt5/qtbase/pkg/DESCR-tds
    N ports/x11/qt5/qtbase/pkg/PLIST-examples
    N ports/x11/qt5/qtbase/pkg/PLIST-mysql
    N ports/x11/qt5/qtbase/pkg/PLIST-psql
    N ports/x11/qt5/qtbase/pkg/PLIST-sqlite2
    N ports/x11/qt5/qtbase/pkg/PLIST-tds
    N ports/x11/qt5/qtwebkit/Makefile
    N ports/x11/qt5/qtwebkit/distinfo
    N ports/x11/qt5/qtwebkit/patches/patch-Source_JavaScriptCore_heap_MachineStackMarker_cpp
    N ports/x11/qt5/qtwebkit/patches/patch-Source_JavaScriptCore_jit_ExecutableAllocator_h
    N ports/x11/qt5/qtwebkit/patches/patch-Source_JavaScriptCore_jsc_pro
    N ports/x11/qt5/qtwebkit/patches/patch-Source_ThirdParty_ANGLE_src_libGLESv2_Program_cpp
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WTF_wtf_Platform_h
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WTF_wtf_RandomNumberSeed_h
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WebCore_Target_pri
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WebCore_plugins_qt_PluginPackageQt_cpp
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WebKit2_WebProcess_pro
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WebCore_plugins_qt_PluginViewQt_cpp
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WebKit2_PluginProcess_qt_PluginProcessMainQt_cpp
    N ports/x11/qt5/qtwebkit/patches/patch-Source_WebKit2_WebProcess_Plugins_Netscape_x11_NetscapePluginX11_cpp
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_DumpRenderTree_JavaScriptThreading_cpp
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_mangleme_mangle_cgi_c
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_mangleme_remangle_cgi_c
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_qmake_config_tests_gccdepends_gccdepends_pro
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_qmake_config_tests_glx_glx_pro
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_qmake_config_tests_libXcomposite_libXcomposite_pro
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_qmake_config_tests_libXrender_libXrender_pro
    N ports/x11/qt5/qtwebkit/patches/patch-Tools_qmake_mkspecs_features_functions_prf
    N ports/x11/qt5/qtwebkit/patches/patch-Source_JavaScriptCore_dfg_DFGDisassembler_cpp
    N ports/x11/qt5/qtwebkit/pkg/PLIST-main
    N ports/x11/qt5/qtwebkit/pkg/PLIST-html
    N ports/x11/qt5/qtwebkit/pkg/PLIST-qch
    N ports/x11/qt5/qtwebkit/pkg/DESCR-examples
    N ports/x11/qt5/qtwebkit/pkg/DESCR-main
    N ports/x11/qt5/qtwebkit/pkg/DESCR-qch
    N ports/x11/qt5/qtwebkit/pkg/DESCR-html
    N ports/x11/qt5/qtdoc/Makefile
    N ports/x11/qt5/qtdoc/distinfo
    N ports/x11/qt5/qtdoc/pkg/DESCR-html
    N ports/x11/qt5/qtdoc/pkg/PLIST-qch
    N ports/x11/qt5/qtdoc/pkg/PLIST-html
    N ports/x11/qt5/qtdoc/pkg/DESCR-qch
    N ports/x11/qt5/qttools/Makefile
    N ports/x11/qt5/qttools/distinfo
    N ports/x11/qt5/qttools/patches/patch-src_qdoc_tokenizer_cpp
    N ports/x11/qt5/qttools/patches/patch-src_assistant_clucene_qclucene-config_p_h
    N ports/x11/qt5/qttools/patches/patch-src_assistant_assistant_assistant_pro
    N ports/x11/qt5/qttools/pkg/DESCR-main
    N ports/x11/qt5/qttools/pkg/DESCR-examples
    N ports/x11/qt5/qttools/pkg/PLIST-examples
    N ports/x11/qt5/qttools/pkg/PLIST-main
    N ports/x11/qt5/qttools/pkg/DESCR-webview
    N ports/x11/qt5/qttools/pkg/PLIST-webview
    N ports/x11/qt5/qtmultimedia/Makefile
    N ports/x11/qt5/qtmultimedia/distinfo
    N ports/x11/qt5/qtmultimedia/pkg/PLIST-main
    N ports/x11/qt5/qtmultimedia/pkg/PLIST-examples
    N ports/x11/qt5/qtmultimedia/pkg/PLIST-qch
    N ports/x11/qt5/qtmultimedia/pkg/DESCR-examples
    N ports/x11/qt5/qtmultimedia/pkg/DESCR-main
    N ports/x11/qt5/qtmultimedia/pkg/DESCR-qch
    N ports/x11/qt5/qtmultimedia/pkg/PLIST-html
    N ports/x11/qt5/qtmultimedia/pkg/DESCR-html
    N ports/x11/qt5/qtserialport/Makefile
    N ports/x11/qt5/qtserialport/distinfo
    N ports/x11/qt5/qtserialport/pkg/DESCR-html
    N ports/x11/qt5/qtserialport/pkg/DESCR-qch
    N ports/x11/qt5/qtserialport/pkg/PLIST-html
    N ports/x11/qt5/qtserialport/pkg/DESCR-main
    N ports/x11/qt5/qtserialport/pkg/DESCR-examples
    N ports/x11/qt5/qtserialport/pkg/PLIST-qch
    N ports/x11/qt5/qtserialport/pkg/PLIST-examples
    N ports/x11/qt5/qtserialport/pkg/PLIST-main
    N ports/x11/qt5/qtquickcontrols/Makefile
    N ports/x11/qt5/qtquickcontrols/distinfo
    N ports/x11/qt5/qtquickcontrols/pkg/PLIST-main
    N ports/x11/qt5/qtquickcontrols/pkg/PLIST-examples
    N ports/x11/qt5/qtquickcontrols/pkg/PLIST-qch
    N ports/x11/qt5/qtquickcontrols/pkg/DESCR-examples
    N ports/x11/qt5/qtquickcontrols/pkg/DESCR-main
    N ports/x11/qt5/qtquickcontrols/pkg/DESCR-qch
    N ports/x11/qt5/qtquickcontrols/pkg/PLIST-html
    N ports/x11/qt5/qtquickcontrols/pkg/DESCR-html
    N ports/x11/qt5/qtdeclarative/Makefile
    N ports/x11/qt5/qtdeclarative/distinfo
    N ports/x11/qt5/qtdeclarative/pkg/PLIST-main
    N ports/x11/qt5/qtdeclarative/pkg/PLIST-examples
    N ports/x11/qt5/qtdeclarative/pkg/PLIST-qch
    N ports/x11/qt5/qtdeclarative/pkg/DESCR-examples
    N ports/x11/qt5/qtdeclarative/pkg/DESCR-main
    N ports/x11/qt5/qtdeclarative/pkg/DESCR-qch
    N ports/x11/qt5/qtdeclarative/pkg/PLIST-html
    N ports/x11/qt5/qtdeclarative/pkg/DESCR-html
    N ports/x11/qt5/qtdeclarative/patches/patch-qtdeclarative_src_qml_jsruntime_jsruntime_pri
    N ports/x11/qt5/qtdeclarative/patches/patch-qtdeclarative_src_qml_jsruntime_qv4alloca_p_h
    N ports/x11/qt5/qtgraphicaleffects/Makefile
    N ports/x11/qt5/qtgraphicaleffects/distinfo
    N ports/x11/qt5/qtgraphicaleffects/pkg/PLIST-main
    N ports/x11/qt5/qtgraphicaleffects/pkg/DESCR-main
    N ports/x11/qt5/qtgraphicaleffects/pkg/PLIST-qch
    N ports/x11/qt5/qtgraphicaleffects/pkg/DESCR-qch
    N ports/x11/qt5/qtgraphicaleffects/pkg/PLIST-html
    N ports/x11/qt5/qtgraphicaleffects/pkg/DESCR-html
    N ports/x11/qt5/qt3d/Makefile
    N ports/x11/qt5/qt3d/distinfo
    N ports/x11/qt5/qt3d/pkg/DESCR-main
    N ports/x11/qt5/qt3d/pkg/PLIST-main
    N ports/x11/qt5/qt3d/pkg/PLIST-examples
    N ports/x11/qt5/qt3d/pkg/DESCR-examples
    N ports/x11/qt5/qt3d/pkg/PLIST-qch
    N ports/x11/qt5/qt3d/pkg/DESCR-qch
    N ports/x11/qt5/qt3d/pkg/PLIST-html
    N ports/x11/qt5/qt3d/pkg/DESCR-html
    N ports/x11/qt5/qt3d/patches/patch-src_3rdparty_assimp_code_BlenderTessellator_cpp
    N ports/x11/qt5/qtactiveqt/Makefile
    N ports/x11/qt5/qtactiveqt/distinfo
    N ports/x11/qt5/qtactiveqt/pkg/PLIST-qch
    N ports/x11/qt5/qtactiveqt/pkg/PLIST-html
    N ports/x11/qt5/qtactiveqt/pkg/DESCR-qch
    N ports/x11/qt5/qtactiveqt/pkg/DESCR-html
    N ports/x11/qt5/qtcanvas3d/Makefile
    N ports/x11/qt5/qtcanvas3d/distinfo
    N ports/x11/qt5/qtcanvas3d/pkg/DESCR-main
    N ports/x11/qt5/qtcanvas3d/pkg/PLIST-examples
    N ports/x11/qt5/qtcanvas3d/pkg/PLIST-main
    N ports/x11/qt5/qtcanvas3d/pkg/DESCR-examples
    N ports/x11/qt5/qtcanvas3d/pkg/PLIST-qch
    N ports/x11/qt5/qtcanvas3d/pkg/DESCR-qch
    N ports/x11/qt5/qtcanvas3d/pkg/PLIST-html
    N ports/x11/qt5/qtcanvas3d/pkg/DESCR-html
    N ports/x11/qt5/qtconnectivity/Makefile
    N ports/x11/qt5/qtconnectivity/distinfo
    N ports/x11/qt5/qtconnectivity/pkg/DESCR-examples
    N ports/x11/qt5/qtconnectivity/pkg/DESCR-html
    N ports/x11/qt5/qtconnectivity/pkg/DESCR-main
    N ports/x11/qt5/qtconnectivity/pkg/DESCR-qch
    N ports/x11/qt5/qtconnectivity/pkg/PLIST-qch
    N ports/x11/qt5/qtconnectivity/pkg/PLIST-main
    N ports/x11/qt5/qtconnectivity/pkg/PLIST-html
    N ports/x11/qt5/qtconnectivity/pkg/PLIST-examples
    N ports/x11/qt5/qtconnectivity/patches/patch-src_nfc_nfc_pro
    N ports/x11/qt5/qtenginio/Makefile
    N ports/x11/qt5/qtenginio/distinfo
    N ports/x11/qt5/qtenginio/pkg/DESCR-main
    N ports/x11/qt5/qtenginio/pkg/PLIST-examples
    N ports/x11/qt5/qtenginio/pkg/PLIST-main
    N ports/x11/qt5/qtenginio/pkg/DESCR-examples
    N ports/x11/qt5/qtenginio/pkg/PLIST-qch
    N ports/x11/qt5/qtenginio/pkg/DESCR-qch
    N ports/x11/qt5/qtenginio/pkg/PLIST-html
    N ports/x11/qt5/qtenginio/pkg/DESCR-html
    N ports/x11/qt5/qtimageformats/Makefile
    N ports/x11/qt5/qtimageformats/distinfo
    N ports/x11/qt5/qtimageformats/pkg/DESCR-main
    N ports/x11/qt5/qtimageformats/pkg/PLIST-main
    N ports/x11/qt5/qtimageformats/pkg/PLIST-qch
    N ports/x11/qt5/qtimageformats/pkg/DESCR-qch
    N ports/x11/qt5/qtimageformats/pkg/PLIST-html
    N ports/x11/qt5/qtimageformats/pkg/DESCR-html
    N ports/x11/qt5/qtquickcontrols2/Makefile
    N ports/x11/qt5/qtquickcontrols2/distinfo
    N ports/x11/qt5/qtquickcontrols2/pkg/DESCR-main
    N ports/x11/qt5/qtquickcontrols2/pkg/PLIST-main
    N ports/x11/qt5/qtquickcontrols2/pkg/PLIST-examples
    N ports/x11/qt5/qtquickcontrols2/pkg/DESCR-examples
    N ports/x11/qt5/qtquickcontrols2/pkg/PLIST-qch
    N ports/x11/qt5/qtquickcontrols2/pkg/DESCR-qch
    N ports/x11/qt5/qtquickcontrols2/pkg/PLIST-html
    N ports/x11/qt5/qtquickcontrols2/pkg/DESCR-html
    N ports/x11/qt5/qtlocation/Makefile
    N ports/x11/qt5/qtlocation/distinfo
    N ports/x11/qt5/qtlocation/pkg/DESCR-main
    N ports/x11/qt5/qtlocation/pkg/PLIST-main
    N ports/x11/qt5/qtlocation/pkg/PLIST-examples
    N ports/x11/qt5/qtlocation/pkg/DESCR-examples
    N ports/x11/qt5/qtlocation/pkg/PLIST-qch
    N ports/x11/qt5/qtlocation/pkg/DESCR-qch
    N ports/x11/qt5/qtlocation/pkg/PLIST-html
    N ports/x11/qt5/qtlocation/pkg/DESCR-html
    N ports/x11/qt5/qtscript/Makefile
    N ports/x11/qt5/qtscript/distinfo
    N ports/x11/qt5/qtscript/pkg/DESCR-main
    N ports/x11/qt5/qtscript/pkg/PLIST-main
    N ports/x11/qt5/qtscript/pkg/PLIST-examples
    N ports/x11/qt5/qtscript/pkg/DESCR-examples
    N ports/x11/qt5/qtscript/pkg/PLIST-qch
    N ports/x11/qt5/qtscript/pkg/DESCR-qch
    N ports/x11/qt5/qtscript/pkg/PLIST-html
    N ports/x11/qt5/qtscript/pkg/DESCR-html
    N ports/x11/qt5/qtscript/patches/patch-src_3rdparty_javascriptcore_JavaScriptCore_wtf_Platform_h
    N ports/x11/qt5/qtscript/patches/patch-src_3rdparty_javascriptcore_JavaScriptCore_wtf_RandomNumberSeed_h
    N ports/x11/qt5/qtscript/patches/patch-src_3rdparty_javascriptcore_WebKit_pri
    N ports/x11/qt5/qtscript/patches/patch-src_3rdparty_javascriptcore_JavaScriptCore_JavaScriptCore_pri
    N ports/x11/qt5/qtsensors/Makefile
    N ports/x11/qt5/qtsensors/distinfo
    N ports/x11/qt5/qtsensors/pkg/DESCR-main
    N ports/x11/qt5/qtsensors/pkg/PLIST-main
    N ports/x11/qt5/qtsensors/pkg/PLIST-examples
    N ports/x11/qt5/qtsensors/pkg/DESCR-examples
    N ports/x11/qt5/qtsensors/pkg/PLIST-qch
    N ports/x11/qt5/qtsensors/pkg/DESCR-qch
    N ports/x11/qt5/qtsensors/pkg/PLIST-html
    N ports/x11/qt5/qtsensors/pkg/DESCR-html
    N ports/x11/qt5/qtserialbus/Makefile
    N ports/x11/qt5/qtserialbus/distinfo
    N ports/x11/qt5/qtserialbus/pkg/DESCR-main
    N ports/x11/qt5/qtserialbus/pkg/PLIST-main
    N ports/x11/qt5/qtserialbus/pkg/PLIST-examples
    N ports/x11/qt5/qtserialbus/pkg/DESCR-examples
    N ports/x11/qt5/qtserialbus/pkg/PLIST-qch
    N ports/x11/qt5/qtserialbus/pkg/DESCR-qch
    N ports/x11/qt5/qtserialbus/pkg/PLIST-html
    N ports/x11/qt5/qtserialbus/pkg/DESCR-html
    N ports/x11/qt5/qtsvg/Makefile
    N ports/x11/qt5/qtsvg/distinfo
    N ports/x11/qt5/qtsvg/pkg/DESCR-main
    N ports/x11/qt5/qtsvg/pkg/PLIST-main
    N ports/x11/qt5/qtsvg/pkg/PLIST-examples
    N ports/x11/qt5/qtsvg/pkg/DESCR-examples
    N ports/x11/qt5/qtsvg/pkg/PLIST-qch
    N ports/x11/qt5/qtsvg/pkg/DESCR-qch
    N ports/x11/qt5/qtsvg/pkg/PLIST-html
    N ports/x11/qt5/qtsvg/pkg/DESCR-html
    N ports/x11/qt5/qttranslations/Makefile
    N ports/x11/qt5/qttranslations/distinfo
    N ports/x11/qt5/qttranslations/pkg/DESCR
    N ports/x11/qt5/qttranslations/pkg/PLIST
    N ports/x11/qt5/qtwebchannel/Makefile
    N ports/x11/qt5/qtwebchannel/distinfo
    N ports/x11/qt5/qtwebchannel/pkg/DESCR-main
    N ports/x11/qt5/qtwebchannel/pkg/PLIST-main
    N ports/x11/qt5/qtwebchannel/pkg/PLIST-examples
    N ports/x11/qt5/qtwebchannel/pkg/DESCR-examples
    N ports/x11/qt5/qtwebchannel/pkg/PLIST-qch
    N ports/x11/qt5/qtwebchannel/pkg/DESCR-qch
    N ports/x11/qt5/qtwebchannel/pkg/PLIST-html
    N ports/x11/qt5/qtwebchannel/pkg/DESCR-html
    N ports/x11/qt5/qtwebsockets/Makefile
    N ports/x11/qt5/qtwebsockets/distinfo
    N ports/x11/qt5/qtwebsockets/pkg/DESCR-main
    N ports/x11/qt5/qtwebsockets/pkg/PLIST-main
    N ports/x11/qt5/qtwebsockets/pkg/PLIST-examples
    N ports/x11/qt5/qtwebsockets/pkg/DESCR-examples
    N ports/x11/qt5/qtwebsockets/pkg/PLIST-qch
    N ports/x11/qt5/qtwebsockets/pkg/DESCR-qch
    N ports/x11/qt5/qtwebsockets/pkg/PLIST-html
    N ports/x11/qt5/qtwebsockets/pkg/DESCR-html
    N ports/x11/qt5/qtx11extras/Makefile
    N ports/x11/qt5/qtx11extras/distinfo
    N ports/x11/qt5/qtx11extras/pkg/DESCR-main
    N ports/x11/qt5/qtx11extras/pkg/PLIST-main
    N ports/x11/qt5/qtx11extras/pkg/PLIST-qch
    N ports/x11/qt5/qtx11extras/pkg/DESCR-qch
    N ports/x11/qt5/qtx11extras/pkg/PLIST-html
    N ports/x11/qt5/qtx11extras/pkg/DESCR-html
    N ports/x11/qt5/qtwebview/Makefile
    N ports/x11/qt5/qtwebview/distinfo
    N ports/x11/qt5/qtwebview/pkg/DESCR-main
    N ports/x11/qt5/qtwebview/pkg/DESCR-examples
    N ports/x11/qt5/qtwebview/pkg/DESCR-qch
    N ports/x11/qt5/qtwebview/pkg/DESCR-html
    N ports/x11/qt5/qtwebengine/Makefile
    N ports/x11/qt5/qtwebengine/distinfo
    N ports/x11/qt5/qtwebengine/patch-content_common_sandbox_init_openbsd_cc
    N ports/x11/qt5/qtwebengine/patch-content_common_sandbox_init_openbsd_h
    N ports/x11/qt5/qtwebengine/patches/patch-tools_qmake_mkspecs_features_functions_prf
    N ports/x11/qt5/qtwebengine/patches/patch-tools_qmake_config_tests_snappy_snappy_pro
    N ports/x11/qt5/qtwebengine/patches/patch-tools_qmake_config_tests_libcap_libcap_pro
    N ports/x11/qt5/qtwebengine/patches/patch-tools_qmake_config_tests_srtp_srtp_pro
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_build_compiler_version_py
    N ports/x11/qt5/qtwebengine/patches/patch-src_core_gyp_run_pro
    N ports/x11/qt5/qtwebengine/patches/patch-tools_qmake_mkspecs_features_configure_prf
    N ports/x11/qt5/qtwebengine/patches/patch-tools_qmake_config_tests_khr_khr_pro
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_base_base_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_gpu_tools_tools_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_gpu_gles2_conform_support_gles2_conform_support_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_libyuv_libyuv_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_libjingle_libjingle_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_libXNVCtrl_libXNVCtrl_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_ffmpeg_ffmpeg_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_WebKit_Source_platform_blink_platform_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_WebKit_Source_web_web_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_WebKit_Source_core_core_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_libusb_libusb_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_skia_gyp_ports_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_pdfium_pdfium_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_media_media_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_iccjpeg_iccjpeg_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_usrsctp_usrsctp_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_libjpeg_turbo_libjpeg_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_base_ui_base_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_gfx_gfx_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_gl_gl_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_views_views_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_touch_selection_ui_touch_selection_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_accessibility_accessibility_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_printing_printing_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_device_hid_hid_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_device_battery_battery_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_remoting_remoting_all_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_base_threading_platform_thread_linux_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_base_base_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_content_content_browser_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_base_threading_platform_thread_posix_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_base_platform_thread_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_content_content_common_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_chrome_common_extensions_api_schemas_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_chrome_chrome_browser_extensions_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_chrome_chrome_browser_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_chrome_chrome_common_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_chrome_chrome_exe_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_chrome_chrome_utility_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_chrome_policy_templates_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_gpu_gpu_config_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_ffmpeg_chromium_scripts_generate_gyp_py
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_ffmpeg_libavutil_autorename_libavutil_cpu_c
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_build_common_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_pdfium_build_standalone_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_build_filename_rules_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_skia_skia_common_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_remoting_remoting_host_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_apps_apps_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_net_net_common_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_components_storage_monitor_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_net_net_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_zlib_zlib_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_core_config_desktop_openbsd_pri
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_voice_engine_voice_engine_defines_h
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_skia_gyp_opts_gyp
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_build_common_gypi
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_skia_src_gpu_GrAutoLocaleSetter_h
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_system_wrappers_source_thread_posix_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ppapi_shared_impl_private_net_address_private_impl_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_events_event_switches_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_base_stringutils_h
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_ui_events_event_switches_h
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_zlib_deflate_c
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_zlib_simd_stub_c
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_base_process_process_posix_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_boringssl_src_crypto_bn_generic_c
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_base_physicalsocketserver_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_base_debug_debugger_posix_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_base_posix_unix_domain_socket_linux_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_base_network_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_webrtc_base_network_h
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_base_process_process_handle_openbsd_cc
    N ports/x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_zlib_fill_window_sse_c
    N ports/x11/qt5/qtwebengine/files/sndio_output.cc
    N ports/x11/qt5/qtwebengine/files/chromium-browser.desktop
    N ports/x11/qt5/qtwebengine/files/chrome
    N ports/x11/qt5/qtwebengine/files/sndio_output.h
    N ports/x11/qt5/qtwebengine/files/audio_manager_openbsd.cc
    N ports/x11/qt5/qtwebengine/files/audio_manager_openbsd.h
    N ports/x11/qt5/qtwebengine/files/sndio_input.cc
    N ports/x11/qt5/qtwebengine/files/sndio_input.h
    N ports/x11/qt5/qtwebengine/files/sandbox_init_openbsd.h
    N ports/x11/qt5/qtwebengine/files/sandbox_init_openbsd.cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_apps_apps_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_apps_ui_views_app_window_frame_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ash_display_mirror_window_controller_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_atomicops_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_base_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_debug_debugger_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_debug_stack_trace_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_debug_stack_trace_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_message_loop_message_loop_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_process_launch_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_posix_unix_domain_socket_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_process_memory_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_process_process_handle_openbsd_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_process_process_iterator_openbsd_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_process_process_metrics_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_process_process_metrics_openbsd_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_process_process_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_sys_info_openbsd_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_sys_info_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_build_all_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_threading_platform_thread_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_threading_platform_thread_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_base_trace_event_process_memory_dump_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_build_common_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_build_filename_rules_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_app_chrome_main_delegate_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_app_chrome_main_delegate_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_app_chromium_strings_grd
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_app_generated_resources_grd
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_net_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_app_google_chrome_strings_grd
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_app_resources_locale_settings_grd
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_about_flags_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_after_startup_task_utils_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_browser_resources_grd
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_chrome_browser_main_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_chrome_browser_main_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_chrome_browser_main_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_chrome_common_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_chrome_content_browser_client_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_chrome_content_browser_client_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_custom_handlers_protocol_handler_registry_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_defaults_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_download_chrome_download_manager_delegate_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_download_download_commands_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_download_download_commands_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_dbus_property_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_download_download_prefs_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_chrome_browser_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_download_download_prefs_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_download_download_shelf_context_menu_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_download_download_status_updater_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_api_image_writer_private_image_writer_private_api_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_api_input_ime_input_ime_api_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_api_messaging_message_service_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_chrome_browser_ui_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_api_music_manager_private_device_id_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_api_omnibox_omnibox_api_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_bookmark_app_helper_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_browser_context_keyed_service_factories_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_gpu_gl_string_manager_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_extensions_external_provider_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_first_run_first_run_internal_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_gpu_gpu_feature_checker_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_interstitials_chrome_controller_client_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_media_galleries_fileapi_mtp_device_map_service_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_media_galleries_media_file_system_registry_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_media_webrtc_log_uploader_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_memory_details_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_net_async_dns_field_trial_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_notifications_message_center_notification_manager_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_platform_util_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_process_singleton_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_renderer_preferences_util_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gl_gl_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_resources_plugin_metadata_plugins_linux_json
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_speech_tts_controller_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_sync_chrome_sync_client_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_task_manager_task_manager_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_tracing_crash_service_uploader_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_app_list_app_list_service_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_ash_system_tray_delegate_common_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_browser_command_controller_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_browser_view_prefs_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_exclusive_access_exclusive_access_bubble_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_input_method_input_method_engine_base_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_input_method_input_method_engine_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_panels_panel_manager_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_startup_bad_flags_prompt_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_startup_startup_browser_creator_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_toolbar_app_menu_model_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_accelerator_table_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_app_list_linux_app_list_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_apps_chrome_native_app_window_views_aura_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_tabs_tab_strip_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_ash_chrome_browser_main_extra_parts_ash_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_chrome_views_delegate_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_chrome_views_delegate_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_exclusive_access_bubble_views_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_first_run_dialog_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_frame_browser_frame_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_frame_browser_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_frame_opaque_browser_frame_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_frame_opaque_browser_frame_view_layout_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_frame_opaque_browser_frame_view_platform_specific_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_frame_system_menu_model_builder_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_message_center_message_center_frame_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_panels_panel_frame_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_tabs_tab_drag_controller_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_views_task_manager_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_webui_about_ui_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_webui_options_browser_options_handler_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_ui_webui_options_browser_options_handler_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_web_applications_web_app_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_browser_web_applications_web_app_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_chrome_browser_extensions_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_chrome_exe_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_chrome_utility_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_chrome_paths_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_chrome_paths_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_chrome_paths_internal_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_chrome_switches_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_chrome_switches_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_pref_names_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_extensions_api_schemas_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_extensions_command_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_pref_names_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_url_constants_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_url_constants_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_common_variations_fieldtrial_testing_config_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chrome_policy_templates_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_chromecast_browser_cast_browser_main_parts_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_audio_modem_modem_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_cookie_config_cookie_store_util_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_metrics_drive_metrics_provider_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_metrics_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_neterror_resources_neterror_js
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_omnibox_browser_omnibox_field_trial_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_policy_resources_policy_templates_json
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_policy_tools_generate_policy_source_py
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_storage_monitor_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_storage_monitor_storage_monitor_openbsd_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_components_storage_monitor_storage_monitor_openbsd_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_app_content_main_runner_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_accessibility_browser_accessibility_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_accessibility_browser_accessibility_manager_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_browser_main_loop_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_child_process_launcher_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_gpu_gpu_main_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_devtools_protocol_color_picker_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_content_browser_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_download_base_file_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_download_base_file_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_gamepad_gamepad_provider_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_geolocation_location_arbitrator_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_gpu_gpu_data_manager_impl_private_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_gpu_gpu_internals_ui_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_media_media_internals_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_time_zone_monitor_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_power_usage_monitor_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_ppapi_plugin_process_host_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_renderer_host_media_video_capture_device_client_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_renderer_host_render_process_host_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_renderer_host_render_widget_host_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_renderer_host_render_widget_host_view_aura_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_browser_utility_process_host_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_common_sandbox_init_openbsd_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_common_sandbox_init_openbsd_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_common_set_process_title_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_common_set_process_title_linux_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_content_common_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_content_renderer_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_media_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_ppapi_plugin_ppapi_plugin_main_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_public_common_content_switches_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_public_common_content_switches_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_renderer_devtools_v8_sampling_profiler_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_renderer_media_webrtc_audio_renderer_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_renderer_render_thread_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_renderer_renderer_main_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_renderer_renderer_main_platform_delegate_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_renderer_webscrollbarbehavior_impl_gtkoraura_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_content_utility_utility_main_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_device_battery_battery_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_device_hid_hid_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_device_serial_serial_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_device_serial_serial_io_handler_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_device_serial_serial_service_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_extensions_browser_api_serial_serial_api_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_gpu_config_gpu_info_collector_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_gpu_config_gpu_info_collector_linux_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_gpu_config_gpu_info_collector_x11_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_gpu_gles2_conform_support_gles2_conform_support_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_gpu_gpu_config_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_gpu_gpu_ipc_service_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_gpu_tools_tools_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ipc_ipc_message_utils_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ipc_ipc_message_utils_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_audio_audio_input_controller_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_audio_audio_manager_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_audio_audio_manager_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_base_video_frame_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_base_video_frame_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_capture_video_fake_video_capture_device_factory_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_capture_video_file_video_capture_device_factory_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_capture_video_video_capture_device_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_capture_video_video_capture_device_factory_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_media_capture_video_video_capture_device_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_native_client_build_compiler_version_py
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_base_address_tracker_linux_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_base_network_change_notifier_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_base_network_interfaces_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_disk_cache_blockfile_disk_format_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_dns_address_sorter_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_dns_dns_util_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_dns_host_resolver_proc_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_http_http_network_session_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gfx_gfx_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_net_common_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_proxy_proxy_service_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_proxy_proxy_config_service_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_socket_socks5_client_socket_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_tools_get_server_time_get_server_time_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_udp_udp_socket_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_net_url_request_url_request_context_builder_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_pdf_pdfium_pdfium_engine_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ppapi_shared_impl_private_net_address_private_impl_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_printing_printing_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_remoting_remoting_all_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_remoting_remoting_host_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_skia_ext_SkMemory_new_handler_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_skia_skia_chrome_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_skia_skia_common_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_sync_util_get_session_name_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_sync_util_get_session_name_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_bindings_core_v8_V8ScriptRunner_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_core_core_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_blink_platform_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_fonts_FontCache_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_fonts_FontCache_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_fonts_SimpleFontData_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_heap_StackFrameDepth_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gfx_canvas_skia_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_heap_ThreadState_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_heap_ThreadState_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_platform_image-decoders_png_PNGImageDecoder_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_web_PopupMenuImpl_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_web_web_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_WebKit_Source_wtf_MathExtras_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_asm
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_ffmpeg_generated_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_asm
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_ffmpeg_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_libavcodec_x86_cabac_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_libavutil_autorename_libavutil_cpu_c
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_libavutil_cpu_c
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_ffmpeg_libavutil_mem_c
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_iccjpeg_iccjpeg_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libXNVCtrl_NVCtrl_c
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libXNVCtrl_libXNVCtrl_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libjingle_libjingle_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libjpeg_turbo_libjpeg_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libphonenumber_dist_cpp_src_phonenumbers_base_memory_singleton_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libusb_libusb_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_base_ui_base_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libphonenumber_dist_cpp_src_phonenumbers_base_synchronization_lock_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libphonenumber_dist_cpp_src_phonenumbers_base_thread_checker_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libusb_src_libusb_core_c
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_libyuv_libyuv_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_pdfium_build_standalone_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_pdfium_pdfium_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_pdfium_core_fxcrt_include_fx_system_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_pdfium_core_fxge_ge_fx_ge_linux_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_pdfium_fpdfsdk_javascript_JS_Value_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_pdfium_third_party_libopenjpeg20_opj_malloc_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_protobuf_src_google_protobuf_stubs_atomicops_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_protobuf_src_google_protobuf_stubs_strutil_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_skia_gyp_ports_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_skia_src_gpu_GrAutoLocaleSetter_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gfx_codec_png_codec_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_skia_src_ports_SkOSFile_stdio_cpp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_usrsctp_usrsctp_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_base_base_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_base_httpcommon_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_base_network_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_base_physicalsocketserver_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_base_stringutils_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_base_platform_thread_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_build_common_gypi
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_system_wrappers_source_atomic32_posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_system_wrappers_source_timestamp_extrapolator_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_webrtc_voice_engine_voice_engine_defines_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_yasm_source_config_openbsd_config_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_third_party_yasm_source_config_openbsd_libyasm-stdint_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_tools_gyp_pylib_gyp_generator_make_py
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_tools_gyp_pylib_gyp_generator_ninja_py
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_accessibility_accessibility_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_accessibility_platform_ax_platform_node_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_app_list_app_list_constants_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_app_list_app_list_constants_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_app_list_app_list_menu_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_app_list_views_app_list_item_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_app_list_views_app_list_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_base_ime_ime_engine_handler_interface_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_base_ime_input_method_factory_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_base_ime_input_method_initializer_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_base_resource_resource_bundle_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_base_webui_web_ui_util_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_events_devices_x11_device_data_manager_x11_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_events_event_switches_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_events_event_switches_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_events_keycodes_dom_keycode_converter_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gfx_font_fallback_linux_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gfx_font_render_params_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gl_generate_bindings_py
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gl_gl_bindings_api_autogen_glx_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gl_gl_bindings_autogen_glx_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gl_gl_bindings_autogen_glx_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gl_gl_surface_glx_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_gl_sync_control_vsync_provider_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_message_center_message_center_style_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_resources_ui_resources_grd
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_message_center_views_message_center_button_bar_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_message_center_views_message_center_button_bar_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_message_center_views_message_center_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_message_center_views_notification_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_touch_selection_ui_touch_selection_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_accessibility_native_view_accessibility_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_bubble_bubble_delegate_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_views_delegate_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_controls_button_label_button_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_controls_scrollbar_base_scroll_bar_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_controls_textfield_textfield_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_controls_webview_webview_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_style_platform_style_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_views_delegate_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_views_gyp
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_views_switches_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_window_custom_frame_view_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_v8_src_globals_h
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_views_window_dialog_delegate_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_webui_resources_js_cr_js
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_ui_webui_resources_js_util_js
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_v8_src_base_platform_platform-openbsd_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_v8_src_base_platform_platform-posix_cc
    N ports/x11/qt5/qtwebengine/patches.chromium/patch-src_v8_src_log-utils_h
    N ports/x11/qt5/qtxmlpatterns/Makefile
    N ports/x11/qt5/qtxmlpatterns/distinfo
    N ports/x11/qt5/qtxmlpatterns/pkg/DESCR-main
    N ports/x11/qt5/qtxmlpatterns/pkg/PLIST-main
    N ports/x11/qt5/qtxmlpatterns/pkg/PLIST-examples
    N ports/x11/qt5/qtxmlpatterns/pkg/DESCR-examples
    N ports/x11/qt5/qtxmlpatterns/pkg/PLIST-qch
    N ports/x11/qt5/qtxmlpatterns/pkg/DESCR-qch
    N ports/x11/qt5/qtxmlpatterns/pkg/PLIST-html
    N ports/x11/qt5/qtxmlpatterns/pkg/DESCR-html
    
    2 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jzhuk:yesterday -jzhuk ports/x11/qt5

CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 07:18:55

Modified files:
	x11/qt5        : Makefile qt5.port.mk 

Log message:
Resolve conflicts after Qt 5.6.2 import.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 07:28:41

Removed files:
	x11/qt5        : distinfo 
	x11/qt5/patches: 
	                 patch-qtdeclarative_src_qml_jsruntime_qv4engine_cpp 
	                 patch-qtactiveqt_src_activeqt_activeqt_pro 
	                 patch-qtmacextras_src_src_pro 
	                 patch-qtandroidextras_src_src_pro 
	                 patch-qtmultimedia_config_tests_gstreamer_main_cpp 
	                 patch-qtbase_config_tests_unix_iconv_iconv_pro 
	                 patch-qtmultimedia_config_tests_linux_v4l_main_cpp 
	                 patch-qtbase_config_tests_unix_pulseaudio_pulseaudio_pro 
	                 patch-qtscript_src_3rdparty_javascriptcore_JavaScriptCore_JavaScriptCore_pri 
	                 patch-qtbase_configure 
	                 patch-qtscript_src_3rdparty_javascriptcore_JavaScriptCore_wtf_MathExtras_h 
	                 patch-qtbase_mkspecs_features_create_cmake_prf 
	                 patch-qtscript_src_3rdparty_javascriptcore_JavaScriptCore_wtf_Platform_h 
	                 patch-qtbase_mkspecs_openbsd-g++_qmake_conf 
	                 patch-qtscript_src_3rdparty_javascriptcore_JavaScriptCore_wtf_RandomNumberSeed_h 
	                 patch-qtbase_qmake_generators_makefile_cpp 
	                 patch-qtscript_src_3rdparty_javascriptcore_WebKit_pri 
	                 patch-qtbase_qmake_generators_unix_unixmake2_cpp 
	                 patch-qtsensors_src_plugins_sensors_dummy_dummy_pro 
	                 patch-qtbase_qmake_generators_unix_unixmake_cpp 
	                 patch-qttools_src_assistant_clucene_qclucene-config_p_h 
	                 patch-qtbase_qmake_generators_unix_unixmake_h 
	                 patch-qttools_src_assistant_qhelpgenerator_main_cpp 
	                 patch-qtbase_src_3rdparty_forkfd_forkfd_c 
	                 patch-qttools_src_assistant_qhelpgenerator_qhelpgenerator_pro 
	                 patch-qtbase_src_concurrent_qtconcurrentiteratekernel_cpp 
	                 patch-qtwebkit_Source_JavaScriptCore_dfg_DFGDisassembler_cpp 
	                 patch-qtbase_src_corelib_io_qfilesystemwatcher_cpp 
	                 patch-qtwebkit_Source_JavaScriptCore_heap_MachineStackMarker_cpp 
	                 patch-qtbase_src_corelib_io_qlockfile_unix_cpp 
	                 patch-qtwebkit_Source_JavaScriptCore_jit_ExecutableAllocator_h 
	                 patch-qtbase_src_corelib_io_qstorageinfo_unix_cpp 
	                 patch-qtwebkit_Source_JavaScriptCore_jsc_pro 
	                 patch-qtbase_src_corelib_kernel_qcore_unix_p_h 
	                 patch-qtwebkit_Source_ThirdParty_ANGLE_src_libGLESv2_Program_cpp 
	                 patch-qtbase_src_corelib_tools_qbytearray_cpp 
	                 patch-qtwebkit_Source_WTF_wtf_MathExtras_h 
	                 patch-qtbase_src_corelib_tools_qbytearray_h 
	                 patch-qtwebkit_Source_WTF_wtf_Platform_h 
	                 patch-qtbase_src_gui_image_qxbmhandler_cpp 
	                 patch-qtwebkit_Source_WTF_wtf_RandomNumberSeed_h 
	                 patch-qtbase_src_network_kernel_qdnslookup_unix_cpp 
	                 patch-qtwebkit_Source_WebCore_Target_pri 
	                 patch-qtbase_src_network_socket_qnativesocketengine_unix_cpp 
	                 patch-qtwebkit_Source_WebCore_plugins_qt_PluginPackageQt_cpp 
	                 patch-qtbase_src_network_ssl_qsslcontext_openssl_cpp 
	                 patch-qtwebkit_Source_WebCore_plugins_qt_PluginViewQt_cpp 
	                 patch-qtbase_src_network_ssl_qsslsocket_cpp 
	                 patch-qtwebkit_Source_WebKit2_PluginProcess_qt_PluginProcessMainQt_cpp 
	                 patch-qtbase_src_platformheaders_platformheaders_pro 
	                 patch-qtwebkit_Source_WebKit2_WebProcess_Plugins_Netscape_x11_NetscapePluginX11_cpp 
	                 patch-qtbase_src_plugins_platforms_xcb_qxcbscreen_cpp 
	                 patch-qtwebkit_Source_WebKit2_WebProcess_pro 
	                 patch-qtbase_src_testlib_qtestcase_cpp 
	                 patch-qtwebkit_Tools_DumpRenderTree_JavaScriptThreading_cpp 
	                 patch-qtbase_src_tools_qdoc_htmlgenerator_cpp 
	                 patch-qtwebkit_Tools_mangleme_mangle_cgi_c 
	                 patch-qtbase_src_tools_qdoc_tokenizer_cpp 
	                 patch-qtwebkit_Tools_mangleme_remangle_cgi_c 
	                 patch-qtbase_src_widgets_styles_qgtk2painter_cpp 
	                 patch-qtwebkit_Tools_qmake_config_tests_gccdepends_gccdepends_pro 
	                 patch-qtbase_src_widgets_styles_qgtkstyle_p_cpp 
	                 patch-qtwebkit_Tools_qmake_config_tests_glx_glx_pro 
	                 patch-qtbase_tests_auto_corelib_tools_qbytearray_tst_qbytearray_cpp 
	                 patch-qtwebkit_Tools_qmake_config_tests_libXcomposite_libXcomposite_pro 
	                 patch-qtdeclarative_src_3rdparty_masm_wtf_MathExtras_h 
	                 patch-qtwebkit_Tools_qmake_config_tests_libXrender_libXrender_pro 
	                 patch-qtdeclarative_src_3rdparty_masm_wtf_Platform_h 
	                 patch-qtwebkit_Tools_qmake_mkspecs_features_functions_prf 
	                 patch-qtdeclarative_src_qml_jsruntime_jsruntime_pri 
	                 patch-qtwinextras_src_src_pro 
	                 patch-qtdeclarative_src_qml_jsruntime_qv4alloca_p_h 
	x11/qt5/pkg    : DESCR-html DESCR-mysql DESCR-qch DESCR-tds 
	                 PLIST-html PLIST-mysql PLIST-qch PLIST-tds 
	                 DESCR-examples DESCR-main DESCR-psql 
	                 DESCR-sqlite2 PLIST-examples PLIST-main 
	                 PLIST-psql PLIST-sqlite2 

Log message:
Remove leftover files from Qt 5.5 times.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 07:34:40

Modified files:
	astro/stellarium: Makefile 
	audio/mscore   : Makefile 
	databases/pgmodeler: Makefile 
	devel/libqtelegram-aseman-edition: Makefile 
	devel/zeal     : Makefile 
	emulators/mgba : Makefile 
	games/dustrac  : Makefile 
	games/gottcode/connectagram: Makefile 
	games/gottcode/peg-e: Makefile 
	games/gottcode/simsu: Makefile 
	games/gottcode/tanglet: Makefile 
	games/pentobi  : Makefile 
	games/solarus/solarus: Makefile 
	games/warzone2100: Makefile 
	graphics/cstitch: Makefile 
	graphics/nomacs: Makefile 
	mail/trojita   : Makefile 
	misc/spdrs60   : Makefile 
	multimedia/mkvtoolnix: Makefile 
	multimedia/phonon: Makefile 
	multimedia/phonon-backend/gstreamer: Makefile 
	net/cutegram   : Makefile 
	net/owncloudclient: Makefile 
	net/qsyncthingtray: Makefile 
	net/seafile/client: Makefile 
	net/transmission: Makefile 
	net/wireshark  : Makefile 
	print/poppler  : Makefile 
	productivity/vym: Makefile 
	security/qtkeychain: Makefile 
	security/xca   : Makefile 
	sysutils/tarsnap-gui: Makefile 
	textproc/calibre: Makefile 
	www/otter-browser: Makefile 
	www/ruby-capybara-webkit: Makefile 
	x11/cool-retro-term: Makefile 
	x11/kde-applications/gpgmepp: Makefile 
	x11/lumina     : Makefile 
	x11/polkit-qt  : Makefile 
	x11/py-qt5     : Makefile 
	x11/smplayer   : Makefile 
	x11/smtube     : Makefile 
Added files:
	x11/py-qt5/patches: patch-sip_QtCore_QtCoremod_sip 

Log message:
Adapt to new x11/qt5 layout, mostly REVISION bumps due to changed deps.

The devel/kf5 to be handled separately, please wait.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 07:37:20

Removed files:
	x11/qt5/qtwebengine: 
	                     patch-content_common_sandbox_init_openbsd_cc 
	                     patch-content_common_sandbox_init_openbsd_h 
	x11/qt5/qtwebengine/patches.chromium: patch-src_apps_apps_gypi 
	                                      patch-src_apps_ui_views_app_window_frame_view_cc 
	                                      patch-src_ash_display_mirror_window_controller_cc 
	                                      patch-src_base_atomicops_h 
	                                      patch-src_base_base_gypi 
	                                      patch-src_base_debug_debugger_posix_cc 
	                                      patch-src_base_debug_stack_trace_h 
	                                      patch-src_base_debug_stack_trace_posix_cc 
	                                      patch-src_base_message_loop_message_loop_cc 
	                                      patch-src_base_posix_unix_domain_socket_linux_cc 
	                                      patch-src_base_process_launch_h 
	                                      patch-src_base_process_memory_cc 
	                                      patch-src_base_process_process_handle_openbsd_cc 
	                                      patch-src_base_process_process_iterator_openbsd_cc 
	                                      patch-src_base_process_process_metrics_h 
	                                      patch-src_base_process_process_metrics_openbsd_cc 
	                                      patch-src_base_process_process_posix_cc 
	                                      patch-src_base_sys_info_openbsd_cc 
	                                      patch-src_base_sys_info_posix_cc 
	                                      patch-src_base_threading_platform_thread_linux_cc 
	                                      patch-src_base_threading_platform_thread_posix_cc 
	                                      patch-src_base_trace_event_process_memory_dump_cc 
	                                      patch-src_build_all_gyp 
	                                      patch-src_build_common_gypi 
	                                      patch-src_build_filename_rules_gypi 
	                                      patch-src_chrome_app_chrome_main_delegate_cc 
	                                      patch-src_chrome_app_chrome_main_delegate_h 
	                                      patch-src_chrome_app_chromium_strings_grd 
	                                      patch-src_chrome_app_generated_resources_grd 
	                                      patch-src_chrome_app_google_chrome_strings_grd 
	                                      patch-src_chrome_app_resources_locale_settings_grd 
	                                      patch-src_chrome_browser_about_flags_cc 
	                                      patch-src_chrome_browser_after_startup_task_utils_cc 
	                                      patch-src_chrome_browser_browser_resources_grd 
	                                      patch-src_chrome_browser_chrome_browser_main_cc 
	                                      patch-src_chrome_browser_chrome_browser_main_linux_cc 
	                                      patch-src_chrome_browser_chrome_browser_main_posix_cc 
	                                      patch-src_chrome_browser_chrome_content_browser_client_cc 
	                                      patch-src_chrome_browser_chrome_content_browser_client_h 
	                                      patch-src_chrome_browser_custom_handlers_protocol_handler_registry_cc 
	                                      patch-src_chrome_browser_defaults_cc 
	                                      patch-src_chrome_browser_download_chrome_download_manager_delegate_cc 
	                                      patch-src_chrome_browser_download_download_commands_cc 
	                                      patch-src_chrome_browser_download_download_commands_h 
	                                      patch-src_chrome_browser_download_download_prefs_cc 
	                                      patch-src_chrome_browser_download_download_prefs_h 
	                                      patch-src_chrome_browser_download_download_shelf_context_menu_cc 
	                                      patch-src_chrome_browser_download_download_status_updater_cc 
	                                      patch-src_chrome_browser_extensions_api_image_writer_private_image_writer_private_api_cc 
	                                      patch-src_chrome_browser_extensions_api_input_ime_input_ime_api_h 
	                                      patch-src_chrome_browser_extensions_api_messaging_message_service_cc 
	                                      patch-src_chrome_browser_extensions_api_music_manager_private_device_id_linux_cc 
	                                      patch-src_chrome_browser_extensions_api_omnibox_omnibox_api_cc 
	                                      patch-src_chrome_browser_extensions_bookmark_app_helper_cc 
	                                      patch-src_chrome_browser_extensions_browser_context_keyed_service_factories_cc 
	                                      patch-src_chrome_browser_extensions_external_provider_impl_cc 
	                                      patch-src_chrome_browser_first_run_first_run_internal_posix_cc 
	                                      patch-src_chrome_browser_gpu_gl_string_manager_cc 
	                                      patch-src_chrome_browser_gpu_gpu_feature_checker_cc 
	                                      patch-src_chrome_browser_interstitials_chrome_controller_client_cc 
	                                      patch-src_chrome_browser_media_galleries_fileapi_mtp_device_map_service_cc 
	                                      patch-src_chrome_browser_media_galleries_media_file_system_registry_cc 
	                                      patch-src_chrome_browser_media_webrtc_log_uploader_cc 
	                                      patch-src_chrome_browser_memory_details_cc 
	                                      patch-src_chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc 
	                                      patch-src_chrome_browser_net_async_dns_field_trial_cc 
	                                      patch-src_chrome_browser_notifications_message_center_notification_manager_cc 
	                                      patch-src_chrome_browser_platform_util_linux_cc 
	                                      patch-src_chrome_browser_process_singleton_posix_cc 
	                                      patch-src_chrome_browser_renderer_preferences_util_cc 
	                                      patch-src_chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                                      patch-src_chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc 
	                                      patch-src_chrome_browser_speech_tts_controller_impl_cc 
	                                      patch-src_chrome_browser_sync_chrome_sync_client_cc 
	                                      patch-src_chrome_browser_task_manager_task_manager_cc 
	                                      patch-src_chrome_browser_tracing_crash_service_uploader_cc 
	                                      patch-src_chrome_browser_ui_app_list_app_list_service_cc 
	                                      patch-src_chrome_browser_ui_ash_system_tray_delegate_common_cc 
	                                      patch-src_chrome_browser_ui_browser_command_controller_cc 
	                                      patch-src_chrome_browser_ui_browser_view_prefs_cc 
	                                      patch-src_chrome_browser_ui_exclusive_access_exclusive_access_bubble_cc 
	                                      patch-src_chrome_browser_ui_input_method_input_method_engine_base_cc 
	                                      patch-src_chrome_browser_ui_input_method_input_method_engine_h 
	                                      patch-src_chrome_browser_ui_panels_panel_manager_cc 
	                                      patch-src_chrome_browser_ui_startup_bad_flags_prompt_cc 
	                                      patch-src_chrome_browser_ui_startup_startup_browser_creator_cc 
	                                      patch-src_chrome_browser_ui_toolbar_app_menu_model_cc 
	                                      patch-src_chrome_browser_ui_views_accelerator_table_cc 
	                                      patch-src_chrome_browser_ui_views_app_list_linux_app_list_linux_cc 
	                                      patch-src_chrome_browser_ui_views_apps_chrome_native_app_window_views_aura_cc 
	                                      patch-src_chrome_browser_ui_views_ash_chrome_browser_main_extra_parts_ash_cc 
	                                      patch-src_chrome_browser_ui_views_chrome_views_delegate_cc 
	                                      patch-src_chrome_browser_ui_views_chrome_views_delegate_h 
	                                      patch-src_chrome_browser_ui_views_exclusive_access_bubble_views_cc 
	                                      patch-src_chrome_browser_ui_views_first_run_dialog_cc 
	                                      patch-src_chrome_browser_ui_views_frame_browser_frame_cc 
	                                      patch-src_chrome_browser_ui_views_frame_browser_view_cc 
	                                      patch-src_chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                                      patch-src_chrome_browser_ui_views_frame_opaque_browser_frame_view_layout_cc 
	                                      patch-src_chrome_browser_ui_views_frame_opaque_browser_frame_view_platform_specific_cc 
	                                      patch-src_chrome_browser_ui_views_frame_system_menu_model_builder_cc 
	                                      patch-src_chrome_browser_ui_views_message_center_message_center_frame_view_cc 
	                                      patch-src_chrome_browser_ui_views_panels_panel_frame_view_cc 
	                                      patch-src_chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                                      patch-src_chrome_browser_ui_views_tabs_tab_strip_cc 
	                                      patch-src_chrome_browser_ui_views_task_manager_view_cc 
	                                      patch-src_chrome_browser_ui_webui_about_ui_cc 
	                                      patch-src_chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                                      patch-src_chrome_browser_ui_webui_options_browser_options_handler_cc 
	                                      patch-src_chrome_browser_ui_webui_options_browser_options_handler_h 
	                                      patch-src_chrome_browser_web_applications_web_app_cc 
	                                      patch-src_chrome_browser_web_applications_web_app_h 
	                                      patch-src_chrome_chrome_browser_extensions_gypi 
	                                      patch-src_chrome_chrome_browser_gypi 
	                                      patch-src_chrome_chrome_browser_ui_gypi 
	                                      patch-src_chrome_chrome_common_gypi 
	                                      patch-src_chrome_chrome_exe_gypi 
	                                      patch-src_chrome_chrome_utility_gypi 
	                                      patch-src_chrome_common_chrome_paths_cc 
	                                      patch-src_chrome_common_chrome_paths_h 
	                                      patch-src_chrome_common_chrome_paths_internal_h 
	                                      patch-src_chrome_common_chrome_switches_cc 
	                                      patch-src_chrome_common_chrome_switches_h 
	                                      patch-src_chrome_common_extensions_api_schemas_gypi 
	                                      patch-src_chrome_common_extensions_command_cc 
	                                      patch-src_chrome_common_pref_names_cc 
	                                      patch-src_chrome_common_pref_names_h 
	                                      patch-src_chrome_common_url_constants_cc 
	                                      patch-src_chrome_common_url_constants_h 
	                                      patch-src_chrome_common_variations_fieldtrial_testing_config_gyp 
	                                      patch-src_chrome_policy_templates_gypi 
	                                      patch-src_chromecast_browser_cast_browser_main_parts_cc 
	                                      patch-src_components_audio_modem_modem_impl_cc 
	                                      patch-src_components_cookie_config_cookie_store_util_cc 
	                                      patch-src_components_metrics_drive_metrics_provider_linux_cc 
	                                      patch-src_components_metrics_gypi 
	                                      patch-src_components_neterror_resources_neterror_js 
	                                      patch-src_components_omnibox_browser_omnibox_field_trial_cc 
	                                      patch-src_components_policy_resources_policy_templates_json 
	                                      patch-src_components_policy_tools_generate_policy_source_py 
	                                      patch-src_components_storage_monitor_gypi 
	                                      patch-src_components_storage_monitor_storage_monitor_openbsd_cc 
	                                      patch-src_components_storage_monitor_storage_monitor_openbsd_h 
	                                      patch-src_content_app_content_main_runner_cc 
	                                      patch-src_content_browser_accessibility_browser_accessibility_h 
	                                      patch-src_content_browser_accessibility_browser_accessibility_manager_h 
	                                      patch-src_content_browser_browser_main_loop_cc 
	                                      patch-src_content_browser_child_process_launcher_cc 
	                                      patch-src_content_browser_devtools_protocol_color_picker_cc 
	                                      patch-src_content_browser_download_base_file_cc 
	                                      patch-src_content_browser_download_base_file_linux_cc 
	                                      patch-src_content_browser_gamepad_gamepad_provider_cc 
	                                      patch-src_content_browser_geolocation_location_arbitrator_impl_cc 
	                                      patch-src_content_browser_gpu_gpu_data_manager_impl_private_cc 
	                                      patch-src_content_browser_gpu_gpu_internals_ui_cc 
	                                      patch-src_content_browser_media_media_internals_cc 
	                                      patch-src_content_browser_power_usage_monitor_impl_cc 
	                                      patch-src_content_browser_ppapi_plugin_process_host_cc 
	                                      patch-src_content_browser_renderer_host_media_video_capture_device_client_cc 
	                                      patch-src_content_browser_renderer_host_render_process_host_impl_cc 
	                                      patch-src_content_browser_renderer_host_render_widget_host_impl_cc 
	                                      patch-src_content_browser_renderer_host_render_widget_host_view_aura_cc 
	                                      patch-src_content_browser_time_zone_monitor_cc 
	                                      patch-src_content_browser_utility_process_host_impl_cc 
	                                      patch-src_content_common_sandbox_init_openbsd_cc 
	                                      patch-src_content_common_sandbox_init_openbsd_h 
	                                      patch-src_content_common_set_process_title_linux_cc 
	                                      patch-src_content_common_set_process_title_linux_h 
	                                      patch-src_content_content_browser_gypi 
	                                      patch-src_content_content_common_gypi 
	                                      patch-src_content_content_renderer_gypi 
	                                      patch-src_content_gpu_gpu_main_cc 
	                                      patch-src_content_ppapi_plugin_ppapi_plugin_main_cc 
	                                      patch-src_content_public_common_content_switches_cc 
	                                      patch-src_content_public_common_content_switches_h 
	                                      patch-src_content_renderer_devtools_v8_sampling_profiler_cc 
	                                      patch-src_content_renderer_media_webrtc_audio_renderer_cc 
	                                      patch-src_content_renderer_render_thread_impl_cc 
	                                      patch-src_content_renderer_renderer_main_cc 
	                                      patch-src_content_renderer_renderer_main_platform_delegate_linux_cc 
	                                      patch-src_content_renderer_webscrollbarbehavior_impl_gtkoraura_cc 
	                                      patch-src_content_utility_utility_main_cc 
	                                      patch-src_dbus_property_cc 
	                                      patch-src_device_battery_battery_gyp 
	                                      patch-src_device_hid_hid_gyp 
	                                      patch-src_device_serial_serial_gyp 
	                                      patch-src_device_serial_serial_io_handler_posix_cc 
	                                      patch-src_device_serial_serial_service_impl_cc 
	                                      patch-src_extensions_browser_api_serial_serial_api_cc 
	                                      patch-src_gpu_config_gpu_info_collector_linux_cc 
	                                      patch-src_gpu_config_gpu_info_collector_linux_h 
	                                      patch-src_gpu_config_gpu_info_collector_x11_cc 
	                                      patch-src_gpu_gles2_conform_support_gles2_conform_support_gyp 
	                                      patch-src_gpu_gpu_config_gypi 
	                                      patch-src_gpu_gpu_ipc_service_gypi 
	                                      patch-src_gpu_tools_tools_gyp 
	                                      patch-src_ipc_ipc_message_utils_cc 
	                                      patch-src_ipc_ipc_message_utils_h 
	                                      patch-src_media_audio_audio_input_controller_cc 
	                                      patch-src_media_audio_audio_manager_cc 
	                                      patch-src_media_audio_audio_manager_h 
	                                      patch-src_media_base_video_frame_cc 
	                                      patch-src_media_base_video_frame_h 
	                                      patch-src_media_capture_video_fake_video_capture_device_factory_cc 
	                                      patch-src_media_capture_video_file_video_capture_device_factory_cc 
	                                      patch-src_media_capture_video_video_capture_device_cc 
	                                      patch-src_media_capture_video_video_capture_device_factory_cc 
	                                      patch-src_media_capture_video_video_capture_device_h 
	                                      patch-src_media_media_gyp 
	                                      patch-src_native_client_build_compiler_version_py 
	                                      patch-src_net_base_address_tracker_linux_h 
	                                      patch-src_net_base_network_change_notifier_cc 
	                                      patch-src_net_base_network_interfaces_posix_cc 
	                                      patch-src_net_disk_cache_blockfile_disk_format_h 
	                                      patch-src_net_dns_address_sorter_posix_cc 
	                                      patch-src_net_dns_dns_util_cc 
	                                      patch-src_net_dns_host_resolver_proc_cc 
	                                      patch-src_net_http_http_network_session_cc 
	                                      patch-src_net_net_common_gypi 
	                                      patch-src_net_net_gypi 
	                                      patch-src_net_proxy_proxy_config_service_linux_cc 
	                                      patch-src_net_proxy_proxy_service_cc 
	                                      patch-src_net_socket_socks5_client_socket_cc 
	                                      patch-src_net_tools_get_server_time_get_server_time_cc 
	                                      patch-src_net_udp_udp_socket_posix_cc 
	                                      patch-src_net_url_request_url_request_context_builder_cc 
	                                      patch-src_pdf_pdfium_pdfium_engine_cc 
	                                      patch-src_ppapi_shared_impl_private_net_address_private_impl_cc 
	                                      patch-src_printing_printing_gyp 
	                                      patch-src_remoting_remoting_all_gyp 
	                                      patch-src_remoting_remoting_host_gypi 
	                                      patch-src_skia_ext_SkMemory_new_handler_cpp 
	                                      patch-src_skia_skia_chrome_gypi 
	                                      patch-src_skia_skia_common_gypi 
	                                      patch-src_sync_util_get_session_name_cc 
	                                      patch-src_sync_util_get_session_name_linux_cc 
	                                      patch-src_third_party_WebKit_Source_bindings_core_v8_V8ScriptRunner_cpp 
	                                      patch-src_third_party_WebKit_Source_core_core_gyp 
	                                      patch-src_third_party_WebKit_Source_platform_blink_platform_gyp 
	                                      patch-src_third_party_WebKit_Source_platform_fonts_FontCache_cpp 
	                                      patch-src_third_party_WebKit_Source_platform_fonts_FontCache_h 
	                                      patch-src_third_party_WebKit_Source_platform_fonts_SimpleFontData_cpp 
	                                      patch-src_third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                                      patch-src_third_party_WebKit_Source_platform_heap_StackFrameDepth_cpp 
	                                      patch-src_third_party_WebKit_Source_platform_heap_ThreadState_cpp 
	                                      patch-src_third_party_WebKit_Source_platform_heap_ThreadState_h 
	                                      patch-src_third_party_WebKit_Source_platform_image-decoders_png_PNGImageDecoder_cpp 
	                                      patch-src_third_party_WebKit_Source_web_PopupMenuImpl_cpp 
	                                      patch-src_third_party_WebKit_Source_web_web_gyp 
	                                      patch-src_third_party_WebKit_Source_wtf_MathExtras_h 
	                                      patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_asm 
	                                      patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h 
	                                      patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_asm 
	                                      patch-src_third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h 
	                                      patch-src_third_party_ffmpeg_ffmpeg_generated_gypi 
	                                      patch-src_third_party_ffmpeg_ffmpeg_gyp 
	                                      patch-src_third_party_ffmpeg_libavcodec_x86_cabac_h 
	                                      patch-src_third_party_ffmpeg_libavutil_autorename_libavutil_cpu_c 
	                                      patch-src_third_party_ffmpeg_libavutil_cpu_c 
	                                      patch-src_third_party_ffmpeg_libavutil_mem_c 
	                                      patch-src_third_party_iccjpeg_iccjpeg_gyp 
	                                      patch-src_third_party_libXNVCtrl_NVCtrl_c 
	                                      patch-src_third_party_libXNVCtrl_libXNVCtrl_gyp 
	                                      patch-src_third_party_libjingle_libjingle_gyp 
	                                      patch-src_third_party_libjpeg_turbo_libjpeg_gyp 
	                                      patch-src_third_party_libphonenumber_dist_cpp_src_phonenumbers_base_memory_singleton_h 
	                                      patch-src_third_party_libphonenumber_dist_cpp_src_phonenumbers_base_synchronization_lock_h 
	                                      patch-src_third_party_libphonenumber_dist_cpp_src_phonenumbers_base_thread_checker_h 
	                                      patch-src_third_party_libusb_libusb_gyp 
	                                      patch-src_third_party_libusb_src_libusb_core_c 
	                                      patch-src_third_party_libyuv_libyuv_gyp 
	                                      patch-src_third_party_pdfium_build_standalone_gypi 
	                                      patch-src_third_party_pdfium_core_fxcrt_include_fx_system_h 
	                                      patch-src_third_party_pdfium_core_fxge_ge_fx_ge_linux_cpp 
	                                      patch-src_third_party_pdfium_fpdfsdk_javascript_JS_Value_cpp 
	                                      patch-src_third_party_pdfium_pdfium_gyp 
	                                      patch-src_third_party_pdfium_third_party_libopenjpeg20_opj_malloc_h 
	                                      patch-src_third_party_protobuf_src_google_protobuf_stubs_atomicops_h 
	                                      patch-src_third_party_protobuf_src_google_protobuf_stubs_strutil_h 
	                                      patch-src_third_party_skia_gyp_ports_gyp 
	                                      patch-src_third_party_skia_src_gpu_GrAutoLocaleSetter_h 
	                                      patch-src_third_party_skia_src_ports_SkOSFile_stdio_cpp 
	                                      patch-src_third_party_usrsctp_usrsctp_gyp 
	                                      patch-src_third_party_webrtc_base_base_gyp 
	                                      patch-src_third_party_webrtc_base_httpcommon_cc 
	                                      patch-src_third_party_webrtc_base_network_cc 
	                                      patch-src_third_party_webrtc_base_physicalsocketserver_cc 
	                                      patch-src_third_party_webrtc_base_platform_thread_cc 
	                                      patch-src_third_party_webrtc_base_stringutils_h 
	                                      patch-src_third_party_webrtc_build_common_gypi 
	                                      patch-src_third_party_webrtc_system_wrappers_source_atomic32_posix_cc 
	                                      patch-src_third_party_webrtc_system_wrappers_source_timestamp_extrapolator_cc 
	                                      patch-src_third_party_webrtc_voice_engine_voice_engine_defines_h 
	                                      patch-src_third_party_yasm_source_config_openbsd_config_h 
	                                      patch-src_third_party_yasm_source_config_openbsd_libyasm-stdint_h 
	                                      patch-src_tools_gyp_pylib_gyp_generator_make_py 
	                                      patch-src_tools_gyp_pylib_gyp_generator_ninja_py 
	                                      patch-src_ui_accessibility_accessibility_gyp 
	                                      patch-src_ui_accessibility_platform_ax_platform_node_h 
	                                      patch-src_ui_app_list_app_list_constants_cc 
	                                      patch-src_ui_app_list_app_list_constants_h 
	                                      patch-src_ui_app_list_app_list_menu_cc 
	                                      patch-src_ui_app_list_views_app_list_item_view_cc 
	                                      patch-src_ui_app_list_views_app_list_view_cc 
	                                      patch-src_ui_base_ime_ime_engine_handler_interface_h 
	                                      patch-src_ui_base_ime_input_method_factory_cc 
	                                      patch-src_ui_base_ime_input_method_initializer_cc 
	                                      patch-src_ui_base_resource_resource_bundle_cc 
	                                      patch-src_ui_base_ui_base_gyp 
	                                      patch-src_ui_base_webui_web_ui_util_cc 
	                                      patch-src_ui_events_devices_x11_device_data_manager_x11_cc 
	                                      patch-src_ui_events_event_switches_cc 
	                                      patch-src_ui_events_event_switches_h 
	                                      patch-src_ui_events_keycodes_dom_keycode_converter_cc 
	                                      patch-src_ui_gfx_canvas_skia_cc 
	                                      patch-src_ui_gfx_codec_png_codec_cc 
	                                      patch-src_ui_gfx_font_fallback_linux_cc 
	                                      patch-src_ui_gfx_font_render_params_h 
	                                      patch-src_ui_gfx_gfx_gyp 
	                                      patch-src_ui_gl_generate_bindings_py 
	                                      patch-src_ui_gl_gl_bindings_api_autogen_glx_h 
	                                      patch-src_ui_gl_gl_bindings_autogen_glx_cc 
	                                      patch-src_ui_gl_gl_bindings_autogen_glx_h 
	                                      patch-src_ui_gl_gl_gyp 
	                                      patch-src_ui_gl_gl_surface_glx_cc 
	                                      patch-src_ui_gl_sync_control_vsync_provider_cc 
	                                      patch-src_ui_message_center_message_center_style_h 
	                                      patch-src_ui_message_center_views_message_center_button_bar_cc 
	                                      patch-src_ui_message_center_views_message_center_button_bar_h 
	                                      patch-src_ui_message_center_views_message_center_view_cc 
	                                      patch-src_ui_message_center_views_notification_view_cc 
	                                      patch-src_ui_resources_ui_resources_grd 
	                                      patch-src_ui_touch_selection_ui_touch_selection_gyp 
	                                      patch-src_ui_views_accessibility_native_view_accessibility_h 
	                                      patch-src_ui_views_bubble_bubble_delegate_cc 
	                                      patch-src_ui_views_controls_button_label_button_cc 
	                                      patch-src_ui_views_controls_scrollbar_base_scroll_bar_cc 
	                                      patch-src_ui_views_controls_textfield_textfield_cc 
	                                      patch-src_ui_views_controls_webview_webview_gyp 
	                                      patch-src_ui_views_style_platform_style_cc 
	                                      patch-src_ui_views_views_delegate_cc 
	                                      patch-src_ui_views_views_delegate_h 
	                                      patch-src_ui_views_views_gyp 
	                                      patch-src_ui_views_views_switches_cc 
	                                      patch-src_ui_views_window_custom_frame_view_cc 
	                                      patch-src_ui_views_window_dialog_delegate_cc 
	                                      patch-src_ui_webui_resources_js_cr_js 
	                                      patch-src_ui_webui_resources_js_util_js 
	                                      patch-src_v8_src_base_platform_platform-openbsd_cc 
	                                      patch-src_v8_src_base_platform_platform-posix_cc 
	                                      patch-src_v8_src_globals_h 
	                                      patch-src_v8_src_log-utils_h 

Log message:
Oops, remove WIP files that should be left in openbsd-wip.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/25 07:38:55

Modified files:
	lib/libcrypto/man: d2i_DSAPublicKey.3 

Log message:
Clarify what DSAparams_dup(3) does.
Add STANDARDS references.
Add cross references to manual pages documenting conversion functions
that are used by the functions documented here.
Mark up the names of custom ASN.1 datatypes that are defined in
standards with .Vt, allowing to search for them.
Do not mark up basic ASN.1 data types.  They stand out by being ALL
CAPS anyway, and searching for them would be pointless.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 07:54:49

Modified files:
	devel/kf5      : Makefile Makefile.inc kf5.port.mk 
	devel/kf5/attica: distinfo 
	devel/kf5/attica/pkg: PLIST 
	devel/kf5/baloo: Makefile 
	devel/kf5/baloo/pkg: PLIST 
	devel/kf5/bluez-qt: Makefile distinfo 
	devel/kf5/breeze-icons: Makefile distinfo 
	devel/kf5/breeze-icons/pkg: PLIST 
	devel/kf5/extra-cmake-modules: Makefile distinfo 
	devel/kf5/extra-cmake-modules/patches: 
	                                       patch-kde-modules_KDECompilerSettings_cmake 
	devel/kf5/extra-cmake-modules/pkg: PLIST 
	devel/kf5/frameworkintegration: Makefile distinfo 
	devel/kf5/frameworkintegration/pkg: PLIST 
	devel/kf5/kactivities: Makefile distinfo 
	devel/kf5/kactivities/pkg: PLIST 
	devel/kf5/kactivities-stats: Makefile distinfo 
	devel/kf5/kapidox: Makefile distinfo 
	devel/kf5/kapidox/patches: patch-setup_py 
	devel/kf5/kapidox/pkg: PLIST 
	devel/kf5/karchive: Makefile distinfo 
	devel/kf5/kauth: Makefile distinfo 
	devel/kf5/kauth/pkg: PLIST 
	devel/kf5/kbookmarks: Makefile distinfo 
	devel/kf5/kcmutils: Makefile distinfo 
	devel/kf5/kcodecs: Makefile distinfo 
	devel/kf5/kcompletion: Makefile distinfo 
	devel/kf5/kconfig: Makefile distinfo 
	devel/kf5/kconfigwidgets: Makefile distinfo 
	devel/kf5/kcoreaddons: Makefile distinfo 
	devel/kf5/kcoreaddons/pkg: PLIST 
	devel/kf5/kcrash: Makefile distinfo 
	devel/kf5/kdbusaddons: Makefile distinfo 
	devel/kf5/kdbusaddons/pkg: PLIST 
	devel/kf5/kdeclarative: Makefile distinfo 
	devel/kf5/kdeclarative/pkg: PLIST 
	devel/kf5/kded : Makefile distinfo 
	devel/kf5/kdelibs4support: Makefile distinfo 
	devel/kf5/kdelibs4support/pkg: PLIST 
	devel/kf5/kdesignerplugin: Makefile distinfo 
	devel/kf5/kdesu: Makefile distinfo 
	devel/kf5/kdesu/pkg: PLIST 
	devel/kf5/kdewebkit: Makefile distinfo 
	devel/kf5/kdnssd: Makefile distinfo 
	devel/kf5/kdoctools: distinfo 
	devel/kf5/kdoctools/pkg: PLIST 
	devel/kf5/kemoticons: Makefile distinfo 
	devel/kf5/kemoticons/pkg: PLIST 
	devel/kf5/kfilemetadata: Makefile distinfo 
	devel/kf5/kfilemetadata/pkg: PLIST-main 
	devel/kf5/kglobalaccel: Makefile distinfo 
	devel/kf5/kglobalaccel/pkg: PLIST 
	devel/kf5/kguiaddons: Makefile distinfo 
	devel/kf5/khtml: Makefile distinfo 
	devel/kf5/khtml/pkg: PLIST 
	devel/kf5/ki18n: Makefile distinfo 
	devel/kf5/ki18n/pkg: PLIST 
	devel/kf5/kiconthemes: Makefile distinfo 
	devel/kf5/kidletime: Makefile distinfo 
	devel/kf5/kidletime/pkg: PLIST 
	devel/kf5/kimageformats: Makefile distinfo 
	devel/kf5/kinit: Makefile distinfo 
	devel/kf5/kio  : Makefile distinfo 
	devel/kf5/kio/pkg: PLIST 
	devel/kf5/kitemmodels: Makefile distinfo 
	devel/kf5/kitemviews: Makefile distinfo 
	devel/kf5/kjobwidgets: Makefile distinfo 
	devel/kf5/kjs  : Makefile distinfo 
	devel/kf5/kjsembed: Makefile distinfo 
	devel/kf5/kmediaplayer: Makefile distinfo 
	devel/kf5/knewstuff: Makefile distinfo 
	devel/kf5/knewstuff/pkg: PLIST 
	devel/kf5/knotifications: Makefile distinfo 
	devel/kf5/knotifyconfig: Makefile distinfo 
	devel/kf5/kpackage: Makefile distinfo 
	devel/kf5/kpackage/pkg: PLIST 
	devel/kf5/kparts: Makefile distinfo 
	devel/kf5/kparts/pkg: PLIST 
	devel/kf5/kpeople: Makefile distinfo 
	devel/kf5/kpeople/pkg: PLIST 
	devel/kf5/kplotting: Makefile distinfo 
	devel/kf5/kpty : Makefile distinfo 
	devel/kf5/kross: Makefile distinfo 
	devel/kf5/kross/pkg: PLIST 
	devel/kf5/krunner: Makefile distinfo 
	devel/kf5/kservice: Makefile distinfo 
	devel/kf5/ktexteditor: Makefile distinfo 
	devel/kf5/ktexteditor/pkg: PLIST 
	devel/kf5/ktextwidgets: Makefile distinfo 
	devel/kf5/kunitconversion: Makefile distinfo 
	devel/kf5/kwallet: Makefile distinfo 
	devel/kf5/kwallet/patches: 
	                           patch-src_runtime_kwalletd_backend_blowfish_cc 
	devel/kf5/kwallet/pkg: PLIST 
	devel/kf5/kwidgetsaddons: Makefile distinfo 
	devel/kf5/kwindowsystem: Makefile distinfo 
	devel/kf5/kwindowsystem/pkg: PLIST 
	devel/kf5/kxmlgui: Makefile distinfo 
	devel/kf5/kxmlrpcclient: distinfo 
	devel/kf5/oxygen-icons: distinfo 
	devel/kf5/oxygen-icons/pkg: PLIST 
	devel/kf5/plasma-framework: Makefile distinfo 
	devel/kf5/plasma-framework/pkg: PLIST 
	devel/kf5/solid: Makefile distinfo 
	devel/kf5/sonnet: Makefile distinfo 
	devel/kf5/sonnet/pkg: PLIST-main 
	devel/kf5/threadweaver: Makefile distinfo 
Removed files:
	devel/kf5/kdelibs4support/patches: 
	                                   patch-docs_kcm_ssl_CMakeLists_txt 
	                                   patch-src_kssl_kcm_kcm_ssl_desktop 

Log message:
Update KDE Frameworks to 5.29.0 and sync with Qt5.

A few tweaks are coming, but things should build at least for now.

Most work done from Rafael Sadowski, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 07:55:47

Added files:
	devel/kf5/kwallet/patches: patch-tests_kwalletd_CMakeLists_txt 
	                           patch-src_runtime_kwalletd_CMakeLists_txt 
	devel/kf5/kdelibs4support/patches: patch-docs_CMakeLists_txt 

Log message:
Patches missed to be committed together with KF5 5.29.0 update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:10:27

Modified files:
	comms/qtserialport: Makefile 
	comms/qtserialport/pkg: PLIST 

Log message:
Allow side-by-side installation with qtserialport 5.6+.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:11:47

Modified files:
	audio/xmms2-scrobbler: Makefile 
	audio/xmms2-scrobbler/pkg: DESCR 

Log message:
Fix trailing line in DESCR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:14:25

Modified files:
	x11/pinot      : Makefile 
	x11/pinot/pkg  : PLIST 

Log message:
Add missing @sample lines.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:23:21

Modified files:
	textproc/catdoc: Makefile 
	textproc/catdoc/pkg: DESCR-tk 
Removed files:
	textproc/catdoc/pkg: MESSAGE-main 

Log message:
No need to mention that tk FLAVOR moved to a subpackage on each update.

Fix case and missing dot in pkg/DESCR-tk while there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:31:34

Modified files:
	net/sirc       : Makefile 

Log message:
Move NO_TEST above targets, and clarify GPL version in license marker.

No bump is necessary.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:38:45

Modified files:
	devel/p5-Catalyst-Manual: Makefile 
Added files:
	devel/p5-Catalyst-Manual/patches: 
	                                  patch-lib_Catalyst_Manual_Deployment_Apache_FastCGI_pod 
	                                  patch-lib_Catalyst_Manual_Deployment_DevelopmentServer_pod 
	                                  patch-lib_Catalyst_Manual_Tutorial_09_AdvancedCRUD_09_FormBuilder_pod 

Log message:
Stop polluting whatis database due to mailformed SYNOPSIS sections.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:42:09

Modified files:
	databases/p5-DBIx-Class: Makefile 
Added files:
	databases/p5-DBIx-Class/patches: 
	                                 patch-lib_DBIx_Class_Manual_Troubleshooting_pod 

Log message:
Don't pollute the whatis database due to mailformed SYNOPSIS section.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 08:47:12

Modified files:
	meta           : Makefile 

Log message:
Hook up meta/qt5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 09:10:43

Modified files:
	devel/p5-Catalyst-Manual/patches: 
	                                  patch-lib_Catalyst_Manual_Tutorial_09_AdvancedCRUD_09_FormBuilder_pod 

Log message:
Oops, fix the patch.

Found by schwarze@, who also okayed the diff, and who's mail was eaten by
gmail's spam folder.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 09:23:58

Modified files:
	x11/qrfcview   : Makefile distinfo 
	x11/qrfcview/pkg: PLIST 

Log message:
Upstream kindly rolled a release, so use it instead of commit.

Add @bin marker while there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 09:29:16

Modified files:
	x11/kde4/pim   : Makefile 
	x11/kde4/pim/pkg: PLIST 

Log message:
Remove icons already provided by modern oxygen-icons.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 09:33:01

Modified files:
	x11/kde4/libs  : Makefile 
	x11/kde4/libs/patches: patch-kdesu_su_cpp 

Log message:
Switch kdesu from sudo to doas.

Fix oxygen-icons dependency while there.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/25 09:35:07

Modified files:
	usr.sbin/amd/rpcx: nfs_prot_xdr.c 

Log message:
Regenerate with -current rpcgen, eliminating "unused variable 'i'"
warning.

ok millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 09:35:32

Modified files:
	x11/kde4       : Makefile 

Log message:
Unhook x11/kde4/oxygen-icons in favor of devel/kf5/oxygen-icons.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 09:35:59

Removed files:
	x11/kde4/oxygen-icons: Makefile distinfo 
	x11/kde4/oxygen-icons/pkg: DESCR PLIST 

Log message:
Bye-bye one more KDE4 package.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/25 09:38:08

Added files:
	x11/kde4/libs/patches: patch-kdesu_CMakeLists_txt 

Log message:
Oops, missed patch for doas in kdesu.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/25 09:40:06

Modified files:
	usr.bin/lex    : main.c 
	usr.sbin/mopd/common: dl.c 
	usr.sbin/mrouted: prune.c 

Log message:
Add some {}'s to eliminate "ambiguous else" warnings from gcc.

ok tb@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/25 09:43:11

Modified files:
	net/wol        : Makefile 
	net/wol/pkg    : DESCR 

Log message:
Drop the gettext module

Also:
- tighten license marker
- kill trailing whitespace in DESCR


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/25 09:49:01

Modified files:
	net/wmwave/patches: patch-wmwave_wmwave_c 

Log message:
Regen patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/25 09:49:12

Modified files:
	net/wmwave     : Makefile 

Log message:
Standard Makefile layout


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/25 10:02:25

Modified files:
	net/wide-dhcpv6: Makefile 

Log message:
Add license marker


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/25 10:05:59

Modified files:
	lib/libcrypto/man: d2i_ECPKParameters.3 

Log message:
Basic cleanup to prepare for content improvements:
Use the same parameter names as in ASN1_item_d2i(3).
Point to ASN1_item_d2i(3) for details.
Delete lots of rendundant text.

While here, add ten missing functions found in OpenSSL doc/man3/d2i_X509.pod
and fix errors in the prototypes of i2d_ECPKParameters_bio(3)
and i2d_ECPKParameters_fp(3).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/25 10:08:51

Modified files:
	net/vicq       : Makefile 

Log message:
Add license marker


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/25 11:39:35

Modified files:
	lib/libcrypto/man: d2i_ECPKParameters.3 

Log message:
Correct the DESCRIPTION of ECParameters_dup(3).
Clarify requirements for o2i_ECPublicKey(3).
Add STANDARDS references for d2i_ECPrivateKey(3) and d2i_EC_PUBKEY(3).
Trim some excessive cross references that are only tangentially
related and add some more relevant ones instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/25 13:01:48

Modified files:
	lib/libcrypto/man: d2i_PrivateKey.3 

Log message:
Add missing functions d2i_PublicKey(3) and i2d_PublicKey(3)
found in OpenSSL doc/man3/d2i_X509.pod.
Simplify one-line description.
Use the same parameter names as in ASN1_item_d2i(3).
Point to ASN1_item_d2i(3) for details.
Add a STANDRADS reference regarding PKCS#8 PrivateKeyInfo.
Mention d2i_PrivateKey_bio(3) and d2i_PrivateKey_fp(3)
in the DESCRIPTION and below RETURN VALUES.
Add some missing markup and tweak some wording.
Add some cross references.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/25 13:30:41

Modified files:
	lib/libc/gen   : nlist.c 
	sbin/ifconfig  : ifconfig.c 
	games/adventure: main.c 

Log message:
gcc says "if you define labels and don't use them, I will whine."

ok tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2016/12/25 14:13:04

Modified files:
	productivity/homebank: Makefile distinfo 
	productivity/homebank/patches: patch-configure 
	                               patch-po_POTFILES_in 
	productivity/homebank/pkg: PLIST 

Log message:
update to 5.1.2, changelog can be found here http://homebank.free.fr/ChangeLog

with hint from zhuk

ok ajacoutot


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/25 14:13:35

Modified files:
	mail/exim      : Makefile distinfo 
	mail/exim/patches: patch-scripts_exim_install 
Removed files:
	mail/exim/patches: patch-src_tls-openssl_c 

Log message:
security update to exim-4.88, changelog includes

JH/27 Fix a possible security hole, wherein a process operating with the Exim
UID can gain a root shell.  Credit to http://www.halfdog.net/ for
discovery and writeup.  Ubuntu bug 1580454; no bug raised against Exim
itself :(

JH/34 SECURITY: Use proper copy of DATA command in error message.
Could leak key material.  Remotely explaoitable.  CVE-2016-9963.

whoever decided to have an embargo period ending on 25 December: this was
not a particularly good idea


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/25 14:53:13

Modified files:
	archivers/zstd : Makefile distinfo 
	archivers/zstd/patches: patch-tests_playTests_sh 
	archivers/zstd/pkg: PLIST 

Log message:
Update to zstd 1.1.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/25 15:15:10

Modified files:
	lib/libcrypto/man: ACCESS_DESCRIPTION_new.3 ASN1_STRING_length.3 
	                   ASN1_generate_nconf.3 AUTHORITY_KEYID_new.3 
	                   BASIC_CONSTRAINTS_new.3 DIST_POINT_new.3 
	                   ESS_SIGNING_CERT_new.3 EVP_EncryptInit.3 
	                   EVP_PKEY_CTX_ctrl.3 EXTENDED_KEY_USAGE_new.3 
	                   GENERAL_NAME_new.3 NAME_CONSTRAINTS_new.3 
	                   OCSP_CRLID_new.3 OCSP_REQUEST_new.3 
	                   OCSP_SERVICELOC_new.3 OCSP_cert_to_id.3 
	                   OCSP_resp_find_status.3 
	                   OCSP_response_status.3 
	                   PEM_read_bio_PrivateKey.3 
	                   PKCS12_SAFEBAG_new.3 PKCS12_new.3 PKCS7_new.3 
	                   PKCS8_PRIV_KEY_INFO_new.3 
	                   PKEY_USAGE_PERIOD_new.3 POLICYINFO_new.3 
	                   PROXY_POLICY_new.3 RSA_PSS_PARAMS_new.3 
	                   TS_REQ_new.3 X509_ALGOR_dup.3 X509_CINF_new.3 
	                   X509_CRL_new.3 X509_EXTENSION_set_object.3 
	                   X509_NAME_ENTRY_get_object.3 
	                   X509_NAME_add_entry_by_txt.3 
	                   X509_NAME_get_index_by_NID.3 X509_NAME_new.3 
	                   X509_NAME_print_ex.3 X509_PUBKEY_new.3 
	                   X509_REQ_new.3 X509_REVOKED_new.3 
	                   X509_SIG_new.3 X509_STORE_CTX_get_error.3 
	                   X509_new.3 d2i_RSAPublicKey.3 
	                   d2i_X509_ALGOR.3 d2i_X509_NAME.3 
	                   d2i_X509_SIG.3 x509v3.cnf.5 

Log message:
Consistently mark up various ASN.1 type names defined in standards
related to X.509 with .Vt such that they can be searched for.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 00:45:29

Modified files:
	x11/qt3        : qt3.port.mk 

Log message:
Pure style tweaking of qt3.port.mk, putting it in line with its colleagues.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 01:24:25

Modified files:
	devel/bouml    : Makefile 

Log message:
Convert to qmake.port.mk, shaves 2 lines from Makefile.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 01:47:45

Modified files:
	security/qca   : Makefile 

Log message:
Switch to devel/qmake, shaves 5 lines from Makefile.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 01:55:05

Modified files:
	x11/qt3        : Makefile 
	x11/qt3/patches: patch-qmake_generators_unix_unixmake2_cpp 

Log message:
Don't create shlib symlinks on OpenBSD.

Allows to switch security/qca to devel/qmake.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2016/12/26 01:55:09

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Pass through cacheline size information to guest. This was pointed out
to me by Christian Barthel who was encountering failures running Java
on amd64 vmm(4) guests. Apparently Java queries the cacheline info
and if we report "0", Java aborts.

Verified on amd64 vmm(4) guest.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 02:04:25

Modified files:
	security/qca-tls: Makefile 

Log message:
Convert to devel/qmake, shaving 2 lines from Makefile.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 02:14:29

Modified files:
	graphics/k3dsurf: Makefile 
	graphics/k3dsurf/pkg: PLIST 
Removed files:
	graphics/k3dsurf/patches: patch-src_src_pro 

Log message:
Convert to qmake.port.mk, shaving 7 lines from Makefile and not needed
anymore patch. The qmake.port.mk takes care of CXXFLAGS already.

As a bonus, add @bin marker in PLIST, thus REVISION bump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 02:24:49

Modified files:
	databases/qt3-sqlite3-plugin: Makefile 

Log message:
Switch to qmake.port.mk, shaving 4 lines from Makefile.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/26 02:29:21

Modified files:
	graphics/ffmpeg: Makefile 
Added files:
	graphics/ffmpeg/patches: patch-doc_muxers_texi 

Log message:
doc/muxers: remove "-strict experimental" from tee muxer examples

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/26 02:30:19

Modified files:
	www/lighttpd   : Makefile 
	www/lighttpd/pkg: DESCR 

Log message:
tweak DESCR.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2016/12/26 02:59:16

Modified files:
	net/syncthing  : Makefile distinfo 

Log message:
Update syncthing to 0.14.16.

Tested by awolk@ and Dimitris Papastamos.

OK awolk@, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/26 03:33:15

Modified files:
	mail/geary     : Makefile distinfo 
	mail/geary/pkg : PLIST 
Removed files:
	mail/geary/patches: 
	                    patch-src_client_application_geary-application_vala 
	                    patch-src_client_components_conversation-find-bar_vala 
	                    patch-src_client_dialogs_attachment-dialog_vala 
	                    patch-src_console_main_vala 

Log message:
Update to geary 0.11.3, prodded by ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/26 05:33:08

Modified files:
	net/apache-activemq: Makefile distinfo 
	net/apache-activemq/pkg: PLIST 

Log message:
update to apache-activemq-5.14.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 05:38:07

Modified files:
	archivers/quazip: Makefile 
	archivers/quazip/pkg: PLIST 

Log message:
Add Qt5 support to quazip, needed for upcoming port.

Also, tests do not require package installation first.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 05:38:36

Modified files:
	archivers      : Makefile 

Log message:
Hookup quazip,qt5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/26 05:48:20

Modified files:
	graphics/birdfont: Makefile distinfo 

Log message:
update to birdfont-2.18.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/26 06:21:46

Modified files:
	www/jupyter-notebook: Makefile distinfo 
	www/jupyter-notebook/pkg: PLIST 

Log message:
Security update to jupyter-notebook 4.3.1.
CVE-2016-9971. Fix CSRF vulnerability

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 06:49:39

Modified files:
	games/instead  : Makefile distinfo 
	games/instead/pkg: PLIST 

Log message:
Update Instead to 2.4.1.

The patch was sitting in my tree for a while...


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/26 06:52:46

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-configure 
	                   patch-src_librustc_back_target_i686_unknown_openbsd_rs 
	                   patch-src_librustc_back_target_mod_rs 
	                   patch-src_librustc_back_target_openbsd_base_rs 
	                   patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_ext_net_rs 
	                   patch-src_libstd_sys_unix_os_rs 
	                   patch-src_test_run-pass_backtrace_rs 
	                   patch-src_tools_compiletest_src_runtest_rs 
	                   patch-src_tools_tidy_src_main_rs 
	lang/rust/pkg  : PLIST-doc PLIST-main 

Log message:
update rust to 1.14.0, from MAINTAINER semarie@

for details, please see https://blog.rust-lang.org/2016/12/22/Rust-1.14.html

tested on i386 w/ llvm 3.9.0 here, and sebastien tested both amd64 & i386.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/26 06:55:11

Modified files:
	devel/cargo    : Makefile distinfo 
	devel/cargo/patches: patch-tests_cargotest_support_paths_rs 
Added files:
	devel/cargo    : cargo.port.mk 
	devel/cargo/patches: patch-Makefile_in 
	                     patch-modcargo-crates_libc-0_2_18_src_unix_bsd_netbsdlike_openbsdlike_mod_rs 

Log message:
Enable cargo on i386, from MAINTAINER semarie@

- provide a new cargo MODULE for ports based on cargo (documentation pending)
- convert cargo itself to use this module

tested on i386 here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/26 06:56:04

Modified files:
	databases/postgresql: Makefile 

Log message:
Base gcc does not have atomic builtins on arm.  Instead of disabling
spinlocks build with ports gcc for now to get the atomic builtins.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/26 07:01:21

Modified files:
	sys/arch/armv7/imx: imxccm.c 

Log message:
Fix typo.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 07:22:02

Modified files:
	games/instead  : Makefile 

Log message:
Sync HOMEPAGE and MASTER_SITES with reality.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/12/26 07:53:05

Modified files:
	multimedia/daala: Makefile distinfo 

Log message:
Update to daala git head as of 2016-12-20


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2016/12/26 07:53:25

Modified files:
	telephony/baresip: Makefile.inc 
	telephony/baresip/baresip: Makefile distinfo 
	telephony/baresip/baresip/patches: patch-src_config_c 
	telephony/baresip/baresip/pkg: PLIST-gtk2 PLIST-main 

Log message:
Update to baresip 0.5.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/26 08:24:03

Modified files:
	regress/lib/libssl/asn1: asn1test.c 

Log message:
Ensure that after an i2d_SSL_SESSION() call, the passed pointer now points
to the end of the buffer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 08:26:01

Modified files:
	devel/qt-creator: Makefile distinfo 
	devel/qt-creator/patches: patch-doc_doc_pri 
	devel/qt-creator/pkg: PLIST 
Added files:
	devel/qt-creator/patches: 
	                          patch-src_libs_utils_buildablehelperlibrary_cpp 
	                          patch-src_plugins_projectexplorer_gcctoolchain_cpp 
	                          patch-src_plugins_qmakeprojectmanager_qmakebuildconfiguration_cpp 
	                          patch-src_shared_qbs_src_lib_corelib_tools_processutils_cpp 
	                          patch-src_shared_qbs_src_lib_corelib_tools_tools_pri 
Removed files:
	devel/qt-creator/patches: 
	                          patch-src_libs_cplusplus_TypePrettyPrinter_cpp 
	                          patch-src_libs_extensionsystem_extensionsystem_pro 
	                          patch-src_libs_utils_process_stub_unix_c 
	                          patch-src_plugins_debugger_debuggerrunner_h 
	                          patch-src_plugins_help_helpplugin_cpp 
	                          patch-src_plugins_projectexplorer_environment_cpp 
	                          patch-src_plugins_projectexplorer_toolchain_cpp 
	                          patch-src_qtcreatorplugin_pri 

Log message:
Nobody loves you, qt-creator, except three people: Caspar Schutijser,
Rafael Sadowski and me.

So lets move on and put it in. Nowadays there is no point in having
a separate qt-creator with support for older Qt's, and 4.1.0 works
with egdb at least.

Most of the work was done by Caspar, last rollup from Rafael, commit by me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 08:27:26

Log message:
    Import Instead Launcher, a package manager for Instead game engine.
    
    okay kirby@
    
    Status:
    
    Vendor Tag:	zhuk
    Release Tags:	zhuk_20161226
    
    N ports/games/instead-launcher/Makefile
    N ports/games/instead-launcher/distinfo
    N ports/games/instead-launcher/patches/patch-qunzip_cpp
    N ports/games/instead-launcher/pkg/DESCR
    N ports/games/instead-launcher/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 08:27:54

Modified files:
	games          : Makefile 

Log message:
Link in instead-launcher.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/26 08:28:42

Modified files:
	lib/libssl     : ssl_asn1.c 

Log message:
Restore previous behaviour of incrementing the pointer so that it points
at the end of the buffer.

Issue identified by and diff from Kazuki Yamaguchi <k at rhe.jp>.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/26 08:31:38

Modified files:
	regress/lib/libssl/asn1: asn1test.c 

Log message:
Extend regress to include a peer certificate in the session.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/26 08:34:01

Modified files:
	lib/libssl     : ssl_asn1.c 

Log message:
Restore previous ASN.1 encoding for the peer certificate - this was
unintentionally changed during the CBS/CBB rewrite.

Issue reported by jeremy@ due to failing ruby tests.

Analysis and near identical diff from Kazuki Yamaguchi <k at rhe.jp>.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/26 08:36:18

Modified files:
	lib/libcrypto/man: ASN1_item_d2i.3 

Log message:
describe what happens for val_out == NULL and for der_out == NULL


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/26 09:20:58

Modified files:
	lib/libtls     : tls.c tls_client.c 

Log message:
Hook up a certificate verify callback so that we can set user friendly
error messages, instead of libssl error strings. This gives us messages
like:

certificate verification failed: certificate has expired

Instead of:

14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

This also lets us always enable peer verification since the no verification
case is now handled via the callback.

Tested by tedu@

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/26 09:33:51

Modified files:
	lib/libssl     : s3_clnt.c 

Log message:
Restore two frees that were unintentionally lost during recent refactoring.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/26 09:36:34

Modified files:
	lib/libcrypto/man: d2i_RSAPublicKey.3 

Log message:
Basic cleanup:
Simplify one-line description.
List each function with the correct header file.
Use the same parameter names as in ASN1_item_d2i(3).
Point to ASN1_item_d2i(3) for details.
Sort the text.
Add some useful cross references.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/26 09:52:25

Modified files:
	lib/libcrypto/man: d2i_RSAPublicKey.3 

Log message:
add eight missing functions found in OpenSSL doc/man3/d2i_X509.pod


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/26 10:19:23

Modified files:
	lib/libcrypto/man: d2i_RSAPublicKey.3 

Log message:
Document d2i_RSA_PSS_PARAMS(3) and i2d_RSA_PSS_PARAMS(3)
found in OpenSSL doc/man3/d2i_X509.pod.
Add STANDARDS references.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/26 10:38:14

Modified files:
	sys/arch/macppc/dev: pm_direct.c 
	sys/dev/ic     : wd33c93.c 
	sys/dev/pci    : cs4280.c 
	usr.sbin/ospfd : lsupdate.c 

Log message:
Fix typo, happend -> happened


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/26 11:04:45

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_PKCS12.3 

Log message:
Write the missing d2i_PKCS12(3) manual page from scratch.
It is already referenced from some other manuals.
All these functions are listed in <openssl/pkcs12.h>
and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/26 11:52:51

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_PKCS7.3 

Log message:
Write the missing d2i_PKCS7(3) manual page from scratch.
It is already referenced by one other manual page.
All these functions are listed in <openssl/pkcs7.h>
and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/26 11:59:22

Modified files:
	x11/qt5/qtenginio: Makefile 

Log message:
Fixup previous, tarball doesnt fetch..


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2016/12/26 12:04:32

Modified files:
	editors/libreoffice: Makefile distinfo 
	editors/libreoffice/pkg: PLIST-main 

Log message:
update to 5.2.4.2


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/26 12:15:47

Modified files:
	lib/libcrypto/man: d2i_PKCS7.3 

Log message:
also document the weird i2d_PKCS7_NDEF(3)
listed in <openssl/pkcs7.h> and OpenSSL doc/man3/d2i_X509.pod


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:36:56

ports/lang/python/3.6

Update of /cvs/ports/lang/python/3.6
In directory cvs.openbsd.org:/tmp/cvs-serv41747/3.6

Log Message:
Directory /cvs/ports/lang/python/3.6 added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/26 12:37:04

Modified files:
	x11/qt5        : Makefile.inc 
	x11/qt5/qtenginio: Makefile 

Log message:
Fix version handling in x11/qt5, issue found hard way by landry@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:37:06

ports/lang/python/3.6/files

Update of /cvs/ports/lang/python/3.6/files
In directory cvs.openbsd.org:/tmp/cvs-serv40557/3.6/files

Log Message:
Directory /cvs/ports/lang/python/3.6/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:37:06

ports/lang/python/3.6/patches

Update of /cvs/ports/lang/python/3.6/patches
In directory cvs.openbsd.org:/tmp/cvs-serv40557/3.6/patches

Log Message:
Directory /cvs/ports/lang/python/3.6/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:37:06

ports/lang/python/3.6/pkg

Update of /cvs/ports/lang/python/3.6/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv40557/3.6/pkg

Log Message:
Directory /cvs/ports/lang/python/3.6/pkg added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:40:12

Added files:
	lang/python/3.6: Makefile distinfo 
	lang/python/3.6/files: CHANGES.OpenBSD 
	lang/python/3.6/patches: patch-Lib_test_test_locale_py 
	                         patch-Makefile_pre_in 
	                         patch-Python_random_c 
	                         patch-configure_ac patch-setup_py 
	lang/python/3.6/pkg: DESCR-gdbm DESCR-idle DESCR-main 
	                     DESCR-tests DESCR-tkinter PLIST-gdbm 
	                     PLIST-idle PLIST-main PLIST-tests 
	                     PLIST-tkinter 

Log message:
add python 3.6.
ok shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:41:45

Modified files:
	lang/python    : Makefile.inc 

Log message:
adapt ALL_TARGET for Python 3.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:42:49

Modified files:
	lang/python    : Makefile 

Log message:
link Python 3.6 to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/26 12:48:47

Modified files:
	lang/python    : python.port.mk 

Log message:
add the possibility to use 3.6 version for a port.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/26 14:30:10

Modified files:
	lib/libcrypto/des: fcrypt.c 
	regress/usr.sbin/ospfd: Client.pm 
	sys/arch/arm64/arm64: trap.c 
	sys/netinet    : tcp_usrreq.c 
	sys/netinet6   : ip6_input.c 
	usr.sbin/bgpd  : parse.y 

Log message:
Typo, "more then" -> "more than"


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/26 16:23:57

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
When calculating the set of MCS rates below a particular MCS, skip rates
which are not supported by both peers, as already done elsewhere.
ok phessler@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2016/12/26 16:25:11

Modified files:
	sys/net80211   : ieee80211_proto.c 

Log message:
Allow using 11n mode with APs that do not advertise support for all of MCS 0-7.
ok phessler@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/26 16:43:52

Modified files:
	bin/pax        : options.c tables.c 
	sbin/restore   : tape.c 

Log message:
Put some variable declarations under appropriate #if/#endif protection
so gcc doesn't complain about defining but not using them.

typo correction & ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/26 18:55:33

Modified files:
	games/ioquake3 : Makefile 
	games/ioquake3/pkg: PLIST 

Log message:
stop installing object files
ok awolk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/12/26 19:34:37

Log message:
    Import devel/p5-CPAN-Meta-Check 0.013
    
    This module verifies if requirements described in a CPAN::Meta
    object are present.
    
    OK bluhm@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20161226
    
    N ports/devel/p5-CPAN-Meta-Check/Makefile
    N ports/devel/p5-CPAN-Meta-Check/distinfo
    N ports/devel/p5-CPAN-Meta-Check/pkg/DESCR
    N ports/devel/p5-CPAN-Meta-Check/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/12/26 19:36:40

Modified files:
	devel          : Makefile 

Log message:
Tie p5-Test-CPAN-Meta-Check to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/12/26 19:38:34

Modified files:
	devel/p5-Getopt-Long-Descriptive: Makefile distinfo 

Log message:
Update devel/p5-Getopt-Long-Descriptive to 0.100


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/27 01:20:27

Modified files:
	lib/libcrypto/man: ASN1_item_d2i.3 d2i_PKCS7.3 

Log message:
minor fixes;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 02:12:19

Modified files:
	lib/libcrypto/asn1: asn1.h 

Log message:
Expand DECLARE_ASN1_* macros. No change in preprocessor output, excluding
line numbering and new lines.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/27 02:15:16

Modified files:
	usr.sbin/ospfd : kroute.c rde.c 

Log message:
struct rroute has been removed, rename variables.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/27 02:17:52

Modified files:
	share/man/man7 : hier.7 
	libexec/security: security 
	distrib/miniroot: install.sub 
	etc            : group master.passwd newsyslog.conf rc 
	etc/mtree      : 4.4BSD.dist special 

Log message:
Remove user uucp and group news from base.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2016/12/27 04:38:21

Modified files:
	devel/p5-Search-Elasticsearch: Makefile distinfo 
	devel/p5-Search-Elasticsearch/pkg: PLIST 

Log message:
Update to 5.01 to make it compatible with Elasticsearch 5.x
To connect to Elasticsearch 2.x a differente perl module is needed


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2016/12/27 05:27:26

Modified files:
	security/pdf-parser: Makefile distinfo 

Log message:
small update of pdf-parser to 0.6.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/27 05:41:40

Modified files:
	etc/mail       : aliases 

Log message:
Remove alias for uucp

This should cut the amount of spam received by mlarkin.  If you need
this alias, just set it up.  Prompted by a mail from tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2016/12/27 05:44:19

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/27 05:51:42

Modified files:
	faq            : current.html 

Log message:
mention uucp and news removal.  issue
userdel uucp
groupdel news
and unless you use the net/uucp port:
rm -rf /var/spool/uucp*
with input from jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/27 05:54:10

Modified files:
	games/openmw   : Makefile distinfo 
Removed files:
	games/openmw/patches: patch-apps_openmw_crashcatcher_cpp 
	                      patch-apps_wizard_CMakeLists_txt 
	                      patch-components_files_fixedpath_hpp 
	                      patch-components_files_linuxpath_cpp 
	                      patch-components_files_linuxpath_hpp 

Log message:
Update to OpenMW 0.41.0.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/27 05:56:12

Modified files:
	faq            : current.html 

Log message:
fix date in id attribute


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 06:10:26

Modified files:
	lib/libcrypto/man: d2i_PKCS7.3 

Log message:
remove a stray comment line that might cause confusion


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/27 06:38:14

Modified files:
	etc            : syslog.conf 

Log message:
Also remove the commented out line for uucp.info -> /var/log/uucp

net/uucp and net/uucpd don't log to syslog.  Discussed with jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/27 07:37:02

Modified files:
	sys/arch/armv7/sunxi: sxipio.c sxipio_pins.h sxipiovar.h 

Log message:
Add support for the 2nd sxipio(4) device on the Allwinner A80.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/27 07:41:45

Modified files:
	sys/dev/usb    : uhcireg.h 

Log message:
Add cast to silence warnings generated by clang.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/27 08:01:03

Modified files:
	sbin/fdisk     : fdisk.c part.c 

Log message:
The "disk too large" and "only LBA values saved" messages are more
often confusing than useful these days. Stop emitting them.

Prompted by bugs@ report of the 8TB disk travails of Jiri.

ok deraadt@ tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 08:12:51

Modified files:
	lib/libcrypto/asn1: asn1.h asn1t.h 

Log message:
Expand DECLARE_ASN1_ITEM macros - no change in preprocessor output.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2016/12/27 08:16:49

Modified files:
	devel          : Makefile 

Log message:
Tie devel/p5-CPAN-Meta-Check to build

Not devel/p5-Test-CPAN-Meta-Check

noticed by nigel@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 08:31:16

Modified files:
	lib/libcrypto/pkcs12: pkcs12.h 

Log message:
Expand DECLARE_ASN1_ITEM macros - no change to preprocessor output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 08:35:59

Modified files:
	lib/libcrypto/pkcs7: pkcs7.h 

Log message:
Expand DECLARE_ASN1_ITEM - no change to preprocessor output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 08:37:07

Modified files:
	lib/libcrypto/x509v3: x509v3.h 

Log message:
Expand DECLARE_ASN1_ITEM macros - no change in preprocessor output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 09:01:19

Modified files:
	lib/libcrypto/ocsp: ocsp_ext.c 

Log message:
Kill some #if 0 code that uses old-style ASN.1 encoding.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 09:02:40

Modified files:
	lib/libcrypto/stack: safestack.h 

Log message:
Place some macros under #ifndef LIBRESSL_INTERNAL.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 09:05:57

Modified files:
	lib/libcrypto/asn1: asn1.h 
	lib/libcrypto/ocsp: ocsp.h 
	lib/libcrypto/pkcs12: pkcs12.h 
	lib/libcrypto/pkcs7: pkcs7.h 
	lib/libcrypto/ts: ts.h 
	lib/libcrypto/x509: x509.h 
	lib/libcrypto/x509v3: x509v3.h 

Log message:
Remove all DECLARE_ASN1_SET_OF macro usage - since 2000 these have been
nothing but markers for utils/mkstack.pl... and we removed the code that
generated more macros from these markers in 2014.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 09:12:47

Modified files:
	lib/libcrypto/pkcs7: pkcs7.h 

Log message:
Expand DECLARE_ASN1_{NDEF,PRINT}_FUNCTION macros - no change in
preprocesssor output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 09:23:05

Modified files:
	lib/libcrypto/asn1: asn1.h 

Log message:
Expand DECLARE_ASN1_FUNCTIONS_{fname,name} macros - no change to
preprocessor output, excluding line numbers and newlines.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 09:46:45

Modified files:
	lib/libcrypto/asn1: asn1.h 

Log message:
Use correct version of previous macro expansion.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/27 09:51:52

Modified files:
	lib/libcrypto/asn1: asn1.h 

Log message:
Place the DECLARE_ASN1_* macros under #ifndef LIBRESSL_INTERNAL.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/27 10:18:56

Modified files:
	usr.sbin/ospf6d: kroute.c ospf6d.h rde.c 

Log message:
Replace struct rroute with struct kroute, as done in ospfd

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/27 10:38:25

Modified files:
	print/poppler  : Makefile 

Log message:
Missed REVISION-qt bump in r1.115, WANTLIB-qt changed... and PLIST_DB
complained loudly here.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/27 11:45:01

Modified files:
	sys/netinet6   : ip6_input.c nd6.c nd6.h 

Log message:
Move nd6 timer initialisation to nd6_init() and call timeout_set()
only once during init.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/27 12:16:24

Modified files:
	usr.sbin/syslogd: privsep.c syslogd.c 

Log message:
If syslogd was started with a relative path, the program could not
re-exec itself.  This exec is done during startup of the privsep
parent or when syslogd restarts after a SIGHUP.  Convert a relative
path in argv[0] to an absolute one with realpath(3) before chdir(2).
Do all the path handling in priv_init().
suggested by millert@; OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/27 12:43:07

Modified files:
	regress/usr.sbin/syslogd: Syslogd.pm 
Added files:
	regress/usr.sbin/syslogd: args-privsep-relative.pl 

Log message:
Test that the syslogd program can be started with a relative path.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/27 12:54:02

Log message:
    Import Syntax Highlightin, new KDE Framework from 5.28.0, forgotten earlier.
    
    Required by modern Kate.
    
    Status:
    
    Vendor Tag:	zhuk
    Release Tags:	zhuk_20161227
    
    N ports/devel/kf5/syntax-highlighting/Makefile
    N ports/devel/kf5/syntax-highlighting/distinfo
    N ports/devel/kf5/syntax-highlighting/pkg/DESCR
    N ports/devel/kf5/syntax-highlighting/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/27 12:57:22

Modified files:
	x11/dbusmenu-qt: Makefile 

Log message:
Missing bump due to qt5 dependency change, spotted by kili@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/27 13:36:42

Modified files:
	net/transmission: Makefile 

Log message:
Fix bump of transmission-qt. This port has REVISION = 1, which
applied to *all* subpackages, so REVISION-qt must be 2, not 0. Move
REVISION-qt up (right under REVISION), so it becomes obvious that
-qt got an extra bump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2016/12/27 13:50:33

Modified files:
	x11/smtube     : Makefile 

Log message:
Missing bump after qt5 dependency changes.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 13:56:18

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_ESS_SIGNING_CERT.3 d2i_TS_REQ.3 

Log message:
New manual pages d2i_ESS_SIGNING_CERT(3) and d2i_TS_REQ(3) written
from scratch.  All functions listed in <openssl/ts.h>
and in OpenSSL doc/man3/s2i_X509.pod.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/27 14:07:26

Modified files:
	devel/kf5/kservice: Makefile 

Log message:
Missing BUILD_DEPENDS on bison.

Possibly we could use yacc, but needs modification of FindBISON.cmake.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 15:06:55

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_OCSP_REQUEST.3 d2i_OCSP_RESPONSE.3 

Log message:
Write new manual pages d2i_OCSP_REQUEST(3) and d2i_OCSP_RESPONSE(3)
from scratch.  All these functions are listed in <openssl/ocsp.h>
and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 17:55:05

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_PKCS8_PRIV_KEY_INFO.3 

Log message:
Write new manual page d2i_PKCS8_PRIV_KEY_INFO(3) from scratch.
These six function are listed in <openssl/x509.h>
and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/27 18:14:43

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/27 18:28:42

Log message:
    Import qtbase-docs, the qtbase documentation.
    
    It's based on the same distfile as qtbase package, but uses totally
    different build mechanizm. And it's unreal to build -qch part without
    circular dependency with qttools anyway.
    
    Do not try to build this one until it's hooked to the build: this port
    relies on functionality to be committed (really soon).
    
    Status:
    
    Vendor Tag:	zhuk
    Release Tags:	zhuk_20161228
    
    N ports/x11/qt5/qtbase-docs/Makefile
    N ports/x11/qt5/qtbase-docs/distinfo
    N ports/x11/qt5/qtbase-docs/pkg/DESCR-html
    N ports/x11/qt5/qtbase-docs/pkg/DESCR-qch
    N ports/x11/qt5/qtbase-docs/pkg/PLIST-html
    N ports/x11/qt5/qtbase-docs/pkg/PLIST-qch
    N ports/x11/qt5/qtbase-docs/pkg/DESCR-docindex
    N ports/x11/qt5/qtbase-docs/pkg/PLIST-docindex
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/27 18:31:10

Modified files:
	x11/qt5/qtbase-docs/pkg: DESCR-docindex DESCR-html DESCR-qch 

Log message:
Oops, fix DESCRs.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 18:38:16

Modified files:
	lib/libcrypto/man: d2i_PrivateKey.3 

Log message:
Document i2d_PKCS8PrivateKeyInfo_bio(3) and i2d_PKCS8PrivateKeyInfo_fp(3),
listed in <openssl/x509.h> and in OpenSSL doc/man3/d2i_X509.pod.
These functions are very similar to i2d_PrivateKey(3) but very
different from i2d_PKCS8PrivateKey_bio(3), that's why they go into
this manual page and not into the other one.  When the naming was
decided, somebody clearly considered too briefly or too long.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/27 18:41:24

Modified files:
	x11/qt5        : Makefile Makefile.inc 
	x11/qt5/qt3d   : Makefile 
	x11/qt5/qt3d/pkg: PLIST-html 
	x11/qt5/qtactiveqt: Makefile 
	x11/qt5/qtactiveqt/pkg: PLIST-html 
	x11/qt5/qtbase : Makefile 
	x11/qt5/qtbase/pkg: PLIST-main 
	x11/qt5/qtcanvas3d: Makefile 
	x11/qt5/qtcanvas3d/pkg: PLIST-html 
	x11/qt5/qtconnectivity: Makefile 
	x11/qt5/qtconnectivity/pkg: PLIST-html 
	x11/qt5/qtdeclarative: Makefile 
	x11/qt5/qtdeclarative/pkg: DESCR-examples PLIST-html 
	x11/qt5/qtdoc  : Makefile 
	x11/qt5/qtdoc/pkg: PLIST-html 
	x11/qt5/qtenginio: Makefile 
	x11/qt5/qtenginio/pkg: PLIST-html 
	x11/qt5/qtgraphicaleffects: Makefile 
	x11/qt5/qtgraphicaleffects/pkg: PLIST-html 
	x11/qt5/qtimageformats: Makefile 
	x11/qt5/qtimageformats/pkg: PLIST-html 
	x11/qt5/qtlocation: Makefile 
	x11/qt5/qtlocation/pkg: PLIST-html 
	x11/qt5/qtmultimedia: Makefile 
	x11/qt5/qtmultimedia/pkg: PLIST-html 
	x11/qt5/qtquickcontrols: Makefile 
	x11/qt5/qtquickcontrols/pkg: PLIST-html 
	x11/qt5/qtquickcontrols2: Makefile 
	x11/qt5/qtquickcontrols2/pkg: PLIST-html 
	x11/qt5/qtscript: Makefile 
	x11/qt5/qtscript/pkg: PLIST-html 
	x11/qt5/qtsensors: Makefile 
	x11/qt5/qtsensors/pkg: PLIST-html 
	x11/qt5/qtserialbus: Makefile 
	x11/qt5/qtserialbus/pkg: PLIST-html 
	x11/qt5/qtserialport: Makefile 
	x11/qt5/qtserialport/pkg: PLIST-html 
	x11/qt5/qtsvg  : Makefile 
	x11/qt5/qtsvg/pkg: PLIST-html 
	x11/qt5/qtwebchannel: Makefile 
	x11/qt5/qtwebchannel/pkg: PLIST-html 
	x11/qt5/qtwebengine: Makefile 
	x11/qt5/qtwebkit: Makefile 
	x11/qt5/qtwebkit/pkg: PLIST-html 
	x11/qt5/qtwebsockets: Makefile 
	x11/qt5/qtwebsockets/pkg: PLIST-html 
	x11/qt5/qtwebview: Makefile 
	x11/qt5/qtx11extras: Makefile 
	x11/qt5/qtx11extras/pkg: PLIST-html 
	x11/qt5/qtxmlpatterns: Makefile 
	x11/qt5/qtxmlpatterns/pkg: PLIST-html 
Added files:
	x11/qt5/qt3d/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtactiveqt/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtbase/pkg: DESCR-global PLIST-global 
	x11/qt5/qtcanvas3d/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtconnectivity/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtdeclarative/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtdoc/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtenginio/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtgraphicaleffects/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtimageformats/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtlocation/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtmultimedia/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtquickcontrols/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtquickcontrols2/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtscript/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtsensors/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtserialbus/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtserialport/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtsvg/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtwebchannel/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtwebkit/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtwebsockets/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtwebview/pkg: DESCR-docindex 
	x11/qt5/qtx11extras/pkg: DESCR-docindex PLIST-docindex 
	x11/qt5/qtxmlpatterns/pkg: DESCR-docindex PLIST-docindex 

Log message:
Rework Qt5 documentation handling:

* Move share/qt5/doc/* in qtbase from -main to a separate subpackage,
-global, which (as a bonus) "owns" share/doc/qt5/ directory;

* Move FOO.index files from -html to a separate subpackage, -docindex,
and make 'em depend on qtbase,-global;

* Make DEP,-docindex automatically added as BDEP for each DEP in
LDEP and BDEP mentioned for -main;

* Make it clear that building -qch without -html is impossible;

While there, fixed a few minor issues.

This make at least qtenginio,-html build correctly, which failed before
due to missing .index files during qdoc run. Initial report from kili@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 18:51:52

Modified files:
	lib/libcrypto/man: d2i_PKCS8PrivateKey_bio.3 

Log message:
Add a dire warning to not confuse i2d_PKCS8PrivateKey_bio(3)
with i2d_PKCS8PrivateKeyInfo_bio(3).

While here, polish the cross references.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 19:48:59

Modified files:
	lib/libcrypto/man: d2i_X509_SIG.3 

Log message:
Full rewrite.

Also document d2i_PKCS8_bio(3), i2d_PKCS8_bio(3), d2i_PKCS8_fp(3),
and i2d_PKCS8_fp(3) while here, listed in <openssl/x509.h>
and in OpenSSL doc/man3/d2i_X509.pod.

No, these functions have nothing to do with the many other d2i_PKCS8*(3)
functions all around, and nothing with PKCS#8 at all in the first place.

Read the BUGS section.  I couldn't make this stuff up.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 20:35:32

Modified files:
	lib/libcrypto/man: d2i_X509.3 

Log message:
Basic cleanup:
Improve .Nd.
Sort functions.
Use the same parameter names as in ASN1_item_d2i(3).
Point to ASN1_item_d2i(3) for all he details.
Delete all the information that's now in ASN1_item_d2i(3).
Add missing entries to the RETURN VALUES section.
Add STANDARDS section.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/27 20:56:35

Modified files:
	lib/libcrypto/man: d2i_X509.3 

Log message:
In contrast to OpenSSL, do not attempt to document the world
in this page - but do include documentation for immediate
subobjects that are used nowhere else.  All six functions
listed in <openssl/x509.h> and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/27 23:00:06

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/28 00:01:47

Modified files:
	x11/py-qt5     : Makefile 

Log message:
Add x11/qt5/qtsvg to LDEP, build fails with 'Missing library for
Qt5Svg>=0.0' otherwise, Qt5Svg is in WANTLIB but nothing brings it into
context.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 00:26:57

Modified files:
	x11/py-qt5     : Makefile 

Log message:
Bump after LIB_DEPENDS change, package could get built by accident,
as it happened on my machine.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 00:53:36

Modified files:
	graphics/prison: Makefile 
	graphics/prison/pkg: PLIST 

Log message:
Allow co-installation with upcoming devel/kf5/prison.

Fix HOMEPAGE while there, projects.kde.org is no more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 00:55:43

Modified files:
	graphics/prison: Makefile 

Log message:
And sync WANTLIB while there, too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 00:57:37

Log message:
    Import Prison, Qt-based barcode generator.
    
    It's the same as graphics/prison, but now it is also a KDE Framework.
    The KDE4 and KF5 versions could be installed simultaneously.
    
    Status:
    
    Vendor Tag:	zhuk
    Release Tags:	zhuk_20161228
    
    N ports/devel/kf5/prison/Makefile
    N ports/devel/kf5/prison/distinfo
    N ports/devel/kf5/prison/pkg/DESCR
    N ports/devel/kf5/prison/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 01:09:00

Modified files:
	devel/kf5      : Makefile 
	devel/kf5/ktexteditor: Makefile 
	devel/kf5/ktexteditor/pkg: PLIST 

Log message:
Hook up syntax-highlighting and prison. Update & enable ktexteditor,
which uses syntax-highlighting now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 01:21:41

Modified files:
	x11/kde-applications: Makefile.inc 

Log message:
Make sure devel/kf5 or x11/kde4 goes first in MODULES, thus forcing
devel/cmake. Will be needed by upcoming port(-s).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/28 01:50:55

Modified files:
	graphics/tesseract/tessdata: Makefile 

Log message:
Subpackage -eng is actually -main, fix EPOCH

http://build-failures.rhaalovely.net//sparc64/2016-12-16/graphics/tesseract/tessdata,-afr.log


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/28 02:14:19

Modified files:
	www/seamonkey  : Makefile distinfo 
	www/seamonkey/patches: patch-mozilla_intl_icu_source_Makefile_in 
	                       patch-mozilla_security_manager_pki_resources_content_exceptionDialog_js 
	                       patch-mozilla_storage_mozStorageConnection_cpp 
	                       patch-mozilla_widget_nsPrintSettingsImpl_cpp 
	                       patch-suite_installer_Makefile_in 
	www/seamonkey/pkg: PLIST-lightning PLIST-main 
	www/seamonkey-i18n: Makefile.inc distinfo 
Removed files:
	www/seamonkey/patches: patch-mozilla_config_system-headers 
	                       patch-mozilla_gfx_skia_moz_build 
	                       patch-mozilla_gfx_skia_skia_src_opts_SkBlitRow_opts_SSE4_h 
	                       patch-mozilla_js_src_jit_ExecutableAllocator_cpp 
	                       patch-mozilla_toolkit_components_protobuf_src_google_protobuf_stubs_atomicops_h 

Log message:
Update to seamonkey 2.46.

See http://www.seamonkey-project.org/releases/seamonkey2.46/ and
https://unofficialseamonkeynews.wordpress.com/2016/12/22/seamonkey-2-46-release-additional-release-notes/
for news.

Whack a bunch of patches merged upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/28 03:34:34

Modified files:
	usr.bin/tmux   : cmd.c tmux.h 

Log message:
Fix the prefer unattached session behaviour of
attach-session/switch-client, reported by Thomas Sattle.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/12/28 04:11:13

Modified files:
	distrib/miniroot: install.sub 

Log message:
Replace literal ^M with $(echo '\r') to avoid cluttering diffs.

OK halex@
fine for deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 05:50:13

Modified files:
	games/pentobi  : Makefile 

Log message:
Add missing dependencies to games/pentobi, as found by naddy@.

They were not shown in WANTLIB, thus not added in previous Qt5-split run.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 06:13:55

Modified files:
	multimedia/gstreamer1/plugins-base: Makefile 
	multimedia/gstreamer1/plugins-base/patches: patch-configure_ac 

Log message:
Make sure Qt5 is not picked up. Dunno why it didn't trigger with Qt 5.5.

I didn't find a better way to disable it rather than hacking configure.ac
internally; if you know one, be my guest.

Found by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/28 06:36:30

Modified files:
	www/seamonkey  : distinfo 

Log message:
Regen distinfo to use 2.46 release tarball and not 2.46rc6.. spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 06:45:30

Modified files:
	lib/libcrypto/man: Makefile X509V3_get_d2i.3 
	                   X509_ATTRIBUTE_new.3 
	                   X509_EXTENSION_set_object.3 
Added files:
	lib/libcrypto/man: d2i_X509_ATTRIBUTE.3 d2i_X509_EXTENSION.3 

Log message:
Write new manual pages d2i_X509_ATTRIBUTE(3) and d2i_X509_EXTENSION(3)
from scratch.  All six functions are listed in <openssl/x509.h>
and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 06:53:29

Modified files:
	net/transmission: Makefile 

Log message:
Fix build with modern qt5.port.mk, as found by naddy@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 07:06:06

Modified files:
	lib/libcrypto/man: X509_PUBKEY_new.3 

Log message:
Minor cleanup:
Improve the one-line description.
Use the standard wordings in some places.
Complete the RETURN VALUES section.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 07:10:36

Modified files:
	databases/postgresql-previous: Makefile 

Log message:
Apply the same treatment for databases/postgresql-previous as it was done for
datbases/postgresql, to allow the former build on arm.

okay pea@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 07:17:47

Modified files:
	lib/libcrypto/man: d2i_X509_ALGOR.3 

Log message:
rewrite in the standard way


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 07:33:34

Modified files:
	lib/libcrypto/man: d2i_X509_NAME.3 

Log message:
Use the same parameter names as in ASN1_item_d2i(3).
Use simpler standard wordings.
Add X.509 references.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 07:59:39

Modified files:
	lib/libcrypto/man: d2i_X509_CRL.3 

Log message:
Rewrite and add d2i_X509_CRL_INFO(3), i2d_X509_CRL_INFO(3),
d2i_X509_REVOKED(3), and i2d_X509_CRL_INFO(3), all listed in
<openssl/x509.h> and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 08:18:05

Modified files:
	lib/libcrypto/man: d2i_X509_REQ.3 

Log message:
Rewrite and add d2i_X509_REQ_INFO(3) and i2d_X509_REQ_INFO(3),
both listed in <openssl/x509.h> and in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/28 08:19:02

Modified files:
	sys/net        : pf.c 

Log message:
Better check for a valid route than for an existing route in pf
route-to by calling rtisvalid().  Make pf_route() and pf_route6()
similar and move the rtalloc() call to the same place.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/28 08:36:15

Modified files:
	sys/net        : pf.c 

Log message:
In pf_find_state() pkt_sk was set to NULL if pkt_sk->reverse was
not valid.  This did not work as the value of pkt_sk must be used
later to establish the link.  So discard the packet statekey only
if it is invalid itself and use it to establish the reverse link.
From Christiano Haesbaert; OK sashan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/28 09:50:09

Modified files:
	astro/stellarium: Makefile distinfo 
	astro/stellarium/pkg: PLIST 

Log message:
Update to stellarium-0.15.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/12/28 09:58:57

Log message:
    Import ports/textproc/lowdown. ok zhuk@
    
    lowdown is just another Markdown translator. It can output traditional HTML or a
    document for your troff type-setter of choice, such as groff(1), Heirloom troff,
    or even mandoc(1).
    
    Status:
    
    Vendor Tag:	jturner
    Release Tags:	jturner_20161228
    
    N ports/textproc/lowdown/Makefile
    N ports/textproc/lowdown/distinfo
    N ports/textproc/lowdown/pkg/DESCR
    N ports/textproc/lowdown/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2016/12/28 10:00:19

Modified files:
	textproc       : Makefile 

Log message:
+lowdown


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/28 10:09:17

Modified files:
	net/gophernicus: Makefile distinfo 

Log message:
Update gophernicus to 2.2.

OK juanfra@, ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/12/28 10:10:54

Modified files:
	net/corebird   : Makefile distinfo 

Log message:
[UPDATE] net/corebird 1.3.1 => 1.3.3

port changes:
- upstream now provides proper tarballs so we switch
from GH_* vars to MASTER_SITES
- we no longer need autoconf as the upstream rolled
tarball includes the generated build files
- devel/libtool & textproc/intltool no longer needed
(spotted by fcambus@)
- simplified license comment (spotted by fcambus@)

upstream changelog:
---
Version 1.3.3 (2016-10-01)

Changelog:
- Support longer tweets in a few more places
- Properly escape ampersand characters in user mentions to fix
GtkLabel warnings about wrong escape characters in tooltips
- Fix tweet length calculations for whitespace-only tweets
- Check for duplicated entries in media arrays. This is apparently a
problem on Twitter's side but led to crashes in Corebird (see #627)
- Use the correct nsfw status of a tweet, i.e. the one that can
actually show images.
- Fix a crash when sending a tweet with multiple images attached
- Fix tweet length calculation of quote tweets. This previously led to
tweets getting rejected by the server even though Corebird claimed
they were fine. See #628

Version 1.3.2 (2016-09-25)

Changelog:
- Cope with the tweet length changes introduced by Twitter
- Fix a problem with malformed media URLs

---

OK juanfra@, fcambus@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 10:21:17

Modified files:
	share/man/man7 : mdoc.7 
	usr.bin/mandoc : mandoc.1 mandoc.h mdoc_validate.c read.c 
	regress/usr.bin/mandoc/mdoc/Xr: args.out_lint 

Log message:
Make the second, section number argument of .Xr mandatory.
In fact, we have been requiring it for many years.
The only reason to not warn when it was missing
was excessive traditionalism - it was optional in 4.4BSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/28 10:48:04

Modified files:
	distrib/special/ftp: Makefile 
	usr.bin/ftp    : cookie.c extern.h fetch.c ftp_var.h main.c 

Log message:
Split -DSMALL into -DNOSSL, so that a SSL-enabled version of ftp can
be built, which is still pretty small (in distrib/special/ftp-ssl).
Lots of testing by rpe.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/28 11:08:04

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/28 11:30:56

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
spelling fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/28 11:31:33

Modified files:
	lib/libcrypto/man: ACCESS_DESCRIPTION_new.3 

Log message:
standard section name;


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/28 11:34:05

Modified files:
	mail/trojita   : Makefile 

Log message:
Add qtsvg to BDEP, trojita doesnt link with it but cmake goo says its
REQUIRED...


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/12/28 11:34:57

Log message:
    Import games/tome4
    
    OK fcambus@
    
    note: upstream is known to re-roll tarballs silently see
    http://forums.te4.org/viewtopic.php?f=42&t=47073
    for details.
    
    $ cat pkg/DESCR-main
    Tales of Maj'Eyal (ToME) is a free, open source roguelike RPG,
    featuring tactical turn-based combat and advanced character building.
    Play as one of many unique races and classes in the lore-filled world
    of Eyal, exploring random dungeons, facing challenging battles, and
    developing characters with your own tailored mix of abilities and
    powers.  With a modern graphical and customisable interface, intuitive
    mouse control, streamlined mechanics and deep, challenging combat,
    Tales of Maj'Eyal offers engaging roguelike gameplay for the 21st
    century.
    
    This package contains the engine of the game.
    
    Status:
    
    Vendor Tag:	awolk
    Release Tags:	awolk_20161228
    
    N ports/games/tome4/distinfo
    N ports/games/tome4/Makefile
    N ports/games/tome4/patches/patch-premake4_lua
    N ports/games/tome4/patches/patch-src_getself_c
    N ports/games/tome4/patches/patch-bootstrap_boot_lua
    N ports/games/tome4/patches/patch-build_te4core_lua
    N ports/games/tome4/pkg/PLIST-main
    N ports/games/tome4/pkg/PLIST-data
    N ports/games/tome4/pkg/DESCR-main
    N ports/games/tome4/pkg/DESCR-data
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 11:42:16

Modified files:
	devel/kf5/baloo: Makefile 

Log message:
Bump REVISION after internal dependency changes, spotted by naddy@.

The SHARED_LIBS were bumped by mistake, but now there is no way back.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/12/28 11:43:38

Modified files:
	games/tome4/pkg: DESCR-data DESCR-main 

Log message:
un-utf8 DESCR

not bumping revision as the port was not yet
plugged into the build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 11:49:16

Modified files:
	devel/kf5/frameworkintegration: Makefile 

Log message:
Tweak dependencies after recent 5.29.0 update, spotted by naddy@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/12/28 11:54:12

Modified files:
	games          : Makefile 

Log message:
Add games/tome4 to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/28 12:38:56

Modified files:
	lang/ecl       : Makefile 
Added files:
	lang/ecl/patches: patch-src_c_numbers_atan_d 

Log message:
Fix the issue causing maxima test failure (atan2). From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/28 12:51:02

Modified files:
	net/openfire   : Makefile distinfo 
	net/openfire/pkg: PLIST 

Log message:
Update to openfire 4.1.0. From Marc Peters (MAINTAINER).

This version includes security fixes:
http://download.igniterealtime.org/openfire/docs/4.1.0/changelog.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2016/12/28 12:58:24

Modified files:
	net/openfire   : Tag: OPENBSD_6_0 Makefile distinfo 
	net/openfire/pkg: Tag: OPENBSD_6_0 PLIST README 

Log message:
Update to openfire 4.1.0. From Marc Peters (MAINTAINER).

This version includes security fixes:
http://download.igniterealtime.org/openfire/docs/4.1.0/changelog.html


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 13:29:15

Modified files:
	lib/libcrypto/man: POLICYINFO_new.3 X509_ATTRIBUTE_new.3 

Log message:
add missing .Vt macros


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 13:36:33

Modified files:
	lib/libcrypto/man: Makefile SXNET_new.3 
Added files:
	lib/libcrypto/man: d2i_AUTHORITY_KEYID.3 d2i_BASIC_CONSTRAINTS.3 
	                   d2i_DIST_POINT.3 d2i_GENERAL_NAME.3 
	                   d2i_PKEY_USAGE_PERIOD.3 d2i_POLICYINFO.3 
	                   d2i_PROXY_POLICY.3 

Log message:
Write documentation for <openssl/x509v3.h> DER decoding and
encoding functions from scratch.  All 46 functions are listed
in OpenSSL doc/man3/d2i_X509.pod.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/28 14:29:53

Modified files:
	mail/trojita   : Makefile 

Log message:
The Qt5Svg is used by Trojita at runtime, although not via shared library.

So add it to RUN_DEPENDS as well. I've also shuffled dependency lines in
the port for readability.

Notified by Caspar Schutijser (MAINTAINER), thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/28 14:31:08

Modified files:
	www/varnish    : Makefile 

Log message:
BROKEN on arm too, unsupported argument to '__builtin_return_address'


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/28 14:48:21

Modified files:
	lang/gcc/6     : Makefile distinfo 
	lang/gcc/6/patches: patch-fixincludes_fixincl_x 
	                    patch-gcc_ada_gcc-interface_Make-lang_in 
	                    patch-gcc_ada_gcc-interface_Makefile_in 
	                    patch-gcc_builtins_c patch-gcc_config_gcc 
	                    patch-gcc_config_i386_i386_c 
	                    patch-gcc_config_pa_pa_h 
	                    patch-gcc_config_rs6000_rs6000_c 
	                    patch-gcc_configure patch-gcc_lto_lto_c 
	                    patch-libgcc_config_host 
	                    patch-libiberty_cp-demangle_c 
	                    patch-libstdc++-v3_configure 
	lang/gcc/6/pkg : PFRAG.X86-main 

Log message:
Update to gcc 6.3.0; regen bootstraps.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/28 14:54:25

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/28 15:45:24

Modified files:
	sys/arch/armv7/imx: imxccm.c imxccmvar.h imxehci.c imxesdhc.c 
	                    imxiic.c imxuart.c 
Added files:
	sys/arch/armv7/imx: imxccm_clocks.h 

Log message:
Use the generic clock framework.

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/28 15:47:11

Modified files:
	libexec/tradcpp: tradcpp.1 
	share/termtypes: termcap.5 
	usr.bin/make   : make.1 
	usr.bin/mandoc : man.conf.5 
	usr.bin/spell  : spell.1 
	usr.bin/tput   : tput.1 
	usr.sbin/lpr/lpr: lpr.1 

Log message:
fix the remaining cases of .Xr with only one argument


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/28 16:58:20

Modified files:
	sys/net        : pf_norm.c 

Log message:
Fix white spaces.  No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/28 17:26:48

Modified files:
	sys/net        : pf_norm.c 

Log message:
Use __func__ instead of explicit function name in panic messages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/29 00:30:27

Modified files:
	mail/thunderbird-i18n: Makefile.inc distinfo 
	mail/mozilla-thunderbird: Makefile distinfo 

Log message:
Bugfix update to thunderbird 45.6.0.

See https://www.mozilla.org/en-US/thunderbird/45.6.0/releasenotes/


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/29 00:35:09

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Release the NET_LOCK() before calling unp_connect().  It is not possible
to hold it during VFS operations as NFS might try to grab it.

Problem also reported by Siegfried Rudzio on bugs@.

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 02:10:36

Modified files:
	sysutils/stow  : Makefile 

Log message:
p5-IO-stringy is needed for tests.

From Andreas Kusalananda Kahari (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/29 02:28:17

Modified files:
	net/py-raet    : Makefile distinfo 
	net/py-raet/pkg: PLIST 

Log message:
Update to py-raet-0.6.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/29 02:59:15

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.13.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/29 05:12:44

Modified files:
	sys/kern       : uipc_socket.c uipc_socket2.c uipc_syscalls.c 
	                 uipc_usrreq.c 
	sys/net        : if.c if_pflow.c 
	sys/sys        : systm.h 

Log message:
Change NET_LOCK()/NET_UNLOCK() to be simple wrappers around
splsoftnet()/splx() until the known issues are fixed.

In other words, stop using a rwlock since it creates a deadlock when
chrome is used.

Issue reported by Dimitris Papastamos and kettenis@

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2016/12/29 05:17:22

Modified files:
	sys/netinet6   : in6_ifattach.c 

Log message:
Get rid of recursive splsoftnet() in in6_ifattach_linklocal().

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/29 06:01:49

Modified files:
	sys/net        : pf.c pf_norm.c pfvar.h 

Log message:
In pf_refragment6() use the valid route from pf_route6() instead
of calling rtalloc() again.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 06:50:31

Modified files:
	sysutils/tmux-mem-cpu-load: Makefile 

Log message:
Needs a C++11 compiler, also use lang/gcc on arm.

ok jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 06:52:14

Modified files:
	net/haproxy    : Makefile 

Log message:
Move NO_TEST, and kill a trailing whitespace.

ok danj@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/29 07:03:55

Modified files:
	lib/libssl/man : SSL_CTX_set_session_cache_mode.3 

Log message:
fix typo; from OpenSSL

commit 67adf0a7c273a82901ce8705ae8d71ee2f1c959c
Author: Markus Triska <triska@metalevel.at>
Date:   Sun Dec 25 19:58:38 2016 +0100


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 07:05:08

Modified files:
	net/haproxy    : Makefile 

Log message:
Needs __sync_sub_and_fetch_4 and friends, build with lang/gcc on arm.

ok danj (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2016/12/29 07:07:11

Modified files:
	games/tome4    : Makefile 
	games/tome4/patches: patch-premake4_lua 
	games/tome4/pkg: PLIST-data PLIST-main 

Log message:
Fix games/tome4 problems

spoted by ajacoutot & fcambus

- MODGCC_ARCHS changed to MODGCC4_ARCHS
- MODGCC_LANGS removed as language 'c' is the default
so setting this variable is not needed here
- Updated patch-premake4_lua to use variable substitution
instead of hard-coded paths
- Added share/tome4/ and share/tome4/game/ to PLIST-data
and remove it from PLIST-main. Without it removing tome4
would error out informing about non empty directories
- Simplified the RUN_DEPENDS-main line, the way it was
done previously prevented REVISION bumps from working
- bumped REVISION of both packages to 0

OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 07:15:15

Modified files:
	www/kore       : Makefile 

Log message:
Needs atomic builtins, use lang/gcc on arm.

ok fcambus@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 07:29:37

Modified files:
	audio/jack     : Makefile 

Log message:
Needs atomic builtins, build with lang/gcc on arm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 07:37:40

Modified files:
	multimedia/daala: Makefile 

Log message:
Use --disable-asm on arm

It's not clear how useful the assembler code is on arm, and it's
detected using MSVC __emit() or Linux /proc/cpuinfo; let's just disable
it.

ok czarkoff@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/29 07:39:28

Modified files:
	security/vault : Makefile distinfo 

Log message:
Update to vault-0.6.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/29 07:48:52

Modified files:
	devel/ectags   : Makefile 
Added files:
	devel/ectags/patches: patch-entry_c 

Log message:
Fix segfault on OpenBSD src-repository.

From Anton Lindqvist <anton dot lindqvist at gmail dot com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 08:51:29

Modified files:
	security/libnettle: Makefile 

Log message:
Remove workaround for binutils-2.15 on arm.

ok ajacoutot@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2016/12/29 08:56:33

Modified files:
	sys/dev/microcode/bnx: bnxfw.h 

Log message:
Eliminate 68 unused static variables that gcc complains about.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/29 09:12:00

Modified files:
	converters/libunistring: Makefile distinfo 
	converters/libunistring/patches: patch-Makefile_in 

Log message:
Update to libunistring 0.9.7.  License change and doc/autoconf fixes only.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2016/12/29 10:42:54

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_ASN1_NULL.3 

Log message:
Write d2i_ASN1_NULL(3) manual page from scratch.
Both functions are listed in <openssl/asn1.h>
and in OpenSSL doc/man3/d2i_X509.pod.

After reading the code, i'm not amused.  You wouldn't think that
it might take eight stack levels to decode a constant sixteen bit
value that does not even allow a single content octet, or would
you?  Nota bene, this is an average of four stack levels for each
non-zero bit decoded...  :-(


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 11:26:47

Modified files:
	sysutils/freeipmi: Makefile 

Log message:
Doesn't build on arm.

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/12/29 12:12:42

Modified files:
	usr.bin/doas   : parse.y 

Log message:
it has been six months and two days... remove keepenv { obsolete } syntax


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/29 12:28:31

Modified files:
	build          : support.dat 

Log message:
+Andi Maulana


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2016/12/29 12:28:51

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/29 13:59:05

Modified files:
	x11/qt5        : Makefile.inc 
	x11/qt5/qtbase-docs: Makefile 

Log message:
LIB_DEPENDS doesn't contain x11/qt5/qtbase at the time Makefile.inc
gets processed. As a result, qtbase-docs,-docindex didn't get into
BUILD_DEPENDS, thus qtenginio-html build may still break.

Spotted by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/29 16:16:30

Modified files:
	x11/mrxvt/patches: patch-src_rxvt_h 

Log message:
Can't use names containing '$' on arm.

http://build-failures.rhaalovely.net//arm/2016-12-20/x11/mrxvt.log


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/29 20:41:43

Modified files:
	databases/leveldb: Makefile 

Log message:
Don't try to build this on arm as it requires <cstdatomic> on !x86
which was renamed to <atomic> in gcc 4.5 so it won't even build
with gcc 4.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/29 21:07:51

Modified files:
	x11/gnustep/libobjc2: Makefile 

Log message:
Mark gnustep-libobjc2 as broken on arm.  It assumes the toolchain
supports neon with no way to disable it.

libobjc2-1.8/objc_msgSend.arm.S:7: Error: unknown floating point format `neon'


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/30 00:04:39

Modified files:
	www/seamonkey  : Makefile 
	www/seamonkey/pkg: PLIST-lightning PLIST-main 

Log message:
Fix lightning packaging, somehow i commited the PLIST for 2.46rc6 but
ended up not building/packaging 2.46 final, and thus build failed.

Note that as stated in the upstream release notes, chatzilla and dom
inspector are not shipped anymore (temporarly, due to repacking issues?),
install them from addons.mozilla.org if you rely on them.

Failure reported by naddy@ and nigel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/30 01:25:18

Modified files:
	www/seamonkey  : Makefile 

Log message:
Unfuck the fuckety fuck.

- Set MOZILLA_USE_GTK3 = Yes to properly depend on Gtk+3 (reported by ajacoutot@)
- Bump REVISION-main, better be on the safe side after such a clusterfuck
- Remove BROKEN-i386 marker while here, last i tried 2.46rc on i386 it built and
ran fine, so it should be unfucked.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/12/30 01:26:09

Modified files:
	sys/arch/amd64/stand/efiboot: eficall.h 

Log message:
Fix EFI_CALL() to pass the arguments properly when number of arguments is 0.
From pulse.purge at gmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 01:59:10

Modified files:
	audio/mpd      : Makefile 

Log message:
mpd already builds with ports gcc, now that the arm baseline is armv6k
builtin atomics are available on arm and mpd builds so stop marking it
as BROKEN on arm.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2016/12/30 02:43:18

Modified files:
	sys/arch/armv7/stand/efiboot: eficall.h 
	sys/arch/arm64/stand/efiboot: eficall.h 

Log message:
Fix EFI_CALL() to pass the arguments properly when number of arguments is 0.
From pulse.purge at gmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 03:20:31

Modified files:
	databases/kyotocabinet: Makefile 

Log message:
use ports gcc on arm to get atomic builtins


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2016/12/30 03:24:15

Modified files:
	usr.sbin/ntpd  : ntpd.conf.5 

Log message:
markup from jan stary;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 03:43:07

Modified files:
	devel/libgit2/libgit2: Makefile 

Log message:
use ports gcc on arm to get atomic builtins


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/30 04:19:55

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.92.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/30 04:20:10

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.35.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/30 04:31:06

Modified files:
	net/py-libcloud: Makefile distinfo 
	net/py-libcloud/pkg: PLIST 

Log message:
Update to py-libcloud-1.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2016/12/30 05:12:28

Modified files:
	math/matio     : Makefile distinfo 
	math/matio/pkg : PLIST 
Removed files:
	math/matio/patches: patch-test_test_mat_c 

Log message:
Update to matio 1.5.9. Changed licensing to BSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/30 05:42:27

Modified files:
	sys/arch/mips64/mips64: pmap.c 

Log message:
When entering a mapping on write access, compute the PTE after making
the page dirty. This lets the system avoid an extra TLB modify fault
because the TLB mapping now allows writes immediately.

Noticed by miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2016/12/30 05:50:38

Modified files:
	sys/arch/mips64/mips64: pmap.c 

Log message:
Ansify pmap_copy().


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/30 05:52:46

Modified files:
	x11/qt5/qtbase-docs: Makefile 

Log message:
Missing bumps after tweaking PKGNAME of qtbase-docs,-docindex,
the -html and -qch were depending on it already..

Found by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/30 06:25:14

Modified files:
	lang/guile2    : Makefile 

Log message:
mark guile2 as BROKEN-i386, build hangs often, taking up a build slot until
dpb kills it.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/30 06:26:54

Modified files:
	share/termtypes: termtypes.master 

Log message:
Update to terminfo-20161126.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/30 06:49:34

Modified files:
	usr.bin/tmux   : options-table.c 

Log message:
Change the xterm-keys option to default to on, so that tmux will
generate xterm(1) escape sequences for function keys with modifiers.

With the option off most of these keys are ignored by default, except
for ctrl + arrows which use a variant that nothing else seems to use and
I don't remember why we chose. The xterm escape sequences are now the
most common.

Prompted by a question from mpi@.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2016/12/30 06:51:23

Modified files:
	share/termtypes: termtypes.master 

Log message:
Add xterm+pcfkeys to the tmux entry, for all the xterm(1) function keys.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/30 06:57:51

Modified files:
	graphics/glew  : Makefile distinfo 
	graphics/glew/files: Makefile.openbsd 
	graphics/glew/patches: patch-Makefile 
	graphics/glew/pkg: PLIST 

Log message:
update to glew-2.0.0, from Brad, bulk build tests by me and naddy


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 06:58:49

Modified files:
	japanese/mecab : Makefile 

Log message:
use ports gcc on arm to get atomic builtins


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/30 07:02:17

Modified files:
	net/haproxy    : Makefile distinfo 

Log message:
Update to haproxy-1.6.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/30 07:09:37

Modified files:
	net/p5-Net-DNS : Makefile distinfo 

Log message:
update p5-Net-DNS to 1.07


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/30 07:28:31

Modified files:
	graphics/libwebp: Makefile distinfo 

Log message:
Update to libwebp-0.5.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/30 07:29:25

Modified files:
	multimedia/x265: Makefile distinfo 

Log message:
Update to x265-2.2.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/30 07:29:27

Modified files:
	geo/openbsd-developers: Makefile 
	geo/openbsd-developers/files: OpenBSD 

Log message:
Update Miod's location per his request

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2016/12/30 07:30:21

Modified files:
	geo/openbsd-developers: Makefile 

Log message:
Ride the previous revision bump and move HOMEPAGE to https

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/30 07:51:28

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.12rc2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/30 07:54:21

Modified files:
	misc/gramps    : Makefile distinfo 
	misc/gramps/pkg: PLIST 

Log message:
Update to gramps-4.2.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/30 07:56:31

Modified files:
	regress/usr.sbin/syslogd: args-tls-cafile-default.pl 
	                          args-tls-cafile-fake.pl 

Log message:
Now libtls creates nicer certificate verification error messages.
Adapt regex in syslogd test.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/30 08:00:57

Modified files:
	www/seamonkey/pkg: PLIST-lightning 

Log message:
Unfuck, take 72.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:08:22

Modified files:
	lib/libcrypto/pkcs12: p12_kiss.c p12_npas.c p12_utl.c 

Log message:
Expand M_PKCS12_* "compatibility" macros. No change to generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:08:58

Modified files:
	lib/libcrypto/pkcs12: pkcs12.h 

Log message:
Place M_PKCS12_* compatibility macros under #ifndef LIBRESSL_INTERNAL.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:10:57

Modified files:
	lib/libssl     : dtls1.h ssl3.h 

Log message:
Explicitly include openssl/opensslconf.h in headers that use OPENSSL_NO_*
defines - do not rely on another heading making those available for us.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:12:45

Modified files:
	lib/libssl     : s3_both.c ssl_locl.h 

Log message:
Remove now unused c2l, c2ln, l2c, n2l, l2cn and n2l3 macros.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:24:51

Modified files:
	lib/libcrypto/x509: x509_req.c x_all.c 

Log message:
Expand ASN1_ITEM_rptr macros - no change in generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:26:49

Modified files:
	lib/libcrypto/dh: dh_asn1.c 

Log message:
Expand ASN1_ITEM_rptr macro - no change in generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:28:42

Modified files:
	lib/libcrypto/dsa: dsa_asn1.c 

Log message:
Expand ASN1_ITEM_rptr macro - no change in generated assembly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2016/12/30 08:29:13

Modified files:
	x11/xfce4/terminal: Makefile distinfo 

Log message:
Update to xfce4-terminal 0.8.2.

See
https://mail.xfce.org/pipermail/xfce-announce/2016-December/000485.html


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:31:58

Modified files:
	lib/libcrypto/ocsp: ocsp_cl.c ocsp_srv.c 

Log message:
Expand ASN1_ITEM_rptr macros - no change in generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:34:35

Modified files:
	lib/libcrypto/pkcs12: p12_add.c p12_p8d.c p12_p8e.c p12_utl.c 

Log message:
Expand ASN1_ITEM_rptr macros - no change in generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:38:13

Modified files:
	lib/libcrypto/pkcs7: bio_pk7.c pk7_attr.c pk7_doit.c pk7_mime.c 

Log message:
Expand ASN1_ITEM_rptr macros - no change in generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:47:07

Modified files:
	lib/libcrypto/rsa: rsa_ameth.c rsa_asn1.c 

Log message:
Expand ASN1_ITEM_rptr macros - no change in generated assembly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 08:47:55

Modified files:
	net/knot       : Makefile 

Log message:
Use lang/gcc for atomic builtins on arm (also needs liburcu built with lang/gcc)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 08:50:27

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:54:49

Modified files:
	lib/libcrypto/x509v3: v3_akey.c v3_alt.c v3_bcons.c v3_bitst.c 
	                      v3_conf.c v3_cpols.c v3_crld.c v3_enum.c 
	                      v3_extku.c v3_ia5.c v3_info.c v3_int.c 
	                      v3_lib.c v3_ncons.c v3_ocsp.c v3_pci.c 
	                      v3_pcons.c v3_pku.c v3_pmaps.c v3_prn.c 
	                      v3_skey.c v3_sxnet.c 

Log message:
Expand ASN1_ITEM_ref and ASN1_ITEM_ptr macros - no change in generated
assembly. Of particular interest is ASN1_ITEM_ptr which does nothing
and resulted in code like:

if (method->it)
ASN1_ITEM_free(..., ASN1_ITEM_ptr(method->it));


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2016/12/30 08:54:57

Modified files:
	textproc/libxml: Makefile 
Added files:
	textproc/libxml/patches: patch-result_XPath_xptr_vidbase 
	                         patch-test_XPath_xptr_vidbase 
	                         patch-xpath_c patch-xpointer_c 

Log message:
Apply patches for CVE-2016-4658 and CVE-2016-5131 to libxml 2.9.4.
From Simon Mages; OK ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 08:59:58

Modified files:
	usr.bin/openssl: pkcs12.c 

Log message:
Stop using M_PKCS12_* compatibility macros here as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 09:04:34

Modified files:
	lib/libcrypto/asn1: p5_pbe.c p5_pbev2.c tasn_dec.c tasn_enc.c 
	                    tasn_fre.c tasn_new.c tasn_prn.c x_crl.c 
	                    x_name.c 

Log message:
Expand ASN1_ITEM_rptr and ASN1_ITEM_ptr macros - no change in generated
assembly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/30 09:06:55

Modified files:
	graphics/cadubi: Makefile distinfo 

Log message:
Update cadubi to 1.3.3 and remove unneeded HOMEPAGE as it's created
from the GH_ variables.

OK kirby@, jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2016/12/30 09:13:24

Modified files:
	benchmarks/speedtest-cli: Makefile distinfo 

Log message:
Update speedtest-cli to 1.0.1.

This is a bugfix release, reverting some code which impacted timing on
devices with a small amount of RAM.

OK jung@, giovanni@, ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 09:19:04

Modified files:
	lib/libcrypto/ocsp: ocsp.h 

Log message:
Expand ASN1_ITEM_rptr macros - no change in preprocessor output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 09:19:24

Modified files:
	lib/libcrypto/x509v3: x509v3.h 

Log message:
Expand ASN1_ITEM_rptr macros - no change in preprocessor output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 09:28:53

Modified files:
	usr.bin/openssl: apps.c x509.c 

Log message:
Expand ASN1_ITEM_rptr macros here as well... used with NETSCAPE_X509 of all
things...


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 09:29:45

Modified files:
	lib/libcrypto/asn1: asn1.h 

Log message:
Place ASN_ITEM_{ptr,rptr,ref} and DECLARE_ASN1_ITEM under #ifndef
LIBRESSL_INTERNAL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2016/12/30 09:31:10

Modified files:
	devel/ruby-bundler: Makefile distinfo 
	devel/ruby-bundler/pkg: PLIST 

Log message:
Update to bundler 1.13.6

From Frank Groeneveld


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 09:57:01

Modified files:
	lib/libssl     : s23_clnt.c ssl_lib.c ssl_locl.h 

Log message:
Pull out (and largely rewrite) the code that determines the enabled
protocol version range.

This also fixes a bug whereby if all protocols were disabled, the client
would still use TLSv1.2 in the client hello, only to have if fail with
unsupported version when it received and processed the server hello.

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 09:58:12

Modified files:
	regress/lib/libssl/unit: Makefile 
Added files:
	regress/lib/libssl/unit: ssl_versions.c 

Log message:
Add regress coverage for enabled protocol version range.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 10:20:51

Modified files:
	lib/libssl     : s3_lib.c ssl.h 

Log message:
Add support for SSL_get_server_tmp_key().

ok doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2016/12/30 10:25:48

Modified files:
	usr.bin/openssl: s_apps.h s_cb.c s_client.c 

Log message:
Display details of the server ephemeral key, based on OpenSSL.

ok doug@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 10:31:21

Modified files:
	x11/worker     : Makefile 

Log message:
worker already builds with ports gcc, now that the arm baseline is armv6k
builtin atomics are available on arm and this builds so stop marking it
as BROKEN on arm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/30 10:36:41

Modified files:
	net/p5-Net-Twitter-Lite: Makefile distinfo 

Log message:
Update to 0.12008.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 10:39:22

Modified files:
	sysutils/freeipmi: Makefile 
Added files:
	sysutils/freeipmi/patches: 
	                           patch-libfreeipmi_driver_ipmi-kcs-driver_c 

Log message:
Stop limiting freeipmi to i386 and amd64.

sthen@ points out that low-level io (inb/outb) isn't needed any more on
those archs, now that we have an ipmi driver.  ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 10:51:13

Modified files:
	distrib/sets/lists/base: mi 

Log message:
syunc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 10:53:37

Modified files:
	security/ssh-ldap-helper: Makefile 

Log message:
Ugly fix for an ugly problem, unbreaks ssh-ldap-helper on arm.

The comment in the Makefile says why the problem is ugly.  The fix is
ugly because as is there's no easy way to patch the offending file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/30 11:13:31

Modified files:
	x11/gnome/libgweather: Makefile distinfo 

Log message:
update to libgweather-3.20.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2016/12/30 11:16:26

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
update to epiphany-3.22.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 12:12:37

Modified files:
	net/libtorrent : Makefile 
	net/rtorrent   : Makefile 

Log message:
Use lang/gcc for atomic ops on arm.

ok dcoppa@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2016/12/30 12:52:43

Modified files:
	usr.bin/less   : linenum.c 

Log message:
restore a not so redundant test. loopcount = -1 is a significant indicator
to prevent printing the calculating message over and over.
from Hugo Villeneuve


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/30 13:07:43

Modified files:
	devel/kf5/ktexteditor: Makefile 

Log message:
Missing dependency, from naddy@.


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2016/12/30 13:18:29

Modified files:
	gnu/gcc/gcc/config/m88k: m88k.c m88k.h 

Log message:
Prevent scheduling from interfering with the epilogue instructions, as soon
as any of the stack or frame pointers are modified.

Allow narrower-than-register types to be kept in registers in wider modes,
as was the case with gcc 3.

This now seems to produce reliable code with -O1. -O2 is not safe yet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/30 13:29:21

Modified files:
	lang/guile2    : Makefile 

Log message:
also mark as BROKEN-amd64, build hangs often


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/30 13:33:27

Modified files:
	x11/qt5/qtquickcontrols: Makefile 

Log message:
Add to BDEPs necessary for qtquickcontrols,-html.

Found by naddy@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 14:00:21

Modified files:
	devel/lpc21isp : Makefile 
Added files:
	devel/lpc21isp/patches: patch-lpc21isp_h 

Log message:
Disable broken arm-specific code path.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2016/12/30 14:05:20

Removed files:
	sys/arch/arm/include: isa_machdep.h pio.h 
	sys/arch/armv7/include: isa_machdep.h pio.h 

Log message:
Remove unused headers.

ISA and PIO don't really fit in the ARM landscape.  Suggested by patrick@
and kettenis@, ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 14:09:07

Modified files:
	www/varnish    : Makefile 

Log message:
Unbreak on arm and hppa.

The internal backtrace implementation uses __builtin_return_address with
a non-zero argument, which doesn't work on arm and hppa.  Instead of
applying a fix in varnish, detect and depend on devel/libexecinfo which
already has the logic to handle those architectures.  ok gonzalo@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2016/12/30 15:08:02

Modified files:
	usr.bin/ssh    : auth2-pubkey.c 

Log message:
fix deadlock when keys/principals command produces a lot of output
and a key is matched early; bz#2655, patch from jboning AT gmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 15:26:29

Modified files:
	etc/etc.amd64  : disktab 
	etc/etc.hppa   : disktab 
	etc/etc.i386   : disktab 

Log message:
resize some of the ramdisks and miniroots that can be larger.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 15:26:57

Modified files:
	distrib/special: Makefile 

Log message:
enter ftp-ssl also


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 15:27:56

Modified files:
	distrib/miniroot: mtree.conf 

Log message:
create etc/ssl directory on all media (in case we want to put a file there)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 15:28:34

Modified files:
	distrib/miniroot: makeconf.awk 

Log message:
Also link with -ltls -lssl -lcrypto, in case the instbin binary contains
calls to those libraries.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 15:32:25

Modified files:
	distrib/amd64/common: list 
	distrib/amd64/ramdiskA: list.local 
	distrib/amd64/ramdisk_cd: Makefile Makefile.inc list.local 
	distrib/i386/common: Makefile.inc list 
	distrib/i386/ramdisk: list.local 
	distrib/i386/ramdisk_cd: Makefile list.local 
	distrib/hppa   : list 
	distrib/hppa/ramdisk: Makefile 

Log message:
Install cert.pem + ftp(1) binary that supports SSL, so the install script
can perform https fetches.  While non-critical for sets (which are verified
using signify), it is an uplift for communication towards the ftp.openbsd.org
cgi which provides mirror proposals, entropy seeds, and current time.
[The install script changes are not included in this commit]
ok beck jsing rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 15:34:20

Modified files:
	distrib/macppc/ramdisk: Makefile list 

Log message:
Install cert.pem + ftp(1) binary that supports SSL, so the install script
can perform https fetches.  While non-critical for sets (which are verified
using signify), it is an uplift for communication towards the ftp.openbsd.org
cgi which provides mirror proposals, entropy seeds, and current time.
[The install script changes are not included in this commit]
ok beck jsing rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 15:36:07

Modified files:
	sys/arch/amd64/conf: RAMDISK_CD 
	sys/arch/hppa/conf: RAMDISK 
	sys/arch/i386/conf: RAMDISK_CD 

Log message:
Increase space for ramdisk inserts to match ftp(1) https growth.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/30 15:54:47

Modified files:
	sysutils/sleuthkit: Makefile 

Log message:
autoconf picks up cppunit if present; add to bdep


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2016/12/30 15:59:12

Modified files:
	distrib/miniroot: install.sub 

Log message:
Switch the connection to ftp.openbsd.org from using the ip address
to hostname as preparation for an upcoming change.

But to ensure proper name resolution in case dns is not available
yet, add an entry to the hosts file. After an installation, remove
it so it does not end up in the final hosts file. Not needed for
upgrades because the file is not copied to the upgraded system.

OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 16:14:37

Modified files:
	graphics/s10sh/patches: patch-bytesex_h 

Log message:
Use endian.h instead of a list of architectures, unbreaks arm.

ok markus@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 16:15:09

Modified files:
	graphics/s10sh/patches: patch-Makefile_in 

Log message:
Respect CFLAGS

ok markus@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/30 16:15:46

Modified files:
	graphics/s10sh : Makefile 
Added files:
	graphics/s10sh/patches: patch-common_c 

Log message:
Format string fixs.

ok markus@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2016/12/30 16:21:26

Modified files:
	usr.sbin/syslogd: privsep.c syslogd.c 

Log message:
When syslogd received a SIGHUP during startup, it died instead of
reloading its config.  This could happen when multiple signals were
sent during a short interval.  So block SIGHUP until signal handlers
are installed.
OK deraadt@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2016/12/30 16:32:14

Modified files:
	usr.bin/passwd : local_passwd.c 

Log message:
Use explicit_bzero() to clear the buffer used when the user retypes
the new password.  From isk AT ingve DOT org


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 17:29:41

Modified files:
	x11/ogre       : Makefile 

Log message:
ogre already builds with ports gcc, now that the arm baseline is armv6k
builtin atomics are available on arm and this builds so stop marking it
as BROKEN on arm.


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2016/12/30 17:50:01

Modified files:
	etc/etc.luna88k: MAKEDEV.md 

Log message:
Add xp(4), LUNA's I/O processor entry.

"No problem" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 18:01:24

Modified files:
	devel/liburcu  : Makefile 

Log message:
use ports gcc on arm to get atomic builtins
ok jca@ (MAINTAINER)

When running make test on arm this currently fails test_urcu_multiflavor,
jca plans to look into this.


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2016/12/30 18:02:59

Modified files:
	etc/etc.luna88k: MAKEDEV 
	share/man/man8/man8.luna88k: MAKEDEV.8 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 18:33:49

Modified files:
	distrib/armv7/ramdisk: list 

Log message:
Paths should be relative..
discussed with jsg


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/30 19:06:35

Modified files:
	distrib/armv7/ramdisk: list 

Log message:
Install cert.pem + ftp(1) binary that supports SSL, so the install script
can perform https fetches.  While non-critical for sets (which are verified
using signify), it is an uplift for communication towards the ftp.openbsd.org
cgi which provides mirror proposals, entropy seeds, and current time.
[The install script changes are not included in this commit]
ok beck jsing rpe
armv7 results tested by jsg


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 20:32:10

Modified files:
	net/powerdns   : Makefile 

Log message:
powerdns already builds with ports gcc, now that the arm baseline is
armv6k builtin atomics are available on arm and this builds so stop
marking it as BROKEN on arm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/30 21:12:09

Modified files:
	audio/audacious: Makefile 

Log message:
use ports gcc on arm to get atomic builtins


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/31 01:11:59

Modified files:
	multimedia/mkvtoolnix: Makefile distinfo 
	multimedia/mkvtoolnix/patches: patch-ac_qt5_m4 

Log message:
Update to mkvtoolnix-9.7.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2016/12/31 01:21:39

Modified files:
	lib/mesa/src/util: u_atomic.h 

Log message:
Use the unlocked atomic path in Mesa when just __arm__ is defined and
don't assume the builtin atomics are present with __ARM_ARCH_6__ and later
as base gcc with -march=armv6 doesn't have them.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/31 03:19:05

Modified files:
	net/gnugk      : Makefile 

Log message:
--disable-sqlite so it's not picked up.

reported by landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/31 03:48:00

Modified files:
	games/uhexen2  : Makefile distinfo 
	games/uhexen2/patches: patch-docs_README 
	                       patch-engine_h2shared_snd_sys_h 
	                       patch-engine_hexen2_Makefile 
	                       patch-engine_hexen2_server_Makefile 
	                       patch-engine_hexenworld_client_Makefile 
	                       patch-engine_hexenworld_server_Makefile 
	                       patch-hw_utils_hwmaster_Makefile 
	                       patch-hw_utils_hwmquery_Makefile 
	                       patch-hw_utils_hwrcon_Makefile 
	games/uhexen2/pkg: PLIST README 
Removed files:
	games/uhexen2/patches: patch-launcher_Makefile 
	                       patch-launcher_launcher_defs_h 

Log message:
update to uhexen2 1.5.8
ok edd@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/31 05:40:39

Modified files:
	multimedia/yle-dl: Makefile distinfo 

Log message:
update to yle-dl 2.13, from Timo Myyra


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2016/12/31 05:53:42

Modified files:
	devel/qt-creator: Makefile 

Log message:
Fix build when qmake-generated Makefile tries to link in qtcreator.sh.

While there, add some BDEPs for better documentation builds.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2016/12/31 06:59:07

Modified files:
	security/py-oauthlib: Makefile distinfo 

Log message:
fix distfile name (was "v2.0.0.zip") by switching to GH_*


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2016/12/31 07:51:47

Modified files:
	www/sblg       : Makefile distinfo 
	www/sblg/pkg   : PLIST 

Log message:
Update to sblg 0.3.10.

ok bentley@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2016/12/31 07:54:52

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/patches: patch-src_makefile 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.34.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/31 08:25:18

Modified files:
	sysutils/riemann: Makefile 
	sysutils/riemann/pkg: PLIST riemann.rc 

Log message:
Fix rc.d(8) script to comply to our template and habits.
While here, fix the @extraunexec line; from sthen@

"seems sensible" sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2016/12/31 08:29:14

Modified files:
	sys/arch/armv7/imx: imxtemp.c 

Log message:
Add missing $OpenBSD$ marker.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2016/12/31 08:52:17

Modified files:
	distrib/sets/lists/comp: md.armv7 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/31 08:52:36

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
The syspatch test repo can now be accessed over https.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2016/12/31 09:15:06

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
https mirrors don't need to use the latest most perfect ssl featureset (they
are after all, donated resources, and we already used their http counterparts).
We need not worry, they will improve over time.  So list all https servers,
to encourage more use and allow the https-selection semantics in the install
script to become hardenned over time.
Hey everyone who runs a mirror -> try to activate https, then we can make
the install tools do more clever stuff.


CVSROOT:	/cvs
Module name:	www
Changes by:	ajacoutot@cvs.openbsd.org	2016/12/31 09:30:48

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
ftp.fr can also be accessed over https now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/31 09:51:27

Modified files:
	graphics/png   : Makefile distinfo 

Log message:
security update to 1.6.27 for null-pointer-dereference bug; from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2016/12/31 10:51:44

Modified files:
	sys/net80211   : ieee80211_ioctl.c 

Log message:
When we disable WPA on an interface, wipe all of the WPA parameters,
including removing the 802.1x configuration from the card.

Found while coming home from CCC Congress.

OK stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2016/12/31 10:52:13

Modified files:
	graphics/povray: Makefile distinfo 

Log message:
update private libpng to 1.2.57: fix for null pointer dereference bug


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/31 11:24:08

Modified files:
	security/john-jumbo: Makefile 

Log message:
Mark as BROKEN on arm, stray '$' in program


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2016/12/31 12:58:56

Modified files:
	devel/jdk/1.8  : Makefile distinfo 
	devel/jdk/1.8/patches: 
	                       patch-hotspot_src_share_vm_runtime_globals_hpp 
Added files:
	devel/jdk/1.8/patches: 
	                       patch-jdk_src_solaris_native_sun_management_OperatingSystemImpl_c 

Log message:
- switch bootstrap to bootjdk so that jdk 1.7 can be removed
- fix getOpenFileDescriptorCount() reported by Pavel Korovin
okay sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2016/12/31 13:35:13

Modified files:
	build          : mirrors.pl 

Log message:
Honour BSDSRCDIR in environment (including coming from make(1)'s command
line) if present; used when generating /usr/src/etc/examples/pkg.conf.
Reported by / ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/31 13:46:18

Modified files:
	lang/node      : Makefile 

Log message:
Doesn't build on powerpc: Illegal instruction (core dumped)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/31 13:48:31

Modified files:
	devel/llvm     : Makefile 

Log message:
Broken on powerpc: undefined reference to `__atomic_load_8'


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2016/12/31 13:52:49

Modified files:
	math/py-bottleneck: Makefile 

Log message:
BROKEN on powerpc

cc -DNDEBUG -O2 -pipe -fPIC -O2 -pipe -fPIC -I/usr/local/include/python2.7 -I/usr/local/lib/python2.7/site-packages/numpy/core/include -c bottleneck/src/move.c -o /usr/obj/ports/py-bottleneck-1.2.0/Bottleneck-1.2.0/temp.openbsd-6.0-macppc-2.7/bottleneck/src/move.o
In file included from /usr/local/lib/python2.7/site-packages/numpy/core/include/numpy/ndarraytypes.h:1804,
from /usr/local/lib/python2.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:17,
from /usr/local/lib/python2.7/site-packages/numpy/core/include/numpy/arrayobject.h:4,
from bottleneck/src/bottleneck.h:6,
from bottleneck/src/move.c:1:
/usr/local/lib/python2.7/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:15:2: warning: #warning "Using deprecated NumPy API, disable it by " "#defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
bottleneck/src/move.c: In function 'move_std_float32':
bottleneck/src/move.c:568: error: unrecognizable insn:
(insn 893 195 199 15 (set (reg:SF 0 0)
(mem/u/c/i:SF (symbol_ref/u:SI ("*.LC170") [flags 0x82]) [0 S4 A32])) -1 (nil)
(nil))
bottleneck/src/move.c:568: internal compiler error: in extract_insn, at recog.c:2077


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/12/31 14:48:44

Modified files:
	.              : mail.html 

Log message:
errata patches aren't (regularly) sent to the announce@ list at this time,
so remove mention of that for now.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/12/31 14:51:45

Modified files:
	.              : books.html ftp.html plus35.html plus51.html 
	build/mirrors  : ftp.html.end 
	faq            : faq1.html faq15.html 
	faq/ports      : guide.html 

Log message:
fix some misuse of "up-to-date" / "up to date"

(use hyphens if the compound adjective is before the noun. use spaces if
it's after the noun.)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2016/12/31 14:54:26

Modified files:
	faq/pf         : perf.html 

Log message:
replace dc(4) with ix(4) as an example of a modern nic with good perf.
also the trim section that was still talking about 300mhz cpus...


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2016/12/31 18:08:11

Modified files:
	sbin/isakmpd   : isakmpd.conf.5 
	sbin/route     : route.8 
	share/man/man5 : bsd.port.mk.5 
	share/man/man8 : release.8 
	usr.bin/make   : make.1 
	usr.bin/rdist  : rdist.1 
	usr.sbin/pkg_add: pkg_add.1 

Log message:
Hyphenate compound adjectives 'up-to-date', 'out-of-date' and 'well-known'
if they precede the noun and omit hyphens otherwise.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2016/12/31 20:16:48

Modified files:
	gnu/gcc/gcc/config/arm: openbsd.h 

Log message:
Switch the arm default config from arm9e (armv5te) to mpcore (armv6k).
The same change was made in ports gcc 4.9 already.  This is is most
recent arm architecture version base gcc has support for.

This changes builtin defines from __ARM_ARCH_5TE__ to __ARM_ARCH_6K__.
These defines are often used to select between inline assembly paths.
Note that base gcc still lacks support for atomic builtins available
in ports gcc and clang however.

ok patrick@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2016/12/31 23:58:37

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 
Removed files:
	devel/include-what-you-use/patches: patch-CMakeLists_txt 
	                                    patch-iwyu_ast_util_cc 

Log message:
update to include-what-you-use 0.7
from Brad Smith


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/01 00:00:56

Modified files:
	sys/kern       : init_main.c 

Log message:
copyright++;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/01 02:29:09

Modified files:
	lang/spidermonkey: Makefile 
Added files:
	lang/spidermonkey/patches: patch-nanojit_CodeAlloc_cpp 

Log message:
Unbreak on arm.  Use arm_sync_icache(2) instead of __clear_cache.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/01 02:30:21

Modified files:
	x11/gnustep/libobjc2/patches: patch-CMakeLists_txt 

Log message:
Regen patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/01 02:32:12

Modified files:
	x11/gnustep/libobjc2: Makefile 
Added files:
	x11/gnustep/libobjc2/patches: patch-objc_msgSend_arm_S 

Log message:
Unbreak on arm, the use of ".fpu neon" doesn't seem warranted.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/01 02:40:42

Modified files:
	x11/qt3/patches: patch-src_tools_qglobal_h 

Log message:
Unbreak on arm: disable a hack not needed with EABI.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/01 02:44:30

Modified files:
	x11/qt4        : Makefile 

Log message:
Unbreak on arm, use lang/gcc for atomic builtins.

May have drawbacks (stdc++/estdc++ mixed up).  ok espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/01 02:54:44

Modified files:
	sys/arch/arm/arm: cpu.c 
	sys/arch/arm/include: armreg.h 

Log message:
recognise Cortex A32


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/01 03:48:58

Modified files:
	devel/llvm     : Makefile 

Log message:
Unbreak on powerpc: don't build lld there.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/01 03:50:18

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
Add arm to LLVM_ARCHS.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/01 03:50:55

Modified files:
	emulators/qemu : Makefile 

Log message:
Enable QEMU on arm.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/01/01 08:15:36

Modified files:
	lib/libcrypto  : cert.pem 

Log message:
Various work on cert.pem, ok bcook@

- print/sort using the full certificate subject rather than a pretty-printed
subset (as done in the current version of format-pem.pl); previously this was
resulting in a problem where a CN conflict resulted in the GlobalSign R2 CA
accidentally getting dropped in r1.10; problem found by Steven McDonald

- remove CA certificates that are no longer present in the CA store of the
release branch of Mozilla - possible now that libressl has support for
alternate chains (libcrypto/x509/x509_vfy.c r1.52)

- add new CA certificates from Mozilla's store from those organisations
which we already list


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/01 08:39:01

Modified files:
	sys/net        : if_ppp.c 

Log message:
Grab the NET_LOCK() in pppdealloc(), prevent an assert reported by stsp@.

ok visa@, bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/01/01 11:32:04

Modified files:
	net/dsocks     : Makefile distinfo 

Log message:
Update to dsocks 1.7

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/01 11:49:58

Modified files:
	devel/cargo    : Makefile cargo.port.mk distinfo 
	devel/cargo/patches: patch-tests_cargotest_support_paths_rs 
Removed files:
	devel/cargo/patches: patch-Makefile_in 

Log message:
Update to cargo 0.15.0, from Maintainer semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	zhuk@cvs.openbsd.org	2017/01/01 11:51:40

Modified files:
	usr.bin/libtool: libtool.1 

Log message:
Document (a few) differences from the GNU one.

(with hope for jmc@ come & fix my bad wording)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/01 13:07:49

ports/net/dsocks/patches

Update of /cvs/ports/net/dsocks/patches
In directory cvs.openbsd.org:/tmp/cvs-serv69829/patches

Log Message:
Directory /cvs/ports/net/dsocks/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/01/01 13:21:11

Modified files:
	databases      : Makefile 
	devel          : Makefile 

Log message:
Unhook databases/hs-postgresql-simple and devel/hs-uuid.

Not used by any ports, databases/hs-postgresql-simple would require
a new port (devel/hs-uuid-types) to update it and let it build with
ghc-8.0.

Maintainer David Schaefer agrees.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/01/01 13:23:11

Removed files:
	databases/hs-postgresql-simple: Makefile distinfo 
	databases/hs-postgresql-simple/pkg: DESCR PLIST 

Log message:
Remove databases/hs-postgresql-simple, it's in the way of an ghc
update.

Maintainer David Schaefer agrees.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/01/01 13:25:09

Removed files:
	devel/hs-uuid  : Makefile distinfo 
	devel/hs-uuid/pkg: DESCR PLIST 

Log message:
Remove devel/hs-uuid, it's longer used.

Maintainer David Schaefer agrees.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/01/01 13:29:39

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
databases/hs-postgresql-simple and devel/hs-uuid hare gone.


CVSROOT:	/cvs
Module name:	ports
Changes by:	uaa@cvs.openbsd.org	2017/01/01 13:58:24

Modified files:
	devel/openocd  : Makefile distinfo 
	devel/openocd/patches: patch-src_flash_mflash_c 
	devel/openocd/pkg: PLIST 
Removed files:
	devel/openocd/patches: patch-src_helper_command_c 
	                       patch-src_helper_command_h 

Log message:
update 0.6.1 -> 0.9.0

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/01 14:02:12

Modified files:
	graphics/png   : Tag: OPENBSD_6_0 Makefile distinfo 
	graphics/png/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
security update to 1.6.27 for null pointer dereference bug


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/01 14:27:51

Added files:
	emulators/BasiliskII/patches: patch-src_Unix_sigsegv_cpp 

Log message:
Unbreak on arm, os-specific segv handler.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/01 17:51:18

Modified files:
	sys/arch/arm/arm: cpufunc.c 
	sys/arch/arm/conf: files.arm 
Removed files:
	sys/arch/arm/arm: cpufunc_asm_armv4.S cpufunc_asm_xscale.S 
	                  cpuswitch.S pmap.c 

Log message:
remove unused armv4 and xscale files
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/01/01 18:40:20

Modified files:
	usr.bin/doas   : parse.y 

Log message:
envlist and arglist are both string lists; simplify
ok benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/01 22:18:42

Modified files:
	devel/codeblocks: Makefile 

Log message:
Mark codeblocks as broken on arm.  GCC 4.4 changed the C++ symbol
mangling of va_list on arm to conform to a newer revision of the EABI
specification.  Codeblocks is built with ports gcc (4.9) but depends
on wxwidgets which has va_list in a public symbol in the form of
wxString::FormatV() and wxwidgets is built with base gcc (4.2.1).

This can be revisited when wxwidgets is built with a different compiler.

ok Josh Grosse (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/02 00:07:30

Modified files:
	sysutils/menulibre: Makefile 

Log message:
use MODPY_DEFAULT_VERSION_3 instead of hardcoding 3.4


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/01/02 00:41:18

Modified files:
	sys/arch/amd64/amd64: pmap.c 

Log message:
delete obsolete (disabled) pool_cache_invalidate. pool caches were removed
many years ago, and the just reimported version doesn't cache constructed
objects.
from Nick Gonella


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/02 01:41:21

Modified files:
	sys/net        : if_spppsubr.c 

Log message:
Grab the NET_LOCK() when setting an IPv6 address, just like it is done
for IPv4.

Assert reported and diff tested by semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/02 01:42:52

Modified files:
	sys/net        : if_pppoe.c 

Log message:
pppoe_timeout() needs to take the NET_LOCK().

Assert reported and diff tested by semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/02 01:44:13

Modified files:
	sys/net        : if_pppoe.c 

Log message:
spacing


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/02 02:21:17

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/02 02:21:56

Modified files:
	usr.bin/libtool: libtool.1 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/02 03:44:19

Modified files:
	devel/py-uncompyle6: Makefile distinfo 
	devel/py-uncompyle6/pkg: PLIST 

Log message:
Update to py-uncompyle6 2.9.9


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/02 04:07:31

Modified files:
	sys/net        : bpf.c bpfdesc.h 

Log message:
Use a mutex to serialize accesses to buffer slots.

With this change bpf_catchpacket() no longer need the KERNEL_LOCK().

ok bluhm@, jmatthew@


CVSROOT:	/cvs
Module name:	www
Changes by:	phessler@cvs.openbsd.org	2017/01/02 04:58:34

Modified files:
	openbgpd       : index.html 

Log message:
add myself as a maintainer

OK henning@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/02 05:56:06

Modified files:
	telephony/iaxclient: Makefile 
Added files:
	telephony/iaxclient/patches: patch-lib_spandsp_plc_c 

Log message:
a memcpy -> memmove transition to prevent an abort, observed with
coccinella IAX client.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/02 06:52:11

Modified files:
	sys/arch/amd64/conf: RAMDISK_CD 

Log message:
Enable xbf(4).

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/02 08:25:50

Modified files:
	lib/csu        : boot.h 

Log message:
Remove the (now unused) code to determine the page size.  Also get rid of
the extern declaration of __got_{start,end}.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/01/02 08:52:20

Modified files:
	lang/gcc/4.9   : Makefile distinfo 

Log message:
Regen bootstraps and re-enable ada for hppa, mips64, powerpc and sparc64.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/02 08:58:02

Modified files:
	usr.sbin/syslogd: syslogd.8 syslogd.c 

Log message:
Syslogd accepted network input only for either IPv4 or IPv6.  To
overcome this limitation, allow to specify more than one listen
address for UDP and TCP.
input jmc@; OK deraadt@ millert@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/02 09:35:51

Modified files:
	driver/xf86-video-geode: ChangeLog aclocal.m4 configure 
	                         configure.ac 
	driver/xf86-video-geode/src: compat-api.h geode.h geode_msr.c 
	                             gx_accel.c lx_display.c lx_driver.c 

Log message:
Update to xf86-video-geode 2.11.19. tested on Geode LX (Alix 3C3).


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/02 09:40:02

Modified files:
	driver/xf86-video-dummy: ChangeLog Makefile.in configure 
	                         configure.ac 
	driver/xf86-video-dummy/src: dummy_driver.c 

Log message:
Update to xf86-video-dummy 0.3.8


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/02 09:58:28

Modified files:
	regress/usr.sbin/syslogd: Client.pm Makefile 
Added files:
	regress/usr.sbin/syslogd: args-client-multilisten.pl 

Log message:
Test listening on multiple sockets simultaneously.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/02 11:13:57

Modified files:
	graphics/darktable: Makefile distinfo 

Log message:
update to darktable-2.2.1


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/02 11:19:34

Modified files:
	sys/arch/mips64/mips64: pmap.c 

Log message:
Allow freeing of newly empty directory pages.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/02 11:37:23

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/01/02 11:56:22

Modified files:
	lang/bacon     : Makefile distinfo 

Log message:
Update to bacon 3.5.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/02 12:03:59

src/sys/dev/fdt

Update of /cvs/src/sys/dev/fdt
In directory cvs.openbsd.org:/tmp/cvs-serv44913/fdt

Log Message:
Directory /cvs/src/sys/dev/fdt added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/02 13:38:53

Modified files:
	emulators/mgba : Makefile distinfo 

Log message:
Update to mgba-0.5.2.

Release notes: https://mgba.io/2016/12/31/mgba-0.5.2/


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/01/02 14:44:28

Modified files:
	net/openfire   : Makefile distinfo 

Log message:
Update to openfire 4.1.1. From Marc Peters (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/01/02 14:56:47

Modified files:
	net/openfire   : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
Update to openfire 4.1.1 (bugfix release). From Marc Peters (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/01/02 15:03:56

Modified files:
	lib/libtls     : tls.c 

Log message:
fix cert verify. a cert with an alt chain may verify but leave an error
in the context. don't look for errors in case of success.
fixes spurious verify errors.
guilty change tracked and fix tested by sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/02 15:24:28

Modified files:
	share/man/man5 : pf.conf.5 

Log message:
diff from jesper wallin to remove commas in one of the queue examples;
since the comma is optional i chose to remove them because:

- within the block it looks more consistent
- less to type
- the bnf doesn;t even appear to show the commas (not that i can read bnf)
- i prefer it without commas


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/02 15:42:19

Modified files:
	usr.bin/tmux   : cmd-capture-pane.c 

Log message:
Escape backspace for capture-pane -P, from George Nachman.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/01/02 16:27:01

Modified files:
	emulators/advancemame: Makefile 
	emulators/advancemess: Makefile 

Log message:
Disable assembly code on i386 for advancemame and advancemess.

As spotted by sthen@, when nasm is installed, assembly optimized code
is enabled at configure time on i386, and compilation fails. This code
only exists for i386, so disabling it globally using CONFIGURE_ARGS
does not affect other architectures.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/02 17:28:54

Modified files:
	games/chocolate-doom: Makefile distinfo 
	games/chocolate-doom/pkg: PLIST 
Removed files:
	games/chocolate-doom/patches: patch-src_i_sdlsound_c 

Log message:
Update to chocolate-doom-2.3.0.

From Ryan Freeman; thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/02 21:47:42

Added files:
	emulators/openmsx/patches: patch-src_utils_DivModBySame_hh 

Log message:
Unbreak on arm, disable assembly code.

src/utils/DivModBySame.hh:260: error: can't find a register in class 'GENERAL_REGS' while reloading 'asm'
src/utils/DivModBySame.hh:260: error: 'asm' operand has impossible constraints


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/02 22:34:48

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
bring in boring's internal check_trust function to fix a bug introduced
when we went to alternate cert chains. this correctly does not clobber
the ctx->error when using an alt chain.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/02 22:46:51

Modified files:
	usr.bin/ssh    : sftp-client.c 

Log message:
check number of entries in SSH2_FXP_NAME response; avoids
unreachable overflow later. Reported by Jann Horn


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/02 22:52:28

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
Add a small bit of belt and suspenders around ERR_V_OK with X509_STORE_ctx
and X509_verify_cert - We at least make it so an an init'ed ctx is not
"valid" until X509_verify_cert has actually been called, And we make it
impossible to return success without having the error set to ERR_V_OK.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/02 23:29:04

Modified files:
	lib/libcrypto/man: X509_verify_cert.3 

Log message:
It takes a special style of creative writing to be unspecific about the error
return code of a function in a man page. Let's remove the ambiguity and
half truths in here.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/02 23:39:44

Modified files:
	sys/dev        : midi.c 
	sys/dev/usb    : umidi_quirks.c 

Log message:
No need to include sys/malloc.h. From Michael W. Bombardieri. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/02 23:42:11

Modified files:
	sys/dev        : audio.c 

Log message:
If gain is above MAX, no need to check whether it's below MIN.
From Michael W. Bombardieri. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/02 23:45:58

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
No need to set use_maxpkt twice. From Michael W. Bombardieri. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/02 23:51:56

Modified files:
	usr.bin/sndiod : listen.c 

Log message:
Use a goto to factor all calls to close() when listen_in() returns
an error. From Michael W. Bombardieri. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/02 23:53:20

Modified files:
	usr.bin/sndiod : dev.c midi.c utils.c 

Log message:
Many typos in comments. From Michael W. Bombardieri. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/03 00:25:16

Modified files:
	usr.bin/aucat  : utils.c utils.h 

Log message:
Sync utils.c and utils.h to sndiod.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/03 00:29:20

Modified files:
	usr.bin/aucat  : aucat.c 

Log message:
Log play volume together with other play parameters.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/03 00:33:22

Modified files:
	usr.bin/aucat  : abuf.c aucat.c 

Log message:
Assert we're not freeing buffers we didn't allocate (DEBUG mode).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/03 00:54:11

Modified files:
	sysutils/mcollective-plugins/filemgr-agent: Makefile distinfo 
	sysutils/mcollective-plugins/filemgr-agent/pkg: PLIST 

Log message:
Use a proper version instead of a specific git commit, latest
version is after that git commit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/03 00:54:59

Modified files:
	sysutils/mcollective-plugins/service-agent: Makefile distinfo 
	sysutils/mcollective-plugins/service-agent/pkg: PLIST 

Log message:
Use a proper version instead of a specific git commit, latest
version is after that git commit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/03 00:55:43

Modified files:
	sysutils/mcollective-plugins/sysctl-data: Makefile distinfo 
	sysutils/mcollective-plugins/sysctl-data/pkg: PLIST 

Log message:
Use a proper version instead of a specific git commit, latest
version is after that git commit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/03 01:03:33

Modified files:
	sysutils/py-elasticsearch-curator: Makefile distinfo 

Log message:
simple update to 4.2.5
works for me since some days


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/03 01:28:02

Modified files:
	net/dsocks     : Makefile 
Added files:
	net/dsocks/patches: patch-dsocks-torify_sh patch-dsocks_sh 

Log message:
Packaging tweaks.

- respect CFLAGS
- install scripts with INSTALL_SCRIPT, don't hardcode /usr/local and the
shared lib version

ok feinerer@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/03 01:28:41

Modified files:
	net/dsocks     : Makefile 

Log message:
License changed to BSD.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/03 01:32:18

Modified files:
	multimedia/avidemux/patches: patch-configure_in_in 

Log message:
test foo == bar isn't posix


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/03 01:33:32

Modified files:
	multimedia/avidemux: Makefile 
	multimedia/avidemux/patches: patch-configure_in_in 

Log message:
Support for armv7, where gas chokes on code produced by -falign-loops=16.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/03 02:48:15

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/i386/i386: machdep.c vmm.c 
	sys/arch/i386/include: cpu.h 

Log message:
reduce differences between amd64 and i386 vmm


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/03 02:51:28

Modified files:
	sys/arch/mips64/include: _types.h 

Log message:
Remove #define __SWAP_BROKEN from mips64. The architecture now
has a proper pmap_collect() implementation, and the current
uvm_swapout_threads() code does not need other MD interfaces.

OK miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/03 03:50:56

Modified files:
	sys/net        : if_pflow.c 

Log message:
Move the logic for SIOCSETPFLOW in a helper function to help with
upcoming locking.

ok visa@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/03 03:52:21

Modified files:
	sys/netinet    : ip_gre.c tcp_usrreq.c 

Log message:
Remove some recursives splsoftnet().

ok visa@, mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/03 04:00:38

Modified files:
	devel/py-country: Makefile distinfo 

Log message:
Update to py-country 17.1.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/03 04:04:01

Modified files:
	devel/py-path.py: Makefile distinfo 

Log message:
Update to py-path.py 10.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/03 04:53:58

Modified files:
	net/ruby-stomp : Makefile distinfo 
	net/ruby-stomp/pkg: PLIST 

Log message:
Downgrade to the latest 1.3.5, the 1.4.X version broke MCollective
to Rabbitmq backend communication via SSL
MCollective is the only dependent port of ruby-stomp
As suggested by aja@, jasper@, add a comment about the MCollective
breakage

OK ajacoutot@, jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/03 05:30:50

Modified files:
	x11/gnome/photos: Makefile distinfo 

Log message:
Update to gnome-photos-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 06:05:01

Log message:
    import p5-Test-LectroTest 0.5001
    OK benoit@
    
    Comment:
    easy, automatic, specification-based tests
    
    Description:
    This module provides a simple (yet full featured) interface to
    LectroTest, an automated, specification-based testing system for
    Perl.  To use it, declare properties that specify the expected
    behavior of your software.  LectroTest then checks your software
    to see whether those properties hold.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170103
    
    N ports/devel/p5-Test-LectroTest/Makefile
    N ports/devel/p5-Test-LectroTest/distinfo
    N ports/devel/p5-Test-LectroTest/pkg/DESCR
    N ports/devel/p5-Test-LectroTest/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 06:11:18

Log message:
    import p5-Statistics-CaseResampling 0.15
    OK benoit@
    
    Comment:
    efficient resampling and calculation of medians
    
    Description:
    The purpose of this (XS) module is to calculate the median (or in
    principle also other statistics) with confidence intervals on a
    sample.  To do that, it uses a technique called bootstrapping.  In
    a nutshell, it resamples the sample a lot of times and for each
    resample, it calculates the median.  From the distribution of
    medians, it then calculates the confidence limits.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170103
    
    N ports/math/p5-Statistics-CaseResampling/Makefile
    N ports/math/p5-Statistics-CaseResampling/distinfo
    N ports/math/p5-Statistics-CaseResampling/pkg/DESCR
    N ports/math/p5-Statistics-CaseResampling/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/03 06:11:55

Modified files:
	sys/net        : if.c 

Log message:
Do not trash the original SPL level.

Pointed out by and ok jsg@, ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/01/03 06:15:27

Modified files:
	devel/libspectrum: Makefile distinfo 

Log message:
Update libspectrum to 1.3.2.

OK benoit@, bentley@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 06:15:36

Modified files:
	devel          : Makefile 

Log message:
+p5-Test-LectroTest


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 06:16:47

Modified files:
	math           : Makefile 

Log message:
+p5-Statistics-CaseResampling


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/01/03 06:18:01

Modified files:
	emulators/fuse : Makefile distinfo 
Removed files:
	emulators/fuse/patches: patch-sound_aosound_c 

Log message:
Update fuse to 1.3.2.

OK bentley@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/01/03 06:20:43

Modified files:
	emulators/fuse-utils: Makefile distinfo 
	emulators/fuse-utils/pkg: PLIST 
Removed files:
	emulators/fuse-utils/patches: patch-fmfconv_ff_c 

Log message:
Update fuse-utils to 1.3.1.

Dropped dependency on ffmpeg (and the now useless patch) as it's not
used anymore.

OK bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 06:32:51

Modified files:
	sys/netinet6   : nd6_nbr.c 

Log message:
Take the neighbor solicitation's source address from the packet to
send if the mbuf contains the complete IPv6 header.  The old check
was wrong, it required one additional octet after the header.  So
the source address selection was depending on the layout of the
mbuf chain.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/03 08:35:34

Modified files:
	sys/net        : if_vxlan.c 

Log message:
Don't try to reconfigure the multicast group in the detach handler of
the multicast interface - simply clear the VXLAN configuration when
the associated multicast interface disappears.  This fixes some
locking and recursion problems.

OK mpi@ mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/03 09:44:28

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
update to wtf-20170101


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/03 09:57:15

Modified files:
	lib/libssl     : s23_clnt.c s23_srvr.c ssl_lib.c ssl_locl.h 

Log message:
Pull out, rework and dedup the code that determines the highest shared
version.

ok beck@ doug@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/03 09:58:10

Modified files:
	regress/lib/libssl/unit: ssl_versions.c 

Log message:
Add regress tests for max shared version code.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/03 10:00:04

Modified files:
	usr.bin/ftp    : extern.h fetch.c ftp.1 main.c 

Log message:
Add a "-w connect_timeout" option in support of URL-fetching.  This allows
slow / failing connects to be identified.  The install script needs this
functionaly.
ok jca rpe millert


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/03 10:13:41

Modified files:
	lib/libtls     : tls.c 

Log message:
Revert previous - the original code was correct since X509_verify_cert()
should not have changed the X509_STORE_CTX error value on success and it
was initialised to X509_V_OK by X509_STORE_CTX_init(). Other software also
depends on this behaviour.

Previously X509_verify_cert() was mishandling the X509_STORE_CTX error
value when validating alternate chains. This has been fixed and further
changes now explicitly ensure that the error value will be set to X509_V_OK
if X509_verify_cert() returns success.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/03 10:19:57

Modified files:
	lib/libtls     : tls.c 

Log message:
If certificate verification has been disabled, do not attempt to load a
CA chain or specify CA paths. This prevents attempts to access the file
system, which may fail due to pledge.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/03 10:51:38

Modified files:
	sbin/iked      : ca.c config.c iked.c iked.h types.h 

Log message:
Fix pledge of the ca process by calling the right function on startup.
As a related change, load the local.pub and local.key keys after
privsep and reload them on SIGHUP/reload.

OK mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/03 11:54:49

Modified files:
	audio/rhythmbox: Makefile 
	audio/rhythmbox/pkg: PLIST 
	audio/speech-dispatcher: Makefile 
	audio/speech-dispatcher/pkg: PLIST 
	devel/libgit2/libgit2-glib: Makefile 
	devel/libgit2/libgit2-glib/pkg: PLIST 
	devel/libpeas  : Makefile 
	devel/libpeas/pkg: PLIST 
	devel/py-gobject3: Makefile 
	devel/py-gobject3/pkg: PLIST-main 
	lang/python    : python.port.mk 
	misc/redshift  : Makefile 
	misc/redshift/pkg: PLIST 
	multimedia/gstreamer1/py-gstreamer: Makefile 
	multimedia/gstreamer1/py-gstreamer/pkg: PLIST 
	net/py-IP      : Makefile 
	net/py-IP/pkg  : PLIST 
	x11/dbus-python: Makefile 
	x11/dbus-python/pkg: PLIST-main 
	x11/gnome/builder: Makefile 
	x11/gnome/builder/pkg: PLIST 
	x11/gnome/caribou: Makefile 
	x11/gnome/caribou/pkg: PLIST 
	x11/gnome/code-assistance: Makefile 
	x11/gnome/code-assistance/pkg: PLIST 
	x11/gnome/eog-plugins: Makefile 
	x11/gnome/eog-plugins/pkg: PLIST 
	x11/gnome/gedit: Makefile 
	x11/gnome/gedit/pkg: PLIST 
	x11/gnome/gedit-plugins: Makefile 
	x11/gnome/gedit-plugins/pkg: PLIST 
	x11/gnome/music: Makefile 
	x11/gnome/music/pkg: PLIST 
	x11/gnome/orca : Makefile 
	x11/gnome/orca/pkg: PLIST 
	x11/gnome/py-atspi: Makefile 
	x11/gnome/py-atspi/pkg: PLIST 

Log message:
Add a MODPY_PYOEXTENSION variable.
Beginning with Python 3.5 .pyo files are no longer used and
have been replaced by a more flexible scheme that includes
the optimization level explicitly in .pyc name (See PEP-488).


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/03 11:57:23

Modified files:
	graphics/py3-cairo: Makefile 
Added files:
	graphics/py3-cairo/patches: patch-_waf3-waflib_Build_py 

Log message:
Unbreak with Python 3.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/03 11:58:52

Modified files:
	www/py-tornado : Makefile 
	www/py-tornado/pkg: PLIST 
Added files:
	www/py-tornado/pkg: PFRAG.no-python3 

Log message:
Unbreak with Python 3.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:12:42

Modified files:
	lang/python    : python.port.mk 

Log message:
Switch MODPY_DEFAULT_VERSION_3 to 3.6, diff from rpointel@, testing and
fixes by shadchin@, bulk build by me, support from danj@, no objection
from naddy@

All 250-something ports depending on python3 will be bumped in a few.
Fasten your seatbelts.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:14:44

Modified files:
	audio/pithos   : Makefile 
	audio/py-acoustid: Makefile 
	audio/py-audio : Makefile 
	audio/py-last  : Makefile 
	audio/py-mpd2  : Makefile 
	audio/py-mutagen: Makefile 
	audio/py-tagpy : Makefile 
	audio/sonata   : Makefile 

Log message:
bump ports depending on python3 in audio


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:16:08

Modified files:
	benchmarks/speedtest-cli: Makefile 
	converters/py-html2text: Makefile 
	converters/unoconv: Makefile 

Log message:
bump ports depending on python3 in benchmarks and converters


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:17:24

Modified files:
	databases/py-apsw: Makefile 
	databases/py-bsddb3: Makefile 
	databases/py-minidb: 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-sqlparse: Makefile 

Log message:
bump ports depending on python3 in databases


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:19:49

Modified files:
	devel/ipython  : Makefile 
	devel/liblouis : Makefile 
	devel/meson    : Makefile 
	devel/pudb     : Makefile 
	devel/py-apipkg: Makefile 
	devel/py-appdirs: Makefile 
	devel/py-argcomplete: Makefile 
	devel/py-argh  : Makefile 
	devel/py-asn1-modules: Makefile 
	devel/py-asn1  : Makefile 
	devel/py-astroid: Makefile 
	devel/py-babel : Makefile 
	devel/py-backports-abc: Makefile 
	devel/py-blinker: Makefile 
	devel/py-blist : Makefile 
	devel/py-certifi: Makefile 
	devel/py-cffi  : Makefile 
	devel/py-click : Makefile 
	devel/py-clint : Makefile 
	devel/py-codestyle: Makefile 
	devel/py-colorama: Makefile 
	devel/py-configargparse: Makefile 
	devel/py-configobj: Makefile 
	devel/py-construct: Makefile 
	devel/py-country: Makefile 
	devel/py-coverage: Makefile 
	devel/py-cparser: Makefile 
	devel/py-dateutil: Makefile 
	devel/py-decorator: Makefile 
	devel/py-distutils-extra: Makefile 
	devel/py-entrypoints: Makefile 
	devel/py-execnet: Makefile 
	devel/py-extras: Makefile 
	devel/py-fastimport: Makefile 
	devel/py-funcsigs: Makefile 
	devel/py-hgtools: Makefile 
	devel/py-html5lib: Makefile 
	devel/py-hypothesis: Makefile 
	devel/py-ipykernel: Makefile 
	devel/py-ipython_genutils: 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-lazy-object-proxy: Makefile 
	devel/py-libmagic: Makefile 
	devel/py-logilab-common: Makefile 
	devel/py-mccabe: Makefile 
	devel/py-mock  : Makefile 
	devel/py-nbconvert: Makefile 
	devel/py-nbformat: Makefile 
	devel/py-nose-warnings-filters: Makefile 
	devel/py-nose  : Makefile 
	devel/py-nosexcover: Makefile 
	devel/py-parsedatetime: Makefile 
	devel/py-parsing: Makefile 
	devel/py-path.py: Makefile 
	devel/py-pathlib: Makefile 
	devel/py-pbr   : Makefile 
	devel/py-pexpect: Makefile 
	devel/py-pip   : Makefile 
	devel/py-pluggy: Makefile 
	devel/py-ply   : Makefile 
	devel/py-pretend: Makefile 
	devel/py-prompt_toolkit: Makefile 
	devel/py-ptyprocess: Makefile 
	devel/py-py    : Makefile 
	devel/py-robotframework: Makefile 
	devel/py-serial: Makefile 
	devel/py-setproctitle: Makefile 
	devel/py-setuptools: Makefile 
	devel/py-setuptools_scm: Makefile 
	devel/py-simplegeneric: Makefile 
	devel/py-simplejson: Makefile 
	devel/py-sip   : Makefile 
	devel/py-six   : Makefile 
	devel/py-spark-parser: Makefile 
	devel/py-stdnum: Makefile 
	devel/py-test-benchmark: Makefile 
	devel/py-test-capturelog: Makefile 
	devel/py-test-cov: Makefile 
	devel/py-test-httpbin: Makefile 
	devel/py-test-mock: Makefile 
	devel/py-test-runner: Makefile 
	devel/py-test-xdist: Makefile 
	devel/py-test  : Makefile 
	devel/py-testpath: Makefile 
	devel/py-testtools: Makefile 
	devel/py-tox   : Makefile 
	devel/py-traitlets: Makefile 
	devel/py-tz    : Makefile 
	devel/py-tzlocal: Makefile 
	devel/py-uncompyle6: Makefile 
	devel/py-urwid : Makefile 
	devel/py-vcversioner: Makefile 
	devel/py-virtualenv: Makefile 
	devel/py-wcwidth: Makefile 
	devel/py-wrapt : Makefile 
	devel/py-xdg   : Makefile 
	devel/py-xdis  : Makefile 
	devel/py-zopeevent: Makefile 
	devel/py-zopeinterface: Makefile 
	devel/pyflakes : Makefile 
	devel/pylint   : Makefile 

Log message:
bump ports depending on python3 in devel


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:21:18

Modified files:
	graphics/img2pdf: Makefile 
	graphics/py-Pillow: Makefile 
	graphics/py-cycler: Makefile 
	graphics/py-imagesize: Makefile 
	graphics/py-matplotlib: Makefile 
	graphics/py-sane: Makefile 
	graphics/scour : Makefile 

Log message:
bump ports depending on python3 in graphics


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:22:09

Modified files:
	editors/vim    : Makefile 

Log message:
bump ports depending on python3 in editors


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:23:48

Modified files:
	multimedia/devede: Makefile 
	misc/gramps    : Makefile 
	misc/py-memcached: Makefile 
	math/py-bottleneck: Makefile 
	math/py-numpy  : Makefile 
	math/py-scipy  : Makefile 

Log message:
bump ports depending on python3 in math, misc and multimedia


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:24:43

Modified files:
	net/poezio     : 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-dnslib  : Makefile 
	net/py-idna    : Makefile 
	net/py-ipaddress: Makefile 
	net/py-msgpack : Makefile 
	net/py-netifaces: Makefile 
	net/py-nmap    : Makefile 
	net/py-paho-mqtt: Makefile 
	net/py-pcapy   : 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-slixmpp : Makefile 
	net/py-socketio-client: Makefile 
	net/py-socks   : Makefile 
	net/py-websocket-client: Makefile 
	net/py-zmq     : Makefile 

Log message:
bump ports depending on python3 in net


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:25:45

Modified files:
	print/py-reportlab: Makefile 

Log message:
bump ports depending on python3 in print


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:26:14

Modified files:
	security/letsencrypt/py-acme: Makefile 
	security/py-bcrypt: Makefile 
	security/py-crypto: Makefile 
	security/py-cryptography: Makefile 
	security/py-cryptography_vectors: Makefile 
	security/py-ecdsa: Makefile 
	security/py-gnupg: Makefile 
	security/py-keyring: Makefile 
	security/py-openssl: Makefile 
	security/py-paramiko: Makefile 
	security/py-passlib: Makefile 
	security/py-pbkdf2: Makefile 
	security/py-potr: Makefile 
	security/py-rsa: Makefile 
	security/py-secretstorage: Makefile 

Log message:
bump ports depending on python3 in security


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:26:59

Modified files:
	sysutils/borgbackup: Makefile 
	sysutils/menulibre: Makefile 
	sysutils/py-augeas: Makefile 
	sysutils/py-lockfile: Makefile 
	sysutils/py-psutil: Makefile 
	sysutils/py-statgrab: Makefile 

Log message:
bump ports depending on python3 in sysutils


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:27:52

Modified files:
	textproc/asciinema: Makefile 
	textproc/catfish: Makefile 
	textproc/nfoview: Makefile 
	textproc/py-ICU: Makefile 
	textproc/py-MarkupSafe: Makefile 
	textproc/py-PEG2: Makefile 
	textproc/py-alabaster: Makefile 
	textproc/py-chardet: Makefile 
	textproc/py-cssselect: Makefile 
	textproc/py-cssutils: Makefile 
	textproc/py-demjson: Makefile 
	textproc/py-docutils: Makefile 
	textproc/py-enchant: Makefile 
	textproc/py-iso8601: Makefile 
	textproc/py-jellyfish: Makefile 
	textproc/py-lxml: Makefile 
	textproc/py-mistune: Makefile 
	textproc/py-nltk: Makefile 
	textproc/py-numpydoc: Makefile 
	textproc/py-pyRFC3339: Makefile 
	textproc/py-pygments: Makefile 
	textproc/py-rdflib: Makefile 
	textproc/py-snowballstemmer: Makefile 
	textproc/py-sphinx: Makefile 
	textproc/py-sphinx_rtd_theme: Makefile 
	textproc/py-stemmer: Makefile 
	textproc/py-unidecode: Makefile 
	textproc/py-yaml: Makefile 

Log message:
bump ports depending on python3 in textproc


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:28:49

Modified files:
	www/jupyter-notebook: Makefile 
	www/puppetboard: Makefile 
	www/py-aiohttp : Makefile 
	www/py-beaker  : Makefile 
	www/py-beautifulsoup4: Makefile 
	www/py-django/lts: Makefile 
	www/py-django/stable: Makefile 
	www/py-feedgenerator: Makefile 
	www/py-flask-wtf: Makefile 
	www/py-flask   : Makefile 
	www/py-frozen-flask: Makefile 
	www/py-gunicorn: Makefile 
	www/py-httpbin : Makefile 
	www/py-httpie  : Makefile 
	www/py-httplib2: Makefile 
	www/py-itsdangerous: Makefile 
	www/py-jinja2  : Makefile 
	www/py-jwt     : Makefile 
	www/py-mako    : Makefile 
	www/py-meld3   : Makefile 
	www/py-multidict: Makefile 
	www/py-ndg-httpsclient: Makefile 
	www/py-requests: Makefile 
	www/py-terminado: Makefile 
	www/py-werkzeug: Makefile 
	www/py-wtforms : Makefile 
	www/py-wtools  : Makefile 
	www/qutebrowser: Makefile 
	www/urlwatch   : Makefile 

Log message:
bump ports depending on python3 in www


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/03 12:28:50

Modified files:
	sys/net        : bpf.c bpfdesc.h 

Log message:
Revert previous, there's still a problem with recursive entries in
bpf_mpath_ether().

Problem reported by Hrvoje Popovski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:29:36

Modified files:
	x11/gnome/shell: Makefile 
	x11/nagstamon  : Makefile 
	x11/py-qt5     : Makefile 

Log message:
bump ports depending on python3 in x11, thanks portbump(1) for the heavy lifting !


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:30:58

Modified files:
	editors/libreoffice: Makefile 
	editors/libreoffice/patches: patch-configure 

Log message:
Use MODPY_DEFAULT_VERSION_3 via SUBST_VARS and SUBST_CMD in
patch-configure, so that this builds fine with python 3.6 instead of
hardcoding 3.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/03 12:33:48

Modified files:
	distrib/miniroot: install.sub 

Log message:
Add https support to the OpenBSD installer.

The sets are downloaded using https per default. If the server does
not support https, the installer offers falling back to http after
asking for confirmation.

NOTE: Depending on the setup, people using autoinstall(8) might
need to add this new installer question to the response file.

Unable to connect using https. Use http instead = yes|no

Joint work with and 'go for it' from deraadt@
Tested from and OK tb@
Feedback and OK for the approach halex@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/03 12:38:35

Modified files:
	security/py-oauthlib: Makefile 

Log message:
Bump port depending on python3 (i somehow forgot this one) - we should
be fine now, but next bulks will double-check that :)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 12:54:36

Modified files:
	converters/p5-Net-IDN-Encode: Makefile distinfo 

Log message:
update p5-Net-IDN-Encode to 2.400


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/03 12:57:01

Modified files:
	sys/arch/arm/mainbus: mainbus.c 
	sys/arch/armv7/conf: GENERIC files.armv7 
Added files:
	sys/dev/fdt    : files.fdt simplefb.c 

Log message:
Add simplefb(4), a driver to support the framebuffer set up by the firmware
on some platforms that use device trees.  Works on Allwinner (sunxi) and
should also work on Raspberry Pi (broadcom) armv7 platforms.

ok jsg@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/03 13:15:47

Modified files:
	lib/libcrypto/man: ASN1_TYPE_get.3 ASN1_item_new.3 

Log message:
Document ASN1_TYPE_new(3) and ASN1_TYPE_free(3), even though OpenSSL
does not document them.  By being in <openssl/asn1.h>, they are
public, and it makes no sense to document accessors but not document
constructors and destructors.

Improve the one-line description.
Mention various missing details.
Many wording improvements.
Add some cross references.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/03 13:24:29

Modified files:
	bin/ed         : main.c 

Log message:
Allow the omission of one address in (.,.) and (.;.) address ranges
as per POSIX. With this patch, ",n" is an abbreviation for "1,n",
";n" abbreviates ".;n". The "n," and "n;" variants mean "n,n" and "n;n",
respectively.

Patch from Jerome FRGAGIC; ok stefan, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/01/03 13:29:28

Modified files:
	lib/libsndio   : sio_open.3 

Log message:
Tweak RETURN VALUES section. Move description of sio_pollfd() and
sio_nfds() return values there and add a paragraph about sio_eof().

ok jmc ratchov


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/03 13:35:46

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : simplefb.4 

Log message:
simplefb(4)


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/01/03 14:27:32

Modified files:
	.              : innovations.html 

Log message:
add phessler@ as an OpenBGPD maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/01/03 14:31:16

Modified files:
	usr.bin/find   : extern.h find.1 find.c find.h function.c main.c 
	                 option.c 

Log message:
add -delete option which can simplify the common case of wanting to delete
lots of files without the arcane -exec or error prone xargs.
code from freebsd.
ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/01/03 14:47:37

Modified files:
	usr.bin/xargs  : strnsubst.c 

Log message:
remove unused variable repllen.
i tried to see if it could be useful, but this function is kinda crazy.
from Julien Ramseier


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 14:48:57

Log message:
    import p5-Net-Flow 1.003
    OK sthen@
    
    Comment:
    decode and encode NetFlow/IPFIX datagrams
    
    Description:
    The Flow module provides the decoding function for NetFlow version
    5,9 and IPFIX, and the encoding function for NetFlow version 9 and
    IPFIX.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170103
    
    N ports/net/p5-Net-Flow/distinfo
    N ports/net/p5-Net-Flow/Makefile
    N ports/net/p5-Net-Flow/pkg/PLIST
    N ports/net/p5-Net-Flow/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/03 14:52:39

Modified files:
	net            : Makefile 

Log message:
+p5-Net-Flow


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/03 15:11:39

Modified files:
	usr.sbin/smtpd : smtpd.8 

Log message:
document forward(5); from mk
ok gilles


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/03 15:14:41

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
consistently spell ASN.1;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/03 15:19:31

Modified files:
	usr.bin/find   : find.1 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/03 16:56:50

Modified files:
	lib/libcrypto/man: ASN1_item_d2i.3 

Log message:
Document d2i_ASN1_TYPE(3) and i2d_ASN1_TYPE(3),
both listed in <openssl/asn1.h> and in OpenSSL doc/man3/d2i_X509.pod.
Minor wording improvements while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/03 17:40:49

Modified files:
	sys/arch/arm/include: armreg.h cpuconf.h cpufunc.h pmap.h pte.h 

Log message:
unifdef CPU_XSCALE_PXA2X0, ARM_MMU_XSCALE, ARM_MMU_GENERIC (armv3)
and remove some xscale definitions.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/03 18:47:32

Modified files:
	sys/dev/ic     : re.c 

Log message:
better handle empty or full rx rings.

currently re appears to end up spinning on landisk. the most obvious
cause of this would be an inability to add entries on the rx ring
when we run out of mbufs. cope with this by calling rxeof from the
isr when the FIFO_OVERFLOW status bit is set. rxeof in turn
unconditionally tries to fill the rx ring, even if it doesnt dequeue
any packets off the ring.

while here limit the number of entries that can go on the rx ring
to 1 less than the size of the ring. a full ring looks the same as
an empty ring (cos the producer and consumer are the same in both
cases), so avoid letting this happen.

ok deraadt@ who hit problems on his landisk and tested this diff


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/03 19:04:39

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/03 19:21:43

Modified files:
	usr.bin/ssh    : ssh-agent.c 

Log message:
relax PKCS#11 whitelist a bit to allow libexec as well as lib
directories.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/03 20:12:54

Modified files:
	sys/net        : if.c 

Log message:
make if_input return early if the mbuf list is empty.

this saves doing wakeups of the softnet thread.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/03 20:35:29

Modified files:
	usr.sbin/pcidump: pcidump.c 

Log message:
s/Signaled/Signalled/


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/03 20:42:33

Modified files:
	sys/net        : if.c 

Log message:
shuffle the last change slightly.

only check ml_empty the second time if bpf was run and may have
filtered the list.

only call task_add if mq_enlist worked.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/03 20:56:15

Modified files:
	sys/net        : if.c 

Log message:
dont assume setting IFF_UP will succeed.

run a drivers ioctl handler and check if it worked before calling
if_up or if_down to report the change. propagate that error up to
userland so ifconfig can report what happened.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/03 21:56:24

Modified files:
	sys/netinet    : igmp.c igmp_var.h 

Log message:
convert igmp_stat into per-cpu counters

it follows the same pattern used in previous conversions.

from Dimitris Papastamos (thank you).

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/03 22:14:51

Modified files:
	lib/libcrypto/man: ASN1_OBJECT_new.3 OBJ_nid2obj.3 

Log message:
Describe what ASN1_OBJECT_new(3), ASN1_OBJECT_free(3), OBJ_dup(3),
and OBJ_create(3) really do rather than making broad and incomplete
statements that are only true in some cases.

Improve the one-line descriptions.
Some minor wording improvements while here.

There is obviously more work to do in the vicinity...


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/03 22:37:40

Modified files:
	usr.bin/ssh    : serverloop.c 

Log message:
unbreak Unix domain socket forwarding for root; ok markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/03 23:09:07

Modified files:
	devel/luacheck : Makefile distinfo 

Log message:
update to luacheck 0.17.1


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/04 00:33:14

Modified files:
	sys/dev/sbus   : cs4231.c 

Log message:
In the set_params() routine, remove the AUDIO_ENCODING_ULINEAR case
as upper layers calls it with AUDIO_ENCODING_ULINEAR_{LE,BE} only.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/04 01:18:27

Modified files:
	sysutils/packer: Makefile distinfo 

Log message:
Update to packer-0.12.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/04 01:22:09

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.296.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/04 01:24:07

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/04 02:04:45

Modified files:
	lib/libcrypto/man: d2i_ASN1_OBJECT.3 

Log message:
Complete rewrite:
Better one-line description.
Specify the correct header file.
Same parameter names as in ASN1_item_d2i(3).
Lots of new information.

The ASN1_OBJECT interfaces appear specifically designed to maximize
the number and subtlety of traps, maybe in order to trap the wary
along with the unwary.  All the quirks, caveats, and bugs of
ASN1_item_d2i(3) apply, and there are three additional ones on top
in this page.

It looks like that design approach was so successful that the designers
managed to trap even themselves: see the new BUGS section.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/04 02:05:40

Log message:
    Import amazon-ssm-agent-1.2.290.0.
    
    The Amazon EC2 Simple Systems Manager (SSM) Agent is software developed for the
    Simple Systems Manager Service. The SSM Agent is the primary component of a
    feature called Run Command.
    <...>
    
    ok robert@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20170401
    
    N ports/sysutils/amazon-ssm-agent/Makefile
    N ports/sysutils/amazon-ssm-agent/distinfo
    N ports/sysutils/amazon-ssm-agent/pkg/DESCR
    N ports/sysutils/amazon-ssm-agent/pkg/PLIST
    N ports/sysutils/amazon-ssm-agent/pkg/amazon_ssm_agent.rc
    N ports/sysutils/amazon-ssm-agent/patches/patch-agent_platform_platform_unix_go
    N ports/sysutils/amazon-ssm-agent/patches/patch-agent_ssm_service_go
    N ports/sysutils/amazon-ssm-agent/patches/patch-makefile
    N ports/sysutils/amazon-ssm-agent/patches/patch-agent_managedInstances_sharedCredentials_shared_Credentials_go
    N ports/sysutils/amazon-ssm-agent/patches/patch-agent_fileutil_fileutil_unix_go
    N ports/sysutils/amazon-ssm-agent/patches/patch-agent_appconfig_constants_unix_go
    N ports/sysutils/amazon-ssm-agent/patches/patch-agent_log_log_unix_go
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/04 02:06:07

Modified files:
	sysutils       : Makefile 

Log message:
+amazon-ssm-agent


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/01/04 02:15:38

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
add HTTPS for openbsd.cs.toronto.edu, Thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/01/04 02:19:24

Modified files:
	build          : mirrors.tmpl 

Log message:
no strict requirements for https mirrors for now, they only need a
verifiable certificate


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/04 02:21:26

Modified files:
	usr.bin/find   : find.c 

Log message:
If find(1) may end up calling execve(2), it needs "proc exec" in addition
to its other promises.  Previously, find ran unpledged if the -exec{,dir}
or -ok primaries were specified: the tame(2) calls for find(1) were added
a few days before the "exec" promise was implemented and these code paths
were never revisited.

ok millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	uaa@cvs.openbsd.org	2017/01/04 02:30:38

Modified files:
	emulators/xnp2 : Makefile distinfo 
	emulators/xnp2/patches: patch-x11_soundmng_c 

Log message:
update xnp2-20140607 -> xnp2-0.86

ok by bentley@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/04 02:49:01

Modified files:
	emulators/xnp2 : Makefile 

Log message:
Switch master_sites/homepage to https.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/04 02:56:08

Modified files:
	share/man/man5 : pf.conf.5 

Log message:
modfier -> modifier

From Dimitris Papastamos.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/04 03:00:40

Modified files:
	lib/libcompiler_rt: gcc_personality_v0.c 
Added files:
	lib/libcompiler_rt: unwind-ehabi-helpers.h 

Log message:
Update compiler-rt to version 3.9.1.  There has only been a single
change in the builtins that fixes the build on ARM with LLVM 3.8.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/04 04:55:31

Modified files:
	regress/lib/libfuse: fuse-opt-match.c 

Log message:
Remove a check for empty option strings from our fuse regress tests.

Some fuse plugins rely on empty options (exfat-fuse, ntfs-3g) so this part
of the regress test was bogus. It ended up misleading mpi@ and myself when
we made a change in libfuse/fuse_opt.c r1.17 which broke some fuse plugins.

Regression with broken exfat-fuse reported by Helg via yasuoka@.
This commit just fixes our regress test. libfuse is not yet fixed.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/04 05:01:22

Modified files:
	lib/libfuse    : fuse_opt.c 

Log message:
Revert fuse_opt.c r1.17. It broke exfat-fuse and perhaps other plugins.
http://marc.info/?l=openbsd-ports&m=148170738917809&w=2
reported by yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/04 05:15:37

Modified files:
	sys/arch/armv7/sunxi: sxipio.c sxipiovar.h 

Log message:
Cleanup gpio(4) support code.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/04 05:17:48

Modified files:
	security/nss   : Makefile distinfo 
	security/nss/patches: patch-nss_Makefile 
	security/nss/pkg: PLIST 

Log message:
Update to nss 3.28, will be required by upcoming firefox 51.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.28_release_notes

Enable TLS 1.3 (draft) support per
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.28_release_notes#Request_to_test_and_prepare_for_TLS_1.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/04 05:31:01

Modified files:
	sbin/iked      : dh.c iked.conf.5 ikev2.h parse.y 
	sbin/isakmpd   : dh.c 

Log message:
Remove modular exponential groups specified in RFC5114

Brought up by doug@, ok reyk, djm, doug


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/04 05:49:49

Modified files:
	sys/net        : if_vxlan.c 

Log message:
As noticed by bluhm@ the netlock is required for the multicast cleanup

While here, remove unnecessary splnet's.

ok mpi


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/01/04 06:21:15

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
openbsd.hk speaks https now, Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/04 06:39:53

Modified files:
	distrib/miniroot: install.sub 

Log message:
Enforce https for connections to ftplist.cgi and ftpinstall.cgi on
platforms that have tls enabled ftp(1).

OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/04 06:47:30

Modified files:
	distrib/miniroot: install.sub 

Log message:
Support https for the url to the autopartitioning template for
disklabel on platforms that have tls enabled ftp(1) including
error handling in case ftp(1) doesn't have it.

OK tb@ halex@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/01/04 08:20:30

Modified files:
	lib/libc/stdlib: qsort.c 

Log message:
Remove unnecessary casts of 'a' to char * since 'a' is already char *.
This is a remnant from the original 4.4BSD code that had 'a' as
void * in the function args.  No binary change.  OK bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/01/04 08:30:58

Modified files:
	usr.bin/sort   : sort.c 

Log message:
Fix a crash when "sort -m" is given no files.  From Julien Ramseier.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/01/04 09:27:01

Modified files:
	usr.bin/less   : charset.c 

Log message:
Avoid an out of bounds read when the environment variable LESSBINFMT
is set to "*".  Patch from Tobias Stoeckmann.  OK tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/01/04 09:29:19

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
mirror.esc7.net has https too


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/04 09:31:23

Modified files:
	devel/py-extras: Makefile distinfo 
	devel/py-extras/pkg: PLIST 

Log message:
Update to py-extras 1.0.0


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/04 09:52:26

Modified files:
	lib/libcrypto/bn/asm: armv4-gf2m.pl 

Log message:
Remove superfluous datatype that is 32 by default.  Clang complains
about it and it's ok to remove it.  This only came up as our clang
is targeted at armv7 which enables the NEON instructions.

ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/04 10:01:44

Modified files:
	faq            : faq5.html index.html 

Log message:
remove the 'CVS tips' section: some good advice, some strange advice and
some excerpts of the man page. the good advice alone is not enough reason
to keep this section.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/04 10:25:11

Modified files:
	gnu/llvm/tools/clang/lib/Driver: ToolChains.cpp Tools.cpp 

Log message:
With clang as cross-compiler we need to make it pass the library path
to our linker.  Additionally, we need to make sure the library path is
prefixed with the cross directory, which is sysroot.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/04 10:26:02

Modified files:
	.              : Makefile.cross 

Log message:
With clang as cross-compiler we need to tell it where our cross
directory is so that the correct include and library paths are used.
For this we create a simple wrapper that calls clang in the correct
mode and also passes the sysroot.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/04 11:23:27

Modified files:
	net/py-idna    : Makefile distinfo 
	net/py-idna/pkg: PLIST 

Log message:
Update to py-idna 2.2.

ok benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/04 11:36:44

Modified files:
	devel/py-mccabe: Makefile distinfo 

Log message:
Update to py-mccabe 0.5.3.

ok benoit@, Bertrand Janin (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/04 11:39:22

Modified files:
	devel/flake8   : Makefile distinfo 
Added files:
	devel/flake8/patches: patch-setup_py 

Log message:
Update to flake8 3.2.1

ok Bertrand Janin (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/04 12:10:55

Modified files:
	www/liferea    : Makefile 

Log message:
mark BROKEN-i386, hangs during build


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/04 12:51:40

Modified files:
	net/wireshark  : Makefile 

Log message:
Wireshark's cmake file picks up Qt5Svg causing build to break
intermittently following the big qt5 reorganisation. List it as a hard
dep; even though it doesn't actually show in objdump -p for the binary
(perhaps that is because of as-needed linking).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/04 12:56:41

Modified files:
	security/py-cryptography: Makefile 
	security/py-cryptography/patches: 
	                                  patch-src__cffi_src_openssl_x509_vfy_py 

Log message:
Another hack to unbreak py-cryptography (this time runtime rather than
build) following symbol list changes around the X509_VERIFY_PARAM_*
functions in libcrypto; based on a diff from phessler who found this the
hard way (and I think landry also ran into it with qgis).. OK phessler


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/04 13:28:56

Modified files:
	net/curl       : Makefile distinfo 
	net/curl/pkg   : PLIST 

Log message:
Security update to 7.52.1:
CVE-2016-9586: printf floating point buffer overflow


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/04 13:57:54

Modified files:
	net/curl       : Tag: OPENBSD_6_0 Makefile distinfo 
	net/curl/pkg   : Tag: OPENBSD_6_0 PLIST 

Log message:
Security update to 7.52.1:
CVE-2016-9586: printf floating point buffer overflow


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/04 13:59:16

Modified files:
	games/rocksndiamonds: Makefile distinfo 
	games/rocksndiamonds/patches: patch-src_Makefile 
	                              patch-src_libgame_joystick_c 
	games/rocksndiamonds/pkg: PLIST 
Removed files:
	games/rocksndiamonds/patches: patch-src_game_em_sound_c 
	                              patch-src_libgame_sound_c 
	                              patch-src_libgame_text_c 

Log message:
Update to rocksndiamonds-4.0.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/04 14:14:26

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: d2i_ASN1_SEQUENCE_ANY.3 

Log message:
Write new d2i_ASN1_SEQUENCE_ANY(3) manual page from scratch.
All four functions are listed in <openssl/asn1.h>
and in OpenSSL doc/man3/d2i_X509.pod.

Note that in the OpenSSL documentation,
three of the four prototypes are incorrect.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/04 14:52:20

Modified files:
	net/dnscrypt-proxy: Makefile distinfo 
	net/dnscrypt-proxy/pkg: PLIST-plugins 

Log message:
update to dnscrypt-proxy-1.9.1, based on a diff from Pablo Méndez Hernández,
but skipping the new config file for now because we can't force daemonizing
for the rc script (or setting uid) while using the config file. (the ideal
situation for scripts would be to allow these flags to override things on
the config file).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/04 14:58:42

Modified files:
	security/py-cryptography: Makefile distinfo 
	security/py-cryptography/patches: 
	                                  patch-src__cffi_src_openssl_x509_vfy_py 
	security/py-cryptography/pkg: PLIST 
	security/py-cryptography_vectors: Makefile distinfo 
	security/py-cryptography_vectors/pkg: PLIST 

Log message:
update to py-cryptography-1.7.1


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/04 15:54:05

Modified files:
	lib/libcrypto/modes/asm: ghash-armv4.pl 

Log message:
Convert ARM assembly to unified syntax.  Clang demands it, binutils
supports it as long as it's marked as unified syntax.

ok bcook@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/01/04 17:23:13

Modified files:
	lang/gambit    : Makefile distinfo 

Log message:
Update to gambit 4.8.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/04 18:36:35

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/04 20:07:18

Modified files:
	devel/cppcheck : Makefile distinfo 

Log message:
update to cppcheck 1.77
ok gsoares@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2017/01/04 20:08:04

Modified files:
	net/snort      : Makefile distinfo 
	net/snort/patches: patch-src_decode_h 
	                   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_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 

Log message:
Update to Snort 2.9.9.0.

Maintainer timeout.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/04 23:08:31

Modified files:
	lib/libcrypto/man: ASN1_STRING_new.3 

Log message:
Complete rewrite, documenting 16 additional constructor/destructor pairs.
While OpenSSL does not document them, they are public in <openssl/asn1.h>,
and OpenSSL does document the related decoders and encoders.
It makes no sense to me to document object methods without documenting
the public constructors as well.

While here:
Bugfix: The type assigned by ASN1_STRING_new() was wrong.
Remove implementation details.
Add small amounts of useful auxiliary information.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/05 01:19:56

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 

Log message:
Update to gdk-pixbuf-2.36.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/05 01:24:07

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.4.93.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/05 01:24:23

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.36.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/05 01:24:38

Modified files:
	lib/libcrypto/man: ASN1_STRING_new.3 d2i_ASN1_OBJECT.3 

Log message:
minor tweaks;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/05 01:41:58

Modified files:
	sysutils/deja-dup: Makefile distinfo 
	sysutils/deja-dup/pkg: PLIST 

Log message:
Update to deja-dup-34.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/05 01:42:25

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/05 02:07:16

Modified files:
	usr.bin/tmux   : cmd-queue.c key-string.c screen-write.c 
	                 status.c tmux.h window-copy.c 

Log message:
Highlight all occurrences of search string after searching in copy mode.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/05 02:34:44

Modified files:
	usr.bin/mandoc : man.1 

Log message:
sort options list;


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/01/05 02:50:32

Modified files:
	build          : mirrors.dat 

Log message:
comment-out Erlangen mirror (openbsd.cs.fau.de); hw issues, requested by Simon Kuhnle


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/01/05 02:51:05

Modified files:
	build          : mirrors.dat 

Log message:
add httpslist to the list of files that need committing in the comment at top


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/01/05 02:51:42

Modified files:
	.              : ftp.html ftplist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/01/05 02:51:56

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/05 02:52:36

Modified files:
	x11/qt5/qtquickcontrols: Makefile 
	x11/qt5/qtquickcontrols/pkg: PLIST-html 

Log message:
Comment out the file qdoc sometimes fails to generate.

The root problem is not known yet, but this way we can get more reliable
builds, at least.

Initial report from naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/05 03:28:52

Modified files:
	devel/intellij : Makefile distinfo 
	devel/intellij/pkg: PLIST 

Log message:
Update to IntelliJ IDEA 2016.3.2, from MAINTAINER Caspar Schutijser.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/05 04:18:54

Modified files:
	sys/arch/amd64/stand/libsa: softraid_amd64.c 

Log message:
Fix boot(8) crashing on some amd64 machines when booting from softraid crypto.
Allocate a 4k temp buffer on the heap instead of the stack.
Problem was introduced in arch/amd64/stand/libsa/softraid_amd64.c r1.3.
Reported by Andreas Bartelt on bugs@
ok krw@ kettenis@ yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/05 04:47:02

Modified files:
	sys/dev/pv     : hyperv.c 

Log message:
Don't let producer index become equal with the consumer when writing

A nod to the re.c commit by dlg@, perhaps pure paranoia, but works
nevertheless.  While here replace a more expensive modulo operation
with a subtraction.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/05 05:10:54

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Remove some unnecessary code abstractions and while here remove a
splsoftnet.

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/05 05:42:19

Modified files:
	sbin/iked      : parse.y 
	sbin/ipsecctl  : parse.y 
	sbin/pfctl     : parse.y 
	usr.sbin/acme-client: parse.y 
	usr.sbin/bgpd  : parse.y 
	usr.sbin/dvmrpd: parse.y 
	usr.sbin/eigrpd: parse.y 
	usr.sbin/hostapd: parse.y 
	usr.sbin/httpd : parse.y 
	usr.sbin/ifstated: parse.y 
	usr.sbin/iscsictl: parse.y 
	usr.sbin/ldapd : parse.y 
	usr.sbin/ldpd  : parse.y 
	usr.sbin/ospf6d: parse.y 
	usr.sbin/ospfd : parse.y 
	usr.sbin/relayd: parse.y 
	usr.sbin/ripd  : parse.y 
	usr.sbin/smtpd : parse.y 
	usr.sbin/snmpd : parse.y 
	usr.sbin/switchd: parse.y 
	usr.sbin/vmd   : parse.y 
	usr.sbin/ypldap: parse.y 

Log message:
Replace symset()'s hand-rolled for(;;) traversal of 'symhead' TAILQ
with more modern TAILQ_FOREACH(). This what symget() was already
doing.

Add paranoia '{}' around body of symget()'s TAILQ_FOREACH().

No intentional functional change.

ok bluhm@ otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/05 06:17:22

Modified files:
	sys/dev/pv     : hyperv.c hypervreg.h 

Log message:
Microsoft has allocated us a SubID that we can use to identify OpenBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/05 06:23:51

Modified files:
	sys/dev/pv     : if_hvn.c if_xnf.c 

Log message:
Checking whether mbuf list is empty is done by the if_input now


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/05 06:25:52

Modified files:
	lib/libcrypto/ecdsa: ecs_ossl.c 

Log message:
Avoid a side-channel cache-timing attack that can leak the ECDSA private
keys when signing. This is due to BN_mod_inverse() being used without the
constant time flag being set.

This issue was reported by Cesar Pereida Garcia and Billy Brumley
(Tampere University of Technology). The fix was developed by Cesar Pereida
Garcia.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/05 06:27:17

Modified files:
	lib/libssl/src/crypto/ecdsa: Tag: OPENBSD_5_9 ecs_ossl.c 

Log message:
MFC: Avoid a side-channel cache-timing attack that can leak the ECDSA
private keys when signing. This is due to BN_mod_inverse() being used
without the constant time flag being set.

This issue was reported by Cesar Pereida Garcia and Billy Brumley
(Tampere University of Technology). The fix was developed by Cesar Pereida
Garcia.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/05 06:28:48

Modified files:
	lib/libssl/src/crypto/ecdsa: Tag: OPENBSD_6_0 ecs_ossl.c 

Log message:
MFC: Avoid a side-channel cache-timing attack that can leak the ECDSA
private keys when signing. This is due to BN_mod_inverse() being used
without the constant time flag being set.

This issue was reported by Cesar Pereida Garcia and Billy Brumley
(Tampere University of Technology). The fix was developed by Cesar Pereida
Garcia.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/05 06:50:13

Modified files:
	devel/gputils  : Makefile distinfo 
	devel/gputils/pkg: PLIST 

Log message:
Update to gputils-1.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2017/01/05 06:50:49

Modified files:
	textproc/the_silver_searcher: Makefile 
Added files:
	textproc/the_silver_searcher/patches: patch-src_ignore_c 
	                                      patch-src_options_c 
	                                      patch-src_scandir_h 
	                                      patch-src_search_c 

Log message:
Fix a buffer overrun and subsequent crash that may occur when ag is given
an absolute path as root of the tree to search: it's looking for a trailing
slash that isn't always there.

Fix by Allen Wild, https://github.com/ggreer/the_silver_searcher/pull/1040/

ok awolk, sthen, jca


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/05 06:53:10

Modified files:
	usr.sbin/acme-client: parse.y 
	usr.sbin/bgpd  : parse.y 
	usr.sbin/dvmrpd: parse.y 
	usr.sbin/eigrpd: parse.y 
	usr.sbin/hostapd: parse.y 
	usr.sbin/httpd : parse.y 
	usr.sbin/ifstated: parse.y 
	usr.sbin/iscsictl: parse.y 
	usr.sbin/ldapd : parse.y 
	usr.sbin/ldpd  : parse.y 
	usr.sbin/ospf6d: parse.y 
	usr.sbin/ospfd : parse.y 
	usr.sbin/relayd: parse.y 
	usr.sbin/ripd  : parse.y 
	usr.sbin/smtpd : parse.y 
	usr.sbin/snmpd : parse.y 
	usr.sbin/vmd   : parse.y 
	usr.sbin/ypldap: parse.y 

Log message:
Replace hand-rolled for(;;) emptying of 'symhead' TAILQ with more
modern TAILQ_FOREACH_SAFE().

No intentional functional change.

ok millert@ bluhm@ gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/05 07:23:30

Modified files:
	net/dnscrypt-proxy: Makefile 

Log message:
reinstate /old/ backup MASTER_SITES, lost in Pablo's diff. (not needed now,
but maybe later).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/05 09:16:17

Modified files:
	sys/arch/arm/arm: cpu.c 
	sys/arch/arm/include: cpu.h 

Log message:
Complete idle PCB allocation for secondary processors so that it makes
sense and builds as part of an MP kernel.

ok kettenis@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/05 09:52:42

Modified files:
	lib/librthread/arch/arm: _atomic_lock.c 
	sys/arch/armv7/include: spinlock.h 

Log message:
Now that all non-ARMv7 platforms are gone, tedu the legacy atomic
locking code.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/05 09:59:31

Modified files:
	lang/php       : Makefile.inc 

Log message:
Use lang/gcc for atomic builtins on arm.

Similar diff from jsg@, ok sthen@ phessler@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/05 10:33:27

Modified files:
	faq            : current.html 

Log message:
On amd64, armv7, i386, hppa and macppc, the bsd.rd installer defaults to
https.  Your autoinstall(8) response file may need the additional line

Unable to connect using https. Use http instead = yes|no

between the "HTTP Server" and "Set name(s)" responses.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/05 10:37:00

Modified files:
	faq            : current.html 

Log message:
id attributes may not contain '/' characters.


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2017/01/05 10:54:15

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Document cargo module.

Joint work with semarie, rewording from sthen@, tweaks from jmc@.
ok sthen@, jmc@, semarie (cargo maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/01/05 10:58:24

Modified files:
	.              : errata59.html errata60.html 

Log message:
release libcrypto errata.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/05 13:41:43

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Update to nss 3.28.1, because perfection is never attained.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.28.1_release_notes


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/05 13:46:00

Modified files:
	net/curl       : Makefile 
Added files:
	net/curl/patches: patch-lib_vtls_vtls_c 

Log message:
Upstream commit a7b38c9dc98481e4a5fc37e51a8690337c674dfb to fix a problem
that causes rtorrent to busy loop when announcing to the tracker.  ok tj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/05 13:56:54

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.042
adds workaround for Net::SSLeay 1.79, enables feature for 1.80


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/05 14:10:17

Modified files:
	net/curl       : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/curl/patches: Tag: OPENBSD_6_0 patch-lib_vtls_vtls_c 

Log message:
Upstream commit a7b38c9dc98481e4a5fc37e51a8690337c674dfb to fix a problem
that causes rtorrent to busy loop when announcing to the tracker.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2017/01/05 14:14:22

Modified files:
	libexec/ld.so  : Makefile 

Log message:
Build with -fno-builtin to keep clang from optimizing the _dl_memset()
and _dl_bcopy() functions into calls to memset() and memcpy().
ok kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2017/01/05 14:18:20

Modified files:
	app/cwm        : kbfunc.c 

Log message:
Ensure client stays inbound on key-based resize; based on logic existing in
key-based client move; from Vadim Vygonets.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/05 14:25:52

Modified files:
	sys/arch/arm64/dev: agtimer.c 

Log message:
Pass value as input instead of output register, otherwise we write
garbage into the control register.  While there remove positional
argument leftover from the 32-bit version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/05 14:27:03

Modified files:
	www/stagit     : Makefile distinfo 

Log message:
Update to stagit-0.5

from Hiltjo Posthuma


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/05 14:37:52

Modified files:
	net/irssi      : Makefile distinfo 

Log message:
SECURITY update to irssi-0.8.21 (minimal patches to fix security issues
only) - ok jca@ krw@

(a) A NULL pointer dereference in the nickcmp function found by Joseph
Bisch. (CWE-690)

(b) Use after free when receiving invalid nick message (Issue #466, CWE-146)

(c) Out of bounds read in certain incomplete control codes found by
Joseph Bisch. (CWE-126)

(d) Out of bounds read in certain incomplete character sequences found
by Hanno Böck and independently by J. Bisch. (CWE-126)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/05 15:04:37

Modified files:
	archivers/lz4  : Makefile distinfo 
	archivers/lz4/patches: patch-Makefile patch-lib_Makefile 
	                       patch-programs_Makefile 
Added files:
	archivers/lz4/patches: patch-tests_Makefile 

Log message:
update to lz4-1.7.4.2 (not 1.7.5 yet as it segfaults during tests)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 15:38:04

Modified files:
	lib/libcrypto/man: ASN1_STRING_new.3 Makefile 
Added files:
	lib/libcrypto/man: d2i_ASN1_OCTET_STRING.3 

Log message:
Write new d2i_ASN1_OCTET_STRING(3) manual page from scratch.
All 36 functions listed in <openssl/asn1.h>
and in OpenSSL doc/man3/d2i_X509.pod,
six of them with wrong prototypes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/05 16:03:44

Log message:
    import p5-Number-WithError 1.01
    OK jca@
    
    Comment:
    numbers with error propagation and scientific rounding
    
    Description:
    This class is a container class for numbers with a number of
    associated symmetric and asymmetric errors.  It overloads practically
    all common arithmetic operations and trigonometric functions to
    propagate the errors.  It can do proper scientific rounding.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170106
    
    N ports/math/p5-Number-WithError/Makefile
    N ports/math/p5-Number-WithError/distinfo
    N ports/math/p5-Number-WithError/pkg/DESCR
    N ports/math/p5-Number-WithError/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/05 16:04:24

Modified files:
	audio/openal   : Makefile 

Log message:
Don't build the Qt-based config editor.

Spotted by naddy@, initial diff from David Carlier (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/05 16:08:18

Modified files:
	math           : Makefile 

Log message:
+p5-Number-WithError


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 16:13:07

Modified files:
	lib/libcrypto/man: d2i_ASN1_OCTET_STRING.3 

Log message:
Also document the weird d2i_ASN1_UINTEGER(3), listed in <openssl/asn1.h>
and in OpenSSL doc/man3/d2i_X509.pod (with wrong prototype).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/05 17:06:02

Modified files:
	sys/arch/arm/arm: bcopyinout.S bus_space_asm_generic.S copystr.S 
	                  cpufunc.c fault.c irq_dispatch.S locore.S 
	sys/arch/arm/include: atomic.h cpu.h cpuconf.h cpufunc.h frame.h 
	                      pmap.h 
	sys/arch/arm/mainbus: mainbus.c 

Log message:
unifdef CPU_ARMv7 and ARM_ARCH_7
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/05 17:27:42

Modified files:
	lib/libcrypto/man: d2i_ASN1_OCTET_STRING.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/05 17:46:49

Modified files:
	sys/arch/arm/include: endian.h 

Log message:
there is no longer a need to ifdef __armv7__ armv6 rev instructions


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 18:33:49

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
sort options list; the same as jmc@ did in man.1 rev. 1.18


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/01/05 19:09:25

Modified files:
	regress/usr.bin/ssh: forwarding.sh 

Log message:
Make forwarding test less racy by using unix domain sockets instead of
TCP ports where possible.  Patch from cjwatson at debian.org via bz#2659.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/01/05 19:26:10

Modified files:
	regress/usr.bin/ssh: integrity.sh 

Log message:
Account for timeouts in the integrity tests as failures.

If the first test in a series for a given MAC happens to modify the low
bytes of a packet length, then ssh will time out and this will be
interpreted as a test failure.  Patch from cjwatson at debian.org via
bz#2658.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 19:29:18

Modified files:
	lib/libcrypto/man: BIO_s_bio.3 

Log message:
delete bogus cross references reported by jmc@
and add some missing escaping of backslashes while here


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/01/05 19:34:54

Modified files:
	usr.bin/ssh    : sshd_config.5 

Log message:
Re-add '%k' token for AuthorizedKeysCommand which was lost during the
re-org in rev 1.235.  bz#2656, from jboning at gmail.com.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 19:37:05

Modified files:
	lib/libcrypto/man: SMIME_read_PKCS7.3 

Log message:
Delete bogus cross reference reported by jmc@.
Documenting these trivial PKCS7_type_is_*() macros
does not seem useful, at least not right now.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 19:43:14

Modified files:
	lib/libcrypto/man: EVP_PKEY_sign.3 EVP_PKEY_verify_recover.3 

Log message:
fix typos in cross references reported by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/05 19:51:16

Modified files:
	regress/usr.bin/ssh: agent-getpeereid.sh 

Log message:
use correct ssh-add program; bz#2654, from Colin Watson


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 20:00:56

Modified files:
	lib/libcrypto/man: X509_NAME_add_entry_by_txt.3 

Log message:
Delete a sentence that attempted to explain an implementation detail
by referencing a non-existent manual page.
Broken .Xr reported by jmc@.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/05 20:41:58

Modified files:
	usr.bin/ssh    : ssh-keyscan.c 

Log message:
Avoid confusing error message when attempting to use ssh-keyscan built
without SSH protocol v.1 to scan for v.1 keys; bz#2583


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/05 20:45:41

Modified files:
	usr.bin/ssh    : servconf.c 

Log message:
sshd_config is documented to set GSSAPIStrictAcceptorCheck=yes by
default, so actually make it do this. bz#2637 ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/05 20:45:57

Modified files:
	lib/libcrypto/man: BIO_f_base64.3 

Log message:
Delete a cross reference to the non-existent manual page BIO_set_flags(3),
reported by jmc@.  Documenting that function would be a bad idea.  All
other flags are used internally and should better not be tampered with.
It looks like an internal function that was made public by mistake,
then abused for an unrelated user interface purpose: a classic case
of botched user interface design.

Instead, only show how to use this function for this one specific purpose.

While here, delete a sentence from the DESCRIPTION that merely
duplicated content from the BUGS section.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/05 20:53:58

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
show a useful error message when included config files can't be
opened; bz#2653, ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/06 01:34:31

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/06 01:37:58

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-1.4.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/06 01:49:39

Modified files:
	security/volatility: Makefile distinfo 
	security/volatility/pkg: PLIST 

Log message:
update volatility to 2.6.
ok benoit@.
more information: http://www.volatilityfoundation.org/26


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/06 01:49:52

Modified files:
	graphics/libgphoto2: Makefile distinfo 

Log message:
Update to libgphoto-2.5.12.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/06 02:27:52

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
fix previous


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/06 03:02:57

Modified files:
	sys/netinet    : ip_mroute.c 
	sys/netinet6   : ip6_mroute.c 

Log message:
Kill various splsoftnet().

ok rzalamena@, visa@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/06 03:07:06

Modified files:
	faq            : current.html 

Log message:
make the auto_{install,upgrade}.conf snippet copy-pastable


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/06 03:32:33

ports/databases/py-minidb/patches

Update of /cvs/ports/databases/py-minidb/patches
In directory cvs.openbsd.org:/tmp/cvs-serv17214/patches

Log Message:
Directory /cvs/ports/databases/py-minidb/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/06 03:33:37

Modified files:
	databases/py-minidb: Makefile 
Added files:
	databases/py-minidb/patches: patch-minidb_py 

Log message:
Workaround https://bugs.python.org/issue28518 which is breaking urlwatch
following the switch to python 3.6, problem reported by semarie


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/06 03:45:20

Modified files:
	databases/py-minidb/patches: patch-minidb_py 

Log message:
add further reference to patch comment


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/06 03:55:20

Modified files:
	databases/py-minidb: Makefile 

Log message:
Add test for py-mindb

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/06 04:57:03

Modified files:
	usr.bin/tmux   : cmd-command-prompt.c cmd-confirm-before.c cmd.c 
	                 key-bindings.c status.c tmux.1 tmux.h 
	                 window-copy.c 

Log message:
Incremental search in copy mode (on for emacs keys by default) - much
the same as normal searching but updates the cursor position and marked
search terms as you type. C-r and C-s in the prompt repeat the search,
once finished searching (with Enter), N and n work as before.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/06 04:57:19

Modified files:
	net/munin      : Makefile distinfo 

Log message:
Bugfix update to munin-2.0.29


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/06 06:26:09

Modified files:
	usr.bin/tmux   : cmd-load-buffer.c cmd-save-buffer.c 
	                 cmd-command-prompt.c cmd-switch-client.c 

Log message:
Nits found with clang.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/06 06:29:38

Modified files:
	www/trac       : Makefile distinfo 
	www/trac/pkg   : PLIST 

Log message:
update to Trac 1.2; major update so as usual you'll need to upgrade
the trac environment and should check the rest of the guide at
https://trac.edgewall.org/wiki/TracUpgrade


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/06 06:48:58

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Simplify code by removing some old pullup macro, killing some variables
and using m_dup_pkt() instead of m_copym() with max_linkhdr space adjust
on packet sending to avoid more mbuf allocations.

with input from millert@ and mikeb@,
ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/06 06:56:32

Modified files:
	share/man/man4 : malo.4 urtw.4 

Log message:
No point in having an .Xr hostapd if hostap mode is not supported by the
driver, so comment it out as is done elsewhere.

ok stsp


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/06 07:01:19

Modified files:
	sys/net        : if_var.h 
	sys/netinet    : ip_mroute.c ip_mroute.h 

Log message:
Remove the global viftable vector that holds the virtual interfaces
configuration and instead use ifnet to store the configuration and
counters. With this we can safely use multicast routing daemons on
multiple domains without vif id colisions.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2017/01/06 07:07:45

Modified files:
	sysutils/rancid: Makefile distinfo 
	sysutils/rancid/pkg: PLIST 

Log message:
Update to 3.6.1
Give maintainership to Pavel Korovin

ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2017/01/06 07:17:28

Modified files:
	databases/postgresql: Tag: OPENBSD_6_0 Makefile distinfo 
	databases/postgresql/pkg: Tag: OPENBSD_6_0 PLIST-docs 

Log message:
Bugfix update to 9.5.5
ok jeremy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/06 07:22:30

Modified files:
	sys/sys        : cdefs.h 

Log message:
Add C11 support.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/06 07:36:50

Modified files:
	include        : stddef.h 

Log message:
Add max_align_t.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/06 07:44:34

Modified files:
	gnu/usr.bin/clang/include/clang/intrin: Makefile 

Log message:
Don't install standard C headers for which we already have a proper system
version.  Also don't install vadefs.h which is a microsoft invention.

ok patrick@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/06 08:04:13

Modified files:
	faq            : faq6.html 

Log message:
instead of having two wireless client hostname.if(5) examples where the
only difference is static IP vs. dhcp, change one of the examples into a
wireless access point.

ok stsp


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/01/06 08:14:44

Modified files:
	geo/openbsd-developers: Makefile 
	geo/openbsd-developers/files: OpenBSD 

Log message:
I now live in Montreal. If you want to meet over a beer, just mail me!

ok umap^Wlandry@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/06 08:37:44

Modified files:
	sys/arch/loongson/loongson: machdep.c 
	sys/arch/octeon/octeon: machdep.c 
	sys/arch/sgi/sgi: machdep.c 

Log message:
Ansify cpu_sysctl() on mips64 platforms.

OK patrick@, visa@, jasper@, mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/06 08:42:14

Modified files:
	devel/meson    : Makefile distinfo 
	devel/meson/pkg: PLIST 

Log message:
Update to meson-0.37.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 08:55:38

Added files:
	databases/ruby-mysql/patches: patch-ext_mysql_api_mysql_c 

Log message:
Add patch to allow building with ruby 2.4.0

No change for earlier versions, so no bump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 08:56:31

Modified files:
	devel/ruby-racc: Makefile 
	devel/ruby-racc/pkg: PLIST 

Log message:
Remove ext directory from package, only used when building


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 08:57:11

Modified files:
	devel/ruby-hoe : Makefile distinfo 
	devel/ruby-hoe/pkg: PLIST 

Log message:
Update to hoe 3.16.0, allows usage with rake 12


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 08:59:27

Log message:
    Import ruby 2.4.0
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	jeremy
    Release Tags:	jeremy_2017-Jan-06
    
    N ports/lang/ruby/2.4/distinfo
    N ports/lang/ruby/2.4/Makefile
    N ports/lang/ruby/2.4/patches/patch-ext_extmk_rb
    N ports/lang/ruby/2.4/patches/patch-common_mk
    N ports/lang/ruby/2.4/patches/patch-compile_c
    N ports/lang/ruby/2.4/patches/patch-configure
    N ports/lang/ruby/2.4/patches/patch-test_ruby_test_io_rb
    N ports/lang/ruby/2.4/patches/patch-lib_fileutils_rb
    N ports/lang/ruby/2.4/patches/patch-ext_etc_etc_c
    N ports/lang/ruby/2.4/patches/patch-lib_rubygems_commands_install_command_rb
    N ports/lang/ruby/2.4/patches/patch-lib_rubygems_dependency_installer_rb
    N ports/lang/ruby/2.4/patches/patch-lib_rubygems_ext_ext_conf_builder_rb
    N ports/lang/ruby/2.4/patches/patch-test_ruby_test_process_rb
    N ports/lang/ruby/2.4/patches/patch-include_ruby_ruby_h
    N ports/lang/ruby/2.4/patches/patch-lib_mkmf_rb
    N ports/lang/ruby/2.4/pkg/DESCR-ri_docs
    N ports/lang/ruby/2.4/pkg/DESCR-gdbm
    N ports/lang/ruby/2.4/pkg/DESCR-main
    N ports/lang/ruby/2.4/pkg/MESSAGE-main
    N ports/lang/ruby/2.4/pkg/PLIST-ri_docs
    N ports/lang/ruby/2.4/pkg/PLIST-gdbm
    N ports/lang/ruby/2.4/pkg/PLIST-main
    N ports/lang/ruby/2.4/pkg/UNMESSAGE-main
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/06 08:59:28

Log message:
    Import ebook-viewer-0.0.1.
    
    easy-ebook-viewer is a simple and modern ePub files reader.
    
    ok robert@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20170106
    
    N ports/graphics/ebook-viewer/Makefile
    N ports/graphics/ebook-viewer/distinfo
    N ports/graphics/ebook-viewer/pkg/PLIST
    N ports/graphics/ebook-viewer/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/06 09:00:14

Modified files:
	graphics       : Makefile 

Log message:
+ebook-viewer


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 09:00:21

Modified files:
	lang/ruby      : Makefile 

Log message:
Hookup ruby 2.4 to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 09:03:54

Modified files:
	lang/ruby      : ruby.port.mk 

Log message:
Add support for using ruby 2.4 to ruby.port.mk

This adds support for FLAVOR=ruby24 to most ruby gem ports, to
allow building of a package for ruby 2.4.

Additionally, refactor ruby.port.mk to reduce duplication and make
future updates simpler.

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 09:04:59

Modified files:
	textproc/ruby-hyperestraier: Makefile 

Log message:
Add ruby24 FLAVOR for building ruby 2.4 version


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 09:06:05

Modified files:
	x11/kde4/ruby-qt: Makefile 
	x11/kde4/ruby-qt/pkg: PLIST 

Log message:
Add support for building ruby 2.4 version via ruby24 FLAVOR, and update
conflict markers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 09:08:18

Modified files:
	audio          : Makefile 
	databases      : Makefile 
	devel          : Makefile 
	graphics       : Makefile 
	net            : Makefile 
	security       : Makefile 
	sysutils       : Makefile 
	textproc       : Makefile 
	www            : Makefile 

Log message:
Build ruby24 versions of gem ext ports where we currently build ruby23
versions.


CVSROOT:	/cvs
Module name:	src
Changes by:	jeremy@cvs.openbsd.org	2017/01/06 09:11:22

Modified files:
	share/man/man5 : ruby-module.5 

Log message:
Add ruby 2.4 information


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/06 09:28:12

Modified files:
	usr.bin/ssh    : sshd_config.5 

Log message:
keep the tokens list sorted;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/06 09:45:35

Modified files:
	devel/pyflakes : Makefile distinfo 

Log message:
Update to pyflakes 1.4.0.

ok frantisek holop (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/06 09:51:56

Modified files:
	www/py-jinja2  : Makefile distinfo 
	www/py-jinja2/pkg: PLIST 

Log message:
Update to py-jinja2 2.8.1.

ok frantisek holop (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/01/06 09:54:33

Modified files:
	.              : lyrics.html 
Added files:
	images         : 60g_right.jpg 

Log message:
Add one more song "Wish you were secure" which fits into the 6.0 "The Wall"
theme.  Unfortunately this one missed the cutoff (by a lot).  I thought of
releasing it during 6.1 but it feels better to just release it now.  Enjoy.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/06 10:02:06

Modified files:
	devel/ctftools : Makefile 

Log message:
Broken on alpha, #error "ISA not supported"

Nobody loves you, alpha.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/01/06 10:07:02

Modified files:
	.              : lyrics.html 

Log message:
put song in correct order


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/06 10:10:15

Modified files:
	faq            : faq6.html 

Log message:
make the transition from the client config to the ap config a bit smoother


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 10:17:29

Modified files:
	lib/libcrypto/man: des_read_pw.3 

Log message:
Add EVP_read_pw_string(3) to NAME and SYNOPSIS,
resolving a dangling cross reference reported by jmc@.

Sort NAME and SYNOPSIS to agree with .Dt and DESCRIPTION.
Unify parameter names.
Delete a sentence about an implementation detail that is no longer true.
Mention the length limitation of the *_string() variants.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/06 10:28:43

Modified files:
	games/brumbrumrally: Makefile 

Log message:
Mark broken on alpha, yet another hqx OOM failure...


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/06 10:32:22

Modified files:
	lang/rust      : Makefile 

Log message:
Apply some black magic (shoplifted from lang/ghc) to fix
DISTFILES/SUPDISTFILES handling so that non-supported archs dont error
out in dpb with cryptic messages such as 'Incomplete info for
rust/rustc-bootstrap-sparc64-.tar.gz'

Reminder: DISTFILES is supposed to contain the list of files needed *on
the current arch* while SUPDISTFILES should have the list *of all files
that port might use* (think about make makesum)

discussed with semarie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/06 10:35:56

Modified files:
	devel/cargo    : Makefile 

Log message:
Apply the same voodoo that has just been commited to lang/rust.

Shouldn't change anything on supported archs, and fix others for dpb.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 10:38:21

Modified files:
	lib/libcrypto/man: HMAC.3 

Log message:
Remove a dangling cross reference reported by jmc@.

I'm not convinced documenting EVP_MD_CTX_set_flags(3) would be wise.
Instead, refer people to the header file to make it more obvious
that they are tinkering with internals when using such flags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/06 10:39:02

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Add ac_cv_path_mkdir=/bin/mkdir and ac_cv_prog_AWK=/usr/bin/awk to
CONFIGURE_ENV, should prevent internal libffi's configure to pickup
gmkdir or gawk as seen by sthen@. Yay autohell.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/01/06 10:44:37

Modified files:
	.              : lyrics.html 

Log message:
typo


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 10:59:58

Modified files:
	lib/libcrypto/man: PKCS7_sign_add_signer.3 

Log message:
Remove a dangling .Xr to PKCS7_SIGNER_INFO_sign(3) reported by jmc@
and just use .Fn for now.

There are about two dozen interfaces dealing with PKCS7_SIGNER_INFO
objects and none but the constructor, destructor, decoder, and encoder
are documented so far.  It makes no sense to document one random one,
and i'm not going to document all of PKCS7_SIGNER_INFO right now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/01/06 11:17:33

Modified files:
	textproc/py-feedparser: Makefile distinfo 
	textproc/py-feedparser/pkg: PLIST 

Log message:
Update to py-feedparser 5.2.1.
Add a Python 3 flavor at the same time.

ok shadchin@, Romain GAILLEGUE (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/01/06 11:21:34

Modified files:
	textproc       : Makefile 

Log message:
+py-feedparser,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 11:21:55

Modified files:
	lib/libcrypto/man: PKCS7_sign.3 PKCS7_sign_add_signer.3 

Log message:
Remove dangling .Xrs to PKCS7_final(3) reported by jmc@
and just use .Fn for now.

Not counting constructors, destructors, decoders, encoders, and
debuggers, six out of 24 public functions operating on PKCS7 objects
are currently documented.  I'm not documenting the remaining 18 ones
at this point in time.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 11:46:38

Modified files:
	lib/libcrypto/man: UI_new.3 

Log message:
Remove bogus cross reference to ui_create(3) reported by jmc@
and refer readers to the header file instead.

I'm not convinced customized prompting is such a bright idea, it
feels somewhat like overengineering, so i'm not documenting it right
now.  People who really feel compelled to roll their own prompting
can go read the source code.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 12:19:54

Modified files:
	lib/libcrypto/man: X509_check_ca.3 

Log message:
Delete a cross reference to the undocumented function X509_check_purpose(3)
that wasn't accompanied by any related information.  Reported by jmc@.

There are a dozen functions handling X509_PURPOSE objects, all
undocumented, a host of defines, and it seems that a callback is
required.  So this seems complicated, i doubt that is much used
in practice, and i'm not diving into it at this point in time.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 12:34:22

Modified files:
	lib/libcrypto/man: X509_CRL_get0_by_serial.3 

Log message:
Replace two dangling .Xrs to sk_*() macros with .Fn; reported by jmc@.

The safestack stuff is the most ill-designed user interface i have
seen so far in OpenSSL.  It looks positively undocumentable.
At least i'm not trying to document it right now.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 13:35:23

Modified files:
	lib/libcrypto/man: BIO_get_ex_new_index.3 CRYPTO_set_ex_data.3 
	                   ECDSA_SIG_new.3 RSA_get_ex_new_index.3 
	                   engine.3 

Log message:
resolve duplication of names and prototypes in manuals related to ex_data
and sprinkle cross references instead; more work is obviously needed here


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 14:30:27

Modified files:
	lib/libcrypto/man: X509_VERIFY_PARAM_set_flags.3 

Log message:
Delete a sentence containing a cross reference to an undocumented
function that had the the sole purpose of discouraging its use.
Not talking about it at all discourages using it even more.

Dangling cross reference reported by jmc@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/06 15:14:07

Modified files:
	www/firefox-esr: Makefile 
	www/mozilla-firefox: Makefile 
	www/seamonkey  : Makefile 
	mail/mozilla-thunderbird: Makefile 
Added files:
	www/firefox-esr/patches: 
	                         patch-netwerk_protocol_http_Http2Session_cpp 
	www/mozilla-firefox/patches: 
	                             patch-netwerk_protocol_http_Http2Session_cpp 
	www/seamonkey/patches: 
	                       patch-mozilla_netwerk_protocol_http_Http2Session_cpp 
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_netwerk_protocol_http_Http2Session_cpp 

Log message:
Fix NS_ERROR_NET_INADEQUATE_SECURITY error messages on
wikipedia|google|cnn|various sites (http/2?) broken by the nss 3.28
update, my bad - totally forgot about this when updating.

Backport https://hg.mozilla.org/mozilla-central/rev/361ac226da2a

See https://bugzilla.mozilla.org/show_bug.cgi?id=1290037 &
https://bugzilla.mozilla.org/show_bug.cgi?id=1323209

Reported by Solene Rapenne and others, fix tested by danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 15:46:06

Modified files:
	lib/libcrypto/man: X509_LOOKUP_hash_dir.3 
	                   X509_STORE_set1_param.3 

Log message:
Remove cross references to the undocumented functions X509_STORE_new(3)
and X509_STORE_add_lookup(3) reported by jmc@.

Even though these functions are public, they seem more useful internally
than for application programs, so now is not the time to document them.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/06 17:01:19

Modified files:
	mail/swaks     : Makefile 

Log message:
portroach tweak


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 17:45:04

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_STORE_load_locations.3 

Log message:
Write a new manual page X509_STORE_load_locations(3) from scratch.
Not documented by OpenSSL, but listed in <openssl/x509_vfy.h>
and referenced from X509_LOOKUP_hash_dir(3), and clearly more
important than the latter.  Fixes three dead links reported by jmc@.

Most of the information from SSL_CTX_load_verify_locations(3) should
probably be moved here, but not all, since the SSL page also talks
about SSL servers and clients and the like.  As i'm not completely
sure regarding the boundaries, i'm leaving that as it is for now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/06 18:05:43

Modified files:
	lang/mawk      : Makefile distinfo 

Log message:
Update to mawk-1.3.4-20161120


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 18:25:14

Modified files:
	lib/libcrypto/man: d2i_X509_NAME.3 

Log message:
Document X509_NAME_hash(3), listed in <openssl/x509.h>;
jmc@ reported that X509_LOOKUP_hash_dir(3) references it.
Even though OpenSSL does not document it, given that it is used for
file names that users have to create, it is sufficiently exposed
to users to be worth documenting.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 20:01:44

Modified files:
	lib/libcrypto/man: X509_STORE_CTX_new.3 

Log message:
Use .Fn rather than .Xr for X509_VERIFY_PARAM_lookup(),
fixing a dead link reported by jmc@.

Only about half of X509_VERIFY_PARAM is documented so far,
and the extensible lookup table feels like one of the more
arcane features and probably not the next thing to document.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/06 22:06:22

Modified files:
	lib/libcrypto/man: BN_add.3 BN_copy.3 BN_generate_prime.3 

Log message:
correctly mark all documented macros found in <openssl/bn.h>


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/01/06 23:10:40

Modified files:
	sys/dev/usb    : umidi.c 

Log message:
Remove unused MIX_CN_CIN macro, make umidi_evlen[] static, style(9).
From Michael W. Bombardieri. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/06 23:45:24

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
Revert part of r1.54 as there are at least two situations where we are still
returning ok == 1, with ctx->error not being X509_V_OK. Hopefully we can
restore this behaviour once these are ironed out.

Discussed with beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/07 01:46:13

Modified files:
	lib/libcrypto/man: BIO_f_md.3 X509_STORE_load_locations.3 
	                   crypto.3 d2i_ASN1_OCTET_STRING.3 
	                   d2i_X509_NAME.3 

Log message:
a little more cleanup;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/07 02:50:08

Modified files:
	gnu/usr.bin/clang/include/clang/intrin: Makefile 

Log message:
Only install header files relevant for the architecture we're targeting.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2017/01/07 04:25:49

Modified files:
	lib/libssl/src/crypto: Tag: OPENBSD_6_0 opensslv.h 

Log message:
Bump for LibreSSL 2.4.5


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2017/01/07 04:26:47

Modified files:
	lib/libssl/src/crypto: Tag: OPENBSD_5_9 opensslv.h 

Log message:
Bump for LibreSSL 2.3.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/07 04:38:46

Modified files:
	audio/gradio   : Makefile distinfo 
	audio/gradio/pkg: PLIST 

Log message:
Update to gradio 5.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/07 05:10:11

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
-#endif /* !SMALL */
+#endif /* !NOSSL */


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/07 05:27:19

Modified files:
	comms/gammu    : Makefile distinfo 

Log message:
Bugfix update to gammu-1.38.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/07 05:35:28

Modified files:
	databases/tdb  : Makefile distinfo 

Log message:
Update to tdb-1.3.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/07 05:55:14

Modified files:
	sysutils/fabric: Makefile distinfo 
	sysutils/fabric/pkg: PLIST 

Log message:
update to fabric-1.13.1

from Pablo Mendez Hernandez (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/07 05:58:53

Modified files:
	security/lastpass-cli: Makefile distinfo 
Added files:
	security/lastpass-cli/patches: patch-CMakeLists_txt 
	                               patch-pbkdf2_c 
Removed files:
	security/lastpass-cli/patches: patch-Makefile 

Log message:
- update to lastpass-cli 1.1.0

from Bjorn Ketelaars (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/07 06:01:05

Modified files:
	security/burpsuite: Makefile distinfo 

Log message:
small update burpsuite 1.7.15.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/07 06:11:31

Modified files:
	www/qutebrowser: Makefile distinfo 
	www/qutebrowser/pkg: PLIST 

Log message:
update to qutebrowser-0.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/07 06:21:33

Modified files:
	lang/elixir    : Makefile distinfo 
	lang/elixir/pkg: PLIST 

Log message:
update to elixir-1.4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/07 06:21:50

Added files:
	lang/elixir/patches: patch-Makefile 

Log message:
missed in previous


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/07 06:49:07

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
Add and remove some blank lines, in order to make X509_verify_cert()
(slightly) more readable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/07 08:22:00

Modified files:
	telephony/asterisk-openbsd-moh: Makefile distinfo 
	telephony/asterisk-openbsd-moh/pkg: PLIST 

Log message:
add one more 6.0 song


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/07 08:28:13

Modified files:
	usr.bin/tmux   : cmd-send-keys.c input.c screen-redraw.c tmux.h 
	                 tty.c window-choose.c window-clock.c 
	                 window-copy.c window.c 

Log message:
Add support for the OSC 4 and OSC 104 palette setting escape sequences,
from S Gilles.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/07 08:40:23

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Add note about ccc and initc so people who want it can see it is
possible.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/07 08:44:28

Modified files:
	sys/arch/armv7/armv7: armv7_start.S 

Log message:
Fill bootstrap translation table with zeroes before we use it and don't map
the vectors page at address 0 as we don't put them there.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/07 09:04:13

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 09:59:28

Modified files:
	faq            : faq6.html 

Log message:
shorten and smoothen the section on pxe booting a bit. this version is
mostly from tj who massaged my rough initial diff into something much
more pleasant.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/07 10:27:15

Modified files:
	lib/libcrypto/man: d2i_PKCS8PrivateKey_bio.3 

Log message:
fix a typo in an .Xr reported by jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/07 11:09:28

Modified files:
	databases/ruby-mysql/patches: patch-ext_mysql_api_mysql_c 

Log message:
Support building on ruby 1.8 again, last commit broke ruby 1.8 version.

Noticed by naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 11:11:37

Modified files:
	faq            : faq6.html 

Log message:
add a lost 'a'


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/07 12:06:32

Modified files:
	devel/py-ioflo : Makefile distinfo 
	devel/py-ioflo/pkg: PLIST 

Log message:
Update to py-ioflo-1.6.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/07 12:09:43

Modified files:
	sysutils/amazon-ssm-agent: Makefile 

Log message:
Fix HOMEPAGE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/07 12:14:49

Modified files:
	sysutils/simple-mtpfs: Makefile distinfo 

Log message:
Update to simple-mtpfs-0.3.0.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 12:41:33

Modified files:
	faq            : faq6.html 

Log message:
sort list of virtual interfaces


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 13:57:31

Modified files:
	faq            : faq7.html 

Log message:
replace a paragraph that was copy-pasted from the cua(4) manual 17 years
ago with a simple reference to said manual.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/07 15:37:03

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
use 16 bit segment selectors. also reduces differences with i386 vmm


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/07 15:39:16

Modified files:
	sys/arch/i386/i386: vmm.c vmm_support.S 

Log message:
add rcs tags


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/07 16:01:27

Modified files:
	sys/arch/i386/i386: vmm.c 
	sys/arch/amd64/amd64: vmm.c 

Log message:
reduce statement nesting depth in a couple places, suggested by
Michael Bombardieri


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/07 16:12:58

Modified files:
	share/man/man9 : pmap.9 

Log message:
fix commata in the NAME section


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/07 16:15:37

Modified files:
	lib/libcrypto/man: ASN1_STRING_new.3 

Log message:
add missing comma in the NAME section


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/07 16:16:12

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Some newer Intel Xeon E5v4 PCI ids, from Hrvoje Popovski

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/07 16:16:36

Modified files:
	sys/dev/pci    : pcidevs_data.h pcidevs.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/07 16:33:53

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c sxiccmu_clocks.h 

Log message:
Make getting the parent clock for the SD/MMC controller work on the
Allwinner H3.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 16:42:50

Modified files:
	faq            : faq7.html 

Log message:
first pass over the serial console section: compress the long introduction
and try to make the organization of the section stand out a bit more.
zap some redundant section headings.

with help from tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/07 16:49:47

Modified files:
	mail/postfix/snapshot: Makefile distinfo 
	mail/postfix/snapshot/patches: patch-conf_master_cf 
	                               patch-src_tls_tls_client_c 
	                               patch-src_tls_tls_dane_c 
	                               patch-src_tls_tls_h 
	                               patch-src_tls_tls_server_c 
Added files:
	mail/postfix/snapshot/patches: patch-src_tls_tls_dh_c 

Log message:
update to postfix-3.2.20170101, from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/07 17:10:22

Modified files:
	usr.bin/mandoc : mandoc.1 mandoc.h mdoc_validate.c read.c 
	regress/usr.bin/mandoc/mdoc/Nd: broken.out_lint 
	regress/usr.bin/mandoc/mdoc/Sh: Makefile emptyNAME.out_lint 
Added files:
	regress/usr.bin/mandoc/mdoc/Sh: orderNAME.in orderNAME.out_ascii 
	                                orderNAME.out_lint punctNAME.in 
	                                punctNAME.out_ascii 
	                                punctNAME.out_lint 

Log message:
Stricter validation of the NAME section, in particular:
- require a comma between names
- reject all other text nodes
- reject all empty Nm below NAME, not only in the leading position
- reject Nm after Nd


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/07 17:27:27

Modified files:
	mail/postfix/stable: Makefile distinfo 

Log message:
update to postfix-3.1.4, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/07 18:16:32

Log message:
    import p5-Dumbbench 0.10
    OK benoit@ sthen@
    
    Comment:
    more reliable benchmarking
    
    Description:
    This module attempts to implement reasonably robust benchmarking
    with little extra effort and expertise required from the user.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170108
    
    N ports/benchmarks/p5-Dumbbench/Makefile
    N ports/benchmarks/p5-Dumbbench/distinfo
    N ports/benchmarks/p5-Dumbbench/pkg/PLIST
    N ports/benchmarks/p5-Dumbbench/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/07 18:19:15

Modified files:
	benchmarks     : Makefile 

Log message:
+p5-Dumbbench


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 18:21:13

Modified files:
	faq            : faq7.html 

Log message:
rework the i386/amd64 serial console a bit. shorten and reword some things
and use the usual faq formatting

with tj


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/07 18:32:02

Modified files:
	usr.sbin/fdformat: fdformat.1 

Log message:
add missing .An macros


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/07 18:38:31

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
delete three macro lines that have no effect, found with mandoc -Tlint


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/07 18:59:49

Modified files:
	devel/llvm     : Makefile 
	x11/gnome/builder: Makefile 
Added files:
	devel/llvm/pkg : DESCR-main DESCR-python MESSAGE-main 
	                 PFRAG.lld-main PLIST-main PLIST-python 
Removed files:
	devel/llvm/pkg : DESCR MESSAGE PFRAG.lld PLIST 

Log message:
Create subpackage py-llvm that contains the Python bindings for Clang.
Bump revision of llvm main package and x11/gnome/builder.
OK Brad Smith (maintainer) ajacoutot@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/07 19:01:14

Modified files:
	usr.bin/mandoc : mdoc_validate.c 

Log message:
Tolerate bare tabs in SYNOPSIS .Cd for now.
It's used in half a dozen pages.
Even though i have been thinking about it for years,
i still can't suggest anything better.
The false positives are annoying.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 19:06:43

Modified files:
	faq            : faq7.html 

Log message:
rewrap the sparc64 and macppc serial console sections.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/07 19:16:08

Modified files:
	sys/net        : if_spppsubr.c 

Log message:
When if_down() is called, sppp_keepalive() needs a NET_LOCK().
OK visa@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/07 20:00:59

Modified files:
	security/p5-Net_SSLeay: Makefile distinfo 
Added 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.80
COMP_add_compression_method() removed, we have OPENSSL_NO_COMP
add a patch to support RSA_get_key_parameters() with LibreSSL
OK afresh1@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/01/07 20:53:55

Modified files:
	faq/pf         : perf.html 

Log message:
- thin out some text that says a lot without really saying anything
- remove pf benchmark section (which is just more of the same)
- remove many redundant sentences, make things more concise
- remove section talking about the limitations of the ISA bus
- remove section bragging about how much we can do with 32mb of ram
- fix some odd wording ("how much computer do i need to...")


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/07 21:13:42

Modified files:
	faq            : faq13.html 

Log message:
s/or DOS //


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/07 22:48:27

Modified files:
	sys/dev/ic     : r92creg.h rtwn.c 
	sys/dev/usb    : if_urtwn.c 

Log message:
Make urtwn(4) use AMRR instead of letting the firmware handle rate scaling.
For now this only affects RTL8188EU chips, perhaps because the author of this
patch does not own any devices containing any of the other chips (hint hint).
Patch by misha aka Mikhail / mp39590 at gmail
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/08 01:51:31

Modified files:
	devel/cargo    : cargo.port.mk 

Log message:
Fix logic in cargo.port.mk: the invocation of cargo when
MODCARGO_CRATES_UPDATE is used should be done only when the variable
isn't empty, and not when defined (as it is always defined).

from semarie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/08 02:06:50

Modified files:
	x11/gnome/code-assistance: Makefile 

Log message:
Bump here as well after the devel/llvm subpackaging.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/08 04:51:14

Modified files:
	x11/qt5/qtbase : Makefile 
Added files:
	x11/qt5/qtbase/patches: 
	                        patch-src_corelib_plugin_qfactoryloader_cpp 
	                        patch-src_corelib_plugin_qpluginloader_cpp 

Log message:
Backport Qt5 commit https://codereview.qt-project.org/#/c/140750/4//ALL,unified
to prevent unloading Qt plugins in various destructors. Fixes a segfault seen
closing otter-browser using WM kill; otter bug report pointing at the Qt bug
was tracked down by awolk@.  OK zhuk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/01/08 05:08:05

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/08 05:11:54

Modified files:
	sys/dev/pci/drm/i915: i915_drv.c 
	sys/dev/pci/drm/radeon: radeon_kms.c 

Log message:
Display color depth alongside resolution when attaching inteldrm and
radeondrm, using the same scheme as efifb(4).

OK mpi@, visa@, kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/01/08 05:13:49

Modified files:
	www/otter-browser: Makefile distinfo 

Log message:
Update www/otter-browser 0.9.12-dev152 => 0.9.12

OK sthen@

Most important changes since beta 11:

greatly improved tab bar:
allow to detach tabs by dragging them away;
allow to drop URLs and tabs from other windows;
added option to show embedded tab thumbnails;
improved handling of visibility of close button;
tabs demanding attention are drawn using bold font;
improved RTL support;
decreased default tab padding;
tab text is no longer centered horizontally;
fixed status tip messages while rearranging tabs;
improved KDE5 and Unity integration:
added support for progress information;
added support for desktop actions;
several MacOS X specific fixes and improvements:
improved rendering of platform style;
added dock icon menu;
added support for listing applications associated with given MIME type;
added support for Windows jump list;
added fullscreen support for QtWebKit backend;
open file path is saved;
improved RTL support in address and search fields;
many other fixes and improvements.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/08 05:39:16

Modified files:
	sys/dev/acpi   : acpi.c dsdt.c 

Log message:
Make aml_rdpciaddr() work for for devices behind bridges.  The code now
uses the mapping between AML nodes and PCI devices that we establish.
Because _INIT methods may end up calling aml_rdpciaddr(), make sure we
create that mapping early.  Also handle devices that aren't actually present.
These devices are now included in the mapping and reads will return an
all-ones patterm whereas writes are a no-op..

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/08 06:25:07

Modified files:
	sys/arch/armv7/sunxi: sxirtc.c 

Log message:
Specify correct size for the softc.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/08 07:12:32

Modified files:
	sys/arch/armv7/sunxi: sxirtc.c 

Log message:
Add support for the RTC found on the Allwinner H3.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/01/08 07:42:12

Modified files:
	distrib/landisk/ramdisk: Makefile 

Log message:
Use makefs to build bsd.rd. ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/08 07:49:18

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/pkg: PFRAG.arm 

Log message:
Build some additional targets.
All of the Xunlong Orange Pi configs (Allwinner A20 and H3)
FriendlyARM NanoPi NEO (Allwinner H3)
Inverse Path USB Armory (Freescale/NXP i.MX53)

Discussed with kettenis.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/08 09:38:04

Modified files:
	usr.bin/mandoc : html.c 

Log message:
style: missing blank between case statement and label;
from Tiago Silva <tiagofilipesilva at icloud dot com> long ago


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/08 11:08:14

Modified files:
	sys/dev/pci    : if_msk.c if_mskvar.h if_sk.c if_skvar.h 

Log message:
Use a macro for the Tx timeout value.

OK deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/08 11:08:44

Modified files:
	usr.bin/mandoc : term.c 

Log message:
Fix an assertion failure caused by \z\[u00FF] with -Tps/-Tpdf.
Reported by jsg@ after an afl(1) run long ago.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/01/08 12:01:10

Modified files:
	.              : orders.html 

Log message:
show off previous release art/images/links a bit


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/08 12:20:33

Log message:
    import of gitea-1.0.1:
    
    Gitea - Git with a cup of tea is a painless self-hosted Git service comparable
    to Github, Bitbucket or Gitlab.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20170108
    
    N ports/www/gitea/Makefile
    N ports/www/gitea/distinfo
    N ports/www/gitea/pkg/DESCR
    N ports/www/gitea/pkg/PLIST
    N ports/www/gitea/pkg/gitea.rc
    N ports/www/gitea/patches/patch-conf_app_ini
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/08 12:21:21

Modified files:
	www            : Makefile 

Log message:
+gitea


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/01/08 12:21:41

Modified files:
	gnu/gcc/gcc/config/m88k: m88k.h 

Log message:
Revert the addition of PROMOTE_MODE. This breaks libobjc; I guess the
true reason of objc still being in-tree is to expose compiler issues.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/08 12:24:53

Modified files:
	net/zabbix     : Makefile distinfo 
	net/zabbix/patches: patch-configure 
	                    patch-src_libs_zbxsysinfo_openbsd_net_c 
	                    patch-src_zabbix_server_server_c 
	net/zabbix/pkg : PLIST-main PLIST-server PLIST-web 

Log message:
update to 3.2.3;

add libxml support for vm monitoring, fix broken sensors and remove
the obsolete zabbix_agent.conf

diff from Mark Patruck


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/08 12:37:13

Modified files:
	www/nginx      : Makefile 

Log message:
whitesplace cleanup; from frantisek holop


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/08 12:38:12

Modified files:
	www/nginx      : Makefile 

Log message:
enable ngx_http_gunzip_module by default; from frantisek holop


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/08 13:31:03

Modified files:
	sbin/iked      : log.c 
	usr.sbin/switchd: log.c 
	usr.sbin/httpd : log.c 
	usr.sbin/relayd: log.c 
	usr.sbin/snmpd : log.c 
	usr.sbin/ntpd  : log.c 

Log message:
Sync log.c with the latest version from vmd/log.c that preserves errno
so it is safe calling log_* after an error without loosing the it.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/08 14:23:32

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
Reduce "vmd -v" spam a bit by not printing useless exit information. These
were being printed because vmm(4) was in the middle of processing an exit
that vmd(8) didn't care about, but still exited to vmd(8) because of
a pending interrupt.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/08 14:52:28

Modified files:
	audio/gradio   : Makefile 

Log message:
epoch bump, "Found newer package gradio-5.0.0beta2"


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/08 15:16:04

Modified files:
	sys/arch/i386/i386: vmm.c 
	sys/arch/amd64/amd64: vmm.c 

Log message:
Revert previous commit as it failed to handle unset vmcs pointers properly

noticed by Josh Grosse


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/08 15:51:53

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
Indentation must be measured in units of the surrounding text,
not in units of the contained text.  Consequently, "display"
and "lit" class tags must not be on the same element:  First,
"display" must set up the indentation, still using the outer
units, and only after that, "lit" may change the font.

This fixes .Bd -literal which got the wrong indentation.
Bug reported by tb@.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/08 16:04:42

Modified files:
	usr.sbin/bgpd  : control.c 
	usr.sbin/dvmrpd: control.c 
	usr.sbin/eigrpd: control.c 
	usr.sbin/ldpd  : control.c 
	usr.sbin/ospf6d: control.c 
	usr.sbin/ospfd : control.c 
	usr.sbin/ripd  : control.c 

Log message:
Replace hand-rolled for(;;) traversal of ctl_conns TAILQ with
TAILQ_FOREACH().

No intentional functional change.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/08 18:36:22

Modified files:
	usr.bin/mandoc : main.c mandoc.h read.c 

Log message:
Warnings and errors that occur during mdoc_validate()
or during man_validate() have to affect the mandoc(1) EXIT STATUS.
Many thanks to <Yuri dot Pankov at gmail dot com> (illumos developer)
for reporting this regression.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/08 22:37:28

Log message:
    Import lugaru-1.1.
    
    Lugaru (pronounced Loo-GAH-roo) is a cross-platform third-person action
    game. The main character, Turner, is an anthropomorphic rebel bunny rabbit
    with impressive combat skills. In his quest to find those responsible for
    slaughtering his village, he uncovers a far-reaching conspiracy involving
    the corrupt leaders of the rabbit republic and the starving wolves from a
    nearby den. Turner takes it upon himself to fight against their plot and
    save his fellow rabbits from slavery.
    
    ok awolk@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20170108
    
    N ports/games/lugaru/Makefile
    N ports/games/lugaru/distinfo
    N ports/games/lugaru/pkg/PLIST
    N ports/games/lugaru/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/08 22:38:02

Modified files:
	games          : Makefile 

Log message:
+lugaru


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/08 22:39:18

Modified files:
	textproc/apertium-dicts/dan: Makefile distinfo 

Log message:
Update to apertium-dan-0.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/08 22:39:41

Modified files:
	textproc/apertium-dicts/nno: Makefile distinfo 

Log message:
Update to apertium-nno-0.9.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/08 22:39:58

Modified files:
	textproc/apertium-dicts/nob: Makefile distinfo 

Log message:
Update to apertium-nob-0.9.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/08 22:42:59

Modified files:
	textproc/apertium-dicts/dan-nor: Makefile distinfo 
	textproc/apertium-dicts/dan-nor/pkg: PLIST 

Log message:
Update to apertium-dan-nor-1.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/08 23:28:27

Modified files:
	sys/arch/i386/i386: vmm.c 

Log message:
i386 vmm requires PAE mode to be in use. don't match vmm(4) if ! PAE.


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2017/01/09 01:46:13

Modified files:
	sys/arch/luna88k/dev: xp.c 

Log message:
Sync with NetBSD/luna68k changes.

>> Fix (mostly harmless) off-by-one size check in XPIOCDOWNLD ioctl.
>> Consistently use sc_shm_size initialized at device attach.

http://mail-index.netbsd.org/source-changes/2017/01/08/msg080666.html
http://mail-index.netbsd.org/source-changes/2017/01/08/msg080667.html


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 02:30:02

Modified files:
	sys/net80211   : ieee80211_output.c 

Log message:
Fix ieee80211_add_htop(), which is not yet called in active code paths.
It was creating a corrupt beacon element by ommitting one byte.
Fix this and fill the element with actual data from the ic_bss node instead
of filling it with zeroes, allowing future 11n hostap to announce the current
HT protection mode correctly.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 02:30:47

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
When acting as hostap, negotiate HT before calling the driver's ic_newassoc()
function, not afterwards. Drivers now know whether a joining node supports HT
which helps with setting up state such as which Tx rate to use.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 02:31:18

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
The point of ieee80211_node_leave() is to place the node in COLLECT state.
Return early and do nothing if the node is already in COLLECT state upon
entry to this function.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/09 02:53:23

Modified files:
	usr.sbin/smtpd : ca.c control.c filter.c lka.c log.c log.h 
	                 makemap.c mta.c pony.c queue.c 
	                 scheduler_ramqueue.c smtpctl.c smtpd.c smtpd.h 
	                 util.c 

Log message:
smtpd joins the 7 other daemons that share the same log.c file.

The only major difference was the "log_trace" concept that is only
used by smtpd - move it from log.c into util.c and make it a local
concept.  This also needed to rename the global "verbose" variable to
"tracing" in a few places.

OK krw@ gilles@ eric@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/09 03:10:21

Modified files:
	x11/lumina     : Makefile distinfo 
	x11/lumina/pkg : PLIST 

Log message:
update to lumina-1.2.0-p1, from maintainer Bryan C. Everly


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/01/09 03:32:33

Modified files:
	lang/nim       : Makefile distinfo 
	lang/nim/patches: patch-compiler_extccomp_nim 
	                  patch-config_nim_cfg patch-koch_nim 
	                  patch-tests_testament_tester_nim 
	lang/nim/pkg   : PLIST 
Added files:
	lang/nim/patches: patch-lib_pure_endians_nim 

Log message:
Update to nim 0.16.0.

http://nim-lang.org/news/e029_version_0_16_0.html


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/09 03:50:10

Modified files:
	faq            : faq6.html 

Log message:
fix some ugly vertical spacing in bullet lists


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/09 04:06:45

Modified files:
	devel/p5-Module-Install: Makefile 
Added files:
	devel/p5-Module-Install/patches: 
	                                 patch-lib_Module_Install_Admin_Include_pm 

Log message:
One more whatis database offender.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/09 04:42:46

Log message:
    Import ChessX, a cross-platform open source chess database. With ChessX
    you can operate on your collection of chess games in many ways: browse,
    edit, add, organize, analyze, etc.
    
    Initial prodding from Roman Yakovlev (MAINTAINER), tested on i386 & amd64
    by Martin Ziemer (thanks!), input and final okay@ from kirby@.
    
    Status:
    
    Vendor Tag:	zhuk
    Release Tags:	zhuk_20170109
    
    N ports/games/chessx/distinfo
    N ports/games/chessx/Makefile
    N ports/games/chessx/pkg/DESCR
    N ports/games/chessx/pkg/PLIST
    N ports/games/chessx/patches/patch-chessx_pro
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/09 04:56:03

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.043


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/09 05:08:42

Modified files:
	devel/py-country: Makefile distinfo 

Log message:
Update to py-country 17.1.8


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/09 05:34:03

Modified files:
	regress/lib/libtls/verify: Makefile 
Added files:
	regress/lib/libtls: Makefile.inc 

Log message:
Provide TLS_INT for consistency with libssl/libcrypto.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 05:40:00

Modified files:
	sys/net80211   : ieee80211_input.c ieee80211_node.c 
	                 ieee80211_var.h 

Log message:
Manage the HT protection setting if acting as hostap with 11n enabled.

For now we flip-flop only between non-member protection and non-HT protection.
Running a HT network without protection would require monitoring environmental
conditions (e.g. foreign beacons) which make HT protection necessary.

The ic_update_htprot driver function becomes optional because it won't be
needed by all drivers. Only call it if the driver has set a function pointer.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/09 05:48:52

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
The .No macro is not supposed to produce fixed-width font, it is not
the same as .Li, so don't use <code>.
Bug reported by <Anton dot Lindqvist at gmail dot com> on tech@.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 06:01:37

Modified files:
	sys/net80211   : ieee80211_output.c 

Log message:
When acting as 11n hostap, send Microsoft WME parameters to clients so
that Linux clients will decide to use 11n mode.
ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/09 07:04:31

Modified files:
	sbin/iked      : control.c 
	usr.sbin/httpd : control.c 
	usr.sbin/ldapd : control.c 
	usr.sbin/npppd/npppd: control.c 
	usr.sbin/ntpd  : control.c 
	usr.sbin/relayd: control.c 
	usr.sbin/switchd: control.c 
	usr.sbin/vmd   : control.c 

Log message:
Replace hand-rolled for(;;) traversal of ctl_conns TAILQ with
TAILQ_FOREACH().

No intentional functional change.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/09 07:10:18

Modified files:
	share/man/man7 : mdoc.7 

Log message:
Clarify how tabs after .It work
because this is a really nasty trap for the unwary.

Triggered by a question from Abhinav Upadhyay <er dot abhinav dot
upadhyay at gmail dot com> (NetBSD) on discuss@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/09 07:41:35

Modified files:
	graphics/ttfautohint: Makefile 

Log message:
Fix ttfautohint build by forcing autoconf to detect max_align_t. This was
recently added to stddef.h behind a conditional. There is a gnulib problem
when detecting this (here it's because tests run with --std=gnu99 but some
code is built with --std=gnu++11, exposing the definition in the system
headers, and causing a conflict). Figured out by kettenis@.

This is the only port affected so it makes sense to fix it here rather than
provide a workaround in the system headers. ok jasper@ (maintainer).


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/09 07:44:28

Modified files:
	sys/dev/usb    : if_urtw.c ugold.c umass.c uoak_subr.c 
	                 usbdi_util.c uthum.c 

Log message:
Remove unneeded <sys/malloc.h> from Michael W. Bombardieri.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/09 07:47:13

Modified files:
	sys/net        : pf.c 

Log message:
pf_purge_thread() needs the NET_LOCK().

ok sashan@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/09 07:49:22

Modified files:
	sbin/iked      : control.c iked.c iked.h log.c proc.c util.c 
	usr.sbin/relayd: control.c log.c proc.c relay.c relay_udp.c 
	                 relayd.c relayd.h ssl.c 
	usr.sbin/httpd : control.c httpd.c httpd.h log.c proc.c server.c 
	usr.sbin/switchd: control.c log.c proc.c proc.h switchd.c util.c 
	usr.sbin/snmpd : control.c log.c proc.c snmpd.c snmpd.h 
	                 traphandler.c util.c 
	usr.sbin/smtpd : log.c log.h scheduler.c util.c 
	usr.sbin/vmd   : control.c log.c proc.c proc.h vmd.c 
	usr.sbin/ntpd  : log.c ntpd.c ntpd.h 

Log message:
Stop accessing verbose and debug variables from log.c directly.

This replaces log_verbose() and "extern int verbose" with the two functions
log_setverbose() and log_getverbose().

Pointed out by benno@
OK krw@ eric@ gilles@ (OK gilles@ for the snmpd bits as well)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/09 08:31:20

Modified files:
	lib/libtls     : tls_conninfo.c 

Log message:
Avoid leaking conninfo servername.

Issue found by and fix from Shuo Chen <chenshuo at chenshuo dot com>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2017/01/09 08:40:30

Modified files:
	security/stunnel: Makefile distinfo 
	security/stunnel/patches: patch-src_options_c 
	                          patch-src_prototypes_h patch-src_ssl_c 

Log message:
update to stunnel-5.39


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/09 08:56:27

Modified files:
	www/nginx      : Makefile 

Log message:
changing COMMENT requires a REVISION bump


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 09:24:20

Modified files:
	sys/net80211   : ieee80211_node.c ieee80211_output.c 
	                 ieee80211_var.h 

Log message:
Make the net80211 stack send EDCA parameters to the driver in hostap mode.
Fixes problems with timing of frame transmissions which caused packet loss.
tested by myself and tb@
ok phessler@ mpi@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/09 09:28:59

Modified files:
	net/irssi      : Tag: OPENBSD_6_0 Makefile distinfo 
Removed files:
	net/irssi/patches: Tag: OPENBSD_6_0 
	                   patch-src_fe-common_core_formats_c 

Log message:
backport the security update to 0.8.21 (minimal patches to fix security issues
only)

(a) A NULL pointer dereference in the nickcmp function found by Joseph
Bisch. (CWE-690)

(b) Use after free when receiving invalid nick message (Issue #466, CWE-146)

(c) Out of bounds read in certain incomplete control codes found by
Joseph Bisch. (CWE-126)

(d) Out of bounds read in certain incomplete character sequences found
by Hanno Böck and independently by J. Bisch. (CWE-126)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/09 09:42:14

Modified files:
	usr.sbin/switchctl: ofpclient.c 

Log message:
log_verbose() -> log_setverbose()


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/09 10:10:03

Modified files:
	sys/netinet    : ip_ah.c ip_esp.c 

Log message:
Grab the NET_LOCK() in various callbacks.

Fix an assert reported by Hrvoje Popovski.

ok visa@, mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/09 10:21:42

Modified files:
	sys/ddb        : db_interface.h db_trap.c 
	sys/kern       : kern_watchdog.c 

Log message:
Stop and restart the watchdog timer when entering and leaving ddb(4).

From Christian Ludwig.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/09 10:49:55

Modified files:
	usr.bin/mandoc : main.c tag.c 

Log message:
Use stdout rather than stdin for controlling the terminal
such that "cat foo.mdoc | man -l" works.
Issue reported by Christian Neukirchen <chneukirchen at gmail dot com>
and also tested by him on Void Linux with both glibc and musl.
The patch makes sense to millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/09 10:56:37

Modified files:
	sys/netinet    : ip_ipcomp.c 

Log message:
Grab the NET_LOCK() in ipcomp input callback.

OK mikeb@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/09 10:58:44

Modified files:
	sys/kern       : kern_watchdog.c 
	sys/ddb        : db_interface.h db_trap.c 

Log message:
Revert previous, it's a documented behavior and people might rely on it.

Pointed by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/09 12:15:01

Modified files:
	sys/net        : bpf.c bpfdesc.h 

Log message:
Use a mutex to serialize accesses to buffer slots.

With this change bpf_catchpacket() no longer need the KERNEL_LOCK().

Tested by Hrvoje Popovski who reported a recursion in the previous
attempt.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/09 12:27:00

Modified files:
	usr.bin/tmux   : cfg.c cmd-source-file.c tmux.1 tmux.h 

Log message:
Run the source-file pattern through glob(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/09 12:29:12

Modified files:
	usr.bin/tmux   : cmd-source-file.c 

Log message:
source-file -q needs to apply to glob(3) too.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/09 12:42:32

Modified files:
	distrib/miniroot: install.sub 

Log message:
Use a verified list of distribution set files extracted from
the SHA256.sig file which is signed by the OpenBSD project.
Deny the use of mirror servers where the verification fails.

Site specifc sets (siteXX.tgz and siteXX-hostname.tgz) or self
compiled sets in local setups are still supported by using the
index.txt file. Files listed in SHA256.sig override any file
listed in index.txt.

Support http://server and https://server as answers to the
"HTTP Server?" question. This allows a user to control the
logic used to download the set files on architectures that
have tls support for ftp(1).

'server' --> Use https for the sets download. If the server
does not support https, fall back to http but only after
user confirmation.

'https://server'--> Use https only for the sets download.

'http://server' --> Use http only for the sets download.

NOTE: If the autoinstall(8) feature is used, the installer
aborts the installation or upgrade in the following cases:
- a mirror server provides an invalid SHA256.sig file
- 'server' is used, https fails and the question to confirm
the fallback to http is not answered in the response file.
- 'https://server' is used but ftp(1) has no tls support.
- 'https://server' is used but not supported by the server.

Suggested by, in joint work with and OK deraadt@
Feedback, testing and OK tb@
positive feedback halex@ for the http/https part


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 12:50:06

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
Show node MAC addresses in mira debug output.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 12:50:49

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
Stop defining MIRA_DEBUG by default.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/09 13:18:59

Modified files:
	sys/net80211   : ieee80211_input.c ieee80211_node.c 
	                 ieee80211_node.h 

Log message:
When a HT node leaves or reassociates as a non-HT node,
clear HT capabilities stored in its node cache object.

A node may switch from 11n mode to 11a/b/g mode.
If we don't clear HT capabilities from the cache the node will
be mistaken as 11n-capable after reassociation.

ok phessler@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/09 14:03:25

Modified files:
	usr.bin/tmux   : format.c tmux.1 tmux.h 

Log message:
Add simple comparisons in formats: #{==:a,b} and #{!=:a,b} ("a" and "b"
are expanded so can compare formats). And expand the condition to
#{?a,b,c} (the "a" part) if it doesn't work as a simple lookup.

Also add FORMAT_NOJOBS flag to disable jobs in a format.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/09 14:28:56

Modified files:
	usr.bin/tmux   : cfg.c tmux.1 

Log message:
Add %if/%endif for conditionals when parsing configuration files, the
argument is a format (the new == and != are useful).


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/09 15:06:25

Modified files:
	usr.sbin/vmd   : control.c 

Log message:
Rename control_dispatch_vmm to control_dispatch_vmd to reflect reality.
No function change.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/09 15:51:04

Modified files:
	libexec/ld.so  : boot.c loader.c 
	libexec/ld.so/alpha: archdep.h 
	libexec/ld.so/amd64: archdep.h 
	libexec/ld.so/arm: archdep.h 
	libexec/ld.so/hppa: archdep.h rtld_machine.c 
	libexec/ld.so/i386: archdep.h 
	libexec/ld.so/m88k: archdep.h 
	libexec/ld.so/mips64: archdep.h 
	libexec/ld.so/powerpc: archdep.h 
	libexec/ld.so/sh: archdep.h 
	libexec/ld.so/sparc64: archdep.h 

Log message:
Remove dependency on __got_{start,end} symbols and look at PT_GNU_RELRO
instead.  Result in a few more pages that aren't writable on some platforms
(such as hppa).  Based on an initial diff from guenther@.

Thanks to deraadt@ for testing.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/09 16:27:20

Added files:
	net/curl/patches: patch-tests_server_sws_c 

Log message:
upstream fix for regression tests 1060 and 1061, where the included test
server errored out on send(2) returning EAGAIN


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/09 17:15:16

Modified files:
	distrib/miniroot: install.sub 

Log message:
When installing with a dhcp server that does not provide domain-name
and name-server information, the user was not asked for this
configuration.  Do not assign a default value to _dn and _ns before
the values are checked with -n in donetconfig().
Fix from halex@; tested and OK rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/09 17:36:25

Modified files:
	sys/dev/pci    : azalia.c 

Log message:
Enable snooping on Braswell.  Fixes audio distortion on Acer TravelMate
B117-M.  From Martin Ziemer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/09 19:35:52

Modified files:
	sysutils/u-boot: Makefile distinfo 
	sysutils/u-boot/pkg: PFRAG.arm 
Added files:
	sysutils/u-boot/patches: 
	                         patch-configs_Sinovoip_BPI_M2_plus_defconfig 
	                         patch-scripts_Makefile_lib 
Removed files:
	sysutils/u-boot/patches: patch-include_compiler_h 
	                         patch-include_configs_omap3_beagle_h 
	                         patch-include_configs_ti_omap5_common_h 
	                         patch-tools_relocate-rela_c 

Log message:
Update to U-Boot 2017.01 and add/build a Sinovoip BPI-M2+ target
from kettenis along with a patch to remove use of a gnu sed
extension in a build command.

Tested on CuBox-i4Pro, BeagleBone Black and PandaBoard ES.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/01/09 22:05:02

Modified files:
	.              : lyrics.html 

Log message:
jbg spots a leftover quote


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/10 00:55:48

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
avoid unneccessary markup; tweaked and ok nicm


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/10 01:19:49

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
Make receiving A-MPDUs with an 11n-enabled athn(4) driver work by not
requiring 11n wireless drivers to provide an ic_ampdu_rx_start() function.
The athn(4) driver won't need this function since the hardware receives
A-MPDU and sends block ack without setting up anything.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/10 01:26:41

Modified files:
	sys/arch/loongson/dev: smfb.c 

Log message:
Display resolution and color depth when attaching.

OK visa@, kettenis@, deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/10 01:41:35

Modified files:
	graphics/blender: Makefile 

Log message:
Switch on Python 3.6

ok pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/10 01:54:14

Modified files:
	sys/dev/acpi   : files.acpi 
	share/man/man4 : Makefile acpi.4 
Added files:
	sys/dev/acpi   : acpihve.c 
	share/man/man4 : acpihve.4 

Log message:
Hyper-V hosts make 64 bytes of entropy available to guests in the form
of a OEM0 ACPI table.  acpihve(4) feeds this data into the kernel
entropy pool.

This is less interesting for machines with rdrand, but there are still
pre ivy bridge machines running Hyper-V (including parts of Azure).

ok mikeb@ reyk@ deraadt@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/10 02:01:18

Modified files:
	sys/netinet    : ip_output.c raw_ip.c tcp_input.c tcp_subr.c 
	                 tcp_usrreq.c 
	sys/netinet6   : ip6_output.c raw_ip6.c 

Log message:
Remove NULL checks before m_free(9), it deals with it.

ok bluhm@, kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/10 02:02:29

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
ensure EPT page walk length 4. We don't support other page walk lengths


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/10 02:04:19

Modified files:
	sys/netinet6   : ip6_output.c 

Log message:
Do not use a 'struct route_in6' when there's no need to cache the result
of rtalloc(9).

ok benno@, lteo@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/10 02:05:34

Modified files:
	sys/arch/i386/i386: vmm.c 

Log message:
matching i386 diff from previous amd64 - ensure page walk length 4, as we
don't support other ept depths


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/10 03:08:59

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Some manpage fixes: rephrase a convoluted sentence, make the names of
some keys more standard, and use Ql instead of Dq.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/10 03:45:02

Modified files:
	textproc/libxml: Tag: OPENBSD_6_0 Makefile 
Added files:
	textproc/libxml/patches: Tag: OPENBSD_6_0 
	                         patch-result_XPath_xptr_vidbase 
	                         patch-test_XPath_xptr_vidbase 
	                         patch-xpath_c patch-xpointer_c 

Log message:
backports patches for CVE-2016-4658 and CVE-2016-5131


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/10 04:02:37

Modified files:
	games          : Makefile 

Log message:
Add chessx to the build.
OK zhuk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/10 04:07:25

Modified files:
	games/chessx   : Makefile 

Log message:
Drop variable used only once. Missed by zhuk@
Commitiong on his behalf.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/10 04:41:32

Modified files:
	sys/arch/amd64/conf: GENERIC RAMDISK_CD 

Log message:
enable acpihve(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/10 04:58:30

Modified files:
	usr.bin/tmux   : cmd.c 

Log message:
Quote backslash as well for %%%.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/10 05:28:52

Modified files:
	mail/rspamd    : Makefile distinfo 

Log message:
update to rspamd-1.4.2, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/10 05:46:41

Modified files:
	audio/pianobar : Makefile 
	audio/pianobar/pkg: PLIST 
Removed files:
	audio/pianobar/files: cert.pem 
	audio/pianobar/patches: patch-src_ui_c 

Log message:
Now libressl has alt chain support we no longer need the workaround for
pianobar. Verified by & ok dcoppa@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/10 05:54:28

Modified files:
	usr.bin/mandoc : mandoc.1 mdoc_html.c mdoc_man.c mdoc_term.c 
	                 mdoc_validate.c roff.h tree.c 

Log message:
Introduce flags NODE_NOSRC and NODE_NOPRT for AST nodes.
Use them to mark generated nodes and nodes that shall not produce output.
Let -Ttree output mode display these new flags.
Use NODE_NOSRC for .Ar, .Mt, and .Pa default arguments.
Use NODE_NOPRT for .Dd, .Dt, and .Os.

These will help to make handling of text production macros more rigorous.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/10 06:00:58

Modified files:
	sys/arch/arm64/arm64: conf.c 

Log message:
Add rd(4) to OpenBSD/arm64's list of devices.  Additionally, purge the
remains of st(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/10 06:13:12

Modified files:
	sys/arch/arm64/include: pcb.h tcb.h 

Log message:
Cleanup TCB header a la OpenBSD/armv7.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/10 06:46:53

Modified files:
	usr.bin/mandoc : man.c man_html.c man_macro.c man_term.c mdoc.c 
	                 mdoc_html.c mdoc_macro.c mdoc_man.c 
	                 mdoc_state.c mdoc_term.c mdoc_validate.c roff.c 
	                 roff.h tree.c 

Log message:
unify names of AST node flags; no change of cpp output


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/10 07:09:03

Modified files:
	usr.bin/mandoc : roff.c 

Log message:
simplify; NODE_ENDED does no harm in man(7)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/10 07:43:00

Modified files:
	audio/beets    : Makefile distinfo 
	audio/beets/pkg: PLIST 

Log message:
update to beets-1.4.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/10 08:10:45

Modified files:
	net/unifi      : Makefile distinfo 
	net/unifi/pkg  : PLIST 

Log message:
update to unifi-5.3.11


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/10 10:16:39

Modified files:
	sys/dev/pv     : hypervic.c pvbus.c pvvar.h vmt.c xen.c 

Log message:
Introduce pvbus_reboot() and pvbus_shutdown() to move the repeated
tasks from the PV drivers into a central place.  While here, we
figured out that it is not needed to check for allowpowerdown on the
hypervisor-initiated shutdown requests.

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/10 10:43:12

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
Pledge more strictly.  This is only enabled on the ramdisk version of the
ftp(1) client, which operates only in URL mode.  Not willing to spend the
time tracking piles of global variables for sub-modes, and finding all
the pledge interactions.  Would rather have the install media ftp(1) as
safe as possible, immediately.
ok tb jca


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/10 10:50:58

Modified files:
	distrib/miniroot: install.sub 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/10 11:10:24

Modified files:
	usr.bin/tmux   : cmd.c 

Log message:
Need to escape ; twice because the command list parser will eat one,
reported by Theo Buehler.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/10 12:45:55

Modified files:
	usr.bin/tmux   : cmd-refresh-client.c cmd-clear-history.c 

Log message:
Minor tidying in a couple of commands.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/10 12:48:32

Modified files:
	sys/kern       : vfs_default.c vfs_subr.c vfs_syscalls.c 
	sys/miscfs/fuse: fuse_device.c 
	sys/sys        : mount.h 
	sys/ufs/mfs    : mfs_vfsops.c 

Log message:
Remove the unused olddp parameter from function dounmount().
OK mpi@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/10 12:56:34

Modified files:
	sys/kern       : vfs_subr.c 

Log message:
Replace manual for() loops with FOREACH() macro.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/10 13:13:17

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Fix white spaces.  No binary change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/01/10 13:26:44

Log message:
    Import ports/lang/myrddin. ok benoit@
    
    Myrddin is a systems programming language that covers a similar niche as
    C including desktop, OS, and embedded development, but at the same time
    making it harder to shoot yourself in the foot.
    
    It is designed to be a simple language that runs close to the metal,
    giving the programmer predictable and transparent behavior and mental
    model. It also does strong type checking, generics, type inference,
    closures, and traits.
    
    Myrddin is not a language designed to explore the forefront of type
    theory or compiler technology. It is not a language that is focused on
    guaranteeing perfect safety. It is satisfied to be a practical, small,
    fairly well defined, and easy to understand language for code that needs
    to be close to the hardware.
    
    Status:
    
    Vendor Tag:	jturner
    Release Tags:	jturner_20170110
    
    N ports/lang/myrddin/Makefile
    N ports/lang/myrddin/distinfo
    N ports/lang/myrddin/pkg/DESCR
    N ports/lang/myrddin/pkg/PLIST
    N ports/lang/myrddin/patches/patch-mk_c_mk
    N ports/lang/myrddin/patches/patch-configure
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/01/10 13:29:39

Modified files:
	lang           : Makefile 

Log message:
+myrddin


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/10 14:54:34

Modified files:
	usr.bin/mandoc : mandocdb.c mdoc_html.c mdoc_man.c mdoc_term.c 
	                 mdoc_validate.c roff.c 

Log message:
For the .Ux/.Ox family of macros, do text production at the validation
stage rather than in each and every individual formatter, using the
new NODE_NOSRC flag.  More rigorous and also ten lines less code.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/10 16:16:15

Modified files:
	regress/sys    : Makefile 
	regress/sys/ffs: Makefile 

Log message:
Cleanup the mount point and vnd devices before and after the test.
Use objdir and curdir correctly.  Link ffs regress to the build.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/10 16:36:24

Modified files:
	usr.bin/mandoc : mandocdb.c mdoc_html.c mdoc_man.c mdoc_term.c 
	                 mdoc_validate.c 

Log message:
Use new NODE_NOSRC and NODE_NOPRT flags for .Bx and .At.
More rigorous AST and 40 lines less code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/10 16:45:49

Modified files:
	games/yquake2  : Makefile 
	games/yquake2/pkg: README 

Log message:
README tweaks. OK awolk@, MAINTAINER


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/10 17:02:48

Modified files:
	regress/sys/ffs: Makefile 

Log message:
Fix trailing whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/10 17:03:38

Modified files:
	regress/sys/ffs: run 

Log message:
Make test more verbose when it fails.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/10 17:18:22

Modified files:
	sys/arch/arm64/include: fenv.h float.h ieee.h 

Log message:
Update floating point header to better represent 64-bit ARM.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/10 19:52:20

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 01:11:19

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Drop FTP_KEEPALIVE, it's unused.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/11 01:21:33

Modified files:
	sys/dev/wscons : wsdisplay.c 

Log message:
Use explicit_bzero() to wipe copybuffer when logging out of the console.

OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	mestre@cvs.openbsd.org	2017/01/11 01:22:59

Modified files:
	net/mcabber    : Makefile distinfo 

Log message:
Update to version 1.0.4 which includes an important bugfix, the bug is
described in CVE-2015-8688 and although it was assigned to gajim mcabber also
suffered from this

OK maintainer Markus Hennecke


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 01:41:32

Modified files:
	net/libproxy   : Makefile distinfo 
	net/libproxy/patches: patch-libproxy_url_cpp 

Log message:
Update to libproxy-0.4.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 01:43:00

Modified files:
	devel/py-ioflo : Makefile distinfo 
	devel/py-ioflo/pkg: PLIST 

Log message:
Update to py-ioflo-1.6.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/11 01:47:48

Modified files:
	sys/net        : bridgectl.c if_bridge.c if_bridge.h 

Log message:
No need for a splsoftnet()/splx() dance when the KERNEL_LOCK() is what
serialize access to bridge(4) data structures.

ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 01:50:11

Modified files:
	usr.sbin/sysmerge: sysmerge.sh 

Log message:
Instead of checking if /etc/X11 is around to know whether the xbase set
is installed, check if /var/sysmerge/xetc.tgz exists.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/11 02:15:18

Modified files:
	sys/arch/amd64/include: vmmvar.h 
	sys/arch/i386/include: vmmvar.h 

Log message:
SVM intercept codes (exit reason) defines


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 02:32:31

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Prohibit execution of kernel pages by userland and prohibit execution
of user pages by the kernel.  Additionally, don't allow userland to
read executable pages that were not mapped explicitly with a read flag.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/11 02:39:39

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
Increase the size of the buffers used for _HID and _CID strings to be
able to fit "Hyper_V_Gen_Counter_V1".

ok mlarkin@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/11 03:37:52

Modified files:
	net/mcabber    : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/mcabber/patches: Tag: OPENBSD_6_0 patch-mcabber_utils_c 
	                     patch-mcabber_xmpp_iq_c 

Log message:
apply upstream patches for mcabber to fix CVE-2015-8688


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 03:57:12

Modified files:
	distrib/miniroot: install.sub 

Log message:
typo: verfied -> verified

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/11 03:58:17

Modified files:
	sys/net        : switchofp.c 

Log message:
Remove m_pullup() from packet-out since it is not doing anything anymore
with the packet. swofp_input() already guarantees us that the whole data
is contiguous in the mbuf.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/11 05:13:24

Modified files:
	databases/py-pygresql: Makefile distinfo 
	databases/py-pygresql/pkg: PLIST 
Removed files:
	databases/py-pygresql/patches: patch-tutorial_advanced_py 
	                               patch-tutorial_basics_py 

Log message:
Update to py-pygresql-5.0.3.

Add python3 flavor from Andreas Karlsson, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/11 05:16:30

Modified files:
	databases      : Makefile 

Log message:
+py-pygresql,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 05:22:13

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Match what the installer does:
- verify SHA256.sig and create SHA256 out of it
- get the list of syspatches from the verified SHA256
- use sha256 against the verified SHA256 to checksum the syspatches


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 05:46:08

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.3.

prodded by jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 06:00:49

Modified files:
	sys/arch/arm64/arm64: pmap.c trap.c 

Log message:
A data abort caused by an execution access fault should propagate its
fault as execution fault.  This is especially needed as in comparison
to ARMv7 we can have execute-only user pages on ARMv8.  This means that
there is a distinction between executing and reading pages, which we
did not have before.  We need to treat PROT_EXEC separate but similar
to PROT_READ.

Additionally, use pte_insert() to manage a page's pagetable entry
instead of manually accessing and modifying the pagetable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/11 06:17:03

Modified files:
	security/aircrack-ng: Makefile 
	security/aircrack-ng/pkg: README 

Log message:
Replace sudo with doas in README

from Michael McConville and Timo Myyra, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/11 06:17:35

Modified files:
	sys/netinet    : ip_mroute.c ip_mroute.h 

Log message:
Remove mfc hash tables and use the OpenBSD routing table for multicast
routes. Beside the code simplification and removal, we also get to see
the multicast routes now in the route(8) utility.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/11 06:30:34

Modified files:
	x11/kde4/workspace: Makefile 
	x11/kde4/workspace/files: checkpass_bsd.c 

Log message:
Pass NULL instead of forcing "passwd" in auth_userokay(3). The latter
won't run interactive auth styles anyway, and focing "passwd" breaks for
users willing to use other styles without fallback to "passwd".

Report and patch from Daniele Mazzocchio, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/11 06:32:11

Modified files:
	x11/kde/base3  : Makefile 
	x11/kde/base3/files: checkpass_bsd.c 

Log message:
Pass NULL instead of forcing "passwd" in auth_userokay(3). The latter
won't run interactive auth styles anyway, and focing "passwd" breaks for
users willing to use other styles without fallback to "passwd".

Same as the patch already went in for KDE4 sent by Daniele Mazzocchio.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 06:33:48

src/lib/libm/arch/aarch64

Update of /cvs/src/lib/libm/arch/aarch64
In directory cvs.openbsd.org:/tmp/cvs-serv37413/arch/aarch64

Log Message:
Directory /cvs/src/lib/libm/arch/aarch64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 06:38:13

Modified files:
	lib/libm       : Makefile 
Added files:
	lib/libm/arch/aarch64: fenv.c 

Log message:
Add support for AArch64.  Based on FreeBSD's msun header, modified
to look and feel like our code.


CVSROOT:	/cvs
Module name:	src
Changes by:	zhuk@cvs.openbsd.org	2017/01/11 06:40:24

Modified files:
	usr.bin/ftp    : util.c 

Log message:
Don't attempt to read .netrc when we already force anonymous FTP (-a).

Patch from Anton Lindqvist via tech@, thanks!

okay deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/11 06:44:33

Modified files:
	archivers/p7zip: Makefile 
	devel/codeblocks: Makefile 
	net/transmission: Makefile 
	sysutils/shunt : Makefile 
	sysutils/tarsnap-gui: Makefile 
	sysutils/udfclient: Makefile 

Log message:
update maintainer e-mail

from Josh Grosse


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 06:45:14

src/lib/librthread/arch/aarch64

Update of /cvs/src/lib/librthread/arch/aarch64
In directory cvs.openbsd.org:/tmp/cvs-serv74669/aarch64

Log Message:
Directory /cvs/src/lib/librthread/arch/aarch64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 06:45:59

Added files:
	lib/librthread/arch/aarch64: _atomic_lock.c 

Log message:
Add support for AArch64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/11 06:47:16

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 

Log message:
update to gnome-online-accounts-3.22.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/11 06:48:50

Modified files:
	devel/iso-codes: Makefile distinfo 

Log message:
update to iso-codes-3.73


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 06:58:28

src/lib/csu/aarch64

Update of /cvs/src/lib/csu/aarch64
In directory cvs.openbsd.org:/tmp/cvs-serv792/aarch64

Log Message:
Directory /cvs/src/lib/csu/aarch64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 06:59:02

Added files:
	lib/csu/aarch64: md_init.h 

Log message:
Add support for AArch64.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 07:08:54

src/libexec/ld.so/aarch64

Update of /cvs/src/libexec/ld.so/aarch64
In directory cvs.openbsd.org:/tmp/cvs-serv19428/aarch64

Log Message:
Directory /cvs/src/libexec/ld.so/aarch64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 07:11:27

Added files:
	libexec/ld.so/aarch64: Makefile.inc archdep.h ldasm.S 
	                       rtld_machine.c syscall.h 

Log message:
Add support for AArch64.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 07:18:17

Modified files:
	lib/libcompiler_rt: Makefile 

Log message:
Build a bunch more floating point helpers for AArch64.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 07:22:52

Added files:
	usr.bin/gprof  : aarch64.c aarch64.h 

Log message:
Add "support" for AArch64 to make it compile.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 07:32:36

Added files:
	lib/libkvm     : kvm_arm64.c 

Log message:
Add "support" for OpenBSD/arm64 so that it compiles.  It's a copy of
the 32-bit ARM version and might need updates.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 07:56:44

Modified files:
	usr.bin/tmux   : cmd-set-option.c notify.c options-table.c 
	                 options.c tmux.h 

Log message:
Some tidying and tweaks to options code.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/11 08:09:52

Modified files:
	share/man/man9 : route.9 

Log message:
Updated the route(9) man page by removing nonexistent function and
updating the prototype of others.

ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	inoguchi@cvs.openbsd.org	2017/01/11 08:25:46

Modified files:
	devel/cvs2svn  : Makefile 
Added files:
	devel/cvs2svn/patches: patch-cvs2svn_lib_keyword_expander_py 

Log message:
add keyword support for OpenBSD and Mdocdate
ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 09:05:46

Modified files:
	usr.bin/tmux   : tmux.h tty-keys.c 

Log message:
Use a macro for looking up tty types.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/11 09:09:27

src/regress/usr.bin/mandoc/mdoc/Ud

Update of /cvs/src/regress/usr.bin/mandoc/mdoc/Ud
In directory cvs.openbsd.org:/tmp/cvs-serv84597/Ud

Log Message:
Directory /cvs/src/regress/usr.bin/mandoc/mdoc/Ud added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 09:09:57

Modified files:
	usr.bin/tmux   : format.c tmux.1 tmux.h tty.c 

Log message:
Add a format for terminal type.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 10:03:26

src/etc/etc.arm64

Update of /cvs/src/etc/etc.arm64
In directory cvs.openbsd.org:/tmp/cvs-serv28822/etc/etc.arm64

Log Message:
Directory /cvs/src/etc/etc.arm64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 10:03:26

src/share/man/man8/man8.arm64

Update of /cvs/src/share/man/man8/man8.arm64
In directory cvs.openbsd.org:/tmp/cvs-serv28822/share/man/man8/man8.arm64

Log Message:
Directory /cvs/src/share/man/man8/man8.arm64 added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/11 10:03:54

ports/productivity/aqbanking/patches

Update of /cvs/ports/productivity/aqbanking/patches
In directory cvs.openbsd.org:/tmp/cvs-serv14595/patches

Log Message:
Directory /cvs/ports/productivity/aqbanking/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 10:05:29

Added files:
	etc/etc.arm64  : MAKEDEV.md Makefile Makefile.inc disktab fbtab 
	                 login.conf ttys 

Log message:
Add support for OpenBSD/arm64.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 10:07:07

Added files:
	etc/etc.arm64  : MAKEDEV 
	share/man/man8/man8.arm64: MAKEDEV.8 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/11 10:10:32

Log message:
    Add a test that creates a nested tree of mount points.  All partitions
    of a vnd(4) device are mounted under /mnt.  A single umount(8) of
    /mnt should unmount all of them.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170111
    
    N src/regress/sys/kern/mount/Makefile
    N src/regress/sys/kern/mount/disktemplate
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/11 10:39:45

Modified files:
	usr.bin/mandoc : mandocdb.c mdoc_html.c mdoc_man.c mdoc_term.c 
	                 mdoc_validate.c 
	regress/usr.bin/mandoc/mdoc: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Ud: Makefile arg.in arg.out_ascii 
	                                arg.out_lint 

Log message:
Do text production for .Bt, .Ex, .Rv, .Ud at the validation stage
rather than in the formatters.  Use NODE_NOSRC flag for .Lb and
NODE_NOSRC and NODE_NOPRT for .St.  Results in a more rigorous
syntax tree and in 135 lines less code.

This work was triggered by a question from Abhinav Upadhyay <er dot
abhinav dot upadhyay at gmail dot com> (NetBSD) on discuss@.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/11 10:46:28

Modified files:
	sys/kern       : subr_percpu.c 

Log message:
Move the membar in counters_read().  It has to be between reading
the generation number and the counters.  In counters_zero() put a
membar after resetting the counters, but before writing the generation
number.
OK mpi@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:08:41

src/lib/libc/arch/aarch64

Update of /cvs/src/lib/libc/arch/aarch64
In directory cvs.openbsd.org:/tmp/cvs-serv48966/aarch64

Log Message:
Directory /cvs/src/lib/libc/arch/aarch64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:08:41

src/lib/libc/arch/aarch64/gdtoa

Update of /cvs/src/lib/libc/arch/aarch64/gdtoa
In directory cvs.openbsd.org:/tmp/cvs-serv48966/aarch64/gdtoa

Log Message:
Directory /cvs/src/lib/libc/arch/aarch64/gdtoa added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:08:41

src/lib/libc/arch/aarch64/gen

Update of /cvs/src/lib/libc/arch/aarch64/gen
In directory cvs.openbsd.org:/tmp/cvs-serv48966/aarch64/gen

Log Message:
Directory /cvs/src/lib/libc/arch/aarch64/gen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:08:41

src/lib/libc/arch/aarch64/net

Update of /cvs/src/lib/libc/arch/aarch64/net
In directory cvs.openbsd.org:/tmp/cvs-serv48966/aarch64/net

Log Message:
Directory /cvs/src/lib/libc/arch/aarch64/net added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:08:41

src/lib/libc/arch/aarch64/string

Update of /cvs/src/lib/libc/arch/aarch64/string
In directory cvs.openbsd.org:/tmp/cvs-serv48966/aarch64/string

Log Message:
Directory /cvs/src/lib/libc/arch/aarch64/string added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:08:41

src/lib/libc/arch/aarch64/sys

Update of /cvs/src/lib/libc/arch/aarch64/sys
In directory cvs.openbsd.org:/tmp/cvs-serv48966/aarch64/sys

Log Message:
Directory /cvs/src/lib/libc/arch/aarch64/sys added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:09:24

Added files:
	lib/libc/arch/aarch64: DEFS.h Makefile.inc SYS.h Symbols.list 
	lib/libc/arch/aarch64/gdtoa: Makefile.inc arith.h gd_qnan.h 
	                             strtold.c 
	lib/libc/arch/aarch64/gen: Makefile.inc _setjmp.S byte_swap_2.S 
	                           byte_swap_4.S clz_tab.c fabs.c 
	                           flt_rounds.c fpclassifyl.c 
	                           fpgetmask.c fpgetround.c 
	                           fpgetsticky.c fpsetmask.c 
	                           fpsetround.c fpsetsticky.c infinity.c 
	                           isfinitel.c isinfl.c isnanl.c 
	                           isnormall.c nan.c setjmp.S signbitl.c 
	                           sigsetjmp.S 
	lib/libc/arch/aarch64/net: Makefile.inc 
	lib/libc/arch/aarch64/string: Makefile.inc 
	lib/libc/arch/aarch64/sys: Ovfork.S brk.S cerror.S sbrk.S 
	                           sigpending.S sigprocmask.S 
	                           sigsuspend.S syscall.S tfork_thread.S 

Log message:
Add support for AArch64.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:10:31

src/lib/libcrypto/arch/aarch64

Update of /cvs/src/lib/libcrypto/arch/aarch64
In directory cvs.openbsd.org:/tmp/cvs-serv51483/aarch64

Log Message:
Directory /cvs/src/lib/libcrypto/arch/aarch64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 11:11:01

Added files:
	lib/libcrypto/arch/aarch64: Makefile.inc opensslconf.h 

Log message:
Add support for AArch64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/11 13:11:29

Modified files:
	textproc/ruby-nokogiri: Makefile distinfo 
	textproc/ruby-nokogiri/pkg: PLIST 

Log message:
Update to nokogiri 1.7.0.1


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/11 13:43:15

Modified files:
	sys            : Makefile 

Log message:
safe to enter arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/11 13:43:46

Modified files:
	distrib/miniroot: install.sub 

Log message:
Eliminate an error message by checking whether /tmp/i/hosts exists before
calling sed -i on it.  While there, use a stricter regular expression, as
suggested by halex.

Problem reported by Pedro Caetano.
ok mestre, halex; ok rpe for earlier version without regex tweak


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2017/01/11 15:28:18

Modified files:
	net/mktorrent  : Makefile distinfo 

Log message:
update to mktorrent v1.1, bringing in the new -s flag.

ok gonzalo


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 15:36:07

Modified files:
	usr.bin/tmux   : key-string.c server-client.c tty.c 

Log message:
Add some missing special keys to key_string_lookup_key, fix a mouse
check in server_client_handle_key, and tweak a comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/11 15:38:10

Modified files:
	usr.sbin/vmd   : vmd.c vmd.h vmm.c 
	usr.sbin/vmctl : main.c vmctl.8 vmctl.h 

Log message:
Add imsg communication channel between vmd and invividual VMs.
For now, this is only used to forward "log verbose|brief" requests,
but it will be used for better things later.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/11 15:57:35

Added files:
	etc/etc.arm64  : sysctl.conf 

Log message:
Add empty sysctl.conf for arm64.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 16:10:04

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Be less aggressive about turning margins off.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 16:26:14

Log message:
    Import py-setuptools-git-1.1.
    
    This is a plugin for setuptools that enables git integration. Once installed,
    Setuptools can be told to include in a package distribution all the files
    tracked by git. This is an alternative to explicit inclusion specifications with
    MANIFEST.in.
    
    ok robert@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20160112
    
    N ports/devel/py-setuptools_git/distinfo
    N ports/devel/py-setuptools_git/Makefile
    N ports/devel/py-setuptools_git/pkg/DESCR
    N ports/devel/py-setuptools_git/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 16:27:18

Modified files:
	devel          : Makefile 

Log message:
+py-setuptools_git
+py-setuptools_git,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/11 16:28:16

Modified files:
	devel/py-ioflo : Makefile 

Log message:
Add bdep on devel/py-setuptools_git. I totally missed the fact that it was
missing as python automatically downloaded it from pypy...

breakage reported by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 17:19:32

Modified files:
	usr.bin/tmux   : screen-write.c tmux.h tty.c window.c 

Log message:
Fix setting the palette of aixterm colours (90-97).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 17:24:28

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Erm the aixterm colours should start at 8, not 7.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/11 17:30:41

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
aixterm colours can be used if -2 is given, as well as if TERM tells us
the terminal has >=16 colours.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/11 18:04:50

Modified files:
	regress/sys/ffs: fstest.c run 
	regress/sys/ffs/tests/chflags: 12.t 
	regress/sys/ffs/tests/chmod: 09.t 
	regress/sys/ffs/tests/chown: 09.t 
	regress/sys/ffs/tests/link: 05.t 14.t 15.t 16.t 
	regress/sys/ffs/tests/mkdir: 09.t 11.t 
	regress/sys/ffs/tests/mkfifo: 08.t 11.t 
	regress/sys/ffs/tests/open: 14.t 15.t 19.t 
	regress/sys/ffs/tests/rename: 15.t 16.t 
	regress/sys/ffs/tests/rmdir: 13.t 14.t 
	regress/sys/ffs/tests/symlink: 10.t 11.t 
	regress/sys/ffs/tests/truncate: 00.t 10.t 12.t 
	regress/sys/ffs/tests/unlink: 12.t 

Log message:
Do not suppress error messages to stderr, but remove unnecessary
debug prints.  This gives better hints why the tests are failing.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/11 18:12:56

Modified files:
	regress/sys/ffs: fstest.c 

Log message:
Test the non-existing system-call lchflags(2) by using chflagsat(2)
with AT_SYMLINK_NOFOLLOW instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/11 18:43:53

Modified files:
	regress/sys/ffs/tests/link: 05.t 15.t 

Log message:
The program to create hard links is called ln(1) and not link.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/11 18:49:30

Modified files:
	regress/sys/ffs/tests/unlink: 12.t 

Log message:
Fix trailing whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/11 18:54:53

Modified files:
	regress/sys/ffs/tests/chflags: 00.t 

Log message:
Fix typo in expect.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/12 00:55:15

Modified files:
	games/rocksndiamonds: Makefile distinfo 

Log message:
Update to rocksndiamonds-4.0.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/12 01:22:42

Modified files:
	sys/netinet    : ip_mroute.c ip_mroute.h 

Log message:
Clean up multicast files from unused definitions and comments.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/12 01:35:53

Modified files:
	sys/arch/i386/i386: vmm.c 
	sys/arch/amd64/amd64: vmm.c 

Log message:
add a couple missing comments, no code change


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/12 02:02:47

Modified files:
	sys/arch/i386/include: vmmvar.h 
	sys/arch/i386/i386: vmm.c 
	sys/arch/amd64/include: vmmvar.h 
	sys/arch/amd64/amd64: vmm.c 

Log message:
Remove vc_hsa_stack_va, it has not been used in a long time and is no
longer needed.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/12 02:07:46

Modified files:
	sys/net        : if.c 

Log message:
Unlink PF state keys before passing mbufs to drivers.

Network drivers shouldn't have to deal with PF data structures.  This change
prevent m_free(9) called from an interrupt handler at IPL_NET to mess with
pf(4) internals.

Prevent an splassert reported by Mark Patruck.

ok mikeb@, bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2017/01/12 03:07:03

Modified files:
	security/ruby-akami: Makefile 
	security/ruby-akami/pkg: PLIST 

Log message:
Change chmod to fix make clean
regenerate PLIST and bump REVISION
Ok Jeremy@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/12 03:15:55

Modified files:
	usr.bin/tmux   : tmux.h window.c 

Log message:
Put all palette functions together in the file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/12 03:45:36

Modified files:
	devel/kdevplatform: Makefile 

Log message:
All KDE4 ports are using gcc4.port.mk now, zap duplicate in kdevplatform.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/12 03:52:08

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/12 03:57:33

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-139.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/12 04:49:42

Modified files:
	sys/net        : switchofp.c 

Log message:
Don't write configuration request replies outside of the packet
boundaries. The config request message mbuf is always shorter than the
config request reply message, so use m_copyback() to append the extra
data.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 05:14:56

Modified files:
	security/py-paramiko: Makefile distinfo 
	security/py-paramiko/pkg: PLIST 

Log message:
update to paramiko-2.1.1, ok benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 05:22:20

Modified files:
	net/isc-bind   : Makefile distinfo 

Log message:
SECURITY update to BIND 9.10.4-P5

Named could mishandle authority sections that were missing RRSIGs triggering
an assertion failure.  CVE-2016-9444

Named mishandled some responses where covering RRSIG records are returned
without the requested data resulting in a assertion failure.  CVE-2016-9147

Named incorrectly tried to cache TKEY records which could trigger an
assertion failure when there was a class mismatch.  CVE-2016-9131


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 05:24:04

Modified files:
	net/isc-bind   : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
MFC: SECURITY update to BIND 9.10.4-P5

Named could mishandle authority sections that were missing RRSIGs triggering
an assertion failure.  CVE-2016-9444

Named mishandled some responses where covering RRSIG records are returned
without the requested data resulting in a assertion failure.  CVE-2016-9147

Named incorrectly tried to cache TKEY records which could trigger an
assertion failure when there was a class mismatch.  CVE-2016-9131


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/12 06:34:09

Modified files:
	security/libssh2: Makefile distinfo 
	security/libssh2/patches: patch-tests_Makefile_in 

Log message:
Update to libssh2-1.8.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 07:28:54

Modified files:
	net/fping      : Makefile distinfo 
	net/fping/patches: patch-src_fping_c 

Log message:
update to fping-3.15


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 07:35:01

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: Makefile distinfo 
	security/letsencrypt/client/pkg: PLIST 
	security/letsencrypt/py-acme: Makefile distinfo 
	security/letsencrypt/py-acme/pkg: PLIST 

Log message:
update to certbot-0.10.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 07:37:03

Modified files:
	mail/p5-Email-Simple: Makefile distinfo 

Log message:
update to p5-Email-Simple-2.213


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/12 08:36:35

Modified files:
	usr.bin/tmux   : cmd-set-option.c options-table.c options.c 
	                 style.c tmux.c tmux.h 

Log message:
Simplify appending to string options.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 08:47:23

src/regress/lib/libtls/tls

Update of /cvs/src/regress/lib/libtls/tls
In directory cvs.openbsd.org:/tmp/cvs-serv14656/tls

Log Message:
Directory /cvs/src/regress/lib/libtls/tls added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 08:50:16

Modified files:
	regress/lib/libtls: Makefile 
Added files:
	regress/lib/libtls/tls: Makefile tlstest.c 

Log message:
Add regress tests for libtls, which currently cover handshakes and closes
using callbacks, file descriptors and sockets.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 08:58:56

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
If no callbacks are specified, return after setting an error rather than
continuing on.

Also noticed by Marko Kreen.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 09:01:48

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
If tls_get_new_cb_bio() fails, an error will already be set.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 09:08:49

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Simplify the TLS callback BIO code - a pointer to the tls context can be
stored directly in bio->ptr, rather than allocating and deallocating an
intermediate struct.

Diff from Marko Kreen <markokr at gmail dot com> - thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/12 09:13:51

Modified files:
	lib/libcrypto/man: PKCS7_encrypt.3 PKCS7_sign.3 

Log message:
change two trailing Xr to Fn; ok schwarze


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/12 09:14:42

Modified files:
	sys/net        : bfd.c 

Log message:
Remove unneeded splsoftnet().

Global data structures are protected by the KERNEL_LOCK() and
route_input() already raises the IPL when it needs it.

ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 09:15:58

Modified files:
	lib/libtls     : tls_client.c tls_server.c 

Log message:
If tls_set_cbs() fails an error will already be specified, so do not
replace it with a less specific one.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 09:17:22

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Inline tls_get_new_cb_bio() from the only place that it gets called,
simplifying the code. Also check the provided read and write callbacks
before assigning to the context.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/12 09:18:39

Modified files:
	lib/libtls     : tls_bio_cb.c 

Log message:
Inline strlen() call to reduce/simplify code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/12 09:18:55

Modified files:
	productivity/libalkimia: Makefile distinfo 
	productivity/libalkimia/pkg: PLIST 
Added files:
	productivity/libalkimia/patches: 
	                                 patch-libalkimia_LibAlkimiaConfig_cmake_in 
Removed files:
	productivity/libalkimia/patches: patch-libalkimia_CMakeLists_txt 

Log message:
Update LibAlkimia to 5.0.0 in preparation to KMyMoney 4.8.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/12 09:28:49

Modified files:
	share/man/man3 : queue.3 

Log message:
TAILQ_CONCAT() takes 3 arguments.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/12 09:32:28

Modified files:
	sys/dev/cardbus: if_athn_cardbus.c 
	sys/dev/ic     : ar5008.c ar5008reg.h ar5416.c ar9003.c ar9280.c 
	                 ar9285.c ar9287.c ar9380.c athn.c athnvar.h 
	sys/dev/pci    : if_athn_pci.c 
	sys/dev/usb    : if_athn_usb.c if_athn_usb.h 

Log message:
Finish initial 11n support for athn(4).

The heavy lifting was done by damien@ years ago. I didn't even have
to figure out what the hardware expects, the code was already there.

This driver now supports MCS 0-15 in client and hostap mode.
No Tx aggregation and no 40 MHz channels yet.

tested by vgross@, bmercer@, tb@, jmc@, Vadim Vygonets, Peter Kay
ok bmercer@ tb@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/12 09:36:12

Modified files:
	devel/gwenhywfar: Makefile 
	productivity/aqbanking: Makefile 
Added files:
	devel/gwenhywfar/patches: 
	                          patch-gui_qt4_gwengui-qt4-config_cmake_in 
	                          patch-gwenhywfar-config_cmake_in 
	productivity/aqbanking/patches: patch-aqbanking-config_cmake_in 

Log message:
Fix CMake config files, allowing libraries being found via find_package().

This is needed by upcoming KMyMoney 4.8.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/12 09:43:43

Modified files:
	audio/fdk-aac  : Makefile distinfo 
	audio/fdk-aac/patches: patch-libFDK_include_FDK_archdef_h 
Removed files:
	audio/fdk-aac/patches: patch-libFDK_include_mips_cplx_mul_h 

Log message:
Update to fdk-aac 0.1.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/12 10:08:38

Modified files:
	share/man/man4 : athn.4 

Log message:
Update athn(4) man page in light of recently added 802.11n support.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/12 10:15:10

Modified files:
	regress/sys/ffs: run 
	regress/sys/ffs/tests/chflags: 04.t 

Log message:
Print the test description before running each subtest.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/12 10:29:34

Modified files:
	usr.bin/mandoc : mandoc.1 tree.c 

Log message:
show meta data for -Ttree output


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/12 10:30:30

Modified files:
	regress/lib/libfuse: fuse-opt-add-arg.c fuse-opt-insert-arg.c 

Log message:
Remove more checks testing for empty option strings.

These tests never passed and as recently reported by Helg via
yasuoka@ some fuse plugins depends on this behavior.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/12 11:02:24

Modified files:
	usr.bin/mandoc : roff.c 

Log message:
Skipping all escape sequences at the beginning of strings in deroff()
was too aggressive.  There are strings that legitimately begin with
an escape sequence.  Only skip leading escape sequences representing
whitespace.

Bug reported by martijn@.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/12 11:06:57

Modified files:
	sys/dev/ic     : athn.c 
	sys/dev/pci    : if_iwm.c if_iwn.c 
	sys/net80211   : ieee80211_mira.c ieee80211_mira.h 

Log message:
Rename ieee80211_mira_node_destroy() to ieee80211_mira_cancel_timeouts().
No functional change.

The previous name was chosen at a time when I could not yet anticipate
what this function would really end up doing.
The new name should make this function's purpose more obvious, especially
where it appears at strategic places in driver code.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/12 13:29:46

Modified files:
	sys/dev/pv     : xenstore.c 

Log message:
Execute XenStore watch callbacks on a dedicated task queue

Some watch callbacks like xen_hotplug can hog the task queue for
a considerable amount of time due to XenStore interrupt driven
I/O operations and running them on the system task queue causes
problems with other timed operations for instance during boot.

Bug reported and fix tested by ajacoutot@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/12 13:32:01

Modified files:
	usr.bin/less   : command.c 

Log message:
Fix the "t" command for the case where we go down by just a few lines:
clear the status before printing content on the last line of the screen.
OK millert@ tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/12 14:13:58

Modified files:
	audio/flac     : Makefile distinfo 
	audio/flac/patches: patch-configure 
	audio/flac/pkg : PLIST 
Added files:
	audio/flac/patches: patch-src_libFLAC_cpu_c 
Removed files:
	audio/flac/patches: patch-doc_html_Makefile_in 

Log message:
Update to 1.3.2 for numerous small bug fixes.
The API documentation is no longer included (requires Doxygen).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 15:03:02

Modified files:
	infrastructure/db: user.list 

Log message:
reserve 787 for _dnsdist


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 15:29:44

Modified files:
	net            : Makefile 
	net/py-ipaddress: Makefile 

Log message:
drop py3 flavour of py-ipaddress, it's not necessary (the whole thing is an
implementation of python 3.3+'s ipaddress module for earlier versions of
python).  ok ajacoutot


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 15:30:16

Modified files:
	net/py-ipaddress: Makefile distinfo 

Log message:
update to py-ipaddress-1.0.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/12 16:39:53

Modified files:
	textproc/calibre: Makefile distinfo 
	textproc/calibre/patches: patch-src_calibre_constants_py 
	                          patch-src_calibre_gui2___init___py 
	                          patch-src_calibre_linux_py 
	textproc/calibre/pkg: PLIST 
Added files:
	textproc/calibre/patches: patch-setup_build_py 
Removed files:
	textproc/calibre/patches: patch-setup_extensions_py 

Log message:
update to calibre-2.76.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/12 17:20:00

Modified files:
	devel/luacheck : Makefile distinfo 
	devel/luacheck/pkg: PLIST 

Log message:
update to luacheck 0.18.0


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/12 18:01:19

Log message:
    Use a NFS mount via loopback for testing file system operations.
    By changing files directly on the server and accessing them on the
    client or vice versa, specific kernel behavior can be triggered.
    Especially using file mmap(2) over NFS is tested.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170113
    
    N src/regress/sys/nfs/Makefile
    N src/regress/sys/nfs/LICENSE
    N src/regress/sys/nfs/README
    N src/regress/sys/nfs/mmap-sysctl-copyin.c
    N src/regress/sys/nfs/mmap-sysctl-copyout.c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/12 18:16:43

src/regress/sys/ffs/ffs

Update of /cvs/src/regress/sys/ffs/ffs
In directory cvs.openbsd.org:/tmp/cvs-serv14828/ffs

Log Message:
Directory /cvs/src/regress/sys/ffs/ffs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/12 18:16:44

src/regress/sys/ffs/nfs

Update of /cvs/src/regress/sys/ffs/nfs
In directory cvs.openbsd.org:/tmp/cvs-serv14828/nfs

Log Message:
Directory /cvs/src/regress/sys/ffs/nfs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/12 18:19:13

Modified files:
	regress/sys/ffs: LICENSE Makefile README 
Added files:
	regress/sys/ffs/ffs: Makefile 
	regress/sys/ffs/nfs: Makefile 

Log message:
Run the existing tests for FFS also on a NFS mount point.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/12 18:33:15

Modified files:
	regress/sys/kern: Makefile 
	regress/sys    : Makefile 
	regress/sys/kern/mount: Makefile 
	regress/sys/nfs: Makefile mmap-sysctl-copyin.c 
	                 mmap-sysctl-copyout.c 

Log message:
Make mount points and makefiles for file system tests consistent.
Link tests to the build.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/12 19:27:37

Modified files:
	sys/arch/i386/include: vmmvar.h 
	sys/arch/amd64/include: vmmvar.h 

Log message:
Starting to merge my old AMD SVM/RVI tree, piece by piece.

SVM/RVI: VMCB structure definitions for amd64/i386


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/12 19:38:41

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/i386/i386: vmm.c 

Log message:
SVM/RVI: vm_impl_init_svm implementation, create pmap for RVI VMs


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/01/12 20:56:20

Modified files:
	.              : donations.html 
Removed files:
	.              : bank-donation.html 

Log message:
Days after Deutsche Bank entered into a settlement with the US Govt, they
started contacting foreign account holders that their accounts will be
closed.  So that's the end of the account which received donations before
OpenBSD Foundation started up.

Since Canadian bank accounts are quite fraud prone and have CAD$15
transaction fees for incoming payments (seriously).... I guess paypal
will remain the next best choice.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/13 01:49:38

Modified files:
	textproc/elasticsearch: Makefile distinfo 
	textproc/elasticsearch/pkg: PLIST 

Log message:
update to elasticsearch-5.1.2


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/13 01:52:09

Modified files:
	sys/net        : pfkey.c pfkeyv2.c 

Log message:
Remove recursive splsoftnet() but use splsoftassert() instead.

Tested by Hrvoje Popovski, ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/13 01:55:13

Modified files:
	devel/git-lfs  : Makefile distinfo 
	devel/git-lfs/pkg: PLIST 

Log message:
update to git-lfs-1.5.5


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/13 02:18:11

Modified files:
	sys/arch/alpha/alpha: machdep.c 
	sys/arch/arm/arm: arm32_machdep.c 
	sys/arch/arm64/arm64: machdep.c 
	sys/arch/luna88k/luna88k: machdep.c 
	sys/arch/sparc64/sparc64: machdep.c 

Log message:
Ansify cpu_sysctl() on alpha, arm, arm64, luna88k and sparc64.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/13 03:12:12

Modified files:
	usr.bin/tmux   : client.c cmd-detach-client.c server-client.c 
	                 tmux.1 tmux.h 

Log message:
Add -E to detach-client to exec a command to replace the client instead
of exiting it, useful if tmux wasn't exec'd itself. From Jenna Magius.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2017/01/13 04:20:00

Modified files:
	lib/freetype   : CMakeLists.txt ChangeLog Jamfile Makefile 
	                 README shlib_version 
	lib/freetype/builds/mac: ftmac.c 
	lib/freetype/builds/unix: aclocal.m4 config.guess config.sub 
	                          configure configure.ac configure.raw 
	                          ftconfig.h ftconfig.in 
	lib/freetype/builds/vms: ftconfig.h 
	lib/freetype/builds/wince/vc2005-ce: freetype.vcproj index.html 
	lib/freetype/builds/wince/vc2008-ce: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2005: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2008: freetype.vcproj index.html 
	lib/freetype/builds/windows/vc2010: freetype.vcxproj index.html 
	lib/freetype/builds/windows/visualc: freetype.dsp 
	                                     freetype.vcproj index.html 
	lib/freetype/builds/windows/visualce: freetype.dsp 
	                                      freetype.vcproj index.html 
	lib/freetype/docs: CHANGES VERSIONS.TXT formats.txt 
	                   freetype-config.1 
	lib/freetype/docs/reference: 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-pfr_fonts.html 
	                             ft2-quick_advance.html 
	                             ft2-raster.html ft2-sfnt_names.html 
	                             ft2-sizes_management.html 
	                             ft2-system_interface.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/include/freetype: freetype.h ftimage.h ftmm.h 
	                               ftrender.h tttags.h 
	lib/freetype/include/freetype/config: ftconfig.h 
	lib/freetype/include/freetype/internal: ftobjs.h ftrfork.h 
	                                        ftserv.h tttypes.h 
	lib/freetype/include/freetype/internal/services: Makefile svmm.h 
	lib/freetype/src/autofit: afcjk.c afdummy.c afglobal.c afhints.c 
	                          afindic.c aflatin.c aflatin2.c 
	                          afloader.c afmodule.c aftypes.h 
	lib/freetype/src/base: ftadvanc.c ftbbox.c ftbitmap.c ftcalc.c 
	                       ftdbgmem.c ftglyph.c ftmac.c ftmm.c 
	                       ftobjs.c ftrfork.c ftsnames.c ftutil.c 
	lib/freetype/src/bdf: bdfdrivr.c bdflib.c 
	lib/freetype/src/bzip2: ftbzip2.c 
	lib/freetype/src/cache: ftcbasic.c ftccache.c ftccache.h 
	                        ftccmap.c ftcmanag.c ftcmru.c ftcmru.h 
	                        ftcsbits.c 
	lib/freetype/src/cff: cf2arrst.c cf2error.c cf2fixed.h cf2font.c 
	                      cf2font.h cf2ft.c cf2ft.h cf2hints.c 
	                      cf2intrp.c cf2stack.c cf2stack.h cffcmap.c 
	                      cffdrivr.c cffgload.c cffload.c cffload.h 
	                      cffobjs.c cffparse.c cffparse.h cffpic.h 
	                      cfftoken.h cfftypes.h 
	lib/freetype/src/cid: cidload.c cidparse.c cidriver.c 
	lib/freetype/src/gxvalid: gxvcommn.c gxvmod.c gxvmort.c 
	                          gxvmorx.c 
	lib/freetype/src/gzip: ftgzip.c rules.mk zlib.h 
	lib/freetype/src/lzw: ftzopen.c 
	lib/freetype/src/otvalid: otvcommn.c otvmath.c otvmod.c 
	lib/freetype/src/pcf: pcfdrivr.c pcfread.c 
	lib/freetype/src/pfr: pfrcmap.c pfrdrivr.c pfrload.c pfrobjs.c 
	                      pfrsbit.c pfrsbit.h 
	lib/freetype/src/psaux: psauxmod.c psobjs.c t1cmap.c t1decode.c 
	lib/freetype/src/pshinter: pshalgo.c pshmod.c pshrec.c 
	lib/freetype/src/psnames: psmodule.c pstables.h 
	lib/freetype/src/raster: ftraster.c ftrend1.c 
	lib/freetype/src/sfnt: pngshim.c pngshim.h sfdriver.c sfobjs.c 
	                       ttbdf.c ttcmap.c ttload.c ttmtx.c 
	                       ttpost.c ttsbit.c 
	lib/freetype/src/smooth: ftgrays.c ftsmooth.c 
	lib/freetype/src/tools: apinames.c glnames.py 
	lib/freetype/src/tools/ftfuzzer: ftfuzzer.cc 
	lib/freetype/src/tools/ftrandom: ftrandom.c 
	lib/freetype/src/truetype: ttdriver.c ttgload.c ttgxvar.c 
	                           ttgxvar.h ttinterp.c ttinterp.h 
	                           ttobjs.c ttpic.h ttpload.c 
	lib/freetype/src/type1: t1afm.c t1driver.c t1load.c t1load.h 
	                        t1parse.c 
	lib/freetype/src/type42: t42drivr.c t42objs.c t42parse.c 
	lib/freetype/src/winfonts: winfnt.c 
Added files:
	lib/freetype/include/freetype/internal/services: svmetric.h 
	lib/freetype/src/gzip: ftzconf.h 
Removed files:
	lib/freetype/src/gzip: zconf.h 

Log message:
Update to FreeType-2.7.1

i386 bulk build by sthen@
amd64 bulk build by naddy@

OK matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2017/01/13 04:26:31

Modified files:
	.              : 3RDPARTY 

Log message:
Freetype-2.7.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	dcoppa@cvs.openbsd.org	2017/01/13 04:48:20

Modified files:
	lib/freetype/docs: documentation.html 
Added files:
	lib/freetype/docs: subpixel-hinting.html 
	                   text-rendering-general.html 
	lib/freetype/docs/image: freetype-27-consolas-v35-v40.png 
	                         freetype-27-hinting-comparison.png 
	                         freetype-27-v35-v40-different-hinting.png 

Log message:
Update to freetype-doc-2.7.1


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/13 04:56:43

Modified files:
	usr.bin/tmux   : cmd-new-session.c names.c options.c 
	                 server-client.c server-fn.c status.c tmux.h 
	                 tty-term.c 

Log message:
Make options_get_string return const string.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/13 04:58:49

Modified files:
	usr.bin/tmux   : options.c style.c tmux.h 

Log message:
options_get_style return const too.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/13 05:28:52

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Rename pte_{insert,remove} to pmap_pte_{insert,remove} to better
fit into the grand scheme of things.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/13 05:34:08

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Some code already does a vp lookup, so there's no need to call
pmap_pte_insert() which does the same thing again.  Instead, split
the function into two parts, so that those that don't need another
lookup can simply call pmap_pte_update().


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/13 05:36:45

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Call pmap_pte_update() where the vp lookup has already been done
before.  Additionally, simplify pmap_clear_reference() to call
pmap_pte_insert() instead of doing it itself.


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2017/01/13 05:44:28

Modified files:
	sysutils/py-psutil: Makefile 

Log message:
Update for python3 includes py-ipadress
Ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/13 06:25:01

Modified files:
	sys/conf       : files 

Log message:
Always compile the mira code if net80211 is included.
Should unbreak the tree on many platforms broken since athn(4) 11n commit.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	sthen@cvs.openbsd.org	2017/01/13 06:58:47

Modified files:
	distrib/sets/lists/xbase: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/01/13 07:08:52

Modified files:
	net/exabgp     : Makefile distinfo 
	net/exabgp/patches: patch-setup_py 

Log message:
update exabgp to 3.4.17

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/01/13 07:15:42

Log message:
    A PCAP parser to decode BGP messages collected with tcpdump. The parser
    reads PCAP input from file system, stdin, or by listening on a network
    interface. Furthermore, the parser is able to use several output filters
    and pipes to tailor the output for your individual needs.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	phessler
    Release Tags:	phessler_20170113
    
    N ports/net/pbgpp/Makefile
    N ports/net/pbgpp/distinfo
    N ports/net/pbgpp/pkg/PLIST
    N ports/net/pbgpp/pkg/DESCR
    N ports/net/pbgpp/patches/patch-pbgpp_Application_Handler_py
    N ports/net/pbgpp/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/01/13 07:17:19

Modified files:
	net            : Makefile 

Log message:
add pbgpp


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 07:19:42

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add PCI ID for vmm control interface

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 07:21:49

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 07:37:32

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/dev/pci    : files.pci virtio_pci.c virtioreg.h 
	sys/arch/i386/conf: GENERIC 
Added files:
	sys/dev/pci    : vmmci.c 

Log message:
Add vmmci(4) (VMM control interface), a simple guest-side driver for vmm(4) VMs

While we don't have ACPI in vmm(4), we need a simple way to shutdown
and reboot VMs gracefully but the device also allows to add more
direct communications between host and guest later.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 07:40:19

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : vmmci.4 

Log message:
Add vmmci(4) manpage


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 07:50:56

Modified files:
	usr.sbin/vmd   : pci.c pci.h virtio.c virtio.h vmd.h vmm.c 

Log message:
Add host side of vmmci(4) to vmd(8).

It currently uses the device to request graceful shutdown of a VM on
"vmctl stop myvm" but will be extended for reboot and a other edge cases.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 07:53:33

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
Mention attempted graceful shutdown and vmmci(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 08:12:13

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
I accidentally committed three lines from the future.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/13 08:28:02

Modified files:
	regress/sys/arch/hppa/probe: probe.c 
	regress/sys/arch/hppa/sfuid: sfuid.c 

Log message:
Let these hppa-specific tests print "SKIPPED" on non-hppa architectures.
Include some missing header files while I'm there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/13 08:36:59

Modified files:
	mail/neomutt   : Makefile distinfo 
	mail/neomutt/patches: patch-main_c 

Log message:
update to neomutt-20170113, based on mutt 1.7.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	florian@cvs.openbsd.org	2017/01/13 08:38:46

Modified files:
	net/powerdns   : Makefile 
	net/powerdns/pkg: PLIST-main 

Log message:
powerdns has no business touching /var/pdnsd/.
Pointed out by Peter van Dijk <peter.van.dijk AT powerdns.com>,
thanks!
OK sthen


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/13 08:48:39

Modified files:
	faq/pf         : config.html 

Log message:
use boldface for commands, regular instead of italics for comments


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/13 08:50:28

Modified files:
	faq/pf         : config.html 

Log message:
meh. regular #, not bold


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/13 09:02:27

Modified files:
	share/man/man4 : vmmci.4 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/01/13 09:06:48

Modified files:
	mail/mu        : Makefile distinfo 

Log message:
Bump mu to 0.9.18

- remove myself as maintainer
- stop using the gettext module
- fix WANTLIB and and add gpgme as a LIB_DEP

I received a few updates from various people, I didn't end up using your
diffs, but thanks for sending them in!

OK zhuk, sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/13 10:09:51

Modified files:
	lib/libtls     : tls.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/13 10:15:27

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:
Disable and lock Silicon Debug feature on modern Intel CPUs

This implements one of the countermeasures against using Direct
Connect Interface (DCI) to debug CPUs via USB3 mentioned in the
"Tapping into the core" talk at the 33c3: identify and disable
the Silicon Debug feature found in Haswell and newer CPUs.

ok mlarkin, deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/13 10:26:41

Log message:
    Import reprepro 5.1.1 from MAINTAINER Donovan Watteau
    
    reprepro is a tool to manage a repository of Debian packages.
    
    It stores files either being injected manually or downloaded from some other
    repository (partially) mirrored into one pool/ hierarchy.
    
    Managed packages and files are stored in a Berkeley DB, so no database server
    is needed.
    
    Checking signatures of mirrored repositories and creating signatures of the
    generated Package indices is supported.
    
    ok jca@ on a previous version
    
    Status:
    
    Vendor Tag:	dwatteau
    Release Tags:	landry_20170113
    
    N ports/misc/reprepro/Makefile
    N ports/misc/reprepro/distinfo
    N ports/misc/reprepro/patches/patch-docs_reprepro_1
    N ports/misc/reprepro/patches/patch-uploaderslist_c
    N ports/misc/reprepro/pkg/DESCR
    N ports/misc/reprepro/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/13 10:27:16

Modified files:
	misc           : Makefile 

Log message:
+reprepro


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/13 10:37:49

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/13 11:00:10

Modified files:
	usr.sbin/traceroute: traceroute.c traceroute.h worker.c 

Log message:
traceroute never sees a timeout when poll(2) returns when it receives
a packet not intended for us. E.g. a ping(8) is running in parallel.
In this case we need to account for the time we already waited.

Pointed out by Gabriel Nieto <gabnietof AT gmail>, thanks!

Looks good to and input millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/13 11:59:12

Modified files:
	usr.sbin/bgpctl: bgpctl.8 bgpctl.c parser.c parser.h 
	usr.sbin/bgpd  : bgpd.8 bgpd.conf.5 bgpd.h control.c parse.y 
	                 session.c session.h util.c 

Log message:
Add support for draft-ietf-idr-shutdown

BGP state = Idle, marked down with shutdown reason "goodbye, we are
upgrading to openbsd 6.1", down for 00:00:17

developed by Peter van Dijk <peter.van.dijk@powerdns.com> and Job
Snijders <job@ntt.net>, thank you!

OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/13 12:15:20

Log message:
    Import lastools 0.20170108
    
    LAStools: tools for efficient point-cloud processing
    
    * laszip compresses the LAS files in a completely lossless manner
    * lasinfo prints out a quick overview of the contents of a LAS file
    * lasindex creates a spatial index LAX file for fast spatial queries
    * las2las extracts last returns, clips, subsamples, translates, etc ...
    * lasmerge merges several LAS or LAZ files into a single LAS or LAZ file
    * txt2las converts LIDAR data from ASCII text to binary LAS format
    * las2txt turns LAS into human-readable and easy-to-parse ASCII
    * lasprecision analyses the actual precision of the LIDAR points
    
    ok zhuk@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20170113
    
    N ports/converters/lastools/distinfo
    N ports/converters/lastools/Makefile
    N ports/converters/lastools/pkg/PLIST
    N ports/converters/lastools/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/13 12:16:58

Log message:
    Import displaz 0.3.3pre0.
    
    displaz is a cross platform viewer for displaying lidar point clouds and
    derived artifacts such as fitted meshes. The interface was originally developed
    for viewing large airborne laser scans, but also works quite well for point
    clouds acquired using terrestrial lidar and other sources such as bathymetric
    sonar, cf http://c42f.github.io/displaz/.
    
    A single patch is being pushed upstream.
    
    ok/feedback zhuk@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20170113
    
    N ports/graphics/displaz/Makefile
    N ports/graphics/displaz/distinfo
    N ports/graphics/displaz/pkg/DESCR
    N ports/graphics/displaz/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/13 12:17:52

Modified files:
	converters     : Makefile 
	graphics       : Makefile 

Log message:
+lastools & displaz


CVSROOT:	/cvs
Module name:	src
Changes by:	edd@cvs.openbsd.org	2017/01/13 12:21:16

Modified files:
	usr.sbin/vmd   : parse.y vmd.c vmd.h 
	usr.sbin/vmctl : vmctl.8 

Log message:
Make it possible to remove VMs from vmd(8)'s internal queue.

The semantics agreed with reyk@ are:

* ad-hoc created vms, created  with `vmctl start`, are removed once stopped.
* Stopped VMs defined in a config file are flushed before a `vmctl reload`.

OK reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/13 13:30:59

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/arch/i386/conf: GENERIC 

Log message:
Enable vmmci(4)

OK mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/01/13 15:22:28

Modified files:
	emulators/xroar: Makefile distinfo 

Log message:
Update to xroar 0.34.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/13 15:52:24

Modified files:
	sys/arch/arm64/dev: simplebus.c 

Log message:
In comparison to armv7, our arm64 port passes the bus space tag as
first argument instead of the bus space cookie.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/13 17:32:34

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Move a splx() in pmap_enter() to handle all return paths.
ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/01/13 18:59:05

Modified files:
	sysutils/duplicity: Makefile distinfo 
	sysutils/duplicity/patches: patch-bin_duplicity_1 
	                            patch-testing_functional_test_restart_py 

Log message:
Update to duplicity-0.7.11

ok shadchin@ giovanni@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/01/13 19:12:10

Modified files:
	security/lastpass-cli: Makefile distinfo 
	security/lastpass-cli/patches: patch-CMakeLists_txt 
Removed files:
	security/lastpass-cli/patches: patch-pbkdf2_c 

Log message:
Update to lastpass-cli-1.1.1, fix a crash and remove patches that were
committed upstream

From Björn Ketelaars (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/14 01:28:09

Modified files:
	x11/gnome/dconf-editor: Makefile distinfo 

Log message:
Update to dconf-editor-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/14 04:19:04

Modified files:
	productivity/kmymoney: Makefile distinfo 
	productivity/kmymoney/pkg: PLIST 
Added files:
	productivity/kmymoney/patches: patch-CMakeLists_txt 
	                               patch-kmymoney_plugins_onlinetasks_sepa_CMakeLists_txt 
	                               patch-kmymoney_views_kmymoneyview_cpp 
	                               patch-po_ru_kmymoney_po 
	                               patch-tools_CMakeLists_txt 

Log message:
Update KMyMoney to 4.8.0.

KMyMoney gets faster, and grows support for online banking.

This update also includes local patches with support for new Belarusian
Ruble (1 BYN = 10000 BYR, since 01.07.2016), to be sent upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/14 04:32:00

Modified files:
	sys/dev/acpi   : acpi.c dsdt.c 

Log message:
Revert aml_rdpciaddr changes; breaks several machines that were working
before.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/01/14 04:43:48

Modified files:
	editors/ged    : Makefile distinfo 
	editors/ged/patches: patch-doc_ed_info 

Log message:
Update to GNU ed 1.14.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/14 07:22:44

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/py-acme: distinfo 

Log message:
update to certbot-0.10.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	millert@cvs.openbsd.org	2017/01/14 09:39:24

Modified files:
	security/sudo  : Makefile distinfo 

Log message:
update to sudo 1.8.19p2


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/14 10:00:10

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 

Log message:
Update to google-cloud-sdk-139.0.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/14 10:15:51

Modified files:
	print/gutenprint: Makefile distinfo 
	print/gutenprint/patches: patch-configure 
	                          patch-src_main_print-olympus_c 
	print/gutenprint/pkg: PLIST 
Added files:
	print/gutenprint/patches: patch-src_cups_backend_common_h 

Log message:
Update to gutenprint-5.2.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/14 10:18:45

Modified files:
	devel/appstream-glib: Makefile distinfo 
	devel/appstream-glib/pkg: PLIST 

Log message:
Update to appstream-glib-0.6.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/01/14 10:29:45

Modified files:
	graphics/glfw  : Makefile distinfo 
	graphics/glfw/patches: patch-CMakeLists_txt 
	                       patch-src-egl_context-c 
	                       patch-src-glx_context-c 
	graphics/glfw/pkg: PLIST 

Log message:
Update to glfw-3.2.1

From Gregor Best (maintainer), tweaks by me, ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/14 10:31:24

Modified files:
	regress/sys/net/pflow: ifconfig.ok ifconfig.sh 

Log message:
Remove priority line, ifconfig(8) prints the interface index on the
same line and that changes on every interface creation, messing up the
diff to ifconfig.ok


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/14 10:32:16

Modified files:
	regress/sys/net/pflow: ifconfig.ok ifconfig.sh 

Log message:
It's not longer a syntax error to provide a flowdst without a port
number. Drop argument altogether to provoke a syntax error.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/14 11:03:11

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
HTTPS proxy support for ftp-ssl.

The install media already allow for plaintext HTTP proxying.  The code
to support CONNECT is short enough.  Reported/fix tested by rpe@,  ok
deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/14 11:03:42

Modified files:
	textproc/py-nltk: Makefile distinfo 
	textproc/py-nltk/pkg: PLIST 

Log message:
Update to py-nltk 3.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/01/14 11:51:24

Modified files:
	usr.bin/doas   : doas.c 

Log message:
add a geteuid check to make sure we're root before plowing into setauth.
spare some debugging effort in case doas is not installed setuid.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/14 11:53:08

Modified files:
	usr.bin/tmux   : cmd-kill-pane.c 

Log message:
killp -a should not kill the window if only one pane.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/14 12:56:10

Log message:
    Import LLVM 3.9.1 including clang and lld.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LLVM_3_9_1
    
    U src/gnu/llvm/llvm.spec.in
    U src/gnu/llvm/configure
    U src/gnu/llvm/LICENSE.TXT
    U src/gnu/llvm/README.txt
    U src/gnu/llvm/.clang-format
    U src/gnu/llvm/LLVMBuild.txt
    U src/gnu/llvm/.arcconfig
    U src/gnu/llvm/.clang-tidy
    U src/gnu/llvm/CMakeLists.txt
    U src/gnu/llvm/CREDITS.TXT
    U src/gnu/llvm/CODE_OWNERS.TXT
    U src/gnu/llvm/.gitignore
    U src/gnu/llvm/bindings/README.txt
    U src/gnu/llvm/bindings/LLVMBuild.txt
    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/DIBuilderBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/transforms_pmbuilder.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/target.go
    U src/gnu/llvm/bindings/go/llvm/dibuilder.go
    U src/gnu/llvm/bindings/go/llvm/bitreader.go
    U src/gnu/llvm/bindings/go/llvm/analysis.go
    U src/gnu/llvm/bindings/go/llvm/llvm_config.go.in
    U src/gnu/llvm/bindings/go/llvm/transforms_ipo.go
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.h
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/IRBindings.h
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/ir.go
    U src/gnu/llvm/bindings/go/llvm/llvm_dep.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/executionengine_test.go
    U src/gnu/llvm/bindings/go/llvm/support.go
    U src/gnu/llvm/bindings/go/llvm/ir_test.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/linker.go
    U src/gnu/llvm/bindings/go/llvm/executionengine.go
    U src/gnu/llvm/bindings/go/llvm/DIBuilderBindings.h
    U src/gnu/llvm/bindings/go/llvm/string_test.go
    U src/gnu/llvm/bindings/go/llvm/string.go
    U src/gnu/llvm/bindings/go/llvm/bitwriter.go
    U src/gnu/llvm/bindings/python/README.txt
    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/disassembler.py
    U src/gnu/llvm/bindings/python/llvm/__init__.py
    U src/gnu/llvm/bindings/python/llvm/object.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/tests/test_bitreader.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_core.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_object.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_file
    U src/gnu/llvm/bindings/python/llvm/tests/base.py
    U src/gnu/llvm/bindings/python/llvm/tests/test.bc
    U src/gnu/llvm/bindings/ocaml/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/bitreader/CMakeLists.txt
    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/bitwriter_ocaml.c
    U src/gnu/llvm/bindings/ocaml/bitwriter/llvm_bitwriter.mli
    U src/gnu/llvm/bindings/ocaml/irreader/irreader_ocaml.c
    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/ocaml/irreader/CMakeLists.txt
    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/llvm_all_backends.mli
    U src/gnu/llvm/bindings/ocaml/all_backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/CMakeLists.txt
    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/passmgr_builder/llvm_passmgr_builder.mli
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.mli
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.ml
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/scalar_opts_ocaml.c
    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/ipo/ipo_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.ml
    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/vectorize_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/utils/llvm_transform_utils.ml
    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.mli
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.ml.in
    U src/gnu/llvm/bindings/ocaml/backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/backends/META.llvm_backend.in
    U src/gnu/llvm/bindings/ocaml/backends/backend_ocaml.c
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.mli.in
    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/target/llvm_target.mli
    U src/gnu/llvm/bindings/ocaml/target/target_ocaml.c
    U src/gnu/llvm/bindings/ocaml/llvm/META.llvm.in
    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/llvm/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.ml
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.ml
    U src/gnu/llvm/bindings/ocaml/analysis/analysis_ocaml.c
    U src/gnu/llvm/bindings/ocaml/analysis/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.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/executionengine/llvm_executionengine.ml
    U src/gnu/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
    U src/gnu/llvm/bindings/ocaml/executionengine/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.mli
    U src/gnu/llvm/unittests/CMakeLists.txt
    U src/gnu/llvm/unittests/ADT/ImmutableSetTest.cpp
    U src/gnu/llvm/unittests/ADT/FunctionRefTest.cpp
    U src/gnu/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseMapTest.cpp
    U src/gnu/llvm/unittests/ADT/FoldingSet.cpp
    U src/gnu/llvm/unittests/ADT/SmallPtrSetTest.cpp
    U src/gnu/llvm/unittests/ADT/PostOrderIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/HashingTest.cpp
    U src/gnu/llvm/unittests/ADT/BitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/TwineTest.cpp
    U src/gnu/llvm/unittests/ADT/SCCIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableMapTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerEmbeddedIntTest.cpp
    N src/gnu/llvm/unittests/ADT/PriorityWorklistTest.cpp
    N src/gnu/llvm/unittests/ADT/SequenceTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallStringTest.cpp
    U src/gnu/llvm/unittests/ADT/APSIntTest.cpp
    U src/gnu/llvm/unittests/ADT/IntervalMapTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerSumTypeTest.cpp
    U src/gnu/llvm/unittests/ADT/MakeUniqueTest.cpp
    U src/gnu/llvm/unittests/ADT/APIntTest.cpp
    N src/gnu/llvm/unittests/ADT/SetVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/IntEqClassesTest.cpp
    U src/gnu/llvm/unittests/ADT/TripleTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseBitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/MapVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/CMakeLists.txt
    U src/gnu/llvm/unittests/ADT/StringRefTest.cpp
    U src/gnu/llvm/unittests/ADT/PackedVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/StringMapTest.cpp
    U src/gnu/llvm/unittests/ADT/APFloatTest.cpp
    U src/gnu/llvm/unittests/ADT/VariadicFunctionTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerUnionTest.cpp
    U src/gnu/llvm/unittests/ADT/TinyPtrVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/ArrayRefTest.cpp
    N src/gnu/llvm/unittests/ADT/BitmaskEnumTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseMultiSetTest.cpp
    U src/gnu/llvm/unittests/ADT/RangeAdapterTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerIntPairTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/OptionalTest.cpp
    U src/gnu/llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp
    U src/gnu/llvm/unittests/ADT/DeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/ilistTest.cpp
    U src/gnu/llvm/unittests/CodeGen/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/DIEHashTest.cpp
    U src/gnu/llvm/unittests/Option/Opts.td
    U src/gnu/llvm/unittests/Option/CMakeLists.txt
    U src/gnu/llvm/unittests/Option/OptionParsingTest.cpp
    U src/gnu/llvm/unittests/IR/UseTest.cpp
    U src/gnu/llvm/unittests/IR/ValueTest.cpp
    N src/gnu/llvm/unittests/IR/FunctionTest.cpp
    N src/gnu/llvm/unittests/IR/DebugTypeODRUniquingTest.cpp
    U src/gnu/llvm/unittests/IR/MDBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/TypeBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/IRBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/InstructionsTest.cpp
    U src/gnu/llvm/unittests/IR/DebugInfoTest.cpp
    N src/gnu/llvm/unittests/IR/IntrinsicsTest.cpp
    U src/gnu/llvm/unittests/IR/WaymarkTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantRangeTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantsTest.cpp
    U src/gnu/llvm/unittests/IR/LegacyPassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/AsmWriterTest.cpp
    U src/gnu/llvm/unittests/IR/MetadataTest.cpp
    U src/gnu/llvm/unittests/IR/CMakeLists.txt
    U src/gnu/llvm/unittests/IR/PassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/TypesTest.cpp
    U src/gnu/llvm/unittests/IR/ValueHandleTest.cpp
    U src/gnu/llvm/unittests/IR/AttributesTest.cpp
    U src/gnu/llvm/unittests/IR/PatternMatch.cpp
    U src/gnu/llvm/unittests/IR/VerifierTest.cpp
    U src/gnu/llvm/unittests/IR/UserTest.cpp
    U src/gnu/llvm/unittests/IR/ValueMapTest.cpp
    U src/gnu/llvm/unittests/IR/DominatorTreeTest.cpp
    U src/gnu/llvm/unittests/Transforms/CMakeLists.txt
    N src/gnu/llvm/unittests/Transforms/Utils/MemorySSA.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/Local.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/Cloning.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ASanStackFrameLayoutTest.cpp
    N src/gnu/llvm/unittests/Transforms/IPO/WholeProgramDevirt.cpp
    N src/gnu/llvm/unittests/Transforms/IPO/LowerTypeTests.cpp
    U src/gnu/llvm/unittests/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/CMakeLists.txt
    N src/gnu/llvm/unittests/DebugInfo/PDB/ErrorChecking.h
    N src/gnu/llvm/unittests/DebugInfo/PDB/MsfBuilderTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
    N src/gnu/llvm/unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/CMakeLists.txt
    N src/gnu/llvm/unittests/ObjectYAML/YAMLTest.cpp
    N src/gnu/llvm/unittests/ObjectYAML/CMakeLists.txt
    N src/gnu/llvm/unittests/MI/LiveIntervalTest.cpp
    N src/gnu/llvm/unittests/MI/CMakeLists.txt
    U src/gnu/llvm/unittests/AsmParser/CMakeLists.txt
    U src/gnu/llvm/unittests/AsmParser/AsmParserTest.cpp
    U src/gnu/llvm/unittests/LineEditor/LineEditor.cpp
    U src/gnu/llvm/unittests/LineEditor/CMakeLists.txt
    U src/gnu/llvm/unittests/Analysis/MixedTBAATest.cpp
    N src/gnu/llvm/unittests/Analysis/LoopPassManagerTest.cpp
    U src/gnu/llvm/unittests/Analysis/ValueTrackingTest.cpp
    U src/gnu/llvm/unittests/Analysis/CallGraphTest.cpp
    N src/gnu/llvm/unittests/Analysis/BlockFrequencyInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/CMakeLists.txt
    N src/gnu/llvm/unittests/Analysis/CGSCCPassManagerTest.cpp
    U src/gnu/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
    U src/gnu/llvm/unittests/Analysis/CFGTest.cpp
    N src/gnu/llvm/unittests/Analysis/UnrollAnalyzer.cpp
    U src/gnu/llvm/unittests/Analysis/LazyCallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/AliasAnalysisTest.cpp
    U src/gnu/llvm/unittests/ProfileData/InstrProfTest.cpp
    U src/gnu/llvm/unittests/ProfileData/SampleProfTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CMakeLists.txt
    U src/gnu/llvm/unittests/ProfileData/CoverageMappingTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CompileOnDemandLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectTransformLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectLinkingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/GlobalMappingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMemoryManagerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTests.def
    N src/gnu/llvm/unittests/Bitcode/BitstreamWriterTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitstreamReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/CMakeLists.txt
    U src/gnu/llvm/unittests/Support/ThreadPool.cpp
    U src/gnu/llvm/unittests/Support/BranchProbabilityTest.cpp
    U src/gnu/llvm/unittests/Support/ReplaceFileTest.cpp
    U src/gnu/llvm/unittests/Support/LineIteratorTest.cpp
    U src/gnu/llvm/unittests/Support/TrailingObjectsTest.cpp
    U src/gnu/llvm/unittests/Support/TimerTest.cpp
    U src/gnu/llvm/unittests/Support/raw_pwrite_stream_test.cpp
    U src/gnu/llvm/unittests/Support/BlockFrequencyTest.cpp
    U src/gnu/llvm/unittests/Support/formatted_raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/CommandLineTest.cpp
    U src/gnu/llvm/unittests/Support/EndianTest.cpp
    U src/gnu/llvm/unittests/Support/ScaledNumberTest.cpp
    N src/gnu/llvm/unittests/Support/StreamingMemoryObjectTest.cpp
    U src/gnu/llvm/unittests/Support/SpecialCaseListTest.cpp
    U src/gnu/llvm/unittests/Support/LEB128Test.cpp
    U src/gnu/llvm/unittests/Support/ErrorOrTest.cpp
    U src/gnu/llvm/unittests/Support/DwarfTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLIOTest.cpp
    U src/gnu/llvm/unittests/Support/UnicodeTest.cpp
    U src/gnu/llvm/unittests/Support/AllocatorTest.cpp
    U src/gnu/llvm/unittests/Support/raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/Path.cpp
    N src/gnu/llvm/unittests/Support/TypeNameTest.cpp
    U src/gnu/llvm/unittests/Support/FileOutputBufferTest.cpp
    U src/gnu/llvm/unittests/Support/MathExtrasTest.cpp
    U src/gnu/llvm/unittests/Support/ProcessTest.cpp
    U src/gnu/llvm/unittests/Support/IteratorTest.cpp
    U src/gnu/llvm/unittests/Support/MD5Test.cpp
    U src/gnu/llvm/unittests/Support/AlignOfTest.cpp
    U src/gnu/llvm/unittests/Support/MemoryTest.cpp
    U src/gnu/llvm/unittests/Support/ConvertUTFTest.cpp
    U src/gnu/llvm/unittests/Support/TimeValueTest.cpp
    U src/gnu/llvm/unittests/Support/DataExtractorTest.cpp
    U src/gnu/llvm/unittests/Support/CMakeLists.txt
    N src/gnu/llvm/unittests/Support/ErrorTest.cpp
    U src/gnu/llvm/unittests/Support/SwapByteOrderTest.cpp
    U src/gnu/llvm/unittests/Support/SourceMgrTest.cpp
    U src/gnu/llvm/unittests/Support/ManagedStatic.cpp
    U src/gnu/llvm/unittests/Support/Casting.cpp
    N src/gnu/llvm/unittests/Support/TargetParserTest.cpp
    N src/gnu/llvm/unittests/Support/raw_sha1_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/CompressionTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLParserTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadLocalTest.cpp
    U src/gnu/llvm/unittests/Support/StringPool.cpp
    U src/gnu/llvm/unittests/Support/LockFileManagerTest.cpp
    U src/gnu/llvm/unittests/Support/EndianStreamTest.cpp
    U src/gnu/llvm/unittests/Support/ArrayRecyclerTest.cpp
    U src/gnu/llvm/unittests/Support/ProgramTest.cpp
    U src/gnu/llvm/unittests/Support/RegexTest.cpp
    U src/gnu/llvm/unittests/Support/MemoryBufferTest.cpp
    U src/gnu/llvm/unittests/MC/Disassembler.cpp
    N src/gnu/llvm/unittests/MC/DwarfLineTables.cpp
    U src/gnu/llvm/unittests/MC/CMakeLists.txt
    U src/gnu/llvm/unittests/MC/StringTableBuilderTest.cpp
    N src/gnu/llvm/unittests/MC/TargetRegistry.cpp
    U src/gnu/llvm/unittests/Linker/LinkModulesTest.cpp
    U src/gnu/llvm/unittests/Linker/CMakeLists.txt
    U src/gnu/llvm/projects/LLVMBuild.txt
    U src/gnu/llvm/projects/CMakeLists.txt
    U src/gnu/llvm/tools/LLVMBuild.txt
    U src/gnu/llvm/tools/CMakeLists.txt
    U src/gnu/llvm/tools/llc/llc.cpp
    U src/gnu/llvm/tools/llc/LLVMBuild.txt
    U src/gnu/llvm/tools/llc/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dis/llvm-dis.cpp
    U src/gnu/llvm/tools/llvm-dis/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dis/CMakeLists.txt
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
    U src/gnu/llvm/tools/msbuild/toolset-vs2014_xp.targets
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets
    U src/gnu/llvm/tools/msbuild/uninstall.bat
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2010.targets
    U src/gnu/llvm/tools/msbuild/toolset-vs2013.targets
    U src/gnu/llvm/tools/msbuild/toolset-vs2014.targets
    U src/gnu/llvm/tools/msbuild/CMakeLists.txt
    U src/gnu/llvm/tools/msbuild/toolset-vs2013_xp.targets
    U src/gnu/llvm/tools/msbuild/install.bat
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012.targets
    U src/gnu/llvm/tools/dsymutil/MachODebugMapParser.cpp
    U src/gnu/llvm/tools/dsymutil/DwarfLinker.cpp
    U src/gnu/llvm/tools/dsymutil/DebugMap.h
    U src/gnu/llvm/tools/dsymutil/dsymutil.h
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.h
    U src/gnu/llvm/tools/dsymutil/dsymutil.cpp
    U src/gnu/llvm/tools/dsymutil/DebugMap.cpp
    U src/gnu/llvm/tools/dsymutil/LLVMBuild.txt
    U src/gnu/llvm/tools/dsymutil/MachOUtils.h
    U src/gnu/llvm/tools/dsymutil/MachOUtils.cpp
    U src/gnu/llvm/tools/dsymutil/CMakeLists.txt
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.cpp
    U src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.h
    U src/gnu/llvm/tools/lto/lto.cpp
    U src/gnu/llvm/tools/lto/lto.exports
    U src/gnu/llvm/tools/lto/CMakeLists.txt
    U src/gnu/llvm/tools/lto/LTODisassembler.cpp
    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/llvm-cov/CoverageSummaryInfo.cpp
    U src/gnu/llvm/tools/llvm-cov/TestingSupport.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.h
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageViewOptions.h
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.h
    N src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.h
    U src/gnu/llvm/tools/llvm-cov/llvm-cov.cpp
    U src/gnu/llvm/tools/llvm-cov/gcov.cpp
    U src/gnu/llvm/tools/llvm-cov/CodeCoverage.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.cpp
    U src/gnu/llvm/tools/llvm-cov/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.cpp
    U src/gnu/llvm/tools/llvm-cov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.h
    U src/gnu/llvm/tools/llvm-cov/RenderingSupport.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.h
    N src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.h
    N src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.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/obj2yaml/obj2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.h
    U src/gnu/llvm/tools/obj2yaml/coff2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/elf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/CMakeLists.txt
    U src/gnu/llvm/tools/obj2yaml/Error.cpp
    U src/gnu/llvm/tools/obj2yaml/Error.h
    N src/gnu/llvm/tools/obj2yaml/macho2yaml.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/LLVMOutputStyle.h
    N src/gnu/llvm/tools/llvm-pdbdump/PdbYaml.h
    U src/gnu/llvm/tools/llvm-pdbdump/TypedefDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/FunctionDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/TypeDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/FunctionDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PdbYaml.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/BuiltinDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/VariableDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-pdbdump/TypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/BuiltinDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/VariableDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.h
    U src/gnu/llvm/tools/llvm-pdbdump/CompilandDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/YAMLOutputStyle.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/OutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbdump/CompilandDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/EnumDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/EnumDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/YAMLOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbdump/TypedefDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.h
    N src/gnu/llvm/tools/llvm-pdbdump/fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-pdbdump/fuzzer/llvm-pdbdump-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-bcanalyzer/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-bcanalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
    U 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-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/opt/BreakpointPrinter.cpp
    U src/gnu/llvm/tools/opt/PrintSCC.cpp
    U src/gnu/llvm/tools/opt/BreakpointPrinter.h
    U src/gnu/llvm/tools/opt/GraphPrinters.cpp
    U src/gnu/llvm/tools/opt/LLVMBuild.txt
    U src/gnu/llvm/tools/opt/CMakeLists.txt
    U src/gnu/llvm/tools/opt/NewPMDriver.cpp
    U src/gnu/llvm/tools/opt/AnalysisWrappers.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/opt/PassPrinters.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-shlib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-shlib/libllvm.cpp
    U src/gnu/llvm/tools/llvm-c-test/object.c
    U src/gnu/llvm/tools/llvm-c-test/include-all.c
    U src/gnu/llvm/tools/llvm-c-test/module.c
    U src/gnu/llvm/tools/llvm-c-test/calc.c
    U src/gnu/llvm/tools/llvm-c-test/targets.c
    U src/gnu/llvm/tools/llvm-c-test/metadata.c
    N src/gnu/llvm/tools/llvm-c-test/diagnostic.c
    N 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/main.c
    U src/gnu/llvm/tools/llvm-c-test/llvm-c-test.h
    U src/gnu/llvm/tools/llvm-c-test/helpers.c
    U src/gnu/llvm/tools/llvm-c-test/disassemble.c
    U src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.h
    U src/gnu/llvm/tools/llvm-cxxdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cxxdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cxxdump/Error.cpp
    U src/gnu/llvm/tools/llvm-cxxdump/Error.h
    U src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.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
    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-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/yaml2obj/yaml2obj.h
    U src/gnu/llvm/tools/yaml2obj/yaml2elf.cpp
    U src/gnu/llvm/tools/yaml2obj/CMakeLists.txt
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.cpp
    N src/gnu/llvm/tools/yaml2obj/yaml2macho.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2coff.cpp
    N src/gnu/llvm/tools/llvm-dwp/DWPStringPool.h
    U src/gnu/llvm/tools/llvm-dwp/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-dwp/DWPError.h
    U src/gnu/llvm/tools/llvm-dwp/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-dwp/DWPError.cpp
    U src/gnu/llvm/tools/llvm-dwp/llvm-dwp.cpp
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.h
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
    U src/gnu/llvm/tools/llvm-readobj/ELFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.cpp
    U src/gnu/llvm/tools/llvm-readobj/MachODumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/COFFImportDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/COFFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.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/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-readobj/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/Error.cpp
    N src/gnu/llvm/tools/llvm-readobj/CodeView.h
    U src/gnu/llvm/tools/llvm-readobj/StackMapPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
    U src/gnu/llvm/tools/llvm-readobj/Error.h
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.h
    U src/gnu/llvm/tools/llvm-readobj/ARMAttributeParser.h
    U src/gnu/llvm/tools/llvm-jitlistener/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-jitlistener/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-jitlistener/llvm-jitlistener.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-ar/llvm-ar.cpp
    U src/gnu/llvm/tools/llvm-size/llvm-size.cpp
    U src/gnu/llvm/tools/llvm-size/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-size/CMakeLists.txt
    U src/gnu/llvm/tools/sancov/sancov.cc
    U src/gnu/llvm/tools/sancov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-nm/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-nm/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-nm/llvm-nm.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.cpp
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.cpp
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
    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/DiffLog.h
    U src/gnu/llvm/tools/llvm-diff/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-diff/llvm-diff.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.h
    N src/gnu/llvm/tools/sanstats/sanstats.cpp
    N src/gnu/llvm/tools/sanstats/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mcmarkup/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mcmarkup/llvm-mcmarkup.cpp
    U src/gnu/llvm/tools/llvm-mcmarkup/CMakeLists.txt
    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/llvm-dwarfdump.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/llvm-dwarfdump-fuzzer.cpp
    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-split/llvm-split.cpp
    U src/gnu/llvm/tools/llvm-split/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-split/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-link/LLVMBuild.txt
    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-mc-fuzzer/llvm-mc-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-mc-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/lli/OrcLazyJIT.h
    U src/gnu/llvm/tools/lli/OrcLazyJIT.cpp
    U src/gnu/llvm/tools/lli/LLVMBuild.txt
    U src/gnu/llvm/tools/lli/lli.cpp
    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/CMakeLists.txt
    U src/gnu/llvm/tools/lli/ChildTarget/ChildTarget.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.cpp
    U src/gnu/llvm/tools/bugpoint/FindBugs.cpp
    U src/gnu/llvm/tools/bugpoint/OptimizerDriver.cpp
    U src/gnu/llvm/tools/bugpoint/ExecutionDriver.cpp
    U src/gnu/llvm/tools/bugpoint/bugpoint.cpp
    U src/gnu/llvm/tools/bugpoint/LLVMBuild.txt
    U src/gnu/llvm/tools/bugpoint/BugDriver.cpp
    U src/gnu/llvm/tools/bugpoint/BugDriver.h
    U src/gnu/llvm/tools/bugpoint/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint/Miscompilation.cpp
    U src/gnu/llvm/tools/bugpoint/ExtractFunction.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.h
    U src/gnu/llvm/tools/bugpoint/ListReducer.h
    U src/gnu/llvm/tools/bugpoint/CrashDebugger.cpp
    U src/gnu/llvm/tools/llvm-objdump/llvm-objdump.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/llvm-objdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-objdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objdump/COFFDump.cpp
    U src/gnu/llvm/tools/llvm-objdump/MachODump.cpp
    U src/gnu/llvm/tools/xcode-toolchain/CMakeLists.txt
    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-go/llvm-go.go
    U src/gnu/llvm/tools/llvm-go/CMakeLists.txt
    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/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mc/Disassembler.h
    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
    N src/gnu/llvm/tools/lld/LICENSE.TXT
    N src/gnu/llvm/tools/lld/.clang-format
    N src/gnu/llvm/tools/lld/README.md
    N src/gnu/llvm/tools/lld/.arcconfig
    N src/gnu/llvm/tools/lld/CMakeLists.txt
    N src/gnu/llvm/tools/lld/CODE_OWNERS.TXT
    N src/gnu/llvm/tools/lld/.gitignore
    N src/gnu/llvm/tools/lld/ELF/Writer.cpp
    N src/gnu/llvm/tools/lld/ELF/Strings.h
    N src/gnu/llvm/tools/lld/ELF/OutputSections.h
    N src/gnu/llvm/tools/lld/ELF/Driver.cpp
    N src/gnu/llvm/tools/lld/ELF/InputFiles.h
    N src/gnu/llvm/tools/lld/ELF/EhFrame.h
    N src/gnu/llvm/tools/lld/ELF/Writer.h
    N src/gnu/llvm/tools/lld/ELF/OutputSections.cpp
    N src/gnu/llvm/tools/lld/ELF/LinkerScript.cpp
    N src/gnu/llvm/tools/lld/ELF/Thunks.h
    N src/gnu/llvm/tools/lld/ELF/InputSection.h
    N src/gnu/llvm/tools/lld/ELF/ScriptParser.h
    N src/gnu/llvm/tools/lld/ELF/ICF.cpp
    N src/gnu/llvm/tools/lld/ELF/LinkerScript.h
    N src/gnu/llvm/tools/lld/ELF/README.md
    N src/gnu/llvm/tools/lld/ELF/SymbolTable.h
    N src/gnu/llvm/tools/lld/ELF/Thunks.cpp
    N src/gnu/llvm/tools/lld/ELF/CMakeLists.txt
    N src/gnu/llvm/tools/lld/ELF/Config.h
    N src/gnu/llvm/tools/lld/ELF/SymbolListFile.cpp
    N src/gnu/llvm/tools/lld/ELF/InputSection.cpp
    N src/gnu/llvm/tools/lld/ELF/Error.cpp
    N src/gnu/llvm/tools/lld/ELF/Target.cpp
    N src/gnu/llvm/tools/lld/ELF/Symbols.cpp
    N src/gnu/llvm/tools/lld/ELF/Relocations.cpp
    N src/gnu/llvm/tools/lld/ELF/EhFrame.cpp
    N src/gnu/llvm/tools/lld/ELF/Driver.h
    N src/gnu/llvm/tools/lld/ELF/SymbolListFile.h
    N src/gnu/llvm/tools/lld/ELF/LTO.h
    N src/gnu/llvm/tools/lld/ELF/DriverUtils.cpp
    N src/gnu/llvm/tools/lld/ELF/SymbolTable.cpp
    N src/gnu/llvm/tools/lld/ELF/InputFiles.cpp
    N src/gnu/llvm/tools/lld/ELF/Target.h
    N src/gnu/llvm/tools/lld/ELF/MarkLive.cpp
    N src/gnu/llvm/tools/lld/ELF/ScriptParser.cpp
    N src/gnu/llvm/tools/lld/ELF/Relocations.h
    N src/gnu/llvm/tools/lld/ELF/Strings.cpp
    N src/gnu/llvm/tools/lld/ELF/ICF.h
    N src/gnu/llvm/tools/lld/ELF/Error.h
    N src/gnu/llvm/tools/lld/ELF/LTO.cpp
    N src/gnu/llvm/tools/lld/ELF/Options.td
    N src/gnu/llvm/tools/lld/ELF/Symbols.h
    N src/gnu/llvm/tools/lld/unittests/CMakeLists.txt
    N src/gnu/llvm/tools/lld/unittests/DriverTests/DarwinLdDriverTest.cpp
    N src/gnu/llvm/tools/lld/unittests/DriverTests/CMakeLists.txt
    N src/gnu/llvm/tools/lld/unittests/CoreTests/ParallelTest.cpp
    N src/gnu/llvm/tools/lld/unittests/CoreTests/CMakeLists.txt
    N src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp
    N src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
    N src/gnu/llvm/tools/lld/unittests/MachOTests/CMakeLists.txt
    N src/gnu/llvm/tools/lld/unittests/MachOTests/empty_obj_x86_armv7.txt
    N src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
    N src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
    N src/gnu/llvm/tools/lld/tools/lld/lld.cpp
    N src/gnu/llvm/tools/lld/tools/lld/CMakeLists.txt
    N src/gnu/llvm/tools/lld/include/lld/Driver/Driver.h
    N src/gnu/llvm/tools/lld/include/lld/Config/Version.inc.in
    N src/gnu/llvm/tools/lld/include/lld/Config/Version.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Writer.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Pass.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Reference.h
    N src/gnu/llvm/tools/lld/include/lld/Core/LLVM.h
    N src/gnu/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
    N src/gnu/llvm/tools/lld/include/lld/Core/SymbolTable.h
    N src/gnu/llvm/tools/lld/include/lld/Core/PassManager.h
    N src/gnu/llvm/tools/lld/include/lld/Core/DefinedAtom.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Instrumentation.h
    N src/gnu/llvm/tools/lld/include/lld/Core/TODO.txt
    N src/gnu/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
    N src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
    N src/gnu/llvm/tools/lld/include/lld/Core/LinkingContext.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Resolver.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Parallel.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Error.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Node.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Reader.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Simple.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Atom.h
    N src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
    N src/gnu/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
    N src/gnu/llvm/tools/lld/include/lld/Core/File.h
    N src/gnu/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
    N src/gnu/llvm/tools/lld/include/lld/ReaderWriter/YamlContext.h
    N src/gnu/llvm/tools/lld/cmake/modules/FindVTune.cmake
    N src/gnu/llvm/tools/lld/docs/C++11.rst
    N src/gnu/llvm/tools/lld/docs/Driver.rst
    N src/gnu/llvm/tools/lld/docs/open_projects.rst
    N src/gnu/llvm/tools/lld/docs/getting_started.rst
    N src/gnu/llvm/tools/lld/docs/design.rst
    N src/gnu/llvm/tools/lld/docs/windows_support.rst
    N src/gnu/llvm/tools/lld/docs/README.txt
    N src/gnu/llvm/tools/lld/docs/Readers.rst
    N src/gnu/llvm/tools/lld/docs/sphinx_intro.rst
    N src/gnu/llvm/tools/lld/docs/make.bat
    N src/gnu/llvm/tools/lld/docs/development.rst
    N src/gnu/llvm/tools/lld/docs/CMakeLists.txt
    N src/gnu/llvm/tools/lld/docs/hello.png
    N src/gnu/llvm/tools/lld/docs/AtomLLD.rst
    N src/gnu/llvm/tools/lld/docs/ReleaseNotes.rst
    N src/gnu/llvm/tools/lld/docs/NewLLD.rst
    N src/gnu/llvm/tools/lld/docs/conf.py
    N src/gnu/llvm/tools/lld/docs/index.rst
    N src/gnu/llvm/tools/lld/docs/_templates/layout.html
    N src/gnu/llvm/tools/lld/docs/_templates/indexsidebar.html
    N src/gnu/llvm/tools/lld/docs/llvm-theme/theme.conf
    N src/gnu/llvm/tools/lld/docs/llvm-theme/layout.html
    N src/gnu/llvm/tools/lld/docs/llvm-theme/static/contents.png
    N src/gnu/llvm/tools/lld/docs/llvm-theme/static/llvm.css
    N src/gnu/llvm/tools/lld/docs/llvm-theme/static/navigation.png
    N src/gnu/llvm/tools/lld/docs/llvm-theme/static/logo.png
    N src/gnu/llvm/tools/lld/docs/_static/favicon.ico
    N src/gnu/llvm/tools/lld/COFF/Librarian.cpp
    N src/gnu/llvm/tools/lld/COFF/DLL.h
    N src/gnu/llvm/tools/lld/COFF/Writer.cpp
    N src/gnu/llvm/tools/lld/COFF/DLL.cpp
    N src/gnu/llvm/tools/lld/COFF/Driver.cpp
    N src/gnu/llvm/tools/lld/COFF/InputFiles.h
    N src/gnu/llvm/tools/lld/COFF/Writer.h
    N src/gnu/llvm/tools/lld/COFF/Chunks.cpp
    N src/gnu/llvm/tools/lld/COFF/Chunks.h
    N src/gnu/llvm/tools/lld/COFF/ModuleDef.cpp
    N src/gnu/llvm/tools/lld/COFF/PDB.cpp
    N src/gnu/llvm/tools/lld/COFF/ICF.cpp
    N src/gnu/llvm/tools/lld/COFF/README.md
    N src/gnu/llvm/tools/lld/COFF/SymbolTable.h
    N src/gnu/llvm/tools/lld/COFF/CMakeLists.txt
    N src/gnu/llvm/tools/lld/COFF/Config.h
    N src/gnu/llvm/tools/lld/COFF/Error.cpp
    N src/gnu/llvm/tools/lld/COFF/Symbols.cpp
    N src/gnu/llvm/tools/lld/COFF/Driver.h
    N src/gnu/llvm/tools/lld/COFF/DriverUtils.cpp
    N src/gnu/llvm/tools/lld/COFF/SymbolTable.cpp
    N src/gnu/llvm/tools/lld/COFF/InputFiles.cpp
    N src/gnu/llvm/tools/lld/COFF/MarkLive.cpp
    N src/gnu/llvm/tools/lld/COFF/Error.h
    N src/gnu/llvm/tools/lld/COFF/Options.td
    N src/gnu/llvm/tools/lld/COFF/Symbols.h
    N src/gnu/llvm/tools/lld/lib/CMakeLists.txt
    N src/gnu/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
    N src/gnu/llvm/tools/lld/lib/Driver/CMakeLists.txt
    N src/gnu/llvm/tools/lld/lib/Driver/DarwinLdOptions.td
    N src/gnu/llvm/tools/lld/lib/Config/Version.cpp
    N src/gnu/llvm/tools/lld/lib/Config/CMakeLists.txt
    N src/gnu/llvm/tools/lld/lib/Core/Writer.cpp
    N src/gnu/llvm/tools/lld/lib/Core/LinkingContext.cpp
    N src/gnu/llvm/tools/lld/lib/Core/CMakeLists.txt
    N src/gnu/llvm/tools/lld/lib/Core/Reader.cpp
    N src/gnu/llvm/tools/lld/lib/Core/Error.cpp
    N src/gnu/llvm/tools/lld/lib/Core/File.cpp
    N src/gnu/llvm/tools/lld/lib/Core/DefinedAtom.cpp
    N src/gnu/llvm/tools/lld/lib/Core/SymbolTable.cpp
    N src/gnu/llvm/tools/lld/lib/Core/Resolver.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/CMakeLists.txt
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/CMakeLists.txt
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOPasses.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
    U src/gnu/llvm/tools/clang/ModuleInfo.txt
    U src/gnu/llvm/tools/clang/LICENSE.TXT
    U src/gnu/llvm/tools/clang/README.txt
    U src/gnu/llvm/tools/clang/.clang-format
    U src/gnu/llvm/tools/clang/.arcconfig
    U src/gnu/llvm/tools/clang/.clang-tidy
    U src/gnu/llvm/tools/clang/INSTALL.txt
    U src/gnu/llvm/tools/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/NOTES.txt
    U src/gnu/llvm/tools/clang/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/clang/.gitignore
    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/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
    U src/gnu/llvm/tools/clang/bindings/python/tests/__init__.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_translation_unit.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/util.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_code_completion.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_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_file.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_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_diagnostics.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_cursor_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/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/header3.h
    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/hello.cpp
    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/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestProto.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/SortImportsTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortIncludesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJava.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestSelective.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestUtils.h
    N src/gnu/llvm/tools/clang/unittests/Format/CleanupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/ToolChainTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/MultilibTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/CMakeLists.txt
    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/Tooling/RecursiveASTVisitorTestExprVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestDeclVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestTypeLocVisitor.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/FixItTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/TestVisitor.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/LookupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTestContext.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestCallVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementsYamlTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ToolingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CompilationDatabaseTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/QualTypeNamesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CommentHandlerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTContextParentMapTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/PostOrderASTVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/NamedDeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTVectorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTTypeTraitsTest.cpp
    N src/gnu/llvm/tools/clang/unittests/AST/ASTImporterTest.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/MatchVerifier.h
    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/ExternalASTSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/StmtPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/SourceLocationTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Rewrite/RewriteBufferTest.cpp
    N 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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Basic/SourceManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/DiagnosticTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CharInfoTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/VirtualFileSystemTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/libclang/LibclangTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Analysis/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Analysis/CFGTest.cpp
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
    N 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/ASTMatchersTest.h
    N src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/RegistryTest.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/StaticAnalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/AnalyzerOptionsTest.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/PPCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Lex/HeaderMapTest.cpp
    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/tools/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/diagtool_main.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/ListWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/ShowEnabledWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/TreeView.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.h
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.h
    U src/gnu/llvm/tools/clang/tools/arcmt-test/arcmt-test.cpp
    U src/gnu/llvm/tools/clang/tools/arcmt-test/CMakeLists.txt
    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/driver/driver.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/cc1as_main.cpp
    N 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/diag-build/diag-build.sh
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-bbedit.applescript
    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/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-diff.py
    U src/gnu/llvm/tools/clang/tools/clang-format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-sublime.py
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.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/README.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat.sln
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormat.vsct
    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.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/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/Guids.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/Resources.resx
    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/clang-format-vs/ClangFormat/Properties/AssemblyInfo.cs
    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/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/libexec/c++-analyzer
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/ccc-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.bat
    U src/gnu/llvm/tools/clang/tools/scan-build/man/scan-build.1
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/libclang.exports
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCodeCompletion.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/ARCMigrate.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexUSRs.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXStoredDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCXX.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/Index_Internal.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXString.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexHigh.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.h
    U src/gnu/llvm/tools/clang/tools/libclang/CLog.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndex.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXTranslationUnit.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexer.h
    N src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.h
    U src/gnu/llvm/tools/clang/tools/libclang/CursorVisitor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.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/CIndexDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/libclang/Indexing.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXString.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexInclusionStack.cpp
    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/ScanView.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/bugcatcher.ico
    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/share/GetRadarVersion.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/startfile.py
    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-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ClangFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/scan-build-py/README.md
    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
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-cc.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-c++
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-build
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/scan-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/scan-build
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-c++
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-c++.bat
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-build.bat
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-c++.bat
    N src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc.bat
    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/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/src/emit-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/broken-two.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/emit-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-one.c
    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_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/include/clean-one.h
    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_cmd.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/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/scan-build-py/tests/functional/cases/test_create_cdb.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
    N 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_intercept.py
    N 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_runner.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_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/test_shell.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/shell.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/analyze.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/runner.py
    N src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/compilation.py
    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/libscanbuild/resources/sorttable.js
    U src/gnu/llvm/tools/clang/include/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Format/Format.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.def
    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/CLCompatOptions.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/CC1Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Util.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Phases.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Compilation.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Driver/Driver.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Action.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Job.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Tool.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Options.h
    C src/gnu/llvm/tools/clang/include/clang/Driver/Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Multilib.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
    N src/gnu/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.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/Config/config.h.cmake
    U src/gnu/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/FixIt.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Tooling.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/Core/QualTypeNames.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
    N src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.def
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Stmt.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTVector.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/AST/VTableBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
    N src/gnu/llvm/tools/clang/include/clang/AST/Availability.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Expr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AST.h
    N src/gnu/llvm/tools/clang/include/clang/AST/LocInfoType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ParentMap.h
    U src/gnu/llvm/tools/clang/include/clang/AST/GlobalDecl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/APValue.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclarationName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LambdaCapture.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Type.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclGroup.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Decl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AttrIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTLambda.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLoc.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclLookups.h
    U src/gnu/llvm/tools/clang/include/clang/AST/VTTBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecordLayout.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeOrdering.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Mangle.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/AST/NSAPI.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/SelectorLocationsKind.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclFriend.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentSema.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTFwd.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommands.td
    U src/gnu/llvm/tools/clang/include/clang/AST/Comment.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RawCommentList.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/Redeclarable.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Attr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTDiagnostic.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/DeclOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CXXInheritance.h
    U src/gnu/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclObjC.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/StmtIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CharUnits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.td
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTImporter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTMutationListener.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/ARCMigrate/FileRemapper.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.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/RewriteBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.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/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/Rewriters.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/Serialization/SerializationDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleManager.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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTReader.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
    N src/gnu/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CommentToXML.h
    N src/gnu/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
    N src/gnu/llvm/tools/clang/include/clang/Index/IndexSymbol.h
    U src/gnu/llvm/tools/clang/include/clang/Index/USRGeneration.h
    N src/gnu/llvm/tools/clang/include/clang/Index/IndexingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandards.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.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/CodeGenOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandard.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Specifiers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/CharInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DeclNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.def
    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/arm_neon.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LLVM.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/StmtNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/PlistSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attributes.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Lambda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attr.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.inc.in
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/VersionTuple.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManager.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Linkage.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Visibility.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetOptions.h
    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/BuiltinsSystemZ.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceLocation.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/Cuda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/PragmaKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def
    U src/gnu/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/Parser.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/Analysis/CodeInjector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFG.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFGStmtMap.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CallGraph.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/FlowSensitive/DataflowValues.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.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/ThreadSafetyOps.def
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
    U src/gnu/llvm/tools/clang/include/clang/FrontendTool/Utils.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/ASTMatchersInternal.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CMakeLists.txt
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.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/CheckerOptInfo.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Symbols.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.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/ExprEngine.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/WorkList.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/CallEvent.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/Environment.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/SVals.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/APSIntType.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/Store.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.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/AnalysisManager.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/StoreRef.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/CheckerContext.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.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/MemRegion.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/SummaryManager.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/SubEngine.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.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/BugReporterVisitor.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/PathDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.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/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Token.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PTHManager.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PTHLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleMap.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/HeaderSearch.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Lexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Pragma.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenLexer.h
    N src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AttributeList.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Designator.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Ownership.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/LoopHint.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Weak.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaLambda.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Scope.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Lookup.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/SemaConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Overload.h
    N src/gnu/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Sema.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CMakeLists.txt
    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/DeclSpec.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Initialization.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang-c/Platform.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang-c/module.modulemap
    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/BuildSystem.h
    U src/gnu/llvm/tools/clang/include/clang-c/Index.h
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/README.txt
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2-instrumented.cmake
    N src/gnu/llvm/tools/clang/cmake/caches/3-stage.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage1.cmake
    N src/gnu/llvm/tools/clang/cmake/caches/3-stage-base.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2.cmake
    N src/gnu/llvm/tools/clang/cmake/modules/ClangConfig.cmake.in
    N src/gnu/llvm/tools/clang/cmake/modules/CMakeLists.txt
    N src/gnu/llvm/tools/clang/cmake/modules/AddClang.cmake
    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/all-std-headers.cpp
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain2.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain1.c
    U src/gnu/llvm/tools/clang/INPUTS/carbon_h.c
    U src/gnu/llvm/tools/clang/INPUTS/macro_pounder_obj.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-long-chain3.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-big-switch.c
    U src/gnu/llvm/tools/clang/INPUTS/iostream.cc
    U src/gnu/llvm/tools/clang/INPUTS/macro_pounder_fn.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-nested-switches.c
    U src/gnu/llvm/tools/clang/examples/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/clang-interpreter/CMakeLists.txt
    N 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
    N src/gnu/llvm/tools/clang/examples/AnnotateFunctions/AnnotateFunctions.cpp
    N src/gnu/llvm/tools/clang/examples/AnnotateFunctions/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/README.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/utils/find-unused-diagnostics.sh
    U src/gnu/llvm/tools/clang/utils/token-delta.py
    U src/gnu/llvm/tools/clang/utils/clang-completion-mode.el
    U src/gnu/llvm/tools/clang/utils/builtin-defines.c
    U src/gnu/llvm/tools/clang/utils/FindSpecRefs
    N src/gnu/llvm/tools/clang/utils/modfuzz.py
    U src/gnu/llvm/tools/clang/utils/CaptureCmd
    U src/gnu/llvm/tools/clang/utils/FuzzTest
    U src/gnu/llvm/tools/clang/utils/ClangDataFormat.py
    U src/gnu/llvm/tools/clang/utils/CmpDriver
    N src/gnu/llvm/tools/clang/utils/perf-training/order-files.lit.site.cfg.in
    U src/gnu/llvm/tools/clang/utils/perf-training/README.txt
    U src/gnu/llvm/tools/clang/utils/perf-training/perf-helper.py
    N src/gnu/llvm/tools/clang/utils/perf-training/order-files.lit.cfg
    U src/gnu/llvm/tools/clang/utils/perf-training/CMakeLists.txt
    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/cxx/hello_world.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.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/ClangCommentHTMLTagsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestBuild.py
    U src/gnu/llvm/tools/clang/utils/analyzer/update_plist_test.pl
    U src/gnu/llvm/tools/clang/utils/analyzer/reducer.pl
    U src/gnu/llvm/tools/clang/utils/analyzer/CmpRuns.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SumTimerInfo.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestAdd.py
    U src/gnu/llvm/tools/clang/utils/analyzer/ubiviz
    U src/gnu/llvm/tools/clang/utils/ABITest/build.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/ABITestGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/TypeGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize.sh
    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/Makefile.test.common
    U src/gnu/llvm/tools/clang/utils/ABITest/Enumeration.py
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-64/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/single-args-64/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/single-args-32/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/layout/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-32/Makefile
    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
    N src/gnu/llvm/tools/clang/utils/ClangVisualizers/clang.natvis
    N src/gnu/llvm/tools/clang/utils/ClangVisualizers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/CIndex/completion_logger_server.py
    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/check_cfc/test_check_cfc.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/setup.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/obj_diff.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.cfg
    U src/gnu/llvm/tools/clang/utils/valgrind/x86_64-pc-linux-gnu_gcc-4.3.3.supp
    N src/gnu/llvm/tools/clang/docs/LTOVisibility.rst
    U src/gnu/llvm/tools/clang/docs/AddressSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ThreadSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrityDesign.rst
    U src/gnu/llvm/tools/clang/docs/Modules.rst
    U src/gnu/llvm/tools/clang/docs/BlockLanguageSpec.rst
    U src/gnu/llvm/tools/clang/docs/JSONCompilationDatabase.rst
    U src/gnu/llvm/tools/clang/docs/ThreadSafetyAnalysis.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrity.rst
    U src/gnu/llvm/tools/clang/docs/PCHLayout.png
    U src/gnu/llvm/tools/clang/docs/FAQ.rst
    U src/gnu/llvm/tools/clang/docs/LibFormat.rst
    U src/gnu/llvm/tools/clang/docs/IntroductionToTheClangAST.rst
    U src/gnu/llvm/tools/clang/docs/DriverArchitecture.png
    U src/gnu/llvm/tools/clang/docs/AttributeReference.rst
    U src/gnu/llvm/tools/clang/docs/AutomaticReferenceCounting.rst
    U src/gnu/llvm/tools/clang/docs/UsersManual.rst
    N src/gnu/llvm/tools/clang/docs/doxygen-mainpage.dox
    U src/gnu/llvm/tools/clang/docs/README.txt
    U src/gnu/llvm/tools/clang/docs/LanguageExtensions.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerSpecialCaseList.rst
    N src/gnu/llvm/tools/clang/docs/SanitizerStats.rst
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.rst
    U src/gnu/llvm/tools/clang/docs/ClangTools.rst
    U src/gnu/llvm/tools/clang/docs/RAVFrontendAction.rst
    U src/gnu/llvm/tools/clang/docs/doxygen.cfg.in
    U src/gnu/llvm/tools/clang/docs/LeakSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerCoverage.rst
    U src/gnu/llvm/tools/clang/docs/ClangPlugins.rst
    U src/gnu/llvm/tools/clang/docs/DriverInternals.rst
    U src/gnu/llvm/tools/clang/docs/make.bat
    U src/gnu/llvm/tools/clang/docs/conf.py
    U src/gnu/llvm/tools/clang/docs/HowToSetupToolingForLLVM.rst
    U src/gnu/llvm/tools/clang/docs/UndefinedBehaviorSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ClangFormatStyleOptions.rst
    U src/gnu/llvm/tools/clang/docs/MSVCCompatibility.rst
    U src/gnu/llvm/tools/clang/docs/PCHLayout.graffle
    U src/gnu/llvm/tools/clang/docs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/docs/ObjectiveCLiterals.rst
    U src/gnu/llvm/tools/clang/docs/CrossCompilation.rst
    U src/gnu/llvm/tools/clang/docs/Tooling.rst
    U src/gnu/llvm/tools/clang/docs/InternalsManual.rst
    U src/gnu/llvm/tools/clang/docs/PTHInternals.rst
    U src/gnu/llvm/tools/clang/docs/ClangCheck.rst
    U src/gnu/llvm/tools/clang/docs/MemorySanitizer.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/SafeStack.rst
    U src/gnu/llvm/tools/clang/docs/Makefile.sphinx
    U src/gnu/llvm/tools/clang/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/clang/docs/PCHInternals.rst
    N src/gnu/llvm/tools/clang/docs/SourceBasedCodeCoverage.rst
    U src/gnu/llvm/tools/clang/docs/ClangFormat.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizerDesign.rst
    U src/gnu/llvm/tools/clang/docs/LibTooling.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersTutorial.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/Block-ABI-Apple.txt
    U src/gnu/llvm/tools/clang/docs/ExternalClangExamples.rst
    N src/gnu/llvm/tools/clang/docs/ItaniumMangleAbiTags.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchers.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/clang.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/index.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/nullability.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/make.bat
    U src/gnu/llvm/tools/clang/docs/analyzer/RegionStore.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/DebugChecks.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/conf.py
    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/tools/dump_ast_matchers.py
    U src/gnu/llvm/tools/clang/docs/tools/dump_format_style.py
    U src/gnu/llvm/tools/clang/www/libstdc++4.6-clang11.patch
    U src/gnu/llvm/tools/clang/www/libstdc++4.4-clang0x.patch
    U src/gnu/llvm/tools/clang/www/robots.txt
    U src/gnu/llvm/tools/clang/www/builtins.py
    U src/gnu/llvm/tools/clang/www/feature-compile1.png
    U src/gnu/llvm/tools/clang/www/feature-memory1.png
    U src/gnu/llvm/tools/clang/www/carbon-compile.png
    U src/gnu/llvm/tools/clang/www/cxx_status.html
    U src/gnu/llvm/tools/clang/www/related.html
    U src/gnu/llvm/tools/clang/www/OpenProjects.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.7-clang11.patch
    U src/gnu/llvm/tools/clang/www/make_cxx_dr_status
    U src/gnu/llvm/tools/clang/www/feature-compile2.png
    U src/gnu/llvm/tools/clang/www/get_started.html
    U src/gnu/llvm/tools/clang/www/favicon.ico
    U src/gnu/llvm/tools/clang/www/clang_video-05-25-2007.html
    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/index.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/features.html
    U src/gnu/llvm/tools/clang/www/menu.html.incl
    U src/gnu/llvm/tools/clang/www/diagnostics.html
    U src/gnu/llvm/tools/clang/www/cxx_dr_status.html
    U src/gnu/llvm/tools/clang/www/cxx_compatibility.html
    U src/gnu/llvm/tools/clang/www/clang_video-07-25-2007.html
    U src/gnu/llvm/tools/clang/www/content.css
    U src/gnu/llvm/tools/clang/www/compatibility.html
    U src/gnu/llvm/tools/clang/www/hacking.html
    U src/gnu/llvm/tools/clang/www/analyzer/alpha_checks.html
    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/available_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/potential_checkers.html
    U src/gnu/llvm/tools/clang/www/analyzer/open_projects.html
    U src/gnu/llvm/tools/clang/www/analyzer/menu.css
    U src/gnu/llvm/tools/clang/www/analyzer/latest_checker.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/index.html
    U src/gnu/llvm/tools/clang/www/analyzer/filing_bugs.html
    U src/gnu/llvm/tools/clang/www/analyzer/checker_dev_manual.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/menu.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/content.css
    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/installation.html
    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/analyzer/images/analyzer_html.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_null_pointer.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_ns_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/scan_build_cmd.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_custom_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_use_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_xcode.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_attribute_nonnull.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained_gc.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/ellipses_dark.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_light.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_light.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_dark.gif
    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/www/demo/what is this directory.txt
    U src/gnu/llvm/tools/clang/www/demo/syntax.css
    U src/gnu/llvm/tools/clang/lib/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Headers/xsavecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/rdseedintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xmmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
    N src/gnu/llvm/tools/clang/lib/Headers/opencl-c.h
    U src/gnu/llvm/tools/clang/lib/Headers/mmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512erintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512bwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/inttypes.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512vbmiintrin.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/iso646.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm_malloc.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fxsrintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/limits.h
    U src/gnu/llvm/tools/clang/lib/Headers/adxintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/tbmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/altivec.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/msa.h
    U src/gnu/llvm/tools/clang/lib/Headers/lzcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/module.modulemap
    U src/gnu/llvm/tools/clang/lib/Headers/vadefs.h
    U src/gnu/llvm/tools/clang/lib/Headers/emmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/float.h
    U src/gnu/llvm/tools/clang/lib/Headers/arm_acle.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/s390intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdatomic.h
    U src/gnu/llvm/tools/clang/lib/Headers/fma4intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/ia32intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/rtmintrin.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/xtestintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/ammintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/x86intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/clflushoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Headers/avx512dqintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cpuid.h
    U src/gnu/llvm/tools/clang/lib/Headers/popcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdnoreturn.h
    U src/gnu/llvm/tools/clang/lib/Headers/unwind.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdalign.h
    U src/gnu/llvm/tools/clang/lib/Headers/avxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/tgmath.h
    N src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
    U src/gnu/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h
    U src/gnu/llvm/tools/clang/lib/Headers/wmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pkuintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmxlintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/mwaitxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h
    U src/gnu/llvm/tools/clang/lib/Headers/tmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdbool.h
    U src/gnu/llvm/tools/clang/lib/Headers/fmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512fintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/varargs.h
    U src/gnu/llvm/tools/clang/lib/Headers/immintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/shaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512cdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/nmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavesintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/f16cintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/avx512pfintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm3dnow.h
    U src/gnu/llvm/tools/clang/lib/Headers/vecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/smmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stddef.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdarg.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/prfchwintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
    N 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/UnwrappedLineParser.h
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.h
    N src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
    N src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.h
    U src/gnu/llvm/tools/clang/lib/Format/Encoding.h
    U src/gnu/llvm/tools/clang/lib/Format/Format.cpp
    N src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
    N src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
    N src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.h
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.h
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
    N src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.h
    N src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Driver.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Job.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Types.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Action.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Compilation.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Multilib.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/DriverOptions.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains.h
    U src/gnu/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Driver/Tool.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Tools.h
    U src/gnu/llvm/tools/clang/lib/Driver/Phases.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/InputInfo.h
    C src/gnu/llvm/tools/clang/lib/Driver/Tools.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGClass.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGException.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
    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/CGOpenMPRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/README.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDANV.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/CGLoopInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuilder.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
    U 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/CodeGenAction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ABIInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/Address.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExpr.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/CodeGenModule.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDABuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGValue.h
    U src/gnu/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Tooling.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/FixIt.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/Core/QualTypeNames.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprClassification.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXInheritance.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Stmt.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDumper.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclarationName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclFriend.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateBase.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/CommentBriefParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXABI.h
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RawCommentList.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypePrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/AttrImpl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclGroup.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/AST/OpenMPClause.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTTBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclTemplate.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/ASTContext.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/AST/StmtCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ParentMap.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Comment.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Decl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypeLoc.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtProfile.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Mangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTImporter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Type.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayout.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NSAPI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/InheritViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentSema.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/APValue.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtIterator.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.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/Rewrite/DeltaTree.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/HTMLRewrite.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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/EditedSource.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/Commit.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReader.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
    N src/gnu/llvm/tools/clang/lib/Index/IndexingContext.cpp
    U src/gnu/llvm/tools/clang/lib/Index/USRGeneration.cpp
    N src/gnu/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
    N src/gnu/llvm/tools/clang/lib/Index/IndexingContext.h
    U src/gnu/llvm/tools/clang/lib/Index/CommentToXML.cpp
    N src/gnu/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
    U src/gnu/llvm/tools/clang/lib/Index/SimpleFormatContext.h
    U src/gnu/llvm/tools/clang/lib/Index/CMakeLists.txt
    N src/gnu/llvm/tools/clang/lib/Index/IndexSymbol.cpp
    N src/gnu/llvm/tools/clang/lib/Index/IndexingAction.cpp
    N src/gnu/llvm/tools/clang/lib/Index/IndexBody.cpp
    N src/gnu/llvm/tools/clang/lib/Index/IndexDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
    C src/gnu/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LangStandards.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CodeGenOptions.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/LayoutOverrideSource.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CompilerInvocation.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/CompilerInstance.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.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/TestModuleFileExtension.h
    U src/gnu/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteTest.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.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/CharInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/LangOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceManager.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/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/TokenKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Version.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/Attributes.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Builtins.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Cuda.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/VersionTuple.cpp
    C src/gnu/llvm/tools/clang/lib/Basic/Targets.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Sanitizers.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileManager.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTentative.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParsePragma.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseInit.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/CMakeLists.txt
    U 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/ParseCXXInlineMethods.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/Parser.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h
    U src/gnu/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseAST.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFG.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyLogical.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.h
    U src/gnu/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Dominators.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
    U src/gnu/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CodeInjector.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/FormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Consumed.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/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/Registry.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.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/Checkers/TaintTesterChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.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/AnalyzerStatsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.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/BasicObjCFoundationChecks.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.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/CStringChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.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/VLASizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/ModuleMap.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPExpressions.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/MacroInfo.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/PPLexerChange.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Preprocessor.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/PPCaching.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Pragma.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/CMakeLists.txt
    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/TokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PTHLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPDirectives.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOverload.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLambda.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AttributeList.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Sema.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DeclSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TreeTransform.h
    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/SemaTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCast.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaInit.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaType.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaChecking.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLookup.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAccess.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
    U src/gnu/llvm/include/llvm-c/lto.h
    U src/gnu/llvm/include/llvm-c/Support.h
    U src/gnu/llvm/include/llvm-c/BitWriter.h
    U src/gnu/llvm/include/llvm-c/ErrorHandling.h
    U src/gnu/llvm/include/llvm-c/Types.h
    U src/gnu/llvm/include/llvm-c/Linker.h
    U src/gnu/llvm/include/llvm-c/module.modulemap
    U src/gnu/llvm/include/llvm-c/Object.h
    U src/gnu/llvm/include/llvm-c/IRReader.h
    U src/gnu/llvm/include/llvm-c/BitReader.h
    U src/gnu/llvm/include/llvm-c/OrcBindings.h
    U src/gnu/llvm/include/llvm-c/Initialization.h
    U src/gnu/llvm/include/llvm-c/ExecutionEngine.h
    U src/gnu/llvm/include/llvm-c/Analysis.h
    U src/gnu/llvm/include/llvm-c/Target.h
    U src/gnu/llvm/include/llvm-c/Disassembler.h
    U src/gnu/llvm/include/llvm-c/TargetMachine.h
    U src/gnu/llvm/include/llvm-c/LinkTimeOptimizer.h
    U src/gnu/llvm/include/llvm-c/Core.h
    U src/gnu/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm-c/Transforms/Vectorize.h
    U src/gnu/llvm/include/llvm-c/Transforms/IPO.h
    U src/gnu/llvm/include/llvm-c/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm/Pass.h
    U src/gnu/llvm/include/llvm/InitializePasses.h
    U src/gnu/llvm/include/llvm/PassSupport.h
    U src/gnu/llvm/include/llvm/module.modulemap
    U src/gnu/llvm/include/llvm/PassRegistry.h
    U src/gnu/llvm/include/llvm/LinkAllPasses.h
    U src/gnu/llvm/include/llvm/LinkAllIR.h
    U src/gnu/llvm/include/llvm/CMakeLists.txt
    U src/gnu/llvm/include/llvm/PassAnalysisSupport.h
    U src/gnu/llvm/include/llvm/PassInfo.h
    U src/gnu/llvm/include/llvm/module.modulemap.build
    U src/gnu/llvm/include/llvm/LibDriver/LibDriver.h
    N src/gnu/llvm/include/llvm/LTO/LTO.h
    N src/gnu/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
    N src/gnu/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.h
    N src/gnu/llvm/include/llvm/LTO/legacy/LTOModule.h
    N src/gnu/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
    U src/gnu/llvm/include/llvm/ADT/SmallBitVector.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node.h
    U src/gnu/llvm/include/llvm/ADT/SparseSet.h
    U src/gnu/llvm/include/llvm/ADT/SetVector.h
    U src/gnu/llvm/include/llvm/ADT/IntEqClasses.h
    U src/gnu/llvm/include/llvm/ADT/edit_distance.h
    U src/gnu/llvm/include/llvm/ADT/STLExtras.h
    U src/gnu/llvm/include/llvm/ADT/SmallPtrSet.h
    U src/gnu/llvm/include/llvm/ADT/FoldingSet.h
    U src/gnu/llvm/include/llvm/ADT/Optional.h
    U src/gnu/llvm/include/llvm/ADT/DenseMap.h
    U src/gnu/llvm/include/llvm/ADT/IndexedMap.h
    U src/gnu/llvm/include/llvm/ADT/Triple.h
    U src/gnu/llvm/include/llvm/ADT/StringExtras.h
    U src/gnu/llvm/include/llvm/ADT/PointerSumType.h
    U src/gnu/llvm/include/llvm/ADT/StringSwitch.h
    U src/gnu/llvm/include/llvm/ADT/Statistic.h
    N src/gnu/llvm/include/llvm/ADT/Sequence.h
    U src/gnu/llvm/include/llvm/ADT/PriorityQueue.h
    U src/gnu/llvm/include/llvm/ADT/StringSet.h
    U src/gnu/llvm/include/llvm/ADT/DeltaAlgorithm.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableSet.h
    U src/gnu/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
    U src/gnu/llvm/include/llvm/ADT/PointerEmbeddedInt.h
    U src/gnu/llvm/include/llvm/ADT/SparseBitVector.h
    U src/gnu/llvm/include/llvm/ADT/UniqueVector.h
    U src/gnu/llvm/include/llvm/ADT/DenseSet.h
    U src/gnu/llvm/include/llvm/ADT/SparseMultiSet.h
    U src/gnu/llvm/include/llvm/ADT/VariadicFunction.h
    U src/gnu/llvm/include/llvm/ADT/BitVector.h
    U src/gnu/llvm/include/llvm/ADT/PointerUnion.h
    U src/gnu/llvm/include/llvm/ADT/PostOrderIterator.h
    U src/gnu/llvm/include/llvm/ADT/StringMap.h
    U src/gnu/llvm/include/llvm/ADT/SetOperations.h
    U src/gnu/llvm/include/llvm/ADT/IntervalMap.h
    U src/gnu/llvm/include/llvm/ADT/StringRef.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableMap.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableList.h
    U src/gnu/llvm/include/llvm/ADT/TinyPtrVector.h
    U src/gnu/llvm/include/llvm/ADT/SmallString.h
    U src/gnu/llvm/include/llvm/ADT/iterator_range.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/Hashing.h
    U src/gnu/llvm/include/llvm/ADT/GraphTraits.h
    U src/gnu/llvm/include/llvm/ADT/APFloat.h
    N src/gnu/llvm/include/llvm/ADT/PriorityWorklist.h
    U src/gnu/llvm/include/llvm/ADT/EquivalenceClasses.h
    U src/gnu/llvm/include/llvm/ADT/None.h
    U src/gnu/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
    U src/gnu/llvm/include/llvm/ADT/SCCIterator.h
    U src/gnu/llvm/include/llvm/ADT/SmallVector.h
    U src/gnu/llvm/include/llvm/ADT/MapVector.h
    U src/gnu/llvm/include/llvm/ADT/APSInt.h
    U src/gnu/llvm/include/llvm/ADT/SmallSet.h
    U src/gnu/llvm/include/llvm/ADT/ArrayRef.h
    U src/gnu/llvm/include/llvm/ADT/ScopedHashTable.h
    U src/gnu/llvm/include/llvm/ADT/APInt.h
    U src/gnu/llvm/include/llvm/ADT/EpochTracker.h
    U src/gnu/llvm/include/llvm/ADT/DenseMapInfo.h
    U src/gnu/llvm/include/llvm/ADT/DepthFirstIterator.h
    U src/gnu/llvm/include/llvm/ADT/iterator.h
    U src/gnu/llvm/include/llvm/ADT/PointerIntPair.h
    U src/gnu/llvm/include/llvm/ADT/Twine.h
    N src/gnu/llvm/include/llvm/ADT/BitmaskEnum.h
    U src/gnu/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/LexicalScopes.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadata.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.td
    U src/gnu/llvm/include/llvm/CodeGen/BasicTTIImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePostDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundle.h
    U src/gnu/llvm/include/llvm/CodeGen/IntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/MachORelocation.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
    N src/gnu/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/CommandFlags.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionPass.h
    U src/gnu/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRYamlMapping.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineMemOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
    U src/gnu/llvm/include/llvm/CodeGen/Passes.h
    U src/gnu/llvm/include/llvm/CodeGen/PseudoSourceValue.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePassRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterScavenging.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/DFAPacketizer.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/SlotIndexes.h
    U src/gnu/llvm/include/llvm/CodeGen/FastISel.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineValueType.h
    U src/gnu/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
    N src/gnu/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterClassInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetSchedule.h
    U src/gnu/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
    N src/gnu/llvm/include/llvm/CodeGen/TailDuplicator.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/DIE.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveInterval.h
    U src/gnu/llvm/include/llvm/CodeGen/ISDOpcodes.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.h
    U src/gnu/llvm/include/llvm/CodeGen/LivePhysRegs.h
    U src/gnu/llvm/include/llvm/CodeGen/ParallelCG.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
    N src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
    U src/gnu/llvm/include/llvm/CodeGen/StackProtector.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocPBQP.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/SchedulerRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/GCStrategy.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveVariables.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineScheduler.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegionInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunction.h
    N src/gnu/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBasicBlock.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/DIEValue.def
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDFS.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRegMatrix.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineSSAUpdater.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/LiveRangeEdit.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterPressure.h
    U src/gnu/llvm/include/llvm/CodeGen/Analysis.h
    N src/gnu/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
    U src/gnu/llvm/include/llvm/CodeGen/AsmPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/GCs.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineLoopInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/CalcSpillWeights.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGISel.h
    U src/gnu/llvm/include/llvm/CodeGen/DAGCombine.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFrameInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/EdgeBundles.h
    U src/gnu/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveStackAnalysis.h
    N src/gnu/llvm/include/llvm/CodeGen/TargetPassConfig.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
    U src/gnu/llvm/include/llvm/CodeGen/CallingConvLower.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstr.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineConstantPool.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
    N src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
    U src/gnu/llvm/include/llvm/CodeGen/FaultMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/GISelAccessor.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Types.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Math.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/CostAllocator.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/PBQP/Solution.h
    U src/gnu/llvm/include/llvm/Passes/PassBuilder.h
    U src/gnu/llvm/include/llvm/Option/OptTable.h
    U src/gnu/llvm/include/llvm/Option/OptParser.td
    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/OptSpecifier.h
    U src/gnu/llvm/include/llvm/Option/Arg.h
    U src/gnu/llvm/include/llvm/IR/Statepoint.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.td
    U src/gnu/llvm/include/llvm/IR/PatternMatch.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsSystemZ.td
    U src/gnu/llvm/include/llvm/IR/Value.h
    U src/gnu/llvm/include/llvm/IR/GlobalVariable.h
    U src/gnu/llvm/include/llvm/IR/MDBuilder.h
    U src/gnu/llvm/include/llvm/IR/Value.def
    N src/gnu/llvm/include/llvm/IR/ProfileSummary.h
    U src/gnu/llvm/include/llvm/IR/Constants.h
    U src/gnu/llvm/include/llvm/IR/AutoUpgrade.h
    U src/gnu/llvm/include/llvm/IR/TypeFinder.h
    U src/gnu/llvm/include/llvm/IR/GlobalAlias.h
    U src/gnu/llvm/include/llvm/IR/ValueSymbolTable.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoMetadata.h
    U src/gnu/llvm/include/llvm/IR/ModuleSlotTracker.h
    U src/gnu/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsNVVM.td
    U src/gnu/llvm/include/llvm/IR/LLVMContext.h
    U src/gnu/llvm/include/llvm/IR/Module.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoFlags.def
    U src/gnu/llvm/include/llvm/IR/DerivedTypes.h
    U src/gnu/llvm/include/llvm/IR/Mangler.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
    U src/gnu/llvm/include/llvm/IR/PredIteratorCache.h
    U src/gnu/llvm/include/llvm/IR/IRBuilder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsXCore.td
    U src/gnu/llvm/include/llvm/IR/DIBuilder.h
    U src/gnu/llvm/include/llvm/IR/InlineAsm.h
    U src/gnu/llvm/include/llvm/IR/Constant.h
    U src/gnu/llvm/include/llvm/IR/TypeBuilder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsMips.td
    U src/gnu/llvm/include/llvm/IR/IntrinsicsX86.td
    U src/gnu/llvm/include/llvm/IR/Metadata.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticInfo.h
    U src/gnu/llvm/include/llvm/IR/Dominators.h
    U src/gnu/llvm/include/llvm/IR/Type.h
    U src/gnu/llvm/include/llvm/IR/Argument.h
    U src/gnu/llvm/include/llvm/IR/CallSite.h
    U src/gnu/llvm/include/llvm/IR/OperandTraits.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsARM.td
    U src/gnu/llvm/include/llvm/IR/LegacyPassManager.h
    U src/gnu/llvm/include/llvm/IR/BasicBlock.h
    U src/gnu/llvm/include/llvm/IR/Use.h
    U src/gnu/llvm/include/llvm/IR/CFG.h
    N src/gnu/llvm/include/llvm/IR/GlobalIndirectSymbol.h
    U src/gnu/llvm/include/llvm/IR/Attributes.h
    U src/gnu/llvm/include/llvm/IR/Operator.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticPrinter.h
    U src/gnu/llvm/include/llvm/IR/GlobalObject.h
    U src/gnu/llvm/include/llvm/IR/ConstantFolder.h
    U src/gnu/llvm/include/llvm/IR/ValueHandle.h
    U src/gnu/llvm/include/llvm/IR/PassManager.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicInst.h
    U src/gnu/llvm/include/llvm/IR/Verifier.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAArch64.td
    U src/gnu/llvm/include/llvm/IR/PassManagerInternal.h
    U src/gnu/llvm/include/llvm/IR/CMakeLists.txt
    U src/gnu/llvm/include/llvm/IR/IntrinsicsHexagon.td
    U src/gnu/llvm/include/llvm/IR/Instruction.h
    N src/gnu/llvm/include/llvm/IR/ModuleSummaryIndex.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsPowerPC.td
    U src/gnu/llvm/include/llvm/IR/GlobalValue.h
    U src/gnu/llvm/include/llvm/IR/DebugLoc.h
    U src/gnu/llvm/include/llvm/IR/InstrTypes.h
    N src/gnu/llvm/include/llvm/IR/GlobalIFunc.h
    U src/gnu/llvm/include/llvm/IR/GVMaterializer.h
    U src/gnu/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
    U src/gnu/llvm/include/llvm/IR/Attributes.td
    U src/gnu/llvm/include/llvm/IR/NoFolder.h
    U src/gnu/llvm/include/llvm/IR/SymbolTableListTraits.h
    U src/gnu/llvm/include/llvm/IR/IRPrintingPasses.h
    U src/gnu/llvm/include/llvm/IR/ConstantRange.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
    U src/gnu/llvm/include/llvm/IR/LegacyPassNameParser.h
    N src/gnu/llvm/include/llvm/IR/OptBisect.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassManagers.h
    U src/gnu/llvm/include/llvm/IR/InstVisitor.h
    U src/gnu/llvm/include/llvm/IR/ValueMap.h
    U src/gnu/llvm/include/llvm/IR/CallingConv.h
    U src/gnu/llvm/include/llvm/IR/DebugInfo.h
    U src/gnu/llvm/include/llvm/IR/InstIterator.h
    U src/gnu/llvm/include/llvm/IR/Metadata.def
    U src/gnu/llvm/include/llvm/IR/IntrinsicsBPF.td
    U src/gnu/llvm/include/llvm/IR/UseListOrder.h
    U src/gnu/llvm/include/llvm/IR/Function.h
    U src/gnu/llvm/include/llvm/IR/TrackingMDRef.h
    U src/gnu/llvm/include/llvm/IR/Comdat.h
    U src/gnu/llvm/include/llvm/IR/Instruction.def
    U src/gnu/llvm/include/llvm/IR/Instructions.h
    U src/gnu/llvm/include/llvm/IR/User.h
    U src/gnu/llvm/include/llvm/IR/DataLayout.h
    U src/gnu/llvm/include/llvm/Object/ObjectFile.h
    U src/gnu/llvm/include/llvm/Object/COFFImportFile.h
    U src/gnu/llvm/include/llvm/Object/Archive.h
    U src/gnu/llvm/include/llvm/Object/StackMapParser.h
    U src/gnu/llvm/include/llvm/Object/ArchiveWriter.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/RelocVisitor.h
    U src/gnu/llvm/include/llvm/Object/Binary.h
    U src/gnu/llvm/include/llvm/Object/COFF.h
    U src/gnu/llvm/include/llvm/Object/IRObjectFile.h
    N src/gnu/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
    U src/gnu/llvm/include/llvm/Object/ELFTypes.h
    U src/gnu/llvm/include/llvm/Object/MachO.h
    U src/gnu/llvm/include/llvm/Object/SymbolicFile.h
    U src/gnu/llvm/include/llvm/Object/Error.h
    U src/gnu/llvm/include/llvm/Object/ELF.h
    U src/gnu/llvm/include/llvm/Object/SymbolSize.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize.h
    N src/gnu/llvm/include/llvm/Transforms/PGOInstrumentation.h
    N src/gnu/llvm/include/llvm/Transforms/GCOVProfiler.h
    U src/gnu/llvm/include/llvm/Transforms/IPO.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/Scalar.h
    N src/gnu/llvm/include/llvm/Transforms/InstrProfiling.h
    N src/gnu/llvm/include/llvm/Transforms/SampleProfile.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/Evaluator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CtorUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Local.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ValueMapper.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/LCSSA.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Cloning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SplitModule.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/MemorySSA.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
    N src/gnu/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
    N src/gnu/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ADCE.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/Reassociate.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/SCCP.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LICM.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/DCE.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/BDCE.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/Float2Int.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SROA.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/Sink.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/GVN.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/SCCP.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/Internalize.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionImport.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/InlinerPass.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/PartialInlining.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/GlobalOpt.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
    N 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/TableGen/Error.h
    U src/gnu/llvm/include/llvm/TableGen/StringToOffsetTable.h
    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/Config/AsmParsers.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/Disassemblers.def.in
    U src/gnu/llvm/include/llvm/DebugInfo/DIContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/GenericError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDB.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.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/PDBSymbolCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/SymbolStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ISectionContribVisitor.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ModInfo.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/MsfBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/EnumTables.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ModStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameHashTable.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFile.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameMap.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawConstants.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/IPDBStreamData.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/IPDBFile.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/MsfCommon.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/IndexedStreamData.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawError.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/DirectoryStreamData.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawSession.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawTypes.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/StreamInterface.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/StreamWriter.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/FieldListRecordBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDumper.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolTypes.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/MethodListRecordBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/ListRecordBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/StreamRef.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewOStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/StreamReader.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/StreamArray.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/Line.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/ByteStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.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/DWARFDebugArangeSet.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
    N src/gnu/llvm/include/llvm/ObjectYAML/MachOYAML.h
    N src/gnu/llvm/include/llvm/ObjectYAML/ObjectYAML.h
    N src/gnu/llvm/include/llvm/ObjectYAML/ELFYAML.h
    N src/gnu/llvm/include/llvm/ObjectYAML/COFFYAML.h
    N src/gnu/llvm/include/llvm/ObjectYAML/YAML.h
    U src/gnu/llvm/include/llvm/AsmParser/Parser.h
    U src/gnu/llvm/include/llvm/AsmParser/SlotMapping.h
    U src/gnu/llvm/include/llvm/Target/TargetOpcodes.h
    U src/gnu/llvm/include/llvm/Target/TargetSchedule.td
    N src/gnu/llvm/include/llvm/Target/TargetOpcodes.def
    U src/gnu/llvm/include/llvm/Target/TargetItinerary.td
    U src/gnu/llvm/include/llvm/Target/CostTable.h
    U src/gnu/llvm/include/llvm/Target/TargetIntrinsicInfo.h
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.h
    U src/gnu/llvm/include/llvm/Target/TargetFrameLowering.h
    U src/gnu/llvm/include/llvm/Target/TargetSubtargetInfo.h
    U src/gnu/llvm/include/llvm/Target/Target.td
    N src/gnu/llvm/include/llvm/Target/GenericOpcodes.td
    U src/gnu/llvm/include/llvm/Target/TargetRecip.h
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.td
    U src/gnu/llvm/include/llvm/Target/TargetLoweringObjectFile.h
    U src/gnu/llvm/include/llvm/Target/TargetOptions.h
    U src/gnu/llvm/include/llvm/Target/TargetLowering.h
    U src/gnu/llvm/include/llvm/Target/TargetInstrInfo.h
    U src/gnu/llvm/include/llvm/Target/TargetSelectionDAG.td
    U src/gnu/llvm/include/llvm/Target/TargetMachine.h
    U src/gnu/llvm/include/llvm/Target/TargetRegisterInfo.h
    U src/gnu/llvm/include/llvm/LineEditor/LineEditor.h
    U src/gnu/llvm/include/llvm/Analysis/Interval.h
    U src/gnu/llvm/include/llvm/Analysis/CodeMetrics.h
    U src/gnu/llvm/include/llvm/Analysis/DemandedBits.h
    N src/gnu/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
    N src/gnu/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LazyValueInfo.h
    U src/gnu/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
    U src/gnu/llvm/include/llvm/Analysis/IVUsers.h
    U src/gnu/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
    N src/gnu/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/AssumptionCache.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfo.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/CGSCCPassManager.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraphSCCPass.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPass.h
    U src/gnu/llvm/include/llvm/Analysis/CaptureTracking.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
    N src/gnu/llvm/include/llvm/Analysis/LoopPassManager.h
    U src/gnu/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
    N src/gnu/llvm/include/llvm/Analysis/TypeMetadataUtils.h
    U src/gnu/llvm/include/llvm/Analysis/DivergenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/Passes.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryBuiltins.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/InstructionSimplify.h
    U src/gnu/llvm/include/llvm/Analysis/Trace.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/VectorUtils.h
    U src/gnu/llvm/include/llvm/Analysis/DomPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/LoopIterator.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalIterator.h
    U src/gnu/llvm/include/llvm/Analysis/SparsePropagation.h
    U src/gnu/llvm/include/llvm/Analysis/EHPersonalities.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCInstKind.h
    U src/gnu/llvm/include/llvm/Analysis/InlineCost.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolution.h
    U src/gnu/llvm/include/llvm/Analysis/CFG.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/LoopPass.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
    U src/gnu/llvm/include/llvm/Analysis/DependenceAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalPartition.h
    U src/gnu/llvm/include/llvm/Analysis/Loads.h
    U src/gnu/llvm/include/llvm/Analysis/PHITransAddr.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfo.h
    N src/gnu/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
    U src/gnu/llvm/include/llvm/Analysis/CallPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/ValueTracking.h
    U src/gnu/llvm/include/llvm/Analysis/ConstantFolding.h
    U src/gnu/llvm/include/llvm/Analysis/OrderedBasicBlock.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryLocation.h
    U src/gnu/llvm/include/llvm/Analysis/LazyCallGraph.h
    N src/gnu/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/AliasSetTracker.h
    U src/gnu/llvm/include/llvm/Analysis/PtrUseVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/Lint.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
    U src/gnu/llvm/include/llvm/Analysis/RegionIterator.h
    N src/gnu/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/GlobalsModRef.h
    U src/gnu/llvm/include/llvm/Analysis/PostDominators.h
    U src/gnu/llvm/include/llvm/Analysis/TargetFolder.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfo.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/CFGPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.def
    U src/gnu/llvm/include/llvm/ProfileData/SampleProf.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProf.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfData.inc
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfWriter.h
    N src/gnu/llvm/include/llvm/ProfileData/ProfileCommon.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfWriter.h
    N src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
    N src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
    N src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMappingReader.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Interpreter.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/MCJIT.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectCache.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.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/OProfileWrapper.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/GenericValue.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/JITSymbol.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LogicalDylib.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCChannel.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
    N 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/OrcRemoteTargetClient.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
    U src/gnu/llvm/include/llvm/Bitcode/LLVMBitCodes.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamReader.h
    U src/gnu/llvm/include/llvm/Bitcode/ReaderWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/BitCodes.h
    U src/gnu/llvm/include/llvm/Support/PointerLikeTypeTraits.h
    U src/gnu/llvm/include/llvm/Support/BranchProbability.h
    U src/gnu/llvm/include/llvm/Support/UnicodeCharRanges.h
    U src/gnu/llvm/include/llvm/Support/DataStream.h
    U src/gnu/llvm/include/llvm/Support/Solaris.h
    U src/gnu/llvm/include/llvm/Support/Unicode.h
    U src/gnu/llvm/include/llvm/Support/Dwarf.def
    U src/gnu/llvm/include/llvm/Support/TrailingObjects.h
    U src/gnu/llvm/include/llvm/Support/Registry.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTree.h
    U src/gnu/llvm/include/llvm/Support/SMLoc.h
    U src/gnu/llvm/include/llvm/Support/Casting.h
    N src/gnu/llvm/include/llvm/Support/ScopedPrinter.h
    U src/gnu/llvm/include/llvm/Support/circular_raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/ArrayRecycler.h
    U src/gnu/llvm/include/llvm/Support/DynamicLibrary.h
    U src/gnu/llvm/include/llvm/Support/MemoryBuffer.h
    U src/gnu/llvm/include/llvm/Support/Valgrind.h
    U src/gnu/llvm/include/llvm/Support/Format.h
    U src/gnu/llvm/include/llvm/Support/ManagedStatic.h
    U src/gnu/llvm/include/llvm/Support/FileSystem.h
    U src/gnu/llvm/include/llvm/Support/Regex.h
    U src/gnu/llvm/include/llvm/Support/COM.h
    U src/gnu/llvm/include/llvm/Support/Memory.h
    U src/gnu/llvm/include/llvm/Support/StringSaver.h
    U src/gnu/llvm/include/llvm/Support/LineIterator.h
    U src/gnu/llvm/include/llvm/Support/ARMTargetParser.def
    N src/gnu/llvm/include/llvm/Support/AArch64TargetParser.def
    U src/gnu/llvm/include/llvm/Support/Errno.h
    U src/gnu/llvm/include/llvm/Support/ThreadPool.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/FormattedStream.h
    U src/gnu/llvm/include/llvm/Support/LEB128.h
    U src/gnu/llvm/include/llvm/Support/MathExtras.h
    U src/gnu/llvm/include/llvm/Support/BlockFrequency.h
    U src/gnu/llvm/include/llvm/Support/MipsABIFlags.h
    U src/gnu/llvm/include/llvm/Support/Allocator.h
    U src/gnu/llvm/include/llvm/Support/ErrorHandling.h
    U src/gnu/llvm/include/llvm/Support/ConvertUTF.h
    N src/gnu/llvm/include/llvm/Support/MachO.def
    U src/gnu/llvm/include/llvm/Support/FileOutputBuffer.h
    U src/gnu/llvm/include/llvm/Support/raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/CrashRecoveryContext.h
    U src/gnu/llvm/include/llvm/Support/ThreadLocal.h
    U src/gnu/llvm/include/llvm/Support/SpecialCaseList.h
    U src/gnu/llvm/include/llvm/Support/ToolOutputFile.h
    U src/gnu/llvm/include/llvm/Support/SaveAndRestore.h
    U src/gnu/llvm/include/llvm/Support/Dwarf.h
    U src/gnu/llvm/include/llvm/Support/Watchdog.h
    N src/gnu/llvm/include/llvm/Support/CachePruning.h
    U src/gnu/llvm/include/llvm/Support/Win64EH.h
    U src/gnu/llvm/include/llvm/Support/UniqueLock.h
    N src/gnu/llvm/include/llvm/Support/CodeGenCWrappers.h
    U src/gnu/llvm/include/llvm/Support/WindowsError.h
    U src/gnu/llvm/include/llvm/Support/Mutex.h
    U src/gnu/llvm/include/llvm/Support/AlignOf.h
    U src/gnu/llvm/include/llvm/Support/RWMutex.h
    U src/gnu/llvm/include/llvm/Support/Path.h
    U src/gnu/llvm/include/llvm/Support/Compiler.h
    U src/gnu/llvm/include/llvm/Support/EndianStream.h
    U src/gnu/llvm/include/llvm/Support/TargetSelect.h
    U src/gnu/llvm/include/llvm/Support/YAMLParser.h
    U src/gnu/llvm/include/llvm/Support/Signals.h
    U src/gnu/llvm/include/llvm/Support/CodeGen.h
    U src/gnu/llvm/include/llvm/Support/ARMEHABI.h
    U src/gnu/llvm/include/llvm/Support/thread.h
    U src/gnu/llvm/include/llvm/Support/COFF.h
    U src/gnu/llvm/include/llvm/Support/Endian.h
    U src/gnu/llvm/include/llvm/Support/LockFileManager.h
    U src/gnu/llvm/include/llvm/Support/FileUtilities.h
    U src/gnu/llvm/include/llvm/Support/Locale.h
    U src/gnu/llvm/include/llvm/Support/SwapByteOrder.h
    U src/gnu/llvm/include/llvm/Support/Recycler.h
    U src/gnu/llvm/include/llvm/Support/Timer.h
    U src/gnu/llvm/include/llvm/Support/SystemUtils.h
    N src/gnu/llvm/include/llvm/Support/raw_sha1_ostream.h
    N src/gnu/llvm/include/llvm/Support/TypeName.h
    U src/gnu/llvm/include/llvm/Support/GraphWriter.h
    U src/gnu/llvm/include/llvm/Support/DataExtractor.h
    U src/gnu/llvm/include/llvm/Support/Host.h
    U src/gnu/llvm/include/llvm/Support/raw_os_ostream.h
    U src/gnu/llvm/include/llvm/Support/RecyclingAllocator.h
    U src/gnu/llvm/include/llvm/Support/CBindingWrapping.h
    U src/gnu/llvm/include/llvm/Support/type_traits.h
    U src/gnu/llvm/include/llvm/Support/MachO.h
    U src/gnu/llvm/include/llvm/Support/YAMLTraits.h
    U src/gnu/llvm/include/llvm/Support/JamCRC.h
    N src/gnu/llvm/include/llvm/Support/AtomicOrdering.h
    U src/gnu/llvm/include/llvm/Support/TimeValue.h
    U src/gnu/llvm/include/llvm/Support/Atomic.h
    U src/gnu/llvm/include/llvm/Support/DataTypes.h.cmake
    U src/gnu/llvm/include/llvm/Support/PrettyStackTrace.h
    U src/gnu/llvm/include/llvm/Support/CommandLine.h
    U src/gnu/llvm/include/llvm/Support/PluginLoader.h
    U src/gnu/llvm/include/llvm/Support/StringPool.h
    U src/gnu/llvm/include/llvm/Support/RandomNumberGenerator.h
    U src/gnu/llvm/include/llvm/Support/Compression.h
    U src/gnu/llvm/include/llvm/Support/DOTGraphTraits.h
    N src/gnu/llvm/include/llvm/Support/SHA1.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTreeConstruction.h
    U src/gnu/llvm/include/llvm/Support/ARMWinEH.h
    N src/gnu/llvm/include/llvm/Support/Error.h
    U src/gnu/llvm/include/llvm/Support/Debug.h
    U src/gnu/llvm/include/llvm/Support/ELF.h
    U src/gnu/llvm/include/llvm/Support/ARMBuildAttributes.h
    U src/gnu/llvm/include/llvm/Support/Printable.h
    U src/gnu/llvm/include/llvm/Support/TargetParser.h
    U src/gnu/llvm/include/llvm/Support/Threading.h
    U src/gnu/llvm/include/llvm/Support/GCOV.h
    U src/gnu/llvm/include/llvm/Support/Errc.h
    U src/gnu/llvm/include/llvm/Support/ScaledNumber.h
    U src/gnu/llvm/include/llvm/Support/MutexGuard.h
    U src/gnu/llvm/include/llvm/Support/Options.h
    U src/gnu/llvm/include/llvm/Support/ErrorOr.h
    U src/gnu/llvm/include/llvm/Support/SourceMgr.h
    U src/gnu/llvm/include/llvm/Support/Program.h
    U src/gnu/llvm/include/llvm/Support/Process.h
    U src/gnu/llvm/include/llvm/Support/Capacity.h
    U src/gnu/llvm/include/llvm/Support/MemoryObject.h
    U src/gnu/llvm/include/llvm/Support/TargetRegistry.h
    U src/gnu/llvm/include/llvm/Support/MD5.h
    U src/gnu/llvm/include/llvm/Support/StreamingMemoryObject.h
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/SystemZ.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/WebAssembly.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/Lanai.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Mips.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/i386.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/BPF.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/AMDGPU.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AArch64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AVR.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Sparc.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/x86_64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Hexagon.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/ARM.def
    U src/gnu/llvm/include/llvm/IRReader/IRReader.h
    U src/gnu/llvm/include/llvm/MC/MCAsmBackend.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCSymbol.h
    U src/gnu/llvm/include/llvm/MC/MCInstrDesc.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCRegisterInfo.h
    U src/gnu/llvm/include/llvm/MC/MCInstBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCInst.h
    U src/gnu/llvm/include/llvm/MC/MCContext.h
    U src/gnu/llvm/include/llvm/MC/MCAssembler.h
    U src/gnu/llvm/include/llvm/MC/MCSection.h
    U src/gnu/llvm/include/llvm/MC/StringTableBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCFixedLenDisassembler.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolELF.h
    U src/gnu/llvm/include/llvm/MC/MCExpr.h
    U src/gnu/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
    U src/gnu/llvm/include/llvm/MC/MCFixupKindInfo.h
    U src/gnu/llvm/include/llvm/MC/SubtargetFeature.h
    U src/gnu/llvm/include/llvm/MC/MCCodeEmitter.h
    U src/gnu/llvm/include/llvm/MC/MCInstrAnalysis.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoDarwin.h
    U src/gnu/llvm/include/llvm/MC/MCStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCSectionELF.h
    U src/gnu/llvm/include/llvm/MC/MCSectionMachO.h
    U src/gnu/llvm/include/llvm/MC/MCObjectStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCInstrInfo.h
    U src/gnu/llvm/include/llvm/MC/MCDirectives.h
    U src/gnu/llvm/include/llvm/MC/MCFixup.h
    U src/gnu/llvm/include/llvm/MC/MCSectionCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptions.h
    U src/gnu/llvm/include/llvm/MC/MachineLocation.h
    U src/gnu/llvm/include/llvm/MC/MCAsmLayout.h
    U src/gnu/llvm/include/llvm/MC/MCDwarf.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/MCFragment.h
    U src/gnu/llvm/include/llvm/MC/MCELFStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCInstrItineraries.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolCOFF.h
    U src/gnu/llvm/include/llvm/MC/SectionKind.h
    U src/gnu/llvm/include/llvm/MC/MCObjectFileInfo.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolMachO.h
    U src/gnu/llvm/include/llvm/MC/MCELFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCSchedule.h
    U src/gnu/llvm/include/llvm/MC/MCWinEH.h
    U src/gnu/llvm/include/llvm/MC/MCLabel.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/MCMachObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCValue.h
    U src/gnu/llvm/include/llvm/MC/MCSubtargetInfo.h
    N src/gnu/llvm/include/llvm/MC/MCCodeView.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoELF.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
    N src/gnu/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.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/AsmLexer.h
    N src/gnu/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
    N src/gnu/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
    N src/gnu/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
    N src/gnu/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.h
    U src/gnu/llvm/include/llvm/Linker/IRMover.h
    U src/gnu/llvm/include/llvm/Linker/Linker.h
    N src/gnu/llvm/cmake/config.guess
    U src/gnu/llvm/cmake/nsis_icon.ico
    U src/gnu/llvm/cmake/README
    U src/gnu/llvm/cmake/nsis_logo.bmp
    U src/gnu/llvm/cmake/config-ix.cmake
    U src/gnu/llvm/cmake/dummy.cpp
    U src/gnu/llvm/cmake/modules/FindOCaml.cmake
    U src/gnu/llvm/cmake/modules/CrossCompile.cmake
    U src/gnu/llvm/cmake/modules/LLVMInstallSymlink.cmake
    U src/gnu/llvm/cmake/modules/TableGen.cmake
    N src/gnu/llvm/cmake/modules/CheckCompilerVersion.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfig.cmake.in
    U src/gnu/llvm/cmake/modules/VersionFromVCS.cmake
    U src/gnu/llvm/cmake/modules/LLVMProcessSources.cmake
    U src/gnu/llvm/cmake/modules/CheckAtomic.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMOptions.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfigVersion.cmake.in
    U src/gnu/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMStdlib.cmake
    U src/gnu/llvm/cmake/modules/GetHostTriple.cmake
    U src/gnu/llvm/cmake/modules/FindSphinx.cmake
    U src/gnu/llvm/cmake/modules/LLVM-Config.cmake
    U src/gnu/llvm/cmake/modules/AddOCaml.cmake
    U src/gnu/llvm/cmake/modules/CMakeLists.txt
    U src/gnu/llvm/cmake/modules/AddSphinxTarget.cmake
    U src/gnu/llvm/cmake/modules/DetermineGCCCompatible.cmake
    U src/gnu/llvm/cmake/modules/AddLLVM.cmake
    U src/gnu/llvm/cmake/modules/AddLLVMDefinitions.cmake
    N src/gnu/llvm/cmake/modules/GenerateVersionFromCVS.cmake
    U src/gnu/llvm/cmake/modules/ChooseMSVCCRT.cmake
    U src/gnu/llvm/cmake/modules/GetSVN.cmake
    U src/gnu/llvm/cmake/platforms/iOS.cmake
    U src/gnu/llvm/cmake/platforms/Android.cmake
    U src/gnu/llvm/examples/LLVMBuild.txt
    U src/gnu/llvm/examples/CMakeLists.txt
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/parser.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/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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/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/Chapter4/parser.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/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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/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/Chapter3/parser.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/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/token.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/Chapter3/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/parser.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/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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/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/Chapter2/parser.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/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/parser.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/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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/codegen.ml
    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/ModuleMaker/README.txt
    U src/gnu/llvm/examples/ModuleMaker/CMakeLists.txt
    U src/gnu/llvm/examples/ModuleMaker/ModuleMaker.cpp
    U src/gnu/llvm/examples/ParallelJIT/ParallelJIT.cpp
    U src/gnu/llvm/examples/ParallelJIT/CMakeLists.txt
    U src/gnu/llvm/examples/HowToUseJIT/CMakeLists.txt
    U src/gnu/llvm/examples/HowToUseJIT/HowToUseJIT.cpp
    U src/gnu/llvm/examples/BrainF/BrainFDriver.cpp
    U src/gnu/llvm/examples/BrainF/CMakeLists.txt
    U src/gnu/llvm/examples/BrainF/BrainF.cpp
    U src/gnu/llvm/examples/BrainF/BrainF.h
    U src/gnu/llvm/examples/Kaleidoscope/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/KaleidoscopeJIT.h
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/server.cpp
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/KaleidoscopeJIT.h
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter4/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/toy.cpp
    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/lazy/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/README.txt
    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/cached/genk-timing.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/cached/split-lib.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/toy.cpp
    N src/gnu/llvm/examples/Kaleidoscope/Chapter9/CMakeLists.txt
    N src/gnu/llvm/examples/Kaleidoscope/Chapter9/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter8/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter2/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter6/toy.cpp
    U src/gnu/llvm/examples/ExceptionDemo/ExceptionDemo.cpp
    U src/gnu/llvm/examples/ExceptionDemo/CMakeLists.txt
    U src/gnu/llvm/examples/Fibonacci/fibonacci.cpp
    U src/gnu/llvm/examples/Fibonacci/CMakeLists.txt
    U src/gnu/llvm/utils/bisect
    U src/gnu/llvm/utils/schedcover.py
    U src/gnu/llvm/utils/llvm-native-gxx
    U src/gnu/llvm/utils/UpdateCMakeLists.pl
    N src/gnu/llvm/utils/extract_symbols.py
    U src/gnu/llvm/utils/findoptdiff
    U src/gnu/llvm/utils/GenLibDeps.pl
    U src/gnu/llvm/utils/clang-parse-diagnostics-file
    U src/gnu/llvm/utils/update_llc_test_checks.py
    U src/gnu/llvm/utils/llvm-compilers-check
    U src/gnu/llvm/utils/llvmgrep
    U src/gnu/llvm/utils/DSAclean.py
    U src/gnu/llvm/utils/findsym.pl
    N src/gnu/llvm/utils/update_test_checks.py
    U src/gnu/llvm/utils/getsrcs.sh
    U src/gnu/llvm/utils/DSAextract.py
    U src/gnu/llvm/utils/LLVMBuild.txt
    U src/gnu/llvm/utils/codegen-diff
    U src/gnu/llvm/utils/lldbDataFormatters.py
    U src/gnu/llvm/utils/create_ladder_graph.py
    U src/gnu/llvm/utils/check-each-file
    U src/gnu/llvm/utils/makellvm
    U src/gnu/llvm/utils/llvmdo
    U src/gnu/llvm/utils/shuffle_fuzz.py
    U src/gnu/llvm/utils/wciia.py
    U src/gnu/llvm/utils/GetRepositoryPath
    U src/gnu/llvm/utils/findmisopt
    U src/gnu/llvm/utils/test_debuginfo.pl
    U src/gnu/llvm/utils/llvm.grm
    U src/gnu/llvm/utils/GetSourceVersion
    N src/gnu/llvm/utils/prepare-code-coverage-artifact.py
    U src/gnu/llvm/utils/sort_includes.py
    U src/gnu/llvm/utils/countloc.sh
    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/git/find-rev
    U src/gnu/llvm/utils/kate/llvm.xml
    U src/gnu/llvm/utils/kate/README
    U src/gnu/llvm/utils/lint/common_lint.py
    U src/gnu/llvm/utils/lint/cpp_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/vim/README
    U src/gnu/llvm/utils/vim/vimrc
    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/ftdetect/llvm.vim
    U src/gnu/llvm/utils/vim/ftplugin/tablegen.vim
    U src/gnu/llvm/utils/vim/ftplugin/llvm.vim
    U src/gnu/llvm/utils/vim/syntax/tablegen.vim
    U src/gnu/llvm/utils/vim/syntax/llvm.vim
    U src/gnu/llvm/utils/vim/indent/llvm.vim
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.h
    N src/gnu/llvm/utils/TableGen/SearchableTableEmitter.cpp
    U src/gnu/llvm/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/utils/TableGen/CodeGenIntrinsics.h
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterEmitter.cpp
    U src/gnu/llvm/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.cpp
    U src/gnu/llvm/utils/TableGen/OptParserEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeEmitterGen.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.cpp
    U src/gnu/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
    U src/gnu/llvm/utils/TableGen/tdtags
    U src/gnu/llvm/utils/TableGen/CallingConvEmitter.cpp
    U src/gnu/llvm/utils/TableGen/LLVMBuild.txt
    U src/gnu/llvm/utils/TableGen/RegisterInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SequenceToOffsetTable.h
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
    U src/gnu/llvm/utils/TableGen/CTagsEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.h
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.h
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.cpp
    U src/gnu/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.cpp
    U src/gnu/llvm/utils/TableGen/FastISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherGen.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.h
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.h
    U src/gnu/llvm/utils/TableGen/IntrinsicEmitter.cpp
    U src/gnu/llvm/utils/TableGen/Attributes.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.h
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.h
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.h
    U src/gnu/llvm/utils/TableGen/DisassemblerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerShared.h
    U src/gnu/llvm/utils/TableGen/InstrInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmMatcherEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.h
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenMapTable.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelEmitter.cpp
    U src/gnu/llvm/utils/KillTheDoctor/CMakeLists.txt
    U src/gnu/llvm/utils/KillTheDoctor/KillTheDoctor.cpp
    U src/gnu/llvm/utils/llvm-lit/llvm-lit.in
    U src/gnu/llvm/utils/llvm-lit/CMakeLists.txt
    U src/gnu/llvm/utils/count/count.c
    U src/gnu/llvm/utils/count/CMakeLists.txt
    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/__init__.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/configutil.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/main.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/Misc/zkill
    U src/gnu/llvm/utils/git-svn/git-svnup
    U src/gnu/llvm/utils/git-svn/git-svnrevert
    U src/gnu/llvm/utils/lit/TODO
    U src/gnu/llvm/utils/lit/setup.py
    U src/gnu/llvm/utils/lit/README.txt
    U src/gnu/llvm/utils/lit/lit.py
    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/README.txt
    U src/gnu/llvm/utils/lit/examples/many-tests/lit.cfg
    U src/gnu/llvm/utils/lit/lit/LitTestCase.py
    U src/gnu/llvm/utils/lit/lit/discovery.py
    U src/gnu/llvm/utils/lit/lit/util.py
    U src/gnu/llvm/utils/lit/lit/ShCommands.py
    U src/gnu/llvm/utils/lit/lit/TestRunner.py
    U src/gnu/llvm/utils/lit/lit/ProgressBar.py
    U src/gnu/llvm/utils/lit/lit/Test.py
    U src/gnu/llvm/utils/lit/lit/TestingConfig.py
    U src/gnu/llvm/utils/lit/lit/LitConfig.py
    U src/gnu/llvm/utils/lit/lit/__init__.py
    U src/gnu/llvm/utils/lit/lit/main.py
    U src/gnu/llvm/utils/lit/lit/run.py
    U src/gnu/llvm/utils/lit/lit/ShUtil.py
    U src/gnu/llvm/utils/lit/lit/formats/shtest.py
    U src/gnu/llvm/utils/lit/lit/formats/googletest.py
    U src/gnu/llvm/utils/lit/lit/formats/__init__.py
    U src/gnu/llvm/utils/lit/lit/formats/base.py
    U src/gnu/llvm/utils/lit/lit/ExampleTests.ObjDir/lit.site.cfg
    U src/gnu/llvm/utils/lit/utils/check-sdist
    U src/gnu/llvm/utils/lit/utils/check-coverage
    U src/gnu/llvm/utils/lit/utils/README.txt
    U src/gnu/llvm/utils/lit/tests/test-output.py
    U src/gnu/llvm/utils/lit/tests/discovery.py
    U src/gnu/llvm/utils/lit/tests/googletest-format.py
    U src/gnu/llvm/utils/lit/tests/shtest-shell.py
    U src/gnu/llvm/utils/lit/tests/shell-parsing.py
    U src/gnu/llvm/utils/lit/tests/unittest-adaptor.py
    U src/gnu/llvm/utils/lit/tests/shtest-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/usage.py
    U src/gnu/llvm/utils/lit/tests/progress-bar.py
    N src/gnu/llvm/utils/lit/tests/shtest-output-printing.py
    U src/gnu/llvm/utils/lit/tests/xunit-output.py
    N src/gnu/llvm/utils/lit/tests/googletest-upstream-format.py
    U src/gnu/llvm/utils/lit/tests/test-data.py
    U src/gnu/llvm/utils/lit/tests/lit.cfg
    U src/gnu/llvm/utils/lit/tests/shtest-encoding.py
    U src/gnu/llvm/utils/lit/tests/.coveragerc
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest
    N src/gnu/llvm/utils/lit/tests/Inputs/googletest-upstream-format/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/googletest-upstream-format/DummySubDir/OneTest
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/redirects.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.sh
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.sh
    U src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery/lit.site.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest
    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/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/test-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-4.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/slow.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/quick_then_slow.py
    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-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/fail.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-present.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/pass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-target.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-any-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-any-present.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_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/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/lit.local.cfg
    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.sh
    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-in-tree/obj/lit.site.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-two.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
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-output-printing/basic.txt
    N src/gnu/llvm/utils/lit/tests/Inputs/shtest-output-printing/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-two.txt
    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/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/test-two.txt
    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/Target/ARM/analyze-match-table.py
    U src/gnu/llvm/utils/PerfectShuffle/CMakeLists.txt
    U src/gnu/llvm/utils/PerfectShuffle/PerfectShuffle.cpp
    U src/gnu/llvm/utils/not/not.cpp
    U src/gnu/llvm/utils/not/CMakeLists.txt
    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/emacs/emacs.el
    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
    N src/gnu/llvm/utils/gdb-scripts/prettyprinters.py
    N src/gnu/llvm/utils/abtest/abtest.py
    N src/gnu/llvm/utils/abtest/mark_armfns.py
    N src/gnu/llvm/utils/abtest/mark_aarch64fns.py
    U src/gnu/llvm/utils/yaml-bench/CMakeLists.txt
    U src/gnu/llvm/utils/yaml-bench/YAMLBench.cpp
    U src/gnu/llvm/utils/FileCheck/CMakeLists.txt
    U src/gnu/llvm/utils/FileCheck/FileCheck.cpp
    U src/gnu/llvm/utils/bugpoint/RemoteRunSafely.sh
    U src/gnu/llvm/utils/release/test-release.sh
    U src/gnu/llvm/utils/release/merge.sh
    U src/gnu/llvm/utils/release/findRegressions-nightly.py
    U src/gnu/llvm/utils/release/export.sh
    U src/gnu/llvm/utils/release/build_llvm_package.bat
    U src/gnu/llvm/utils/release/tag.sh
    U src/gnu/llvm/utils/release/findRegressions-simple.py
    U src/gnu/llvm/utils/unittest/LLVMBuild.txt
    U src/gnu/llvm/utils/unittest/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/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.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-port.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-internal-inl.h
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-typed-test.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-death-test.cc
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-spi.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_pred_impl.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-param-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-test-part.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-death-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-printers.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_prod.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-message.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-typed-test.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-linked_ptr.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-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-filepath.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-type-util.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-death-test-internal.h
    U src/gnu/llvm/utils/unittest/UnitTestMain/TestMain.cpp
    U src/gnu/llvm/utils/unittest/UnitTestMain/CMakeLists.txt
    U src/gnu/llvm/utils/testgen/mc-bundling-x86-gen.py
    N src/gnu/llvm/utils/LLVMVisualizers/llvm.natvis
    N src/gnu/llvm/utils/LLVMVisualizers/CMakeLists.txt
    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/docs/CompilerWriterInfo.rst
    U src/gnu/llvm/docs/SourceLevelDebugging.rst
    U src/gnu/llvm/docs/AliasAnalysis.rst
    N src/gnu/llvm/docs/CodeOfConduct.rst
    U src/gnu/llvm/docs/BlockFrequencyTerminology.rst
    U src/gnu/llvm/docs/CMake.rst
    U src/gnu/llvm/docs/TestSuiteMakefileGuide.rst
    U src/gnu/llvm/docs/Atomics.rst
    U src/gnu/llvm/docs/StackMaps.rst
    U src/gnu/llvm/docs/FAQ.rst
    U src/gnu/llvm/docs/ExceptionHandling.rst
    U src/gnu/llvm/docs/Statepoints.rst
    U src/gnu/llvm/docs/WritingAnLLVMPass.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastfail.png
    U src/gnu/llvm/docs/DeveloperPolicy.rst
    U src/gnu/llvm/docs/ProgrammersManual.rst
    U src/gnu/llvm/docs/MCJIT-engine-builder.png
    U src/gnu/llvm/docs/HowToAddABuilder.rst
    U src/gnu/llvm/docs/HowToSubmitABug.rst
    N src/gnu/llvm/docs/doxygen-mainpage.dox
    U src/gnu/llvm/docs/MCJIT-load-object.png
    U src/gnu/llvm/docs/SegmentedStacks.rst
    U src/gnu/llvm/docs/README.txt
    U src/gnu/llvm/docs/MCJIT-creation.png
    U src/gnu/llvm/docs/Projects.rst
    U src/gnu/llvm/docs/GettingStartedVS.rst
    U src/gnu/llvm/docs/GettingStarted.rst
    U src/gnu/llvm/docs/GetElementPtr.rst
    N src/gnu/llvm/docs/ReportingGuide.rst
    U src/gnu/llvm/docs/Packaging.rst
    U src/gnu/llvm/docs/CommandLine.rst
    U src/gnu/llvm/docs/Vectorizers.rst
    U src/gnu/llvm/docs/NVPTXUsage.rst
    N src/gnu/llvm/docs/AdvancedBuilds.rst
    U src/gnu/llvm/docs/CompileCudaWithLLVM.rst
    U src/gnu/llvm/docs/SphinxQuickstartTemplate.rst
    U src/gnu/llvm/docs/HowToReleaseLLVM.rst
    U src/gnu/llvm/docs/ExtendedIntegerResults.txt
    U src/gnu/llvm/docs/SystemLibrary.rst
    U src/gnu/llvm/docs/LLVMBuild.txt
    U src/gnu/llvm/docs/TableGenFundamentals.rst
    U src/gnu/llvm/docs/Extensions.rst
    U src/gnu/llvm/docs/LibFuzzer.rst
    U src/gnu/llvm/docs/doxygen.cfg.in
    U src/gnu/llvm/docs/Phabricator.rst
    U src/gnu/llvm/docs/LinkTimeOptimization.rst
    U src/gnu/llvm/docs/re_format.7
    N src/gnu/llvm/docs/ScudoHardenedAllocator.rst
    U src/gnu/llvm/docs/make.bat
    N src/gnu/llvm/docs/CMakePrimer.rst
    U src/gnu/llvm/docs/ExtendingLLVM.rst
    U src/gnu/llvm/docs/yaml2obj.rst
    U src/gnu/llvm/docs/BranchWeightMetadata.rst
    U src/gnu/llvm/docs/HowToSetUpLLVMStyleRTTI.rst
    U src/gnu/llvm/docs/MergeFunctions.rst
    U src/gnu/llvm/docs/InAlloca.rst
    U src/gnu/llvm/docs/CMakeLists.txt
    U src/gnu/llvm/docs/CodeGenerator.rst
    U src/gnu/llvm/docs/MCJITDesignAndImplementation.rst
    U src/gnu/llvm/docs/FaultMaps.rst
    U src/gnu/llvm/docs/Lexicon.rst
    U src/gnu/llvm/docs/CodingStandards.rst
    U src/gnu/llvm/docs/GarbageCollection.rst
    U src/gnu/llvm/docs/MarkedUpDisassembly.rst
    U src/gnu/llvm/docs/YamlIO.rst
    U src/gnu/llvm/docs/conf.py
    U src/gnu/llvm/docs/BigEndianNEON.rst
    U src/gnu/llvm/docs/LangRef.rst
    U src/gnu/llvm/docs/LLVMBuild.rst
    U src/gnu/llvm/docs/MCJIT-resolve-relocations.png
    U src/gnu/llvm/docs/Makefile.sphinx
    U src/gnu/llvm/docs/ReleaseNotes.rst
    U src/gnu/llvm/docs/HowToCrossCompileLLVM.rst
    U src/gnu/llvm/docs/linpack-pc.png
    U src/gnu/llvm/docs/ARM-BE-ld1.png
    N src/gnu/llvm/docs/TypeMetadata.rst
    U src/gnu/llvm/docs/MIRLangRef.rst
    U src/gnu/llvm/docs/GoldPlugin.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastsuccess.png
    U src/gnu/llvm/docs/gcc-loops.png
    U src/gnu/llvm/docs/MCJIT-load.png
    U src/gnu/llvm/docs/ReleaseProcess.rst
    U src/gnu/llvm/docs/CoverageMappingFormat.rst
    U src/gnu/llvm/docs/Passes.rst
    U src/gnu/llvm/docs/HowToUseInstrMappings.rst
    U src/gnu/llvm/docs/Bugpoint.rst
    U src/gnu/llvm/docs/BitCodeFormat.rst
    U src/gnu/llvm/docs/ARM-BE-ldr.png
    U src/gnu/llvm/docs/DebuggingJITedCode.rst
    U src/gnu/llvm/docs/TestingGuide.rst
    U src/gnu/llvm/docs/Dummy.html
    U src/gnu/llvm/docs/HowToBuildOnARM.rst
    U src/gnu/llvm/docs/index.rst
    U src/gnu/llvm/docs/HowToUseAttributes.rst
    U src/gnu/llvm/docs/AMDGPUUsage.rst
    U src/gnu/llvm/docs/MCJIT-dyld-load.png
    U src/gnu/llvm/docs/WritingAnLLVMBackend.rst
    U src/gnu/llvm/docs/CommandGuide/lit.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-build.rst
    U src/gnu/llvm/docs/CommandGuide/llc.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-link.rst
    U src/gnu/llvm/docs/CommandGuide/tblgen.rst
    U src/gnu/llvm/docs/CommandGuide/bugpoint.rst
    U src/gnu/llvm/docs/CommandGuide/opt.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dis.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-cov.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-as.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-bcanalyzer.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-lib.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-config.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-readobj.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-profdata.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dwarfdump.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-stress.rst
    U src/gnu/llvm/docs/CommandGuide/FileCheck.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-diff.rst
    U src/gnu/llvm/docs/CommandGuide/index.rst
    U src/gnu/llvm/docs/CommandGuide/lli.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-nm.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-extract.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/llvm-theme.css
    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/logo.png
    U src/gnu/llvm/docs/_templates/layout.html
    U src/gnu/llvm/docs/_templates/indexsidebar.html
    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/TableGen/index.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl2.rst
    N src/gnu/llvm/docs/tutorial/LangImpl01.rst
    N src/gnu/llvm/docs/tutorial/LangImpl10.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl8.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl7.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl1.rst
    N src/gnu/llvm/docs/tutorial/LangImpl04.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl4.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl6.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl5.rst
    N src/gnu/llvm/docs/tutorial/BuildingAJIT5.rst
    N src/gnu/llvm/docs/tutorial/LangImpl05-cfg.png
    N src/gnu/llvm/docs/tutorial/LangImpl02.rst
    N src/gnu/llvm/docs/tutorial/LangImpl08.rst
    N src/gnu/llvm/docs/tutorial/BuildingAJIT3.rst
    N src/gnu/llvm/docs/tutorial/LangImpl06.rst
    N src/gnu/llvm/docs/tutorial/LangImpl09.rst
    N src/gnu/llvm/docs/tutorial/BuildingAJIT1.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl3.rst
    N src/gnu/llvm/docs/tutorial/LangImpl05.rst
    N src/gnu/llvm/docs/tutorial/BuildingAJIT4.rst
    N src/gnu/llvm/docs/tutorial/LangImpl07.rst
    N src/gnu/llvm/docs/tutorial/LangImpl03.rst
    U src/gnu/llvm/docs/tutorial/index.rst
    N src/gnu/llvm/docs/tutorial/BuildingAJIT2.rst
    U src/gnu/llvm/docs/_static/lines.gif
    U src/gnu/llvm/docs/_static/llvm.css
    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/2001-02-13-Reference-Memory.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-EncodingIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-MemoryResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-05-12-InstListChange.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-MeetingSummary.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-01-31-UniversalIRIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveCommentsResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2007-OriginalClangReadme.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeasResp.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/2003-06-25-Reoptimizer1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-05-19-ExceptionResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-05-18-ExceptionHandling.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-04-16-DynamicCompilation.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-06-25-MegaPatchInfo.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-01-23-CygwinNotes.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-09-18-OptimizeExceptions.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveComments.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp4.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeas.txt
    U src/gnu/llvm/docs/Frontend/PerformanceTips.rst
    U src/gnu/llvm/docs/_ocamldoc/style.css
    N src/gnu/llvm/runtimes/CMakeLists.txt
    U src/gnu/llvm/lib/LLVMBuild.txt
    U src/gnu/llvm/lib/CMakeLists.txt
    U src/gnu/llvm/lib/LibDriver/LibDriver.cpp
    U src/gnu/llvm/lib/LibDriver/LLVMBuild.txt
    U src/gnu/llvm/lib/LibDriver/CMakeLists.txt
    U src/gnu/llvm/lib/LibDriver/Options.td
    N src/gnu/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
    N src/gnu/llvm/lib/LTO/UpdateCompilerUsed.cpp
    U src/gnu/llvm/lib/LTO/LTOCodeGenerator.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
    N src/gnu/llvm/lib/LTO/LTO.cpp
    U src/gnu/llvm/lib/CodeGen/PHIElimination.cpp
    U src/gnu/llvm/lib/CodeGen/VirtRegMap.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
    N src/gnu/llvm/lib/CodeGen/TargetPassConfig.cpp
    U src/gnu/llvm/lib/CodeGen/SlotIndexes.cpp
    U src/gnu/llvm/lib/CodeGen/MachineSink.cpp
    U src/gnu/llvm/lib/CodeGen/PostRASchedulerList.cpp
    N src/gnu/llvm/lib/CodeGen/BuiltinGCs.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.h
    U src/gnu/llvm/lib/CodeGen/IntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPass.cpp
    N src/gnu/llvm/lib/CodeGen/SafeStackLayout.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunction.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/PrologEpilogInserter.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.cpp
    U src/gnu/llvm/lib/CodeGen/ImplicitNullChecks.cpp
    U src/gnu/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
    U src/gnu/llvm/lib/CodeGen/FuncletLayout.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalUnion.cpp
    U src/gnu/llvm/lib/CodeGen/WinEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/EarlyIfConversion.cpp
    N src/gnu/llvm/lib/CodeGen/RegisterUsageInfo.cpp
    N src/gnu/llvm/lib/CodeGen/LowerEmuTLS.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.h
    U src/gnu/llvm/lib/CodeGen/PseudoSourceValue.cpp
    N src/gnu/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/LLVMTargetMachine.cpp
    U src/gnu/llvm/lib/CodeGen/LiveInterval.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.h
    U src/gnu/llvm/lib/CodeGen/Analysis.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugValues.cpp
    U src/gnu/llvm/lib/CodeGen/MachineTraceMetrics.cpp
    U src/gnu/llvm/lib/CodeGen/GCRootLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.h
    U src/gnu/llvm/lib/CodeGen/DFAPacketizer.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLoopInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GCStrategy.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/LexicalScopes.cpp
    U src/gnu/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplication.cpp
    U src/gnu/llvm/lib/CodeGen/TargetLoweringBase.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfo.cpp
    U src/gnu/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/StackMaps.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegionInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterPressure.cpp
    U src/gnu/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
    U src/gnu/llvm/lib/CodeGen/README.txt
    U src/gnu/llvm/lib/CodeGen/MachinePassRegistry.cpp
    U src/gnu/llvm/lib/CodeGen/Spiller.h
    N src/gnu/llvm/lib/CodeGen/TailDuplicator.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.h
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.h
    N src/gnu/llvm/lib/CodeGen/XRayInstrumentation.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.cpp
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeEdit.cpp
    U src/gnu/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
    U src/gnu/llvm/lib/CodeGen/SjLjEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/CodeGen/CallingConvLower.cpp
    N src/gnu/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/OptimizePHIs.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockPlacement.cpp
    N src/gnu/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocPBQP.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGenPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/InterleavedAccessPass.cpp
    N src/gnu/llvm/lib/CodeGen/SafeStackColoring.h
    U src/gnu/llvm/lib/CodeGen/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGen.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrintingPass.cpp
    U src/gnu/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/ShrinkWrap.cpp
    U src/gnu/llvm/lib/CodeGen/DwarfEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.h
    U src/gnu/llvm/lib/CodeGen/MachineDominators.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/IfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
    U src/gnu/llvm/lib/CodeGen/TargetInstrInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadata.cpp
    U src/gnu/llvm/lib/CodeGen/StackSlotColoring.cpp
    U src/gnu/llvm/lib/CodeGen/PeepholeOptimizer.cpp
    U src/gnu/llvm/lib/CodeGen/AntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/MachineSSAUpdater.cpp
    N src/gnu/llvm/lib/CodeGen/SafeStackLayout.h
    U src/gnu/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
    U src/gnu/llvm/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/LiveRegMatrix.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.cpp
    U src/gnu/llvm/lib/CodeGen/CalcSpillWeights.cpp
    U src/gnu/llvm/lib/CodeGen/InlineSpiller.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstr.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLICM.cpp
    N src/gnu/llvm/lib/CodeGen/PatchableFunction.cpp
    N src/gnu/llvm/lib/CodeGen/SafeStackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterScavenging.cpp
    U src/gnu/llvm/lib/CodeGen/AtomicExpandPass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineVerifier.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCopyPropagation.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
    N src/gnu/llvm/lib/CodeGen/SafeStack.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterClassInfo.cpp
    U src/gnu/llvm/lib/CodeGen/ParallelCG.cpp
    C src/gnu/llvm/lib/CodeGen/StackProtector.cpp
    N src/gnu/llvm/lib/CodeGen/DetectDeadLanes.cpp
    N src/gnu/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
    U src/gnu/llvm/lib/CodeGen/TargetOptionsImpl.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAG.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandISelPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.cpp
    N src/gnu/llvm/lib/CodeGen/LiveRangeUtils.h
    U src/gnu/llvm/lib/CodeGen/UnreachableBlockElim.cpp
    N src/gnu/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCSE.cpp
    U src/gnu/llvm/lib/CodeGen/StackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/TargetRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBasic.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocGreedy.cpp
    U src/gnu/llvm/lib/CodeGen/ExecutionDepsFix.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.h
    U src/gnu/llvm/lib/CodeGen/RegAllocFast.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBasicBlock.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.h
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.h
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.h
    U src/gnu/llvm/lib/CodeGen/LiveStackAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePostDominators.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadataPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalMerge.cpp
    U src/gnu/llvm/lib/CodeGen/LiveVariables.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.cpp
    U src/gnu/llvm/lib/CodeGen/LivePhysRegs.cpp
    U src/gnu/llvm/lib/CodeGen/FaultMaps.cpp
    U src/gnu/llvm/lib/CodeGen/EdgeBundles.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSchedule.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstrBundle.cpp
    U src/gnu/llvm/lib/CodeGen/MachineScheduler.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MIParser.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/MILexer.h
    U src/gnu/llvm/lib/CodeGen/MIRParser/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.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/AsmPrinterDwarf.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
    N src/gnu/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/LLVMBuild.txt
    N src/gnu/llvm/lib/CodeGen/GlobalISel/CMakeLists.txt
    N src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.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/ScheduleDAGFast.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
    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/SDNodeDbgValue.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
    N src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.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/SelectionDAG/ScheduleDAGRRList.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h
    U src/gnu/llvm/lib/Passes/LLVMBuild.txt
    U src/gnu/llvm/lib/Passes/CMakeLists.txt
    U src/gnu/llvm/lib/Passes/PassRegistry.def
    U src/gnu/llvm/lib/Passes/PassBuilder.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/Arg.cpp
    U src/gnu/llvm/lib/Option/CMakeLists.txt
    U src/gnu/llvm/lib/Option/ArgList.cpp
    U src/gnu/llvm/lib/IR/Verifier.cpp
    U src/gnu/llvm/lib/IR/Pass.cpp
    U src/gnu/llvm/lib/IR/Function.cpp
    U src/gnu/llvm/lib/IR/InlineAsm.cpp
    U src/gnu/llvm/lib/IR/DebugInfo.cpp
    U src/gnu/llvm/lib/IR/Instruction.cpp
    U src/gnu/llvm/lib/IR/User.cpp
    U src/gnu/llvm/lib/IR/SymbolTableListTraitsImpl.h
    U src/gnu/llvm/lib/IR/ValueSymbolTable.cpp
    U src/gnu/llvm/lib/IR/Instructions.cpp
    U src/gnu/llvm/lib/IR/Core.cpp
    U src/gnu/llvm/lib/IR/DataLayout.cpp
    U src/gnu/llvm/lib/IR/Mangler.cpp
    U src/gnu/llvm/lib/IR/TypeFinder.cpp
    U src/gnu/llvm/lib/IR/IRPrintingPasses.cpp
    U src/gnu/llvm/lib/IR/ValueTypes.cpp
    U src/gnu/llvm/lib/IR/IntrinsicInst.cpp
    U src/gnu/llvm/lib/IR/GCOV.cpp
    U src/gnu/llvm/lib/IR/GVMaterializer.cpp
    U src/gnu/llvm/lib/IR/MetadataImpl.h
    U src/gnu/llvm/lib/IR/AttributeImpl.h
    U src/gnu/llvm/lib/IR/AutoUpgrade.cpp
    U src/gnu/llvm/lib/IR/DiagnosticPrinter.cpp
    U src/gnu/llvm/lib/IR/LLVMBuild.txt
    N src/gnu/llvm/lib/IR/ModuleSummaryIndex.cpp
    U src/gnu/llvm/lib/IR/DebugInfoMetadata.cpp
    U src/gnu/llvm/lib/IR/Use.cpp
    U src/gnu/llvm/lib/IR/DebugLoc.cpp
    U src/gnu/llvm/lib/IR/LLVMContextImpl.cpp
    U src/gnu/llvm/lib/IR/Statepoint.cpp
    U src/gnu/llvm/lib/IR/CMakeLists.txt
    N src/gnu/llvm/lib/IR/OptBisect.cpp
    U src/gnu/llvm/lib/IR/ConstantsContext.h
    U src/gnu/llvm/lib/IR/Value.cpp
    U src/gnu/llvm/lib/IR/BasicBlock.cpp
    U src/gnu/llvm/lib/IR/DiagnosticInfo.cpp
    U src/gnu/llvm/lib/IR/Dominators.cpp
    U src/gnu/llvm/lib/IR/DIBuilder.cpp
    U src/gnu/llvm/lib/IR/Attributes.cpp
    U src/gnu/llvm/lib/IR/AttributesCompatFunc.td
    U src/gnu/llvm/lib/IR/Comdat.cpp
    N src/gnu/llvm/lib/IR/AttributeSetNode.h
    U src/gnu/llvm/lib/IR/AsmWriter.cpp
    U src/gnu/llvm/lib/IR/Module.cpp
    U src/gnu/llvm/lib/IR/Type.cpp
    U src/gnu/llvm/lib/IR/LLVMContextImpl.h
    U src/gnu/llvm/lib/IR/ConstantFold.h
    U src/gnu/llvm/lib/IR/PassManager.cpp
    U src/gnu/llvm/lib/IR/Constants.cpp
    U src/gnu/llvm/lib/IR/ConstantRange.cpp
    N src/gnu/llvm/lib/IR/ProfileSummary.cpp
    U src/gnu/llvm/lib/IR/Operator.cpp
    U src/gnu/llvm/lib/IR/Globals.cpp
    U src/gnu/llvm/lib/IR/MDBuilder.cpp
    U src/gnu/llvm/lib/IR/ConstantFold.cpp
    U src/gnu/llvm/lib/IR/LegacyPassManager.cpp
    U src/gnu/llvm/lib/IR/IRBuilder.cpp
    U src/gnu/llvm/lib/IR/Metadata.cpp
    U src/gnu/llvm/lib/IR/LLVMContext.cpp
    U src/gnu/llvm/lib/IR/PassRegistry.cpp
    U src/gnu/llvm/lib/Object/SymbolSize.cpp
    U src/gnu/llvm/lib/Object/ELF.cpp
    U src/gnu/llvm/lib/Object/ArchiveWriter.cpp
    U src/gnu/llvm/lib/Object/Binary.cpp
    U src/gnu/llvm/lib/Object/Archive.cpp
    U src/gnu/llvm/lib/Object/SymbolicFile.cpp
    U src/gnu/llvm/lib/Object/LLVMBuild.txt
    U src/gnu/llvm/lib/Object/RecordStreamer.h
    U src/gnu/llvm/lib/Object/COFFObjectFile.cpp
    U src/gnu/llvm/lib/Object/Object.cpp
    U src/gnu/llvm/lib/Object/CMakeLists.txt
    U src/gnu/llvm/lib/Object/ELFObjectFile.cpp
    U src/gnu/llvm/lib/Object/Error.cpp
    N src/gnu/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp
    U src/gnu/llvm/lib/Object/ObjectFile.cpp
    U src/gnu/llvm/lib/Object/MachOUniversal.cpp
    U src/gnu/llvm/lib/Object/MachOObjectFile.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.cpp
    U src/gnu/llvm/lib/Object/IRObjectFile.cpp
    U src/gnu/llvm/lib/Transforms/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Utils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
    N src/gnu/llvm/lib/Transforms/Utils/MemorySSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerInvoke.cpp
    N src/gnu/llvm/lib/Transforms/Utils/SanitizerStats.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Local.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopVersioning.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SplitModule.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/Mem2Reg.cpp
    N src/gnu/llvm/lib/Transforms/Utils/Evaluator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LLVMBuild.txt
    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/BreakCriticalEdges.cpp
    U src/gnu/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Utils/ModuleUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
    U src/gnu/llvm/lib/Transforms/Utils/GlobalStatus.cpp
    N src/gnu/llvm/lib/Transforms/Utils/NameAnonFunctions.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ValueMapper.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CtorUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
    U src/gnu/llvm/lib/Transforms/Utils/InlineFunction.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CodeExtractor.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SSAUpdater.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LCSSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/InstructionNamer.cpp
    N src/gnu/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneFunction.cpp
    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/LoadStoreVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Scalar/ADCE.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRotation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalar.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/GuardWidening.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoadCombine.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/GVNHoist.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Sink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Scalar/SROA.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/BDCE.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopDataPrefetch.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/JumpThreading.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantProp.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Float2Int.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalarizer.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.h
    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/DependencyAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
    N src/gnu/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.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/MemorySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt
    N src/gnu/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
    U src/gnu/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CFGMST.h
    U src/gnu/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InlineSimple.cpp
    N src/gnu/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/MergeFunctions.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalDCE.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/GlobalOpt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripSymbols.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Inliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ExtractGV.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PruneEH.cpp
    N src/gnu/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SampleProfile.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/IPO/ConstantMerge.cpp
    U src/gnu/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PartialInlining.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LoopExtractor.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/IPO/InlineAlways.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Internalize.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPO.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
    U src/gnu/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
    U src/gnu/llvm/lib/Transforms/Hello/Hello.cpp
    U src/gnu/llvm/lib/Transforms/Hello/Hello.exports
    U src/gnu/llvm/lib/Transforms/Hello/CMakeLists.txt
    U src/gnu/llvm/lib/TableGen/StringMatcher.cpp
    U src/gnu/llvm/lib/TableGen/SetTheory.cpp
    U src/gnu/llvm/lib/TableGen/TGParser.h
    U src/gnu/llvm/lib/TableGen/TableGenBackend.cpp
    U src/gnu/llvm/lib/TableGen/Main.cpp
    U src/gnu/llvm/lib/TableGen/LLVMBuild.txt
    U src/gnu/llvm/lib/TableGen/Record.cpp
    U src/gnu/llvm/lib/TableGen/CMakeLists.txt
    U src/gnu/llvm/lib/TableGen/TGLexer.cpp
    U src/gnu/llvm/lib/TableGen/Error.cpp
    U src/gnu/llvm/lib/TableGen/TGLexer.h
    U src/gnu/llvm/lib/TableGen/TGParser.cpp
    U src/gnu/llvm/lib/DebugInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDB.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.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/PDBContext.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/GenericError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.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/PDBSymbolExe.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/DIARawSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASession.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/DIADataStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/PublicsStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/IndexedStreamData.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/MsfBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/EnumTables.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/TpiStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/ModStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameMap.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/RawError.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/MsfCommon.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/PDBFile.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/RawSession.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/DbiStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/SymbolStream.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/ByteStream.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/Line.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/ListRecordBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/StreamWriter.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CMakeLists.txt
    N src/gnu/llvm/lib/DebugInfo/CodeView/StreamReader.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.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/DWARFAbbreviationDeclaration.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
    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/Symbolize.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
    N src/gnu/llvm/lib/ObjectYAML/COFFYAML.cpp
    N src/gnu/llvm/lib/ObjectYAML/LLVMBuild.txt
    N src/gnu/llvm/lib/ObjectYAML/ObjectYAML.cpp
    N src/gnu/llvm/lib/ObjectYAML/CMakeLists.txt
    N src/gnu/llvm/lib/ObjectYAML/MachOYAML.cpp
    N src/gnu/llvm/lib/ObjectYAML/ELFYAML.cpp
    N src/gnu/llvm/lib/ObjectYAML/YAML.cpp
    U src/gnu/llvm/lib/AsmParser/LLParser.cpp
    U src/gnu/llvm/lib/AsmParser/LLParser.h
    U src/gnu/llvm/lib/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/AsmParser/LLLexer.h
    U src/gnu/llvm/lib/AsmParser/LLToken.h
    U src/gnu/llvm/lib/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/AsmParser/Parser.cpp
    U src/gnu/llvm/lib/AsmParser/LLLexer.cpp
    U src/gnu/llvm/lib/Target/README.txt
    U src/gnu/llvm/lib/Target/TargetIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/TargetRecip.cpp
    U src/gnu/llvm/lib/Target/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/TargetMachineC.cpp
    U src/gnu/llvm/lib/Target/TargetMachine.cpp
    U src/gnu/llvm/lib/Target/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Target.cpp
    U src/gnu/llvm/lib/Target/TargetLoweringObjectFile.cpp
    U src/gnu/llvm/lib/Target/TargetSubtargetInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
    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/NVPTXSubtarget.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSection.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXVector.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/NVPTX/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
    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/ManagedStringPool.h
    U src/gnu/llvm/lib/Target/NVPTX/cl_common_defines.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.td
    U src/gnu/llvm/lib/Target/NVPTX/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
    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/NVPTXInstPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/README.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
    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/WebAssemblyCFGStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
    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/WebAssemblyTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
    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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.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/MCTargetDesc/WebAssemblyMCAsmInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
    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/WebAssemblyTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
    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/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/AVRSubtarget.cpp
    N src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.td
    N src/gnu/llvm/lib/Target/AVR/AVRSubtarget.h
    U src/gnu/llvm/lib/Target/AVR/AVR.h
    N src/gnu/llvm/lib/Target/AVR/AVRInstrFormats.td
    N src/gnu/llvm/lib/Target/AVR/TODO.md
    U src/gnu/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRCallingConv.td
    N src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.h
    N src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.h
    N src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.td
    U src/gnu/llvm/lib/Target/AVR/AVR.td
    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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.cpp
    N src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.h
    N src/gnu/llvm/lib/Target/AVR/AVRISelLowering.h
    U src/gnu/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.h
    N src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.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
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.cpp
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCallingConv.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSchedule.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRDF.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOperands.td
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
    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/HexagonInstrInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIsetDx.td
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.h
    U src/gnu/llvm/lib/Target/Hexagon/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrEnc.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRDF.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectCCInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
    N src/gnu/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSystemInst.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrAlias.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
    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/TargetInfo/CMakeLists.txt
    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/MCTargetDesc/HexagonMCELFStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/CMakeLists.txt
    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/HexagonInstPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
    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
    N src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.td
    N src/gnu/llvm/lib/Target/Lanai/Lanai.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiAluCode.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
    N src/gnu/llvm/lib/Target/Lanai/Lanai.td
    N src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.h
    N src/gnu/llvm/lib/Target/Lanai/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
    N src/gnu/llvm/lib/Target/Lanai/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Lanai/LanaiCallingConv.td
    N src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiCondCode.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiSchedule.td
    N src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.h
    N src/gnu/llvm/lib/Target/Lanai/LanaiInstrFormats.td
    N src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.td
    N src/gnu/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.cpp
    N src/gnu/llvm/lib/Target/Lanai/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Lanai/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.h
    N src/gnu/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
    N src/gnu/llvm/lib/Target/Lanai/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Lanai/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
    N src/gnu/llvm/lib/Target/Lanai/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Lanai/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiFixupKinds.h
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.cpp
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiBaseInfo.h
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/Lanai/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
    N src/gnu/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
    N src/gnu/llvm/lib/Target/Lanai/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIDefines.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixControlFlowLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/CaymanInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SISchedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/CIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600Defines.h
    U src/gnu/llvm/lib/Target/AMDGPU/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600Instructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Intrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Processors.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600Schedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
    N src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R700Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.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/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.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/AsmParser/AMDGPUAsmParser.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.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/AMDGPUELFStreamer.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/AMDGPUFixupKinds.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
    N src/gnu/llvm/lib/Target/AMDGPU/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AMDGPU/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.h
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloat.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsOptionRecord.h
    U src/gnu/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips.h
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips.td
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsCondMov.td
    U src/gnu/llvm/lib/Target/Mips/MipsFastISel.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleP5600.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.h
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsOs16.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsLongBranch.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsSchedule.td
    U src/gnu/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
    N src/gnu/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFPU.td
    U src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
    U src/gnu/llvm/lib/Target/Mips/MipsTargetStreamer.h
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsCallingConv.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.h
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.h
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.h
    U src/gnu/llvm/lib/Target/Mips/Mips64InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.cpp
    U src/gnu/llvm/lib/Target/Mips/MSA.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/Mips/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.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/MCTargetDesc/MipsMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
    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/MipsFixupKinds.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
    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/MipsABIFlagsSection.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.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/SystemZ/SystemZLongBranch.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZTDC.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZPatterns.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/README.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.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/SystemZConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
    U src/gnu/llvm/lib/Target/SystemZ/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.h
    U src/gnu/llvm/lib/Target/SystemZ/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrVector.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZProcessors.td
    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/SystemZInstrBuilder.h
    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/SystemZRegisterInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
    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/SystemZElimCompare.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.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/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/MCTargetDesc/SystemZMCFixups.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
    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/PowerPC/PPCISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/PowerPC/p9-instrs.txt
    N src/gnu/llvm/lib/Target/PowerPC/README_P9.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
    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/PPCAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrVSX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP7.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCFastISel.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrFormats.td
    U src/gnu/llvm/lib/Target/PowerPC/README.txt
    U src/gnu/llvm/lib/Target/PowerPC/README_ALTIVEC.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrSPE.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP8.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG3.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG5.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCCCState.cpp
    U src/gnu/llvm/lib/Target/PowerPC/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPC.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule440.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
    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/PPCTLSDynamicCall.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrQPX.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCCCState.h
    U src/gnu/llvm/lib/Target/PowerPC/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
    N src/gnu/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPC.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrHTM.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4.td
    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/InstPrinter/CMakeLists.txt
    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/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/MCTargetDesc/PPCPredicates.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
    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/MCTargetDesc/PPCMCExpr.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.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/Disassembler/PPCDisassembler.cpp
    U src/gnu/llvm/lib/Target/X86/X86ScheduleAtom.td
    U src/gnu/llvm/lib/Target/X86/X86InstrMMX.td
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/X86/X86IntrinsicsInfo.h
    U src/gnu/llvm/lib/Target/X86/X86SchedSandyBridge.td
    U src/gnu/llvm/lib/Target/X86/X86InstrShiftRotate.td
    U src/gnu/llvm/lib/Target/X86/X86InstrSVM.td
    U src/gnu/llvm/lib/Target/X86/X86FixupLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86FloatingPoint.cpp
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86.td
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
    U src/gnu/llvm/lib/Target/X86/X86WinEHState.cpp
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrExtension.td
    U src/gnu/llvm/lib/Target/X86/README.txt
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.cpp
    U src/gnu/llvm/lib/Target/X86/X86VZeroUpper.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrCMovSetCC.td
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
    U src/gnu/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFPStack.td
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrTSX.td
    U src/gnu/llvm/lib/Target/X86/X86Instr3DNow.td
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.h
    U src/gnu/llvm/lib/Target/X86/X86InstrArithmetic.td
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.h
    N src/gnu/llvm/lib/Target/X86/X86FixupBWInsts.cpp
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.h
    U src/gnu/llvm/lib/Target/X86/X86ScheduleSLM.td
    N src/gnu/llvm/lib/Target/X86/X86FixupSetCC.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrAVX512.td
    U src/gnu/llvm/lib/Target/X86/X86InstrBuilder.h
    U src/gnu/llvm/lib/Target/X86/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrSGX.td
    U src/gnu/llvm/lib/Target/X86/X86MCInstLower.cpp
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.td
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.h
    N src/gnu/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86FastISel.cpp
    U src/gnu/llvm/lib/Target/X86/README-X86-64.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrVMX.td
    U src/gnu/llvm/lib/Target/X86/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrSystem.td
    U src/gnu/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/X86/X86Schedule.td
    U src/gnu/llvm/lib/Target/X86/X86SchedHaswell.td
    U src/gnu/llvm/lib/Target/X86/X86InstrXOP.td
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
    U src/gnu/llvm/lib/Target/X86/X86ScheduleBtVer2.td
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.h
    U src/gnu/llvm/lib/Target/X86/X86InstrMPX.td
    U src/gnu/llvm/lib/Target/X86/X86InstrSSE.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFormats.td
    U src/gnu/llvm/lib/Target/X86/X86PadShortFunction.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrCompiler.td
    U src/gnu/llvm/lib/Target/X86/X86ExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrControl.td
    U src/gnu/llvm/lib/Target/X86/README-FPStack.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.td
    U src/gnu/llvm/lib/Target/X86/README-UNIMPLEMENTED.txt
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.h
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.h
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/X86/X86.h
    U src/gnu/llvm/lib/Target/X86/README-MMX.txt
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.h
    U src/gnu/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
    U src/gnu/llvm/lib/Target/X86/README-SSE.txt
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.td
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/InstPrinter/CMakeLists.txt
    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/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/AsmParser/X86AsmParserCommon.h
    U 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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86Operand.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.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/X86BaseInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.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/Utils/X86ShuffleDecode.h
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
    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/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
    U src/gnu/llvm/lib/Target/X86/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430CallingConv.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.h
    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/MSP430MCInstLower.cpp
    U src/gnu/llvm/lib/Target/MSP430/README.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.h
    U src/gnu/llvm/lib/Target/MSP430/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrFormats.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430.h
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/CMakeLists.txt
    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/MCTargetDesc/MSP430MCTargetDesc.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/LLVMBuild.txt
    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/ARM/ARMInstrInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARM.td
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/README-Thumb.txt
    U src/gnu/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/ARM/A15SDOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFeatures.h
    U src/gnu/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrNEON.td
    U src/gnu/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/ARM/LICENSE.TXT
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARM.h
    U src/gnu/llvm/lib/Target/ARM/README.txt
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.td
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb.td
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleSwift.td
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrVFP.td
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFastISel.cpp
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrFormats.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.h
    U src/gnu/llvm/lib/Target/ARM/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSubtarget.h
    U src/gnu/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMPerfectShuffle.h
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.h
    U src/gnu/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.h
    U src/gnu/llvm/lib/Target/ARM/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2ITBlockPass.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/MLxExpansionPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleV6.td
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA9.td
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA8.td
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/README-Thumb2.txt
    U src/gnu/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSchedule.td
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.h
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.h
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb2.td
    U src/gnu/llvm/lib/Target/ARM/ARMMCInstLower.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/ARM/InstPrinter/ARMInstPrinter.cpp
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
    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/TargetInfo/ARMTargetInfo.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/MCTargetDesc/ARMMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
    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/ARMMachObjectWriter.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/ARMWinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.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/ARMMCTargetDesc.cpp
    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/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64Schedule.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64FastISel.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AArch64/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedM1.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
    U src/gnu/llvm/lib/Target/AArch64/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrFormats.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64BranchRelaxation.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA53.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64SystemOperands.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    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/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
    U src/gnu/llvm/lib/Target/AArch64/Utils/LLVMBuild.txt
    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/Utils/AArch64BaseInfo.h
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.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/AsmParser/AArch64AsmParser.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
    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/XCore/XCoreAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetStreamer.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.h
    U src/gnu/llvm/lib/Target/XCore/XCore.h
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreISelLowering.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/XCore.td
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.td
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.td
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
    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/XCoreTargetObjectFile.h
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.h
    U src/gnu/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.h
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/CMakeLists.txt
    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/XCoreInstrInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.h
    U src/gnu/llvm/lib/Target/XCore/XCoreCallingConv.td
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
    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/XCoreFrameToArgsOffsetElim.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrFormats.td
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/LLVMBuild.txt
    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/XCoreInstPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
    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/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/BPF/BPFFrameLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPF.td
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.h
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.h
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.h
    U src/gnu/llvm/lib/Target/BPF/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/BPF.h
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFCallingConv.td
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrFormats.td
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.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/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/MCTargetDesc/BPFMCAsmInfo.h
    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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.h
    N src/gnu/llvm/lib/Target/Sparc/LeonFeatures.td
    N src/gnu/llvm/lib/Target/Sparc/LeonPasses.h
    U src/gnu/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
    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/SparcMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstr64Bit.td
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.h
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Sparc/Sparc.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetStreamer.h
    U src/gnu/llvm/lib/Target/Sparc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
    N src/gnu/llvm/lib/Target/Sparc/LeonPasses.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrVIS.td
    U src/gnu/llvm/lib/Target/Sparc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
    N src/gnu/llvm/lib/Target/Sparc/SparcSchedule.td
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.h
    U src/gnu/llvm/lib/Target/Sparc/SparcCallingConv.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrFormats.td
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/Sparc.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrAliases.td
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.td
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.h
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.td
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
    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/Sparc/InstPrinter/SparcInstPrinter.h
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/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/Sparc/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/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/Analysis/ObjCARCInstKind.cpp
    N src/gnu/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/LoopInfo.cpp
    U src/gnu/llvm/lib/Analysis/CFG.cpp
    U src/gnu/llvm/lib/Analysis/CallPrinter.cpp
    U src/gnu/llvm/lib/Analysis/CostModel.cpp
    U src/gnu/llvm/lib/Analysis/MemDepPrinter.cpp
    U src/gnu/llvm/lib/Analysis/DomPrinter.cpp
    N src/gnu/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/InstructionSimplify.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CallGraphSCCPass.cpp
    N src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.cpp
    U src/gnu/llvm/lib/Analysis/CFGPrinter.cpp
    N src/gnu/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/Analysis.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Analysis/MemoryLocation.cpp
    U src/gnu/llvm/lib/Analysis/DivergenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/InlineCost.cpp
    U src/gnu/llvm/lib/Analysis/TargetLibraryInfo.cpp
    U src/gnu/llvm/lib/Analysis/InstCount.cpp
    U src/gnu/llvm/lib/Analysis/README.txt
    U src/gnu/llvm/lib/Analysis/RegionPass.cpp
    U src/gnu/llvm/lib/Analysis/LoopPass.cpp
    U src/gnu/llvm/lib/Analysis/CodeMetrics.cpp
    U src/gnu/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/DependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/DominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/LoopAccessAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/lib/Analysis/EHPersonalities.cpp
    U src/gnu/llvm/lib/Analysis/MemDerefPrinter.cpp
    U src/gnu/llvm/lib/Analysis/LazyCallGraph.cpp
    U src/gnu/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/Delinearization.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolution.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
    U src/gnu/llvm/lib/Analysis/MemoryBuiltins.cpp
    U src/gnu/llvm/lib/Analysis/LLVMBuild.txt
    U src/gnu/llvm/lib/Analysis/PostDominators.cpp
    U src/gnu/llvm/lib/Analysis/DemandedBits.cpp
    U src/gnu/llvm/lib/Analysis/CaptureTracking.cpp
    U src/gnu/llvm/lib/Analysis/PHITransAddr.cpp
    U src/gnu/llvm/lib/Analysis/CGSCCPassManager.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
    N src/gnu/llvm/lib/Analysis/CFLGraph.h
    U src/gnu/llvm/lib/Analysis/ValueTracking.cpp
    U src/gnu/llvm/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/lib/Analysis/LazyValueInfo.cpp
    U src/gnu/llvm/lib/Analysis/SparsePropagation.cpp
    U src/gnu/llvm/lib/Analysis/IntervalPartition.cpp
    N src/gnu/llvm/lib/Analysis/ProfileSummaryInfo.cpp
    U src/gnu/llvm/lib/Analysis/AliasSetTracker.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
    U src/gnu/llvm/lib/Analysis/PtrUseVisitor.cpp
    N src/gnu/llvm/lib/Analysis/TypeMetadataUtils.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
    U src/gnu/llvm/lib/Analysis/StratifiedSets.h
    U src/gnu/llvm/lib/Analysis/ScopedNoAliasAA.cpp
    N src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.h
    U src/gnu/llvm/lib/Analysis/Trace.cpp
    U src/gnu/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
    U src/gnu/llvm/lib/Analysis/BranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/Interval.cpp
    N src/gnu/llvm/lib/Analysis/LoopPassManager.cpp
    N src/gnu/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/RegionInfo.cpp
    U src/gnu/llvm/lib/Analysis/Lint.cpp
    U src/gnu/llvm/lib/Analysis/GlobalsModRef.cpp
    U src/gnu/llvm/lib/Analysis/OrderedBasicBlock.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/VectorUtils.cpp
    N src/gnu/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
    N src/gnu/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
    U src/gnu/llvm/lib/Analysis/IVUsers.cpp
    U src/gnu/llvm/lib/Analysis/RegionPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ConstantFolding.cpp
    U src/gnu/llvm/lib/Analysis/BasicAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/Loads.cpp
    U src/gnu/llvm/lib/Analysis/AssumptionCache.cpp
    N src/gnu/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerIO.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerMutate.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsWeak.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerInternal.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerTraceState.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerLoop.cpp
    U src/gnu/llvm/lib/Fuzzer/README.txt
    N src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctions.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerMain.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtil.cpp
    U src/gnu/llvm/lib/Fuzzer/cxx.dict
    U src/gnu/llvm/lib/Fuzzer/FuzzerDFSan.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerFlags.def
    U src/gnu/llvm/lib/Fuzzer/FuzzerInterface.h
    U src/gnu/llvm/lib/Fuzzer/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/FuzzerTracePC.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsDlsym.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerCrossOver.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctions.def
    N src/gnu/llvm/lib/Fuzzer/FuzzerTracePC.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerFnAdapter.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerDriver.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerSHA1.cpp
    N src/gnu/llvm/lib/Fuzzer/test/StrstrTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-prunecorpus.test
    N src/gnu/llvm/lib/Fuzzer/test/SimpleFnAdapterTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/afl-driver-stderr.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-threaded.test
    U src/gnu/llvm/lib/Fuzzer/test/FullCoverageSetTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrncmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-traces.test
    N src/gnu/llvm/lib/Fuzzer/test/afl-driver-extra-stats.test
    U src/gnu/llvm/lib/Fuzzer/test/SwitchTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/ThreadedLeakTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-dfsan.test
    N src/gnu/llvm/lib/Fuzzer/test/SpamyTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/OutOfMemoryTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-oom-with-profile.test
    U src/gnu/llvm/lib/Fuzzer/test/hi.txt
    N src/gnu/llvm/lib/Fuzzer/test/EmptyTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-finalstats.test
    N src/gnu/llvm/lib/Fuzzer/test/CustomCrossOverTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-leak.test
    U src/gnu/llvm/lib/Fuzzer/test/NullDerefTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-dirs.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-oom.test
    N src/gnu/llvm/lib/Fuzzer/test/CustomMutatorTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/TimeoutTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-flags.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-singleinputs.test
    U src/gnu/llvm/lib/Fuzzer/test/StrcmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-dict.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-traces-hooks.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-seed.test
    N src/gnu/llvm/lib/Fuzzer/test/InitializeTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/NthRunCrashTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/CounterTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/RepeatedMemcmp.cpp
    N src/gnu/llvm/lib/Fuzzer/test/LeakTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/MemcmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-runs.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-fn-adapter.test
    U src/gnu/llvm/lib/Fuzzer/test/ThreadedTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-trunc.test
    U src/gnu/llvm/lib/Fuzzer/test/SimpleHashTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer.test
    N src/gnu/llvm/lib/Fuzzer/test/SimpleThreadedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleCmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-customcrossover.test
    N src/gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/CallerCalleeTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-trace-pc.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-drill.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-ubsan.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-segv.test
    U src/gnu/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/merge.test
    U src/gnu/llvm/lib/Fuzzer/test/UninstrumentedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/dict1.txt
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-timeout.test
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-custommutator.test
    U src/gnu/llvm/lib/Fuzzer/test/lit.site.cfg.in
    N src/gnu/llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/BufferOverflowOnInput.cpp
    U src/gnu/llvm/lib/Fuzzer/test/lit.cfg
    N src/gnu/llvm/lib/Fuzzer/test/OneHugeAllocTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/NullDerefOnEmptyTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-fdmask.test
    N src/gnu/llvm/lib/Fuzzer/test/AFLDriverTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/FuzzerFnAdapterUnittest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/uninstrumented/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/dfsan/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/test/no-coverage/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/test/ubsan/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/test/trace-pc/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/unit/lit.site.cfg.in
    U src/gnu/llvm/lib/Fuzzer/test/unit/lit.cfg
    U src/gnu/llvm/lib/Fuzzer/test/trace-bb/CMakeLists.txt
    N src/gnu/llvm/lib/Fuzzer/afl/afl_driver.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProf.cpp
    N src/gnu/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProf.cpp
    U src/gnu/llvm/lib/ProfileData/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/SampleProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfReader.cpp
    N src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
    N src/gnu/llvm/lib/ProfileData/Coverage/LLVMBuild.txt
    N src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
    N src/gnu/llvm/lib/ProfileData/Coverage/CMakeLists.txt
    N src/gnu/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/TargetSelect.cpp
    U src/gnu/llvm/lib/ExecutionEngine/CMakeLists.txt
    N src/gnu/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
    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/NullResolver.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
    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/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
    N 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/RuntimeDyldCOFFX86_64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.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/jitprofiling.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.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/OProfileJITEventListener.cpp
    U src/gnu/llvm/lib/Bitcode/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
    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/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Writer/BitWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.h
    U src/gnu/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/BitReader.cpp
    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/CMakeLists.txt
    U src/gnu/llvm/lib/Support/APInt.cpp
    U src/gnu/llvm/lib/Support/ARMWinEH.cpp
    U src/gnu/llvm/lib/Support/raw_ostream.cpp
    U src/gnu/llvm/lib/Support/ThreadPool.cpp
    U src/gnu/llvm/lib/Support/ARMBuildAttrs.cpp
    U src/gnu/llvm/lib/Support/regcclass.h
    U src/gnu/llvm/lib/Support/Process.cpp
    U src/gnu/llvm/lib/Support/Signals.cpp
    U src/gnu/llvm/lib/Support/Dwarf.cpp
    U src/gnu/llvm/lib/Support/PrettyStackTrace.cpp
    U src/gnu/llvm/lib/Support/Compression.cpp
    U src/gnu/llvm/lib/Support/FoldingSet.cpp
    U src/gnu/llvm/lib/Support/Hashing.cpp
    U src/gnu/llvm/lib/Support/Timer.cpp
    U src/gnu/llvm/lib/Support/DynamicLibrary.cpp
    U src/gnu/llvm/lib/Support/regfree.c
    U src/gnu/llvm/lib/Support/CrashRecoveryContext.cpp
    U src/gnu/llvm/lib/Support/StringSaver.cpp
    U src/gnu/llvm/lib/Support/FormattedStream.cpp
    U src/gnu/llvm/lib/Support/COM.cpp
    U src/gnu/llvm/lib/Support/APSInt.cpp
    U src/gnu/llvm/lib/Support/TimeValue.cpp
    U src/gnu/llvm/lib/Support/Statistic.cpp
    U src/gnu/llvm/lib/Support/Watchdog.cpp
    U src/gnu/llvm/lib/Support/SourceMgr.cpp
    U src/gnu/llvm/lib/Support/Errno.cpp
    U src/gnu/llvm/lib/Support/StringMap.cpp
    U src/gnu/llvm/lib/Support/BranchProbability.cpp
    U src/gnu/llvm/lib/Support/LEB128.cpp
    U src/gnu/llvm/lib/Support/Path.cpp
    U src/gnu/llvm/lib/Support/IntEqClasses.cpp
    U src/gnu/llvm/lib/Support/Threading.cpp
    U src/gnu/llvm/lib/Support/regcomp.c
    U src/gnu/llvm/lib/Support/Twine.cpp
    U src/gnu/llvm/lib/Support/MemoryObject.cpp
    N src/gnu/llvm/lib/Support/CachePruning.cpp
    U src/gnu/llvm/lib/Support/Options.cpp
    U src/gnu/llvm/lib/Support/Regex.cpp
    U src/gnu/llvm/lib/Support/ConvertUTF.c
    U src/gnu/llvm/lib/Support/Atomic.cpp
    U src/gnu/llvm/lib/Support/SmallVector.cpp
    U src/gnu/llvm/lib/Support/Memory.cpp
    U src/gnu/llvm/lib/Support/APFloat.cpp
    U src/gnu/llvm/lib/Support/regerror.c
    U src/gnu/llvm/lib/Support/ThreadLocal.cpp
    U src/gnu/llvm/lib/Support/TargetParser.cpp
    U src/gnu/llvm/lib/Support/DeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/Unicode.cpp
    U src/gnu/llvm/lib/Support/PluginLoader.cpp
    U src/gnu/llvm/lib/Support/LLVMBuild.txt
    U src/gnu/llvm/lib/Support/SmallPtrSet.cpp
    U src/gnu/llvm/lib/Support/regex_impl.h
    U src/gnu/llvm/lib/Support/SystemUtils.cpp
    U src/gnu/llvm/lib/Support/circular_raw_ostream.cpp
    U src/gnu/llvm/lib/Support/regutils.h
    U src/gnu/llvm/lib/Support/IntervalMap.cpp
    U src/gnu/llvm/lib/Support/Triple.cpp
    U src/gnu/llvm/lib/Support/DAGDeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/LockFileManager.cpp
    U src/gnu/llvm/lib/Support/CMakeLists.txt
    U src/gnu/llvm/lib/Support/README.txt.system
    U src/gnu/llvm/lib/Support/regex2.h
    U src/gnu/llvm/lib/Support/IntrusiveRefCntPtr.cpp
    N src/gnu/llvm/lib/Support/Error.cpp
    U src/gnu/llvm/lib/Support/RandomNumberGenerator.cpp
    U src/gnu/llvm/lib/Support/regexec.c
    U src/gnu/llvm/lib/Support/COPYRIGHT.regex
    U src/gnu/llvm/lib/Support/SpecialCaseList.cpp
    U src/gnu/llvm/lib/Support/ManagedStatic.cpp
    U src/gnu/llvm/lib/Support/JamCRC.cpp
    U src/gnu/llvm/lib/Support/raw_os_ostream.cpp
    U src/gnu/llvm/lib/Support/Allocator.cpp
    U src/gnu/llvm/lib/Support/regengine.inc
    U src/gnu/llvm/lib/Support/ErrorHandling.cpp
    U src/gnu/llvm/lib/Support/StringRef.cpp
    U src/gnu/llvm/lib/Support/Host.cpp
    U src/gnu/llvm/lib/Support/DataExtractor.cpp
    U src/gnu/llvm/lib/Support/Debug.cpp
    U src/gnu/llvm/lib/Support/YAMLTraits.cpp
    U src/gnu/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp
    U src/gnu/llvm/lib/Support/GraphWriter.cpp
    U src/gnu/llvm/lib/Support/MD5.cpp
    U src/gnu/llvm/lib/Support/LineIterator.cpp
    U src/gnu/llvm/lib/Support/FileUtilities.cpp
    U src/gnu/llvm/lib/Support/TargetRegistry.cpp
    U src/gnu/llvm/lib/Support/RWMutex.cpp
    U src/gnu/llvm/lib/Support/CommandLine.cpp
    U src/gnu/llvm/lib/Support/MathExtras.cpp
    U src/gnu/llvm/lib/Support/StringExtras.cpp
    U src/gnu/llvm/lib/Support/StreamingMemoryObject.cpp
    U src/gnu/llvm/lib/Support/ScaledNumber.cpp
    U src/gnu/llvm/lib/Support/StringPool.cpp
    U src/gnu/llvm/lib/Support/FileOutputBuffer.cpp
    U src/gnu/llvm/lib/Support/DataStream.cpp
    N src/gnu/llvm/lib/Support/SHA1.cpp
    U src/gnu/llvm/lib/Support/Program.cpp
    U src/gnu/llvm/lib/Support/BlockFrequency.cpp
    U src/gnu/llvm/lib/Support/ConvertUTFWrapper.cpp
    U src/gnu/llvm/lib/Support/Mutex.cpp
    U src/gnu/llvm/lib/Support/ToolOutputFile.cpp
    U src/gnu/llvm/lib/Support/regstrlcpy.c
    U src/gnu/llvm/lib/Support/MemoryBuffer.cpp
    N src/gnu/llvm/lib/Support/ScopedPrinter.cpp
    U src/gnu/llvm/lib/Support/YAMLParser.cpp
    U src/gnu/llvm/lib/Support/Locale.cpp
    U src/gnu/llvm/lib/Support/Valgrind.cpp
    U src/gnu/llvm/lib/Support/regcname.h
    U src/gnu/llvm/lib/Support/Unix/Process.inc
    U src/gnu/llvm/lib/Support/Unix/Watchdog.inc
    U src/gnu/llvm/lib/Support/Unix/README.txt
    U src/gnu/llvm/lib/Support/Unix/RWMutex.inc
    U src/gnu/llvm/lib/Support/Unix/TimeValue.inc
    U src/gnu/llvm/lib/Support/Unix/Signals.inc
    U src/gnu/llvm/lib/Support/Unix/COM.inc
    U src/gnu/llvm/lib/Support/Unix/ThreadLocal.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/Unix.h
    U src/gnu/llvm/lib/Support/Unix/Path.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/Windows/Process.inc
    U src/gnu/llvm/lib/Support/Windows/Watchdog.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/RWMutex.inc
    U src/gnu/llvm/lib/Support/Windows/TimeValue.inc
    U src/gnu/llvm/lib/Support/Windows/Signals.inc
    U src/gnu/llvm/lib/Support/Windows/COM.inc
    U src/gnu/llvm/lib/Support/Windows/ThreadLocal.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/DynamicLibrary.inc
    U src/gnu/llvm/lib/Support/Windows/Path.inc
    U src/gnu/llvm/lib/Support/Windows/Host.inc
    U src/gnu/llvm/lib/Support/Windows/Memory.inc
    U src/gnu/llvm/lib/IRReader/LLVMBuild.txt
    U src/gnu/llvm/lib/IRReader/CMakeLists.txt
    U src/gnu/llvm/lib/IRReader/IRReader.cpp
    U src/gnu/llvm/lib/MC/MCAssembler.cpp
    U src/gnu/llvm/lib/MC/StringTableBuilder.cpp
    U src/gnu/llvm/lib/MC/MCMachObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoELF.cpp
    U src/gnu/llvm/lib/MC/MCNullStreamer.cpp
    U src/gnu/llvm/lib/MC/MachObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCValue.cpp
    U src/gnu/llvm/lib/MC/MCELFObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/MCSection.cpp
    U src/gnu/llvm/lib/MC/MCWin64EH.cpp
    U src/gnu/llvm/lib/MC/MCSymbol.cpp
    U src/gnu/llvm/lib/MC/MCInst.cpp
    U src/gnu/llvm/lib/MC/MCDwarf.cpp
    U src/gnu/llvm/lib/MC/MCStreamer.cpp
    U src/gnu/llvm/lib/MC/MCWinEH.cpp
    U src/gnu/llvm/lib/MC/MCObjectFileInfo.cpp
    U src/gnu/llvm/lib/MC/MCExpr.cpp
    U src/gnu/llvm/lib/MC/MCMachOStreamer.cpp
    U src/gnu/llvm/lib/MC/MCInstrDesc.cpp
    U src/gnu/llvm/lib/MC/MCCodeEmitter.cpp
    U src/gnu/llvm/lib/MC/MCContext.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoCOFF.cpp
    U src/gnu/llvm/lib/MC/MCFragment.cpp
    U src/gnu/llvm/lib/MC/MCObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCSectionELF.cpp
    U src/gnu/llvm/lib/MC/ConstantPools.cpp
    U src/gnu/llvm/lib/MC/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCSchedule.cpp
    U src/gnu/llvm/lib/MC/MCRegisterInfo.cpp
    N src/gnu/llvm/lib/MC/MCCodeView.cpp
    U src/gnu/llvm/lib/MC/MCTargetOptions.cpp
    U src/gnu/llvm/lib/MC/CMakeLists.txt
    U src/gnu/llvm/lib/MC/WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCInstPrinter.cpp
    U src/gnu/llvm/lib/MC/MCSectionCOFF.cpp
    U src/gnu/llvm/lib/MC/SubtargetFeature.cpp
    U src/gnu/llvm/lib/MC/ELFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCInstrAnalysis.cpp
    U src/gnu/llvm/lib/MC/MCAsmBackend.cpp
    U src/gnu/llvm/lib/MC/MCAsmStreamer.cpp
    U src/gnu/llvm/lib/MC/MCSubtargetInfo.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfo.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoDarwin.cpp
    U src/gnu/llvm/lib/MC/MCObjectStreamer.cpp
    U src/gnu/llvm/lib/MC/MCELFStreamer.cpp
    U src/gnu/llvm/lib/MC/WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCSymbolELF.cpp
    U src/gnu/llvm/lib/MC/MCSectionMachO.cpp
    U src/gnu/llvm/lib/MC/MCLabel.cpp
    U src/gnu/llvm/lib/MC/MCLinkerOptimizationHint.cpp
    U src/gnu/llvm/lib/MC/MCParser/AsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/AsmParser.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/MCAsmParserExtension.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCParser/ELFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
    N src/gnu/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/CMakeLists.txt
    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/MCDisassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.h
    U src/gnu/llvm/lib/Linker/LinkDiagnosticInfo.h
    U src/gnu/llvm/lib/Linker/IRMover.cpp
    U src/gnu/llvm/lib/Linker/LLVMBuild.txt
    U src/gnu/llvm/lib/Linker/CMakeLists.txt
    U src/gnu/llvm/lib/Linker/LinkModules.cpp
    U src/gnu/llvm/resources/windows_version_resource.rc
    
    7 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	2017/01/14 13:04:08

Modified files:
	gnu/llvm/lib/CodeGen: StackProtector.cpp TargetLoweringBase.cpp 
	gnu/llvm/tools/clang/include/clang/Driver: Options.td 
	gnu/llvm/tools/clang/lib/Basic: Targets.cpp 
	gnu/llvm/tools/clang/lib/Driver: ToolChains.cpp ToolChains.h 
	                                 Tools.cpp 
	gnu/llvm/tools/clang/lib/Frontend: InitHeaderSearch.cpp 
Removed files:
	gnu/llvm       : Makefile Makefile.common Makefile.config.in 
	                 Makefile.rules 
	gnu/llvm/autoconf: AutoRegen.sh ExportMap.map LICENSE.TXT 
	                   README.TXT config.guess config.sub 
	                   configure.ac install-sh missing mkinstalldirs 
	gnu/llvm/autoconf/m4: build_exeext.m4 c_printf_a.m4 
	                      check_gnu_make.m4 config_makefile.m4 
	                      config_project.m4 cxx_flag_check.m4 
	                      define_subst.m4 find_std_program.m4 
	                      func_mmap_file.m4 header_mmap_anonymous.m4 
	                      huge_val.m4 link_options.m4 
	                      linux_mixed_64_32.m4 
	                      need_dev_zero_for_mmap.m4 sanity_check.m4 
	                      single_cxx_check.m4 
	                      visibility_inlines_hidden.m4 
	gnu/llvm/bindings: Makefile 
	gnu/llvm/bindings/ocaml: Makefile Makefile.ocaml 
	gnu/llvm/bindings/ocaml/all_backends: Makefile 
	gnu/llvm/bindings/ocaml/analysis: Makefile 
	gnu/llvm/bindings/ocaml/backends: Makefile Makefile.common 
	gnu/llvm/bindings/ocaml/bitreader: Makefile 
	gnu/llvm/bindings/ocaml/bitwriter: Makefile 
	gnu/llvm/bindings/ocaml/executionengine: Makefile 
	gnu/llvm/bindings/ocaml/irreader: Makefile 
	gnu/llvm/bindings/ocaml/linker: Makefile 
	gnu/llvm/bindings/ocaml/llvm: Makefile 
	gnu/llvm/bindings/ocaml/target: Makefile 
	gnu/llvm/bindings/ocaml/transforms: Makefile 
	gnu/llvm/bindings/ocaml/transforms/ipo: Makefile 
	gnu/llvm/bindings/ocaml/transforms/passmgr_builder: Makefile 
	gnu/llvm/bindings/ocaml/transforms/scalar_opts: Makefile 
	gnu/llvm/bindings/ocaml/transforms/utils: Makefile 
	gnu/llvm/bindings/ocaml/transforms/vectorize: Makefile 
	gnu/llvm/cmake : Makefile 
	gnu/llvm/cmake/modules: Makefile 
	gnu/llvm/docs  : BitSets.rst BuildingLLVMWithAutotools.rst 
	                 Makefile MakefileGuide.rst doxygen.intro 
	gnu/llvm/docs/tutorial: LangImpl1.rst LangImpl2.rst 
	                        LangImpl3.rst LangImpl4.rst 
	                        LangImpl5-cfg.png LangImpl5.rst 
	                        LangImpl6.rst LangImpl7.rst 
	                        LangImpl8.rst LangImpl9.rst 
	gnu/llvm/examples: Makefile 
	gnu/llvm/examples/BrainF: Makefile 
	gnu/llvm/examples/ExceptionDemo: Makefile 
	gnu/llvm/examples/Fibonacci: Makefile 
	gnu/llvm/examples/HowToUseJIT: Makefile 
	gnu/llvm/examples/Kaleidoscope: Makefile 
	gnu/llvm/examples/Kaleidoscope/Chapter2: Makefile 
	gnu/llvm/examples/Kaleidoscope/Chapter3: Makefile 
	gnu/llvm/examples/Kaleidoscope/Chapter4: Makefile 
	gnu/llvm/examples/Kaleidoscope/Chapter5: Makefile 
	gnu/llvm/examples/Kaleidoscope/Chapter6: Makefile 
	gnu/llvm/examples/Kaleidoscope/Chapter7: Makefile 
	gnu/llvm/examples/Kaleidoscope/Chapter8: Makefile 
	gnu/llvm/examples/Kaleidoscope/MCJIT/cached: Makefile 
	gnu/llvm/examples/Kaleidoscope/MCJIT/complete: Makefile 
	gnu/llvm/examples/Kaleidoscope/MCJIT/initial: Makefile 
	gnu/llvm/examples/Kaleidoscope/MCJIT/lazy: Makefile 
	gnu/llvm/examples/Kaleidoscope/Orc: CMakeLists.txt 
	gnu/llvm/examples/Kaleidoscope/Orc/fully_lazy: CMakeLists.txt 
	                                               Makefile 
	                                               README.txt 
	                                               toy.cpp 
	gnu/llvm/examples/Kaleidoscope/Orc/initial: CMakeLists.txt 
	                                            Makefile README.txt 
	                                            toy.cpp 
	gnu/llvm/examples/Kaleidoscope/Orc/lazy_codegen: CMakeLists.txt 
	                                                 Makefile 
	                                                 README.txt 
	                                                 toy.cpp 
	gnu/llvm/examples/Kaleidoscope/Orc/lazy_irgen: CMakeLists.txt 
	                                               Makefile 
	                                               README.txt 
	                                               toy.cpp 
	gnu/llvm/examples/ModuleMaker: Makefile 
	gnu/llvm/examples/OCaml-Kaleidoscope: Makefile 
	gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2: Makefile 
	gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3: Makefile 
	gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4: Makefile 
	gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5: Makefile 
	gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6: Makefile 
	gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7: Makefile 
	gnu/llvm/examples/ParallelJIT: Makefile 
	gnu/llvm/include/llvm/Analysis: CFLAliasAnalysis.h 
	gnu/llvm/include/llvm/Config: config.h.in llvm-config.h.in 
	gnu/llvm/include/llvm/ExecutionEngine/Orc: 
	                                           OrcArchitectureSupport.h 
	gnu/llvm/include/llvm/IR: FunctionInfo.h 
	gnu/llvm/include/llvm/LTO: LTOCodeGenerator.h LTOModule.h 
	gnu/llvm/include/llvm/MC: MCCodeGenInfo.h MCDisassembler.h 
	                          MCExternalSymbolizer.h 
	                          MCRelocationInfo.h MCSymbolizer.h 
	                          MCTargetAsmParser.h YAML.h 
	gnu/llvm/include/llvm/Object: COFFYAML.h ELFYAML.h 
	                              FunctionIndexObjectFile.h 
	gnu/llvm/include/llvm/ProfileData: CoverageMapping.h 
	                                   CoverageMappingReader.h 
	                                   CoverageMappingWriter.h 
	gnu/llvm/include/llvm/Support: AIXDataTypesFix.h DataTypes.h.in 
	                               RegistryParser.h 
	gnu/llvm/include/llvm/Target: TargetSelectionDAGInfo.h 
	gnu/llvm/include/llvm/Transforms/IPO: LowerBitSets.h 
	gnu/llvm/lib   : Makefile 
	gnu/llvm/lib/Analysis: CFLAliasAnalysis.cpp Makefile 
	gnu/llvm/lib/AsmParser: Makefile module.modulemap 
	gnu/llvm/lib/Bitcode: Makefile module.modulemap 
	gnu/llvm/lib/Bitcode/Reader: Makefile 
	gnu/llvm/lib/Bitcode/Writer: Makefile 
	gnu/llvm/lib/CodeGen: CoreCLRGC.cpp ErlangGC.cpp Makefile 
	                      OcamlGC.cpp Passes.cpp ShadowStackGC.cpp 
	                      StatepointExampleGC.cpp module.modulemap 
	gnu/llvm/lib/CodeGen/AsmPrinter: Makefile 
	                                 WinCodeViewLineTables.cpp 
	                                 WinCodeViewLineTables.h 
	gnu/llvm/lib/CodeGen/MIRParser: Makefile 
	gnu/llvm/lib/CodeGen/SelectionDAG: Makefile 
	                                   TargetSelectionDAGInfo.cpp 
	gnu/llvm/lib/DebugInfo: Makefile 
	gnu/llvm/lib/DebugInfo/CodeView: Makefile 
	gnu/llvm/lib/DebugInfo/DWARF: Makefile module.modulemap 
	gnu/llvm/lib/DebugInfo/PDB: Makefile 
	gnu/llvm/lib/DebugInfo/Symbolize: Makefile 
	gnu/llvm/lib/ExecutionEngine: Makefile 
	gnu/llvm/lib/ExecutionEngine/IntelJITEvents: Makefile 
	gnu/llvm/lib/ExecutionEngine/Interpreter: Makefile 
	gnu/llvm/lib/ExecutionEngine/MCJIT: Makefile 
	gnu/llvm/lib/ExecutionEngine/OProfileJIT: Makefile 
	gnu/llvm/lib/ExecutionEngine/Orc: Makefile 
	                                  OrcArchitectureSupport.cpp 
	                                  OrcCBindingsStack.cpp 
	gnu/llvm/lib/ExecutionEngine/RuntimeDyld: Makefile 
	gnu/llvm/lib/Fuzzer: FuzzerInterface.cpp 
	                     FuzzerSanitizerOptions.cpp 
	                     pull_and_push_fuzz_corpus.sh 
	gnu/llvm/lib/Fuzzer/test: UserSuppliedFuzzerTest.cpp 
	gnu/llvm/lib/IR: FunctionInfo.cpp Makefile module.modulemap 
	gnu/llvm/lib/IRReader: Makefile 
	gnu/llvm/lib/LTO: Makefile 
	gnu/llvm/lib/LibDriver: Makefile 
	gnu/llvm/lib/LineEditor: Makefile 
	gnu/llvm/lib/Linker: Makefile 
	gnu/llvm/lib/MC: MCCodeGenInfo.cpp MCSymbolizer.cpp Makefile 
	                 YAML.cpp 
	gnu/llvm/lib/MC/MCDisassembler: Makefile 
	gnu/llvm/lib/MC/MCParser: Makefile 
	gnu/llvm/lib/Object: COFFYAML.cpp ELFYAML.cpp 
	                     FunctionIndexObjectFile.cpp Makefile 
	gnu/llvm/lib/Option: Makefile 
	gnu/llvm/lib/Passes: Makefile 
	gnu/llvm/lib/ProfileData: CoverageMapping.cpp 
	                          CoverageMappingReader.cpp 
	                          CoverageMappingWriter.cpp Makefile 
	gnu/llvm/lib/Support: Makefile 
	gnu/llvm/lib/TableGen: Makefile module.modulemap 
	gnu/llvm/lib/Target: Makefile 
	gnu/llvm/lib/Target/AArch64: Makefile 
	gnu/llvm/lib/Target/AArch64/AsmParser: Makefile 
	gnu/llvm/lib/Target/AArch64/Disassembler: Makefile 
	gnu/llvm/lib/Target/AArch64/InstPrinter: Makefile 
	gnu/llvm/lib/Target/AArch64/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/AArch64/TargetInfo: Makefile 
	gnu/llvm/lib/Target/AArch64/Utils: Makefile 
	gnu/llvm/lib/Target/AMDGPU: AMDGPUDiagnosticInfoUnsupported.cpp 
	                            AMDGPUDiagnosticInfoUnsupported.h 
	                            Makefile 
	                            R600TextureIntrinsicsReplacer.cpp 
	                            SIFixSGPRLiveRanges.cpp 
	gnu/llvm/lib/Target/AMDGPU/AsmParser: Makefile 
	gnu/llvm/lib/Target/AMDGPU/InstPrinter: Makefile 
	gnu/llvm/lib/Target/AMDGPU/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/AMDGPU/TargetInfo: Makefile 
	gnu/llvm/lib/Target/AMDGPU/Utils: Makefile 
	gnu/llvm/lib/Target/ARM: Makefile 
	gnu/llvm/lib/Target/ARM/AsmParser: Makefile 
	gnu/llvm/lib/Target/ARM/Disassembler: Makefile 
	gnu/llvm/lib/Target/ARM/InstPrinter: Makefile 
	gnu/llvm/lib/Target/ARM/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/ARM/TargetInfo: Makefile 
	gnu/llvm/lib/Target/AVR: AVRConfig.h Makefile 
	gnu/llvm/lib/Target/AVR/TargetInfo: Makefile 
	gnu/llvm/lib/Target/BPF: Makefile 
	gnu/llvm/lib/Target/BPF/InstPrinter: Makefile 
	gnu/llvm/lib/Target/BPF/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/BPF/TargetInfo: Makefile 
	gnu/llvm/lib/Target/CppBackend: CMakeLists.txt CPPBackend.cpp 
	                                CPPTargetMachine.h LLVMBuild.txt 
	                                Makefile 
	gnu/llvm/lib/Target/CppBackend/TargetInfo: CMakeLists.txt 
	                                           CppBackendTargetInfo.cpp 
	                                           LLVMBuild.txt 
	                                           Makefile 
	gnu/llvm/lib/Target/Hexagon: HexagonExpandPredSpillCode.cpp 
	                             Makefile 
	gnu/llvm/lib/Target/Hexagon/AsmParser: Makefile 
	gnu/llvm/lib/Target/Hexagon/Disassembler: Makefile 
	gnu/llvm/lib/Target/Hexagon/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/Hexagon/TargetInfo: Makefile 
	gnu/llvm/lib/Target/MSP430: Makefile 
	gnu/llvm/lib/Target/MSP430/InstPrinter: Makefile 
	gnu/llvm/lib/Target/MSP430/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/MSP430/TargetInfo: Makefile 
	gnu/llvm/lib/Target/Mips: Makefile 
	gnu/llvm/lib/Target/Mips/AsmParser: Makefile 
	gnu/llvm/lib/Target/Mips/Disassembler: Makefile 
	gnu/llvm/lib/Target/Mips/InstPrinter: Makefile 
	gnu/llvm/lib/Target/Mips/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/Mips/TargetInfo: Makefile 
	gnu/llvm/lib/Target/NVPTX: Makefile 
	gnu/llvm/lib/Target/NVPTX/InstPrinter: Makefile 
	gnu/llvm/lib/Target/NVPTX/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/NVPTX/TargetInfo: Makefile 
	gnu/llvm/lib/Target/PowerPC: Makefile PPCLoopDataPrefetch.cpp 
	gnu/llvm/lib/Target/PowerPC/AsmParser: Makefile 
	gnu/llvm/lib/Target/PowerPC/Disassembler: Makefile 
	gnu/llvm/lib/Target/PowerPC/InstPrinter: Makefile 
	gnu/llvm/lib/Target/PowerPC/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/PowerPC/TargetInfo: Makefile 
	gnu/llvm/lib/Target/Sparc: Makefile 
	gnu/llvm/lib/Target/Sparc/AsmParser: Makefile 
	gnu/llvm/lib/Target/Sparc/Disassembler: Makefile 
	gnu/llvm/lib/Target/Sparc/InstPrinter: Makefile 
	gnu/llvm/lib/Target/Sparc/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/Sparc/TargetInfo: Makefile 
	gnu/llvm/lib/Target/SystemZ: Makefile 
	gnu/llvm/lib/Target/SystemZ/AsmParser: Makefile 
	gnu/llvm/lib/Target/SystemZ/Disassembler: Makefile 
	gnu/llvm/lib/Target/SystemZ/InstPrinter: Makefile 
	gnu/llvm/lib/Target/SystemZ/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/SystemZ/TargetInfo: Makefile 
	gnu/llvm/lib/Target/WebAssembly: Makefile Relooper.cpp 
	                                 Relooper.h WebAssemblyPEI.cpp 
	gnu/llvm/lib/Target/WebAssembly/Disassembler: Makefile 
	gnu/llvm/lib/Target/WebAssembly/InstPrinter: Makefile 
	gnu/llvm/lib/Target/WebAssembly/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/WebAssembly/TargetInfo: Makefile 
	gnu/llvm/lib/Target/X86: Makefile 
	gnu/llvm/lib/Target/X86/AsmParser: Makefile 
	gnu/llvm/lib/Target/X86/Disassembler: Makefile X86Disassembler.h 
	gnu/llvm/lib/Target/X86/InstPrinter: Makefile 
	gnu/llvm/lib/Target/X86/MCTargetDesc: Makefile 
	                                      X86ELFRelocationInfo.cpp 
	                                      X86MachORelocationInfo.cpp 
	gnu/llvm/lib/Target/X86/TargetInfo: Makefile 
	gnu/llvm/lib/Target/X86/Utils: Makefile 
	gnu/llvm/lib/Target/XCore: Makefile 
	gnu/llvm/lib/Target/XCore/Disassembler: Makefile 
	gnu/llvm/lib/Target/XCore/InstPrinter: Makefile 
	gnu/llvm/lib/Target/XCore/MCTargetDesc: Makefile 
	gnu/llvm/lib/Target/XCore/TargetInfo: Makefile 
	gnu/llvm/lib/Transforms: Makefile 
	gnu/llvm/lib/Transforms/Hello: Makefile 
	gnu/llvm/lib/Transforms/IPO: LowerBitSets.cpp Makefile 
	gnu/llvm/lib/Transforms/InstCombine: Makefile 
	gnu/llvm/lib/Transforms/Instrumentation: Makefile SafeStack.cpp 
	gnu/llvm/lib/Transforms/ObjCARC: Makefile 
	gnu/llvm/lib/Transforms/Scalar: Makefile 
	                                ScalarReplAggregates.cpp 
	gnu/llvm/lib/Transforms/Utils: Makefile 
	gnu/llvm/lib/Transforms/Vectorize: Makefile 
	gnu/llvm/projects: Makefile 
	gnu/llvm/tools : Makefile 
	gnu/llvm/tools/bugpoint: Makefile 
	gnu/llvm/tools/bugpoint-passes: Makefile 
	gnu/llvm/tools/clang: Makefile 
	gnu/llvm/tools/clang/cmake/modules: ClangConfig.cmake 
	gnu/llvm/tools/clang/docs: Makefile doxygen.intro 
	gnu/llvm/tools/clang/docs/analyzer: Makefile 
	gnu/llvm/tools/clang/examples: Makefile 
	gnu/llvm/tools/clang/examples/PrintFunctionNames: Makefile 
	gnu/llvm/tools/clang/examples/analyzer-plugin: Makefile 
	gnu/llvm/tools/clang/examples/clang-interpreter: Makefile 
	gnu/llvm/tools/clang/include: Makefile 
	gnu/llvm/tools/clang/include/clang: Makefile 
	gnu/llvm/tools/clang/include/clang/AST: Makefile 
	gnu/llvm/tools/clang/include/clang/Basic: Makefile 
	gnu/llvm/tools/clang/include/clang/Config: config.h.in 
	gnu/llvm/tools/clang/include/clang/Driver: Makefile 
	gnu/llvm/tools/clang/include/clang/Parse: Makefile 
	gnu/llvm/tools/clang/include/clang/Sema: LocInfoType.h Makefile 
	gnu/llvm/tools/clang/include/clang/Serialization: Makefile 
	gnu/llvm/tools/clang/include/clang-c: Makefile 
	gnu/llvm/tools/clang/lib: Makefile 
	gnu/llvm/tools/clang/lib/ARCMigrate: Makefile 
	gnu/llvm/tools/clang/lib/AST: Makefile 
	gnu/llvm/tools/clang/lib/ASTMatchers: Makefile 
	gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic: Makefile 
	gnu/llvm/tools/clang/lib/Analysis: Makefile 
	gnu/llvm/tools/clang/lib/Basic: Makefile 
	gnu/llvm/tools/clang/lib/CodeGen: Makefile 
	gnu/llvm/tools/clang/lib/Driver: Makefile 
	gnu/llvm/tools/clang/lib/Edit: Makefile 
	gnu/llvm/tools/clang/lib/Format: Makefile 
	gnu/llvm/tools/clang/lib/Frontend: Makefile 
	gnu/llvm/tools/clang/lib/Frontend/Rewrite: Makefile 
	gnu/llvm/tools/clang/lib/FrontendTool: Makefile 
	gnu/llvm/tools/clang/lib/Headers: Intrin.h Makefile 
	gnu/llvm/tools/clang/lib/Index: Makefile 
	gnu/llvm/tools/clang/lib/Lex: Makefile 
	gnu/llvm/tools/clang/lib/Parse: Makefile 
	gnu/llvm/tools/clang/lib/Rewrite: Makefile 
	gnu/llvm/tools/clang/lib/Sema: Makefile 
	gnu/llvm/tools/clang/lib/Serialization: Makefile 
	gnu/llvm/tools/clang/lib/StaticAnalyzer: Makefile 
	gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers: Checkers.td 
	                                                  Makefile 
	gnu/llvm/tools/clang/lib/StaticAnalyzer/Core: Makefile 
	gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend: Makefile 
	gnu/llvm/tools/clang/lib/Tooling: Makefile 
	gnu/llvm/tools/clang/lib/Tooling/Core: Makefile 
	gnu/llvm/tools/clang/runtime: Makefile 
	gnu/llvm/tools/clang/runtime/compiler-rt: Makefile 
	gnu/llvm/tools/clang/runtime/libcxx: Makefile 
	gnu/llvm/tools/clang/tools: Makefile 
	gnu/llvm/tools/clang/tools/arcmt-test: Makefile 
	gnu/llvm/tools/clang/tools/c-arcmt-test: Makefile 
	gnu/llvm/tools/clang/tools/c-index-test: Makefile 
	gnu/llvm/tools/clang/tools/clang-check: Makefile 
	gnu/llvm/tools/clang/tools/clang-format: Makefile 
	gnu/llvm/tools/clang/tools/diagtool: Makefile 
	gnu/llvm/tools/clang/tools/driver: Makefile 
	gnu/llvm/tools/clang/tools/libclang: IndexBody.cpp IndexDecl.cpp 
	                                     IndexTypeSourceInfo.cpp 
	                                     IndexingContext.cpp 
	                                     IndexingContext.h Makefile 
	gnu/llvm/tools/clang/tools/scan-build: Makefile 
	gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild: 
	                                                       command.py 
	gnu/llvm/tools/clang/tools/scan-build-py/tests/unit: fixtures.py 
	                                                     test_command.py 
	gnu/llvm/tools/clang/tools/scan-view: Makefile 
	gnu/llvm/tools/clang/unittests: Makefile 
	gnu/llvm/tools/clang/unittests/AST: Makefile 
	gnu/llvm/tools/clang/unittests/ASTMatchers: ASTMatchersTest.cpp 
	                                            Makefile 
	gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic: Makefile 
	gnu/llvm/tools/clang/unittests/Basic: Makefile 
	gnu/llvm/tools/clang/unittests/CodeGen: Makefile 
	gnu/llvm/tools/clang/unittests/Driver: Makefile 
	gnu/llvm/tools/clang/unittests/Format: Makefile 
	gnu/llvm/tools/clang/unittests/Frontend: Makefile 
	gnu/llvm/tools/clang/unittests/Lex: Makefile 
	gnu/llvm/tools/clang/unittests/Rewrite: Makefile 
	gnu/llvm/tools/clang/unittests/Sema: Makefile 
	gnu/llvm/tools/clang/unittests/StaticAnalyzer: Makefile 
	gnu/llvm/tools/clang/unittests/Tooling: Makefile 
	gnu/llvm/tools/clang/unittests/libclang: Makefile 
	gnu/llvm/tools/clang/utils: clang.natvis 
	gnu/llvm/tools/clang/utils/TableGen: Makefile 
	gnu/llvm/tools/clang/utils/VtableTest: Makefile 
	gnu/llvm/tools/dsymutil: Makefile 
	gnu/llvm/tools/gold: Makefile 
	gnu/llvm/tools/llc: Makefile 
	gnu/llvm/tools/lli: Makefile 
	gnu/llvm/tools/lli/ChildTarget: Makefile 
	gnu/llvm/tools/llvm-ar: Makefile 
	gnu/llvm/tools/llvm-as: Makefile 
	gnu/llvm/tools/llvm-bcanalyzer: Makefile 
	gnu/llvm/tools/llvm-c-test: Makefile 
	gnu/llvm/tools/llvm-config: Makefile 
	gnu/llvm/tools/llvm-cov: Makefile 
	gnu/llvm/tools/llvm-cxxdump: Makefile 
	gnu/llvm/tools/llvm-diff: Makefile 
	gnu/llvm/tools/llvm-dis: Makefile 
	gnu/llvm/tools/llvm-dwarfdump: Makefile 
	gnu/llvm/tools/llvm-dwp: Makefile 
	gnu/llvm/tools/llvm-extract: Makefile 
	gnu/llvm/tools/llvm-go: Makefile 
	gnu/llvm/tools/llvm-jitlistener: Makefile 
	gnu/llvm/tools/llvm-link: Makefile 
	gnu/llvm/tools/llvm-lto: Makefile 
	gnu/llvm/tools/llvm-mc: Makefile 
	gnu/llvm/tools/llvm-mcmarkup: Makefile 
	gnu/llvm/tools/llvm-nm: Makefile 
	gnu/llvm/tools/llvm-objdump: Makefile 
	gnu/llvm/tools/llvm-pdbdump: Makefile 
	gnu/llvm/tools/llvm-profdata: Makefile 
	gnu/llvm/tools/llvm-readobj: Makefile StreamWriter.cpp 
	                             StreamWriter.h 
	gnu/llvm/tools/llvm-rtdyld: Makefile 
	gnu/llvm/tools/llvm-shlib: Makefile 
	gnu/llvm/tools/llvm-size: Makefile 
	gnu/llvm/tools/llvm-split: Makefile 
	gnu/llvm/tools/llvm-stress: Makefile 
	gnu/llvm/tools/llvm-symbolizer: Makefile 
	gnu/llvm/tools/lto: Makefile 
	gnu/llvm/tools/obj2yaml: Makefile 
	gnu/llvm/tools/opt: Makefile 
	gnu/llvm/tools/sancov: Makefile 
	gnu/llvm/tools/verify-uselistorder: Makefile 
	gnu/llvm/tools/yaml2obj: Makefile 
	gnu/llvm/unittests: Makefile Makefile.unittest 
	gnu/llvm/unittests/ADT: Makefile 
	gnu/llvm/unittests/Analysis: Makefile 
	gnu/llvm/unittests/AsmParser: Makefile 
	gnu/llvm/unittests/Bitcode: Makefile 
	gnu/llvm/unittests/CodeGen: Makefile 
	gnu/llvm/unittests/DebugInfo: Makefile 
	gnu/llvm/unittests/DebugInfo/DWARF: Makefile 
	gnu/llvm/unittests/DebugInfo/PDB: Makefile 
	gnu/llvm/unittests/ExecutionEngine: Makefile 
	gnu/llvm/unittests/ExecutionEngine/MCJIT: Makefile 
	gnu/llvm/unittests/ExecutionEngine/Orc: Makefile 
	gnu/llvm/unittests/IR: Makefile 
	gnu/llvm/unittests/LineEditor: Makefile 
	gnu/llvm/unittests/Linker: Makefile 
	gnu/llvm/unittests/MC: Makefile YAMLTest.cpp 
	gnu/llvm/unittests/Option: Makefile 
	gnu/llvm/unittests/ProfileData: Makefile 
	gnu/llvm/unittests/Support: Makefile StreamingMemoryObject.cpp 
	                            TargetRegistry.cpp 
	gnu/llvm/unittests/Transforms: Makefile 
	gnu/llvm/unittests/Transforms/IPO: LowerBitSets.cpp Makefile 
	gnu/llvm/unittests/Transforms/Utils: Makefile 
	gnu/llvm/utils : Makefile llvm.natvis 
	gnu/llvm/utils/FileCheck: Makefile 
	gnu/llvm/utils/Misc: mergefunctions.clang.svn.patch 
	gnu/llvm/utils/PerfectShuffle: Makefile 
	gnu/llvm/utils/TableGen: Makefile module.modulemap 
	gnu/llvm/utils/buildit: GNUmakefile build_llvm 
	gnu/llvm/utils/count: Makefile 
	gnu/llvm/utils/fpcmp: Makefile 
	gnu/llvm/utils/llvm-lit: Makefile 
	gnu/llvm/utils/not: Makefile 
	gnu/llvm/utils/unittest: Makefile 
	gnu/llvm/utils/unittest/UnitTestMain: Makefile 
	gnu/llvm/utils/unittest/googletest: Makefile 
	gnu/llvm/utils/yaml-bench: Makefile 

Log message:
Merge LLVM 3.9.1


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/14 13:08:13

src/gnu/usr.bin/clang/libLLVMCoverage

Update of /cvs/src/gnu/usr.bin/clang/libLLVMCoverage
In directory cvs.openbsd.org:/tmp/cvs-serv25216/libLLVMCoverage

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMCoverage added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/14 13:08:13

src/gnu/usr.bin/clang/libLLVMDebugInfoCodeView

Update of /cvs/src/gnu/usr.bin/clang/libLLVMDebugInfoCodeView
In directory cvs.openbsd.org:/tmp/cvs-serv25216/libLLVMDebugInfoCodeView

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMDebugInfoCodeView added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/14 13:08:13

src/gnu/usr.bin/clang/libLLVMGlobalISel

Update of /cvs/src/gnu/usr.bin/clang/libLLVMGlobalISel
In directory cvs.openbsd.org:/tmp/cvs-serv25216/libLLVMGlobalISel

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMGlobalISel added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/14 13:12:42

Modified files:
	gnu/usr.bin/clang: Makefile 
	gnu/usr.bin/clang/clang: 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/llvm/AArch64: Makefile 
	gnu/usr.bin/clang/include/llvm/Config: config.h llvm-config.h 
	gnu/usr.bin/clang/include/llvm/Support: DataTypes.h 
	gnu/usr.bin/clang/libLLVMAArch64CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMAnalysis: Makefile 
	gnu/usr.bin/clang/libLLVMAsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMCore: Makefile 
	gnu/usr.bin/clang/libLLVMInstrumentation: Makefile 
	gnu/usr.bin/clang/libLLVMMC: Makefile 
	gnu/usr.bin/clang/libLLVMObject: Makefile 
	gnu/usr.bin/clang/libLLVMPowerPCCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMProfileData: Makefile 
	gnu/usr.bin/clang/libLLVMScalarOpts: Makefile 
	gnu/usr.bin/clang/libLLVMSelectionDAG: Makefile 
	gnu/usr.bin/clang/libLLVMSparcCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMSupport: Makefile 
	gnu/usr.bin/clang/libLLVMTransformUtils: Makefile 
	gnu/usr.bin/clang/libLLVMVectorize: Makefile 
	gnu/usr.bin/clang/libLLVMX86CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMX86Desc: Makefile 
	gnu/usr.bin/clang/libLLVMipo: Makefile 
	gnu/usr.bin/clang/libclangBasic: Makefile 
	gnu/usr.bin/clang/libclangCodeGen: Makefile 
	gnu/usr.bin/clang/llvm-tblgen: Makefile 
Added files:
	gnu/usr.bin/clang/libLLVMCoverage: Makefile 
	gnu/usr.bin/clang/libLLVMDebugInfoCodeView: Makefile 
	gnu/usr.bin/clang/libLLVMGlobalISel: Makefile 

Log message:
Update clang build infrastructure for LLVM 3.9.1

"go ahead" kettenis@
"just go ahead" deraadt@
"sounds good to me" stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/14 13:19:39

Modified files:
	gnu/llvm/lib/Target/AArch64: AArch64ISelLowering.cpp 
	                             AArch64Subtarget.h 

Log message:
Disable the Load Stack Guard for OpenBSD on AArch64.  We don't use it
on any other platform and it causes a segfault in combination with our
IR Stack Guard.

"looks reasonable" kettenis@
"looks good to me" stefan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/14 17:57:00

Modified files:
	lang/guile2    : Makefile 

Log message:
Mark this as broken everywhere not just amd64 and i386 as the build also
hangs on arm.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/14 23:16:05

Modified files:
	usr.sbin/ftp-proxy: ftp-proxy.8 

Log message:
fix typo; from semarie


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/15 02:59:11

Modified files:
	multimedia/libvpx: Makefile distinfo 
	multimedia/libvpx/patches: patch-configure patch-examples_mk 
	                           patch-libs_mk 

Log message:
Update to libvpx-1.6.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/15 03:01:41

Modified files:
	www/lighttpd   : Makefile distinfo 

Log message:
Update to lighttpd-1.4.45.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/15 04:33:04

Modified files:
	faq/pf         : ftp.html 

Log message:
the user is _ftp_proxy, not only proxy.

found by mik j and semarie, thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	jsing@cvs.openbsd.org	2017/01/15 05:03:54

Modified files:
	.              : events.html 

Log message:
Add my upcoming linux.conf.au presentation on libtls.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/15 06:28:04

Modified files:
	net/py-zmq     : Makefile distinfo 
	net/py-zmq/pkg : PLIST 

Log message:
Update to py-zmq 16.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/15 06:50:53

Modified files:
	games/dustrac  : Makefile distinfo 
	games/dustrac/pkg: PLIST 

Log message:
Update to dustrac 1.12, from David Carlier, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/15 08:28:51

Modified files:
	usr.bin/mandoc : dba.c 

Log message:
When looking up macro values while the macro tables are being built
in makewhatis(8), use ohash rather than linear searches.

This was identified as the main makewhatis(8) performance bottleneck
by Baptiste Daroussin <bapt at FreeBSD>, who also suggested part
of the improved algorithm.

This reduces the run time of "makewhatis /usr/share/man" from eleven
to five seconds on my notebook.  Note that the changed code is not
used in apropos(1), so don't expect speedups there.

While here, sort macro values asciibetically, to improve reproducibility -
which still isn't perfect, but getting better.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/15 10:13:33

Log message:
    import ports/net/dnsdist, from Peter van Dijk with some tweaks by me, ok fcambus
    
    dnsdist is a highly DNS-, DoS- and abuse-aware loadbalancer. Its goal in
    life is to route traffic to the best server, delivering top performance
    to legitimate users while shunting or blocking abusive traffic.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20170115
    
    N ports/net/dnsdist/distinfo
    N ports/net/dnsdist/Makefile
    N ports/net/dnsdist/pkg/DESCR
    N ports/net/dnsdist/pkg/dnsdist.rc
    N ports/net/dnsdist/pkg/PLIST
    N ports/net/dnsdist/patches/patch-configure_ac
    N ports/net/dnsdist/patches/patch-build-aux_gen-version
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/15 10:14:02

Modified files:
	net            : Makefile 

Log message:
+dnsdist


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/15 10:58:00

Modified files:
	security/gnutls: Makefile distinfo 
	security/gnutls/pkg: PLIST 

Log message:
SECURITY update to gnutls-3.5.8.
- GnuTLS-SA-2017-1
- GnuTLS-SA-2017-2


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/15 11:13:56

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
Address _start relative to the current program counter, like we already
do for esym.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/15 11:16:55

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
When dropping to EL1 ensure we have written to all special registers by
moving the instruction barrier to just before we drop exception level.
Additionally, enable system register access for EL2.

From FreeBSD.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/15 11:19:00

Modified files:
	sys/arch/arm64/arm64: machdep.c 

Log message:
Make sure to also backup and restore the a4x bus space map function
so that we can initialize the console early.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/15 13:14:36

Modified files:
	usr.bin/tmux   : options.c 

Log message:
Append needs to go old,new not new,old...


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/15 13:16:22

Modified files:
	usr.bin/tmux   : options-table.c 

Log message:
Remove unused quiet option.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/15 13:22:33

Modified files:
	sys/arch/alpha/tc: cfb.c sfb.c 
	sys/arch/loongson/dev: radeonfb.c sisfb.c 
	sys/arch/luna88k/dev: lunafb.c 
	sys/arch/sgi/gio: grtwo.c light.c newport.c 

Log message:
Harmonize the way frame buffer drivers display resolution and color
depth when attaching.

OK visa@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/15 13:48:41

Modified files:
	usr.bin/tmux   : cmd-set-option.c cmd-show-options.c format.c 
	                 options-table.c options.c style.c tmux.c tmux.h 

Log message:
Major tidy up and rework of options tree and set-option/show-options
commands this pushes more of the code into options.c and ties it more
closely to the options table rather than having an unnecessary
split. Also add support for array options (will be used later). Only
(intentional) user visible change is that show-options output is now
passed through vis(3) with VIS_DQ so quotes are escaped.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/15 13:50:34

Modified files:
	usr.bin/tmux   : cmd-set-option.c 

Log message:
-q flag now needs to be checked in a couple more places.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2017/01/15 14:07:44

Modified files:
	app/cwm        : cwmrc.5 

Log message:
Typo on binding name; from Redouan Ait Mallouk.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/15 15:00:56

Modified files:
	usr.bin/tmux   : cfg.c cmd-command-prompt.c cmd-confirm-before.c 
	                 cmd-display-panes.c cmd-if-shell.c 
	                 cmd-set-hook.c cmd-string.c control.c 
	                 key-bindings.c tmux.h window-choose.c 

Log message:
It is silly for cmd_list_parse to return an integer error when it could
just return NULL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2017/01/15 15:29:46

Modified files:
	print/gutenprint/pkg: PLIST 

Log message:
Remove extra entries from PLIST
ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/15 15:41:50

Modified files:
	share/man/man5 : bsd.regress.mk.5 

Log message:
Add some guidelines how to write regression tests to the bsd.regress.mk(5)
man page.  The goal is that all tests behave alike to make automatic
testing easy.
input and OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/15 16:18:05

Modified files:
	sys/kern       : vfs_subr.c vfs_syscalls.c 

Log message:
When traversing the mount list, the current mount point is locked
with vfs_busy().  If the FOREACH_SAFE macro is used, the next pointer
is not locked and could be freed by another process.  Unless
necessary, do not use _SAFE as it is unsafe.  In vfs_unmountall()
the current pointer is actullay freed.  Add a comment that this
race has to be fixed later.
OK krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/15 17:12:15

Modified files:
	sysutils/nut/patches: patch-clients_Makefile_in 
	                      patch-drivers_usbhid-ups_c 
	                      patch-include_common_h 

Log message:
Regen patches.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/16 00:00:03

Modified files:
	share/man/man5 : bsd.regress.mk.5 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/16 00:04:50

Modified files:
	regress/sys/net/pflow: flow.10_4 flow.10_6 flow.pl 

Log message:
remove duration, it depends too much on the specific setup


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/16 00:05:52

Modified files:
	regress/sys/net/pflow: flow.10_4 flow.10_6 

Log message:
Somewhere between 5.9 and current gen_traffic started to produce one
packet more.
It is a bit unclear when and why this happened but it's not a
regression in pflow (verified with tcpdump), so adjust expected
counters accordingly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/01/16 01:51:50

Modified files:
	devel/cmake    : Makefile distinfo 
	devel/cmake/patches: patch-Modules_FindBoost_cmake 

Log message:
Update to cmake-3.7.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/01/16 01:55:41

Modified files:
	devel/libev    : Makefile distinfo 

Log message:
Update to libev-4.24


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/16 02:35:06

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
Prevent wireless frame injection attack described at 33C3 in the talk
titled "Predicting and Abusing WPA2/802.11 Group Keys" by Mathy Vanhoef.
https://media.ccc.de/v/33c3-8195-predicting_and_abusing_wpa2_802_11_group_keys

If an attacker knows the WPA group key the attacker could inject a unicast
frame by sending a group-encrypted frame to the AP with addresses set as:
addr1 (receiver): ff:ff:ff:ff:ff:ff
addr2 (source): MAC of attacker
addr3 (target): MAC of victim client

The AP would forward this frame as unicast, re-encrypted with the pair-wise
session key of the victim client. But an AP should not forward such frames.

Guessing a WPA group key used by an OpenBSD AP is hard because our random
numbers are actually random. So we are not vulnerable to this attack but
we are fixing the forwarding path anyway.

ok mpi@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/16 02:35:43

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
Reset block ack state and cancel related timeouts when a HT node disassociates.
The existing code (from damien@) already took care of freeing related buffers
but because block ack state was not reset we were still trying to use these
buffers if the node sent another A-MPDU. This problem only affects 11n hostap.
Fixes kernel crash reported by Timo Myyra on bugs@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/01/16 03:17:21

Modified files:
	security/pcsc-lite: Makefile distinfo 

Log message:
Update to pcsc-lite-1.8.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/01/16 03:17:41

Modified files:
	security/ccid  : Makefile distinfo 

Log message:
Update to ccid-1.4.26


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/16 03:49:35

Modified files:
	sys/net        : switchofp.c 

Log message:
Removed unused function that is a leftover from the old debug code.

OK rzalamena@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/16 03:58:35

Modified files:
	sys/net        : switchofp.c 

Log message:
The term "pipline" is used in many places, rename it to pipeline.

It was either a typo or a funny abbreviation.

OK rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/16 04:13:51

Modified files:
	devel/mygui/patches: patch-Common_Base_Ogre_BaseManager_cpp 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/16 04:20:33

Modified files:
	sys/net        : switchofp.c 

Log message:
Add missing declarations found with -Wmissing-declarations


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/16 04:20:57

Modified files:
	sys/net        : switchofp.c 

Log message:
spacing


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/16 04:25:14

Modified files:
	sys/net        : switchctl.c 

Log message:
Fix declaration: vsw_dev2sc has been renamed to switch_dev2sc.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/16 04:54:26

Modified files:
	sys/dev/pv     : hyperv.c 

Log message:
Make sure we're producing a 64-bit value when shifting left

Reported by brad and kettenis separately; Mark has even sent me a diff
and told to commit it with OK kettenis.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/01/16 06:03:18

Modified files:
	usr.sbin/switchd: switchd.conf.5 

Log message:
pasto; snmpd->switchd in sample "include" line. ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/16 07:33:38

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.22.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/16 07:34:03

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.22.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/16 07:34:24

Modified files:
	mail/evolution-ews: Makefile distinfo 

Log message:
Update to evolution-ews-3.22.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/16 07:49:14

Modified files:
	usr.bin/tmux   : client.c cmd-set-option.c cmd-show-options.c 
	                 cmd-string.c cmd.c format.c key-bindings.c 
	                 options-table.c options.c tmux.h 

Log message:
getopt() has a struct option so just return to using options_entry.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/16 07:52:26

Modified files:
	usr.bin/tmux   : client.c cmd-string.c cmd.c key-bindings.c 
	                 options-table.c tmux.h 

Log message:
Revert WIP parts of previous I didn't mean to commit yet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/16 08:23:14

Modified files:
	graphics/pngcrush: Makefile distinfo 

Log message:
Update to pngcrush-1.8.11.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/01/16 10:36:35

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
ftp.eu.openbsd.org now speaks https. Thanks Stockholm University.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/16 11:09:35

Modified files:
	sys/dev/pci    : mpii.c mpiireg.h 

Log message:
Clean up SCSI operation status and state defines


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/16 11:18:16

Modified files:
	sys/dev/pci    : mpii.c 

Log message:
Let it compile with debugging enabled


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/16 12:12:36

Modified files:
	regress/sys/ffs/nfs: Makefile 
	regress/sys/nfs: Makefile 

Log message:
SIGTERM does not reliably terminate mountd(8), use -KILL for cleanup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/16 12:20:02

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 

Log message:
Update to gdk-pixbuf-2.36.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/16 13:30:33

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/16 13:51:05

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.25.3.


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/01/16 14:26:32

Modified files:
	build          : support.dat 

Log message:
Updated info for Evolix

ok tj@


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/01/16 14:29:02

Modified files:
	build          : support.dat 

Log message:
Add Evolix Infogerance Inc

ok tj@


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/01/16 14:30:27

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/01/16 14:34:54

Modified files:
	lang/jruby     : Makefile distinfo 
	lang/jruby/pkg : PLIST 

Log message:
Update to JRuby 9.1.7.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/16 15:02:30

Modified files:
	net/unifi      : Makefile distinfo 
	net/unifi/pkg  : PLIST 

Log message:
update to UniFi 5.4.9


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/01/16 15:13:32

Modified files:
	build/mirrors  : ftp.html.end 

Log message:
bump the minimum disk space for mirrors a bit; 500GB is definitely not enough
any more with arm packages, recommending 600 as a minimum and suggesting more
for --delay-updates etc.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/01/16 15:14:46

Modified files:
	.              : ftp.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/16 15:43:49

Modified files:
	lib/fontconfig/conf.d: Makefile 

Log message:
Install new available config files, missed in fontconfig update.
Pointed out by Nils Reusse <n.reusse@hxgn.net>. Thanks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/16 15:44:23

Modified files:
	distrib/sets/lists/xbase: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/16 16:45:08

Modified files:
	usr.bin/tmux   : options.c 

Log message:
Correctly handle -style options without all of a corresponding -fg/-bg/-attr.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/16 18:47:46

Modified files:
	usr.bin/mandoc : eqn_html.c html.c html.h man_html.c mdoc_html.c 
	                 tbl_html.c 

Log message:
Simplify the usage of print_otag() by making it accept a variable
number of arguments.

Delete struct htmlpair and all the PAIR_*() macros.
Delete enum htmlattr, handle that in print_otag() instead.

Minus 190 lines of code; no functional change except better ordering
of attributes (class before style) in three cases.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/16 19:57:09

Modified files:
	devel/py-dulwich: Makefile distinfo 
	devel/py-dulwich/pkg: PLIST 

Log message:
Update to dulwich 0.16.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/16 19:57:17

Modified files:
	devel/py-gevent: Makefile distinfo 
	devel/py-gevent/pkg: PLIST 

Log message:
Update to gevent 1.2.1.

Special thanks to sthen@ for cluestick.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/16 20:10:21

Modified files:
	devel/py-dulwich: Makefile distinfo 

Log message:
Update to dulwich 0.16.3


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/01/16 21:22:00

Modified files:
	faq/pf         : example1.html 

Log message:
remove a dnscrypt remnant i missed before, note that the "martians"
table idea can break double nat and tweak some wording.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/16 23:21:41

Modified files:
	usr.sbin/nsd   : configlexer.lex configure.ac radtree.c remote.c 
	                 xfrd-disk.c xfrd-disk.h xfrd-tcp.c xfrd.c 
	                 xfrd.h 

Log message:
Update to nsd 4.1.14
OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/16 23:21:58

Modified files:
	usr.sbin/nsd   : configure 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/16 23:37:02

Modified files:
	mail/swaks     : Makefile 

Log message:
Kill PORTROACH hint, doesn't seem to help.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/16 23:42:06

Modified files:
	mail/swaks     : Makefile distinfo 
Removed files:
	mail/swaks/patches: patch-swaks 

Log message:
Update to swaks-20170101.0

Adds Per-Recipient Data Response and PROXY protocol support, and fixes
an encoding error in XCLIENT.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/16 23:46:39

Modified files:
	mail/swaks     : Makefile 

Log message:
Add PKG_ARCH=* + tweak layout, spacing, licensing info


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/16 23:58:10

Modified files:
	sysutils/nut   : Makefile 
Added files:
	sysutils/nut/patches: patch-tools_nut-scanner_nutscan-init_c 

Log message:
Unbreak nut-scanner+usb, dlopen libusb.so instead of a distro-specific name

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/17 00:48:39

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.4.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/17 00:49:01

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/17 00:49:27

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.37.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/17 02:21:50

Modified files:
	usr.sbin/switchd: ofp13.c 

Log message:
Fix OXM parser for set-field messages. Found it the hardway while
testing set-field configuration.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/17 02:36:28

Modified files:
	sys/net        : switchofp.c 

Log message:
Add more action specific validations, unbreak instructions validation
with multiple actions and add more error reports with what went wrong.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2017/01/17 04:22:50

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
update to afl-2.36b
OK jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/17 05:30:35

Modified files:
	sys/net        : if_switch.c switchofp.c 

Log message:
Clean-up switch(4) device by removing excess prototypes, verbose debugs
and unused functions.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/17 05:34:21

Modified files:
	sys/net        : switchofp.c 

Log message:
Fix a panic when set-field with VLAN is set, but no VLANs were
classified in the packet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/01/17 05:58:26

Log message:
    import editors/ghostwriter
    
    - https://wereturtle.github.io/ghostwriter/
    - https://github.com/wereturtle/ghostwriter/
    
    OK landry@
    
    $ cat pkg/DESCR
    ghostwriter is a Windows and Unix text editor for Markdown, providing a
    relaxing, distraction-free writing environment, whether your masterpiece
    be that next blog post, your school paper, or your NaNoWriMo novel.
    
    * Syntax highlighting of Markdown
    * Navigation of document headings
    * Full-screen mode
    * Focus mode that highlights the current sentence, line, three lines, or
    paragraph
    * Two built-in themes, one light and one dark
    * Theme creator for custom colors and background images
    * Spell checking with Hunspell
    * A Live word count
    * A live HTML preview as you type
    * Use of custom CSS style sheets for HTML preview
    * Image URL insertion via dragging and dropping an image file into the editor
    * Sundown processor built in for preview and export to HTML
    * Interoperability with the following Markdown processors (if installed) for
    preview and export to popular document formats, such as PDF, ODT, and RTF:
    * Pandoc
    * MultiMarkdown
    * Discount
    * cmark
    
    Status:
    
    Vendor Tag:	awolk
    Release Tags:	awolk_20170117
    
    N ports/editors/ghostwriter/Makefile
    N ports/editors/ghostwriter/distinfo
    N ports/editors/ghostwriter/pkg/PLIST
    N ports/editors/ghostwriter/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/01/17 06:00:00

Modified files:
	editors        : Makefile 

Log message:
Plug editors/ghostwriter to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/01/17 06:03:30

Modified files:
	print/poppler  : Makefile distinfo 

Log message:
Update to poppler-0.51.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/17 06:19:37

Modified files:
	regress/lib/libtls/tls: tlstest.c 

Log message:
Correctly tls_config_set_ca_file() return value (no effective change).

Spotted by inoguchi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/01/17 07:04:15

Modified files:
	www/varnish    : distinfo 
	www/varnish/pkg: MESSAGE PLIST 

Log message:
Upgrade for Varnish to 5.0.0:

https://varnish-cache.org/releases/rel5.0.0.html#rel5-0-0

So we jump to 5.0 now, Tests are welcomed.

Also, added myself to maintainers. Jim is sort of off-line for a while
now.

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/01/17 07:42:14

Modified files:
	databases/p5-Redis: Makefile distinfo 

Log message:
Little update for p5-Redis to 1.991.

OK benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/01/17 07:46:19

Modified files:
	www/aria2      : Makefile distinfo 
Removed files:
	www/aria2/patches: patch-src_Makefile_in 

Log message:
Upgrade for Aria2 to 1.31.0:

https://github.com/aria2/aria2/releases/tag/release-1.31.0

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/17 08:32:39

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c mdoc_html.c 

Log message:
Completely delete the buf field of struct html and all the buf*()
interfaces.  Such a static buffer was a bad idea in the first place,
causing unfixable truncation that was only prevented by triggering
an assertion failure.  Instead, let the small number of remaining
users allocate and free their own, temporary dynamic buffers,
or for the case of .Xr and .In, pass the original data to be
assembled in print_otag().


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/17 09:09:15

Modified files:
	mail/swaks     : Makefile 
	mail/swaks/pkg : DESCR 

Log message:
Stop mentioning outdated optional deps.

p5-Authen-NTLM is already in RUN_DEPENDS, and swaks now uses Digest::SHA
from base, not p5-Digest-SHA1.  ok sthen@ schwarze@ benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/17 09:16:02

Modified files:
	net/unworkable : Makefile 

Log message:
Better HOMEPAGE, code.google.com is dead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/17 09:18:18

Modified files:
	net/unworkable : Makefile 
	net/ipfreely   : Makefile 
	graphics/pycha : Makefile 
	x11/wmclockmon : Makefile 

Log message:
Remove MAINTAINER.

Mail address bounces, no reply from alternative address.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/17 09:30:54

Modified files:
	usr.sbin/ripd  : interface.c neighbor.c ripe.h 

Log message:
Keep track of dead peers instead of freeing them right away.

This mimics what ospfd does, and avoids a (mostly harmless)
use-after-free.  Delay suggested by claudio@, ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/17 09:47:55

Modified files:
	sys/net        : switchofp.c 

Log message:
Initialize swas_actions for set-field with the expected pointer to the
swpld_set_fields vector. This makes write-action work with set-field
actions.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/17 09:54:40

Modified files:
	sys/net        : switchofp.c 

Log message:
Make switch(4) compile with debug again.


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2017/01/17 10:19:21

Modified files:
	sys/uvm        : uvm_addr.c uvm_addr.h uvm_map.c 

Log message:
Remove uaddr_hint allocator

The hint allocator would have to check that the
allocation does not overlap with brk, stack or text
areas. This would make the address selectors too
entagled. Just use the rnd allocator for hinted allocations
in case pivots are used. This also reduces the amount of code somewhat.

ok kettenis visa deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/17 12:05:47

Modified files:
	sbin/route     : route.c 

Log message:
In monitor mode, also print the interface mtu of RTM_IFINFO messages.

ok deraadt@ millert@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/17 12:23:42

Modified files:
	sysutils/ansible: Makefile distinfo 
	sysutils/ansible/patches: 
	                          patch-lib_ansible_module_utils_facts_py 
	sysutils/ansible/pkg: PLIST 

Log message:
update to ansible-2.2.1.0, includes a security fix for CVE-2016-9587


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/17 13:07:39

Modified files:
	sys/dev/ic     : athn.c 

Log message:
Add missing malloc(9) return value check in athn_node_alloc().
ok millert@ tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/17 13:35:49

Modified files:
	sys/conf       : GENERIC 

Log message:
Enable switch(4).

ok jca@, reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2017/01/17 13:58:56

Modified files:
	distrib/syspatch: bsd.syspatch.mk 

Log message:
rework some of the variables for better directory name handling and
add support for linking against libraries inside the fake root so
that syspatches can include static binaries linked with the fixed libraries


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/17 14:08:34

Modified files:
	share/man/man5 : pf.conf.5 

Log message:
"hosts" is optional; from matthew martin
ok henning


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/17 14:51:01

Modified files:
	usr.sbin/vmd   : config.c control.c i8253.c i8259.c 
	                 loadfile_elf.c mc146818.c pci.c proc.c virtio.c 
	                 vmm.c 

Log message:
Nuke some whitespace that keeps poking me in the eye as I try to
steal code.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/17 15:10:56

Modified files:
	sbin/iked      : control.c 
	usr.sbin/bgpd  : config.c 
	usr.sbin/httpd : proc.c 
	usr.sbin/ldapd : log.c 
	usr.sbin/ldomctl: config.c 
	usr.sbin/ripd  : control.c 
	usr.sbin/snmpd : proc.c 
	usr.sbin/switchd: control.c proc.c 

Log message:
Nuke some whitespace that keeps poking me in the eye as I try to
steal code.


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2017/01/17 16:28:04

Modified files:
	libexec/spamd  : spamd.c 

Log message:
- spamd(8)'s -l accepts an IP address as argument to bind(2) and it calls
inet_pton(3) to check if it's valid and since that function doesn't provide
a proper errno (POSIX doesn't mandate to do so) then if a string is given we
may get this message:
spamd: inet_pton: Undefined error: 0

- Instead replace that code to use getaddrinfo(3) from which is possible to get
a proper error message, and at the same time being able to parse IPs and
hostnames (if either the IP or host is not local then the next bind(2) will
fail)

- By default without arguments, spamd(8) will still bind(2) to 127.0.0.1 as
it did before

With feedback from deraadt@ and OK beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/17 21:28:45

Modified files:
	usr.sbin/bgpd  : parse.y 

Log message:
while a u_int is large enough for 32bit-asns, it is not big enough for
some of the magic values we use to indicate '*' or neighbor-as.

fixes "allow from any large-community neighbor-as:*:*"


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/18 00:23:18

Modified files:
	games/dustrac  : Makefile 

Log message:
Switch to use GLEW instead of plain OpenGL, fixes a segfault upon exit.
From David Carlier.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/18 01:38:34

Modified files:
	sys/arch/i386/i386: vmm.c 

Log message:
i386 version of a fix that went in for amd64 previously

(cpuid cacheline size info)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/18 01:40:50

Modified files:
	usr.bin/tmux   : options.c cmd-show-options.c 

Log message:
options_match needs to explicitly check for user options.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/18 01:43:21

Modified files:
	usr.bin/tmux   : options.c 

Log message:
Do not reset idx, it has just been set.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/18 01:47:00

Modified files:
	sys/net        : if_pflow.c 

Log message:
Allow changing of receiver ip/port without switching address family.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/18 01:48:06

Modified files:
	sys/net        : if_pflow.c 

Log message:
Allow changing of sender ip/port without switching address family.
With this regress tests pass again.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/18 02:04:02

Modified files:
	regress/lib/libcrypto: Makefile 

Log message:
unhook ocsp test from the default since it currently requires network access and
therefore appears to break in bluhm's test setup


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/18 03:00:50

Modified files:
	usr.bin/tmux   : arguments.c 

Log message:
Run arguments through vis() as well when printing them.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/18 03:08:05

Modified files:
	usr.bin/tmux   : arguments.c cmd-show-options.c tmux.h utf8.c 

Log message:
Plain stravis() because it will mangle UTF-8 characters, so add
utf8_stravis() which calls our existing utf8_strvis() and use it instead


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/18 04:56:10

Modified files:
	regress/sys/kern/mount: Makefile 
	regress/sys/ffs/ffs: Makefile 
	regress/sys/ffs/nfs: Makefile 
	regress/sys/nfs: Makefile 

Log message:
Do not unconfigure mount points, vnd devices and NFS daemons during
"make clean".  "make build" does a recursive "make cleandir" and
there this behavior is undesired unexpected.
reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/18 05:42:28

Modified files:
	devel/py-gevent: Makefile 
Added files:
	devel/py-gevent/patches: patch-setup_py 

Log message:
This patch should have been included in previous commit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/18 05:43:32

Modified files:
	mail/s-nail    : Makefile distinfo 

Log message:
Update to s-nail 14.8.15.

While at it, fix homepage.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/18 06:18:07

Modified files:
	share/man/man9 : srp_enter.9 

Log message:
didnt rename enough things after copy/paste


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/01/18 06:43:46

Modified files:
	www/varnish    : Makefile 

Log message:
Fix Makefile


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/01/18 07:08:59

Modified files:
	devel/fossil   : Makefile distinfo 

Log message:
Update fossil to 1.37.

Changelog online: http://fossil-scm.org/index.html/doc/trunk/www/changes.wiki#v1_37


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/18 10:22:46

Modified files:
	sys/dev/pv     : if_hvn.c 

Log message:
Fixup typos reported by Adam Jeanguenat <avj at fig ! 6v6 ! org>, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/18 10:59:01

Modified files:
	sys/netinet6   : icmp6.c 

Log message:
Use LIST_FOREACH to traverse icmp6_mtudisc_callbacks.  Fix whitespaces.
No functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/18 12:22:18

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c mdoc_html.c 
	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/eqn: extract.pl 

Log message:
Make HTML output more human readable by overhauling line break logic
around tags and by introducing some simple indentation.
No change of HTML semantics intended.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/18 12:26:59

Modified files:
	regress/sys/netinet/pmtu: Makefile tcp_connect.py 
	                          tcp_connect6.py udp_echo6.py 
Added files:
	regress/sys/netinet/pmtu: tcp_atomicfrag6.py udp_atomicfrag6.py 

Log message:
Add tests that generate IPv6 atomic fragments for UDP and TCP by
sending an ICMP6 too big packet with MTU 1272.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/18 12:57:56

Modified files:
	usr.sbin/hostctl: hostctl.8 

Log message:
Fixup a typo and provide an example for Hyper-V


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/18 13:07:40

Modified files:
	share/man/man9 : rasops.9 

Log message:
Document the RI_CLEARMARGINS flag.

OK visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/18 14:28:35

Modified files:
	archivers/xz   : Makefile distinfo 
	archivers/xz/patches: patch-config_h_in 

Log message:
maintenance update to 5.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/18 15:12:32

Modified files:
	graphics/png   : Makefile distinfo 

Log message:
maintenance update to 1.6.28; from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/18 15:18:47

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Don't forget to free bounce buffer data when destroying the ring


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/18 16:03:44

Modified files:
	regress/sys/net/pf_forward: ping6_mtu.py ping_mtu.py 
	regress/sys/net/pf_fragment: frag.py frag6.py frag6_cutnew.py 
	                             frag6_cutold.py frag6_dropnew.py 
	                             frag6_dropold.py frag6_ext.py 
	                             frag_cutnew.py frag_cutold.py 
	                             frag_dropnew.py frag_dropold.py 
	                             ping6_cksum.py ping6_mtu_1300.py 
	                             ping_cksum.py ping_mtu_1300.py 
	                             udp6_cksum.py udp_cksum.py 
	regress/sys/net/pf_state: challenge_ack.py 
	regress/sys/netinet/pmtu: tcp_atomicfrag6.py tcp_connect.py 
	                          tcp_connect6.py udp_atomicfrag6.py 
	                          udp_echo6.py 
	regress/sys/netinet6/frag6: frag6.py frag6_ext.py frag6_hop.py 
	                            frag6_mf0atomic.py frag6_mf0long.py 
	                            frag6_mf0middle.py frag6_mf0short.py 
	                            frag6_mf1end.py frag6_opt.py 
	                            frag6_overatomic.py 
	                            frag6_overdrop.py frag6_overhead.py 
	                            frag6_overhead0.py frag6_overtail.py 
	                            frag6_padding.py frag6_permute.py 
	                            frag6_refrag.py frag6_shortatomic.py 
	                            frag6_timeout.py frag6_udpatomic.py 
	                            frag6_udpheader.py 
	                            frag6_udppayload.py 
	                            frag6_zerofirst.py 
	                            frag6_zerosecond.py 
	regress/sys/netinet6/rh0: rh0_empty.py rh0_final.py rh0_frag2.py 
	                          rh0_frag_empty.py rh0_frag_final.py 
	                          rh0_frag_route.py rh0_none.py 
	                          rh0_route.py 

Log message:
Do not use privileged or NFS source ports for UDP packets as inetd
ignores such packets.  This should avoid some sporadic failures.
While there, use variable names consistently in all tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/18 16:10:42

Modified files:
	shells/yash    : Makefile distinfo 
	shells/yash/patches: patch-variable_c 
	shells/yash/pkg: PLIST 

Log message:
update to 2.44 for various fixes and better POSIX compliance


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/18 17:03:52

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
delete some empty lines found when diffing amd64 vs i386


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/18 17:04:38

Modified files:
	sys/arch/i386/i386: vmm.c 

Log message:
reduce differences to amd64


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 17:09:54

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
SECURITY update to webkitgtk4-2.14.3.
CVE-2016-7656, CVE-2016-7635, CVE-2016-7654, CVE-2016-7639, CVE-2016-7645,
CVE-2016-7652, CVE-2016-7641, CVE-2016-7632, CVE-2016-7599, CVE-2016-7592,
CVE-2016-7589, CVE-2016-7623, CVE-2016-7586


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 17:16:19

Modified files:
	x11/gnome/py-atspi: Makefile distinfo 
	x11/gnome/py-atspi/pkg: PLIST 

Log message:
Update to py3-atspi-2.20.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 17:20:23

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 17:21:12

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.38.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 17:25:00

Modified files:
	security/libtasn1: Makefile distinfo 
Removed files:
	security/libtasn1/patches: patch-configure_ac 

Log message:
Update to libtasn1-4.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 17:31:42

Modified files:
	multimedia/xine-lib: Makefile 
Added files:
	multimedia/xine-lib/patches: patch-src_xine-utils_memcpy_c 

Log message:
memcpy: fix segfault in times(NULL).

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/18 18:00:11

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c mdoc_html.c 
	regress/usr.bin/mandoc/char/unicode: latin1.out_html 

Log message:
Implement line breaking of the generated HTML code at space characters
in filled text.  This does not affect HTML semantics, but makes the
HTML code even more humanly readable.

While here,
- collapse multiple consecutive space characters in filled text
- and insert a blank between style entries.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/18 18:07:36

Modified files:
	sys/net80211   : ieee80211_ioctl.c 

Log message:
Enable TKIP as pairwise cipher when ifconfig's wpaprotos option enables WPA1.
Without this fix it was impossible to use WPA1 without also making use of the
wpaciphers option to enable TKIP. Problem noticed by pirofti@.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/18 18:33:45

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 

Log message:
SVM: vcpu_init_svm - allocate memory for control structures (vmcb,
msr bitmap, ioio bitmap, and host state save area)


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/18 18:34:21

Modified files:
	sys/arch/i386/include: vmmvar.h 
	sys/arch/i386/i386: vmm.c 

Log message:
SVM: vcpu_init_svm - allocate memory for control structures (vmcb,
msr bitmap, ioio bitmap, and host state save area)

matches amd64 version previously committed


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/18 18:46:20

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/i386/i386: vmm.c 

Log message:
SVM: matching vcpu deinit functions for previous commits


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/18 19:55:18

Modified files:
	sys/net        : route.h 

Log message:
use a space instead of a tab, for consistancy

requested by and OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 20:08:52

Modified files:
	print/cups     : Makefile distinfo 
	print/cups/patches: patch-backend_ipp_c 
	                    patch-config-scripts_cups-common_m4 

Log message:
Update to cups-2.2.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/18 20:09:18

Modified files:
	sys/arch/arm64/arm64: bus_dma.c 

Log message:
There are currently two pmap flags on arm64 that are supposed to be
used for uncached memory: CI (cache inhibit) and DEV (devices). The
pmap currently does not handle DEV but instead sets the device mode
for CI.  Until we have bus dma running properly and know the system
better, make bus dma use CI for its pages to work around the panic.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 20:24:16

Modified files:
	security/libgcrypt: Makefile distinfo 

Log message:
Update to libgcrypt-1.7.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 20:28:28

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 20:28:40

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.39.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 20:29:05

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-140.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/18 21:06:26

Modified files:
	sys/net        : route.c 

Log message:
remove the BFD flag on a route *before* we actually delete the route

should fix a panic reported by Hrvoje Popovski


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 21:28:47

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/pkg: PLIST 

Log message:
Update to cups-filters-1.13.3.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/01/18 22:43:17

Log message:
    Import Mesa 13.0.3
    
    Status:
    
    Vendor Tag:	mesa
    Release Tags:	mesa-13_0_3
    
    U xenocara/lib/mesa/autogen.sh
    U xenocara/lib/mesa/aclocal.m4
    U xenocara/lib/mesa/install-lib-links.mk
    U xenocara/lib/mesa/VERSION
    U xenocara/lib/mesa/common.py
    U xenocara/lib/mesa/Makefile.in
    U xenocara/lib/mesa/SConstruct
    U xenocara/lib/mesa/configure.ac
    C xenocara/lib/mesa/configure
    U xenocara/lib/mesa/Makefile.am
    U xenocara/lib/mesa/install-gallium-links.mk
    U xenocara/lib/mesa/scons/custom.py
    U xenocara/lib/mesa/scons/crossmingw.py
    U xenocara/lib/mesa/scons/llvm.py
    U xenocara/lib/mesa/scons/source_list.py
    U xenocara/lib/mesa/scons/dxsdk.py
    U xenocara/lib/mesa/scons/x11.py
    U xenocara/lib/mesa/scons/fixes.py
    U xenocara/lib/mesa/scons/gallium.py
    U xenocara/lib/mesa/docs/xlibdriver.html
    U xenocara/lib/mesa/docs/debugging.html
    U xenocara/lib/mesa/docs/relnotes.html
    U xenocara/lib/mesa/docs/developers.html
    U xenocara/lib/mesa/docs/shading.html
    U xenocara/lib/mesa/docs/VERSIONS
    U xenocara/lib/mesa/docs/contents.html
    U xenocara/lib/mesa/docs/ARB_color_buffer_float.txt
    U xenocara/lib/mesa/docs/utilities.html
    U xenocara/lib/mesa/docs/gears.png
    U xenocara/lib/mesa/docs/perf.html
    U xenocara/lib/mesa/docs/llvmpipe.html
    U xenocara/lib/mesa/docs/conform.html
    U xenocara/lib/mesa/docs/faq.html
    U xenocara/lib/mesa/docs/mangling.html
    U xenocara/lib/mesa/docs/README.UVD
    U xenocara/lib/mesa/docs/autoconf.html
    U xenocara/lib/mesa/docs/extensions.html
    U xenocara/lib/mesa/docs/libGL.txt
    U xenocara/lib/mesa/docs/mesa.css
    U xenocara/lib/mesa/docs/systems.html
    U xenocara/lib/mesa/docs/README.WIN32
    U xenocara/lib/mesa/docs/precompiled.html
    U xenocara/lib/mesa/docs/lists.html
    U xenocara/lib/mesa/docs/sourcedocs.html
    U xenocara/lib/mesa/docs/sourcetree.html
    U xenocara/lib/mesa/docs/vmware-guest.html
    U xenocara/lib/mesa/docs/repository.html
    U xenocara/lib/mesa/docs/thanks.html
    U xenocara/lib/mesa/docs/helpwanted.html
    U xenocara/lib/mesa/docs/osmesa.html
    U xenocara/lib/mesa/docs/download.html
    U xenocara/lib/mesa/docs/intro.html
    U xenocara/lib/mesa/docs/install.html
    U xenocara/lib/mesa/docs/viewperf.html
    U xenocara/lib/mesa/docs/bugs.html
    U xenocara/lib/mesa/docs/patents.txt
    U xenocara/lib/mesa/docs/license.html
    U xenocara/lib/mesa/docs/postprocess.html
    U xenocara/lib/mesa/docs/dispatch.html
    U xenocara/lib/mesa/docs/index.html
    U xenocara/lib/mesa/docs/egl.html
    U xenocara/lib/mesa/docs/features.txt
    U xenocara/lib/mesa/docs/envvars.html
    U xenocara/lib/mesa/docs/devinfo.html
    U xenocara/lib/mesa/docs/application-issues.html
    U xenocara/lib/mesa/docs/README.VCE
    U xenocara/lib/mesa/docs/webmaster.html
    U xenocara/lib/mesa/docs/opengles.html
    U xenocara/lib/mesa/docs/versions.html
    U xenocara/lib/mesa/docs/specs/WL_create_wayland_buffer_from_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_control.spec
    U xenocara/lib/mesa/docs/specs/MESA_multithread_makecurrent.spec
    U xenocara/lib/mesa/docs/specs/MESA_ycbcr_texture.spec
    U xenocara/lib/mesa/docs/specs/MESA_query_renderer.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_frame_usage.spec
    U xenocara/lib/mesa/docs/specs/enums.txt
    U xenocara/lib/mesa/docs/specs/MESA_window_pos.spec
    U xenocara/lib/mesa/docs/specs/MESA_pack_invert.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_debug.spec
    U xenocara/lib/mesa/docs/specs/MESA_drm_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_release_buffers.spec
    U xenocara/lib/mesa/docs/specs/MESA_pixmap_colormap.spec
    U xenocara/lib/mesa/docs/specs/WL_bind_wayland_display.spec
    U xenocara/lib/mesa/docs/specs/EGL_MESA_platform_surfaceless.txt
    U xenocara/lib/mesa/docs/specs/MESA_set_3dfx_mode.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_signed_rgba.spec
    U xenocara/lib/mesa/docs/specs/MESA_image_dma_buf_export.txt
    U xenocara/lib/mesa/docs/specs/MESA_shader_integer_functions.txt
    U xenocara/lib/mesa/docs/specs/MESA_copy_sub_buffer.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_samples_identical.txt
    U xenocara/lib/mesa/docs/specs/MESA_agp_offset.spec
    U xenocara/lib/mesa/docs/specs/MESA_configless_context.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_integer_mix.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_array.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_resize_buffers.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_trace.spec
    U xenocara/lib/mesa/docs/specs/OLD/EGL_MESA_screen_surface.txt
    U xenocara/lib/mesa/docs/specs/OLD/MESA_program_debug.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_sprite_point.spec
    U xenocara/lib/mesa/docs/relnotes/10.5.8.html
    U xenocara/lib/mesa/docs/relnotes/8.0.5.html
    U xenocara/lib/mesa/docs/relnotes/9.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.1
    U xenocara/lib/mesa/docs/relnotes/10.5.0.html
    U xenocara/lib/mesa/docs/relnotes/6.4
    U xenocara/lib/mesa/docs/relnotes/12.0.1.html
    U xenocara/lib/mesa/docs/relnotes/3.2.1
    U xenocara/lib/mesa/docs/relnotes/7.9.1.html
    U xenocara/lib/mesa/docs/relnotes/6.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.html
    U xenocara/lib/mesa/docs/relnotes/11.0.7.html
    U xenocara/lib/mesa/docs/relnotes/10.6.5.html
    U xenocara/lib/mesa/docs/relnotes/7.7.html
    U xenocara/lib/mesa/docs/relnotes/6.5.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.3.html
    U xenocara/lib/mesa/docs/relnotes/6.2.1
    U xenocara/lib/mesa/docs/relnotes/9.2.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.2.html
    U xenocara/lib/mesa/docs/relnotes/3.3
    U xenocara/lib/mesa/docs/relnotes/11.1.3.html
    U xenocara/lib/mesa/docs/relnotes/5.0.2
    U xenocara/lib/mesa/docs/relnotes/11.0.5.html
    U xenocara/lib/mesa/docs/relnotes/3.5
    U xenocara/lib/mesa/docs/relnotes/7.5.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.1.html
    U xenocara/lib/mesa/docs/relnotes/10.5.3.html
    U xenocara/lib/mesa/docs/relnotes/11.0.1.html
    U xenocara/lib/mesa/docs/relnotes/13.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.2.9.html
    U xenocara/lib/mesa/docs/relnotes/6.5.1.html
    U xenocara/lib/mesa/docs/relnotes/7.0.html
    U xenocara/lib/mesa/docs/relnotes/5.0.1
    U xenocara/lib/mesa/docs/relnotes/10.5.1.html
    U xenocara/lib/mesa/docs/relnotes/10.1.5.html
    U xenocara/lib/mesa/docs/relnotes/8.0.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.6.6.html
    U xenocara/lib/mesa/docs/relnotes/6.4.1.html
    U xenocara/lib/mesa/docs/relnotes/7.11.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.8.html
    U xenocara/lib/mesa/docs/relnotes/7.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.10.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.1.html
    U xenocara/lib/mesa/docs/relnotes/3.4
    U xenocara/lib/mesa/docs/relnotes/10.2.4.html
    U xenocara/lib/mesa/docs/relnotes/11.0.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.2.html
    U xenocara/lib/mesa/docs/relnotes/6.3.1
    U xenocara/lib/mesa/docs/relnotes/4.0.1
    U xenocara/lib/mesa/docs/relnotes/7.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.3.2
    U xenocara/lib/mesa/docs/relnotes/10.3.5.html
    U xenocara/lib/mesa/docs/relnotes/7.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.4.html
    U xenocara/lib/mesa/docs/relnotes/6.0
    U xenocara/lib/mesa/docs/relnotes/9.2.3.html
    U xenocara/lib/mesa/docs/relnotes/11.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.3.2.html
    U xenocara/lib/mesa/docs/relnotes/7.10.html
    U xenocara/lib/mesa/docs/relnotes/7.8.html
    U xenocara/lib/mesa/docs/relnotes/7.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.7.html
    U xenocara/lib/mesa/docs/relnotes/12.0.3.html
    U xenocara/lib/mesa/docs/relnotes/6.3
    U xenocara/lib/mesa/docs/relnotes/7.10.1.html
    U xenocara/lib/mesa/docs/relnotes/7.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.3.html
    U xenocara/lib/mesa/docs/relnotes/4.0.2
    U xenocara/lib/mesa/docs/relnotes/13.0.1.html
    U xenocara/lib/mesa/docs/relnotes/6.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.html
    U xenocara/lib/mesa/docs/relnotes/10.4.3.html
    U xenocara/lib/mesa/docs/relnotes/10.5.9.html
    U xenocara/lib/mesa/docs/relnotes/9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.6.html
    U xenocara/lib/mesa/docs/relnotes/10.6.1.html
    U xenocara/lib/mesa/docs/relnotes/11.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.0.1
    U xenocara/lib/mesa/docs/relnotes/7.4.html
    U xenocara/lib/mesa/docs/relnotes/9.2.5.html
    U xenocara/lib/mesa/docs/relnotes/7.4.3.html
    U xenocara/lib/mesa/docs/relnotes/11.2.0.html
    U xenocara/lib/mesa/docs/relnotes/10.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.5.html
    U xenocara/lib/mesa/docs/relnotes/4.0
    U xenocara/lib/mesa/docs/relnotes/6.5.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.2.html
    U xenocara/lib/mesa/docs/relnotes/11.2.2.html
    U xenocara/lib/mesa/docs/relnotes/3.1
    U xenocara/lib/mesa/docs/relnotes/11.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.4.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.0.html
    U xenocara/lib/mesa/docs/relnotes/13.0.2.html
    U xenocara/lib/mesa/docs/relnotes/9.0.1.html
    U xenocara/lib/mesa/docs/relnotes/7.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.4.html
    U xenocara/lib/mesa/docs/relnotes/10.4.6.html
    U xenocara/lib/mesa/docs/relnotes/7.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.0.1.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/4.0.3
    U xenocara/lib/mesa/docs/relnotes/10.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.9.html
    U xenocara/lib/mesa/docs/relnotes/3.4.2
    U xenocara/lib/mesa/docs/relnotes/7.11.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.3.html
    U xenocara/lib/mesa/docs/relnotes/9.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.2.html
    U xenocara/lib/mesa/docs/relnotes/7.4.1.html
    U xenocara/lib/mesa/docs/relnotes/9.1.6.html
    U xenocara/lib/mesa/docs/relnotes/12.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.7.html
    U xenocara/lib/mesa/docs/relnotes/4.1
    U xenocara/lib/mesa/docs/relnotes/12.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.8.html
    U xenocara/lib/mesa/docs/relnotes/10.1.6.html
    U xenocara/lib/mesa/docs/relnotes/11.1.0.html
    U xenocara/lib/mesa/docs/relnotes/5.1
    U xenocara/lib/mesa/docs/relnotes/10.1.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.html
    U xenocara/lib/mesa/docs/relnotes/10.3.html
    U xenocara/lib/mesa/docs/relnotes/8.0.html
    U xenocara/lib/mesa/docs/relnotes/9.1.3.html
    U xenocara/lib/mesa/docs/relnotes/3.2
    U xenocara/lib/mesa/docs/relnotes/3.4.1
    U xenocara/lib/mesa/docs/relnotes/11.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.6.html
    U xenocara/lib/mesa/docs/relnotes/7.11.html
    U xenocara/lib/mesa/docs/relnotes/8.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.5.html
    U xenocara/lib/mesa/docs/relnotes/5.0
    U xenocara/lib/mesa/docs/relnotes/10.3.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.5.html
    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/6.2
    U xenocara/lib/mesa/docs/relnotes/7.8.1.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/10.2.8.html
    U xenocara/lib/mesa/docs/relnotes/7.5.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.9.html
    U xenocara/lib/mesa/docs/relnotes/7.0.2.html
    U xenocara/lib/mesa/docs/relnotes/7.7.1.html
    U xenocara/lib/mesa/docs/relnotes/9.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.6.2.html
    U xenocara/lib/mesa/docs/relnotes/10.0.5.html
    U xenocara/lib/mesa/docs/relnotes/7.0.3.html
    N xenocara/lib/mesa/docs/relnotes/13.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.3.html
    U xenocara/lib/mesa/docs/relnotes/6.4.html
    U xenocara/lib/mesa/m4/ax_prog_flex.m4
    U xenocara/lib/mesa/m4/ax_check_gnu_make.m4
    U xenocara/lib/mesa/m4/ltversion.m4
    U xenocara/lib/mesa/m4/ax_gcc_builtin.m4
    U xenocara/lib/mesa/m4/libtool.m4
    U xenocara/lib/mesa/m4/ax_pthread.m4
    U xenocara/lib/mesa/m4/ax_gcc_func_attribute.m4
    U xenocara/lib/mesa/m4/lt~obsolete.m4
    U xenocara/lib/mesa/m4/ltsugar.m4
    U xenocara/lib/mesa/m4/ax_check_python_mako_module.m4
    U xenocara/lib/mesa/m4/ax_prog_bison.m4
    U xenocara/lib/mesa/m4/ltoptions.m4
    U xenocara/lib/mesa/src/Makefile.in
    U xenocara/lib/mesa/src/SConscript
    U xenocara/lib/mesa/src/Makefile.am
    U xenocara/lib/mesa/src/getopt/.editorconfig
    U xenocara/lib/mesa/src/getopt/getopt.h
    U xenocara/lib/mesa/src/getopt/SConscript
    U xenocara/lib/mesa/src/getopt/getopt_long.c
    U xenocara/lib/mesa/src/mapi/mapi_glapi.c
    U xenocara/lib/mesa/src/mapi/entry.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tsd.h
    U xenocara/lib/mesa/src/mapi/Makefile.sources
    U xenocara/lib/mesa/src/mapi/u_current.c
    U xenocara/lib/mesa/src/mapi/entry_x86_tls.h
    U xenocara/lib/mesa/src/mapi/table.c
    U xenocara/lib/mesa/src/mapi/u_execmem.h
    U xenocara/lib/mesa/src/mapi/stub.h
    U xenocara/lib/mesa/src/mapi/u_execmem.c
    U xenocara/lib/mesa/src/mapi/Makefile.in
    U xenocara/lib/mesa/src/mapi/mapi_abi.py
    U xenocara/lib/mesa/src/mapi/Makefile.am
    U xenocara/lib/mesa/src/mapi/entry_x86-64_tls.h
    U xenocara/lib/mesa/src/mapi/u_current.h
    U xenocara/lib/mesa/src/mapi/stub.c
    U xenocara/lib/mesa/src/mapi/entry.c
    U xenocara/lib/mesa/src/mapi/mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/table.h
    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/tests/check_table.cpp
    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/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/glapi/glapi_nop.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86-64.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_gentable.c
    U xenocara/lib/mesa/src/mapi/glapi/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/glapi_sparc.S
    U xenocara/lib/mesa/src/mapi/glapi/glapitable.h
    U xenocara/lib/mesa/src/mapi/glapi/glprocs.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_priv.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_dispatch.c
    U xenocara/lib/mesa/src/mapi/glapi/glapitemp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_getproc.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_entrypoint.c
    U xenocara/lib/mesa/src/mapi/glapi/tests/check_table.cpp
    U xenocara/lib/mesa/src/mapi/glapi/registry/gl.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/typeexpr.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_integer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_genexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GREMEDY_string_marker.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_enums.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_direct_state_access.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_base_instance.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_send.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_program_interface_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_multi_bind.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sample_shading.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_storage_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/static_data.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_procs.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_size.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_indirect_parameters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness_es.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/apiexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.in
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_object_purgeable.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_clip_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_gentable.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86-64_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL3x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_conditional_render.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compressed_texture_pixel_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/INTEL_performance_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/license.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.am
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_context_flush_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sync.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL4x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_subroutine.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_EGL_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rg.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_gather.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_common.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.dtd
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_fp64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_pipeline_statistics_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_recv.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_single_precision.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_viewport_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_primitive_restart.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_window_rectangles.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_SPARC_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_es_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/es_EXT.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_server_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_variable_group_size.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_view.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_fixed_point.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/ARB_clear_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_debug.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/remap_helper.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_debug_output.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_tessellation_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_apitemp.py
    U xenocara/lib/mesa/src/gallium/Automake.inc
    U xenocara/lib/mesa/src/gallium/Makefile.in
    U xenocara/lib/mesa/src/gallium/SConscript
    U xenocara/lib/mesa/src/gallium/Makefile.am
    U xenocara/lib/mesa/src/gallium/README.portability
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/README
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/trace.xsl
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_52.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_50.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_streamout.c
    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_vce_40_2_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_gpu_load.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_buffer_common.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/LLVM_REVISION.txt
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/cayman_msaa.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_util.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_context.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_small_immediates.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_dead_code.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_live_variables.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_register_allocate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_copy_propagation.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_reorder_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_algebraic.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_job.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_qir_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_peephole_sf.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator_validate.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_state.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_lower_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_constant_folding.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_qpu_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_vpm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_emit_uniform_stream_resets.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_drv.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_gem.c
    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_packet.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_main.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_format.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/rbug/README
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/rbug/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_public.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_public.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_immediate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/i915/TODO
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_private.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_fpc.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_static.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batchbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_shader_semantics.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r300/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cs.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_texture_desc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_stencilref.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.h
    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_render_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cb.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_hyperz.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h
    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_compiler_util.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.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_pair.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.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_program.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.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/r300_fragprog_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h
    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.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c
    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/r300_compiler_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/regalloc_tex_1d_swizzle.test
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.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/omod_two_writers.test
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_state.c
    U xenocara/lib/mesa/src/gallium/drivers/noop/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_public.h
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_public.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_descriptors.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/cik_sdma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.py
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r600/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_formats.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreend.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/notes.markdown
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_psi_ops.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_ir.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.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_finalize.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_common.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_rectlist.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_media.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_blt.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen7.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen6.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen8.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_core.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader_ps.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_mi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_bottom.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/intel_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_decode.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_vma.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_blt.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_top.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_media.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_helpers.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_message.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_blitter.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_dynamic.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_isa.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_surface.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_media.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/genhw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_mi.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_regs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.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/virgl_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_protocol.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_public.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs_exec.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs.h
    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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_draw.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/swr/Automake.inc
    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_state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_clear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context_llvm.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_loader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/utils.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/arena.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/fifo.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/blend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/depthstencil.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_conversion.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_types.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa_avx.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tessellator.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs_init.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/conservativeRast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_traits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/ringbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_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/JitManager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/state_llvm.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/JitManager.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_math.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_ir_macros.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_types.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/eventmanager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandlerfile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events.proto
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandler.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/tilingtraits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/ClearTile.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_TileX2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/Convert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_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_Linear2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.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_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_Linear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdintrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simd16intrin.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/swr_assert.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/isa.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_archrast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/ast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pyparser.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/_ast_util.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cache.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lexer.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pygen.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/util.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/filters.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/codegen.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/compat.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/runtime.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/__init__.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cmd.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/exceptions.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/template.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lookup.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/parsetree.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandler_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandlerfile_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_cpp.template
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_framebuffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_backend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_rss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_query.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_mksstats.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_elements.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_streamout.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_misc.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vdecl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_public.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_hw_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_insn.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.py
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_caps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_end.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/includeCheck.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/VGPU10ShaderTokens.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/README
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_dx.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_overlay.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_escape.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_common.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/disasm.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_pm4.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/a3xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c
    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_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/a2xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_lower_if_else.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_sched.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_group.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/instr-a3xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_print.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.py
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/a4xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.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/codegen/nv50_ir_util.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_util.cpp
    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_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_nvc0.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_print.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_emit_nvc0.cpp
    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.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_bb.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_target_nv50.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_emit_gm107.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.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_graph.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_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_inlines.h
    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_target.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.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm
    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/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.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_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/gm107_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_macros.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.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_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h
    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/nvc0_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h
    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/nouveau/nvc0/mme/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_defs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_texture.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_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.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/nv50_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.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/nv50_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.c
    U xenocara/lib/mesa/src/gallium/tools/addr2line.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/tracediff.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/dump.py
    U xenocara/lib/mesa/src/gallium/tools/trace/model.py
    U xenocara/lib/mesa/src/gallium/tools/trace/README.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/dump_state.py
    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/format.py
    U xenocara/lib/mesa/src/gallium/tools/trace/parse.py
    U xenocara/lib/mesa/src/gallium/docs/Makefile
    U xenocara/lib/mesa/src/gallium/docs/llvm-todo.txt
    U xenocara/lib/mesa/src/gallium/docs/make.bat
    U xenocara/lib/mesa/src/gallium/docs/source/screen.rst
    U xenocara/lib/mesa/src/gallium/docs/source/conf.py
    U xenocara/lib/mesa/src/gallium/docs/source/index.rst
    U xenocara/lib/mesa/src/gallium/docs/source/glossary.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso.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/debugging.rst
    U xenocara/lib/mesa/src/gallium/docs/source/intro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/resources.rst
    U xenocara/lib/mesa/src/gallium/docs/source/pipeline.txt
    U xenocara/lib/mesa/src/gallium/docs/source/tgsi.rst
    U xenocara/lib/mesa/src/gallium/docs/source/format.rst
    U xenocara/lib/mesa/src/gallium/docs/source/context.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/profiling.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/knobs.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/faq.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno/ir3-notes.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/rasterizer.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/shader.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/sampler.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/dsa.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/blend.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/velems.rst
    U xenocara/lib/mesa/src/gallium/docs/source/exts/formatting.py
    U xenocara/lib/mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh
    U xenocara/lib/mesa/src/gallium/tests/unit/u_half_test.c
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/unit/u_cache_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/SConscript
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_compatible_test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri.c
    U xenocara/lib/mesa/src/gallium/tests/graw/occlusion-query.c
    U xenocara/lib/mesa/src/gallium/tests/graw/graw_util.h
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-fragcoord.c
    U xenocara/lib/mesa/src/gallium/tests/graw/vs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-gs.c
    U xenocara/lib/mesa/src/gallium/tests/graw/SConscript
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-srgb.c
    U xenocara/lib/mesa/src/gallium/tests/graw/shader-leak.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-frontface.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-swizzle.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-sample.c
    U xenocara/lib/mesa/src/gallium/tests/graw/disasm.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tgsi_dump.gdb
    U xenocara/lib/mesa/src/gallium/tests/graw/clear.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-write-z.c
    U xenocara/lib/mesa/src/gallium/tests/graw/gs-test.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/fragment-shader/frag-mul.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-abs.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-lit.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-face.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-mad-immx.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-max.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-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.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-srcmod-neg.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-mad.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-sge.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-cb-2d.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-lg2.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-rcp.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-ex2.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-min.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-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh
    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/add-mix.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/multi-line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.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-arl.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-frc.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-srcmod-abs.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-add.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-cb-1d.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-srcmod-swz.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-abs.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-mul.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-umul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.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-lrp.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-srcmod-neg.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-slt.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-ex2.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-cb-2d.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-arr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/trivial/tri.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/trivial/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/compute.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri-vdpau.dyn
    U xenocara/lib/mesa/src/gallium/targets/vdpau/target.c
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/vdpau/vdpau.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/xlib.c
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/libgl-xlib.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i965.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/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_msm.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r600.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i915.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/xvmc.sym
    U xenocara/lib/mesa/src/gallium/targets/xvmc/target.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.sym
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.mingw.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/target.c
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.pc.in
    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/dri/target.c
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/dri/SConscript
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri/dri.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/target.c
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/omx/omx.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/graw_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3d.pc.in
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/getproc.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/description.c
    U xenocara/lib/mesa/src/gallium/targets/va/target.c
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/va/va.sym
    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/SoftwareRenderer.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/opencl/opencl.sym
    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/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/libgl-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/xa/xa.sym
    U xenocara/lib/mesa/src/gallium/state_trackers/README
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/bitmap.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/query.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/mixer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/decode.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/htab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/presentation.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/preemption.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/vdpau_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/ftab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/output.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/block.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/attributes.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/xvmc_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.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_surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.c
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.h
    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/hgl_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.h
    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/dri2_buffer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/drisw.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri2.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h265.c
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/interop.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/transfer.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/object.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/error.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/property.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.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/module.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/compat.hpp
    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/invocation.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen.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/native.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algebra.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/pointer.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/tuple.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/range.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/lazy.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/adaptor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algorithm.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/postproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/va_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/va/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/config.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/display.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg4.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vc1.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/va/image.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/buffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_public.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_defines.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pdata.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/README
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_limits.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.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/authenticatedchannel9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_flags.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.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/volume9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_winsys.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_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_icd.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.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_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_yuv.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/README
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_priv.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa-indent
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tgsi.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_surface.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_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.in
    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/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c
    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_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.am
    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/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h
    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/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
    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/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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.am
    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/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virtgpu_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.am
    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/intel/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/svga_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
    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_compiler.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_screen.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_config.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_shader_tokens.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_codec.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_state.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_enums.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_state.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/opencl_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_winsys.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/graw.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_dmabuf.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drisw_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_funcs.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/st_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drm_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/xlibsw_api.h
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/postprocess.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_init.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_celshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_program.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_run.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/ADDING
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.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_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_mman.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_aligned.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_stdc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_thread.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_proto.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_internal.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.c
    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/tgsi/tgsi_iterate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.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_aa_point.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.h
    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/font.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_driver_query.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_sensors_temp.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_fps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_diskstat.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_split_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c
    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_pipe_offset.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.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/translate/translate_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri3.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_rbsp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vlc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_stubs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_types.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pack_color.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pointer.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_format_latc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.csv
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_box.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_video.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_parse.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_rect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_defines.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_string.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dynarray.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pwr8.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_viewport.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_pack.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitcast.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_half.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dual_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/dbghelp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_fifo.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_flags.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_memory.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_range.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py
    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_indices_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.py
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.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_alt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_cached.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.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_action.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c
    U xenocara/lib/mesa/src/hgl/.editorconfig
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.h
    U xenocara/lib/mesa/src/hgl/GLView.cpp
    U xenocara/lib/mesa/src/hgl/SConscript
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.h
    U xenocara/lib/mesa/src/hgl/GLRenderer.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.cpp
    U xenocara/lib/mesa/src/egl/Makefile.sources
    U xenocara/lib/mesa/src/egl/Makefile.in
    U xenocara/lib/mesa/src/egl/SConscript
    U xenocara/lib/mesa/src/egl/Makefile.am
    U xenocara/lib/mesa/src/egl/egl-symbols-check
    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/drivers/dri2/platform_wayland.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_drm.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_surfaceless.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2_fallbacks.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.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/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/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm-protocol.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.xml
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-priv.h
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.pc.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-symbols-check
    U xenocara/lib/mesa/src/egl/main/egllog.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.c
    U xenocara/lib/mesa/src/egl/main/eglsync.c
    U xenocara/lib/mesa/src/egl/main/eglcurrent.h
    U xenocara/lib/mesa/src/egl/main/eglcurrent.c
    U xenocara/lib/mesa/src/egl/main/eglapi.h
    U xenocara/lib/mesa/src/egl/main/eglimage.h
    U xenocara/lib/mesa/src/egl/main/eglglobals.h
    U xenocara/lib/mesa/src/egl/main/egldisplay.c
    U xenocara/lib/mesa/src/egl/main/egllog.h
    U xenocara/lib/mesa/src/egl/main/egldriver.h
    U xenocara/lib/mesa/src/egl/main/egl.pc.in
    U xenocara/lib/mesa/src/egl/main/eglsurface.c
    U xenocara/lib/mesa/src/egl/main/eglglobals.c
    U xenocara/lib/mesa/src/egl/main/egldisplay.h
    U xenocara/lib/mesa/src/egl/main/egldefines.h
    U xenocara/lib/mesa/src/egl/main/egl.def
    U xenocara/lib/mesa/src/egl/main/eglsync.h
    U xenocara/lib/mesa/src/egl/main/eglarray.c
    U xenocara/lib/mesa/src/egl/main/egltypedefs.h
    U xenocara/lib/mesa/src/egl/main/eglarray.h
    U xenocara/lib/mesa/src/egl/main/README.txt
    U xenocara/lib/mesa/src/egl/main/eglimage.c
    U xenocara/lib/mesa/src/egl/main/eglconfig.c
    U xenocara/lib/mesa/src/egl/main/eglapi.c
    U xenocara/lib/mesa/src/egl/main/eglfallbacks.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.h
    U xenocara/lib/mesa/src/egl/main/egldriver.c
    U xenocara/lib/mesa/src/egl/main/eglcompiler.h
    U xenocara/lib/mesa/src/egl/main/eglconfig.h
    U xenocara/lib/mesa/src/egl/main/eglsurface.h
    U xenocara/lib/mesa/src/gbm/Makefile.sources
    U xenocara/lib/mesa/src/gbm/Makefile.in
    U xenocara/lib/mesa/src/gbm/gbm-symbols-check
    U xenocara/lib/mesa/src/gbm/Makefile.am
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_driint.h
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_dri.c
    U xenocara/lib/mesa/src/gbm/main/backend.c
    U xenocara/lib/mesa/src/gbm/main/gbm.c
    U xenocara/lib/mesa/src/gbm/main/gbm.h
    U xenocara/lib/mesa/src/gbm/main/gbmint.h
    U xenocara/lib/mesa/src/gbm/main/gbm.pc.in
    U xenocara/lib/mesa/src/gbm/main/backend.h
    U xenocara/lib/mesa/src/gbm/main/common_drm.h
    U xenocara/lib/mesa/src/compiler/glsl_types.cpp
    U xenocara/lib/mesa/src/compiler/Makefile.sources
    U xenocara/lib/mesa/src/compiler/shader_enums.c
    C xenocara/lib/mesa/src/compiler/Makefile.in
    U xenocara/lib/mesa/src/compiler/shader_enums.h
    U xenocara/lib/mesa/src/compiler/SConscript
    C xenocara/lib/mesa/src/compiler/Makefile.glsl.am
    U xenocara/lib/mesa/src/compiler/Makefile.nir.am
    U xenocara/lib/mesa/src/compiler/Makefile.am
    U xenocara/lib/mesa/src/compiler/SConscript.nir
    U xenocara/lib/mesa/src/compiler/nir_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl_types.h
    U xenocara/lib/mesa/src/compiler/SConscript.glsl
    U xenocara/lib/mesa/src/compiler/nir_types.h
    U xenocara/lib/mesa/src/compiler/builtin_type_macros.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_cfg.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/GLSL.std.450.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_to_nir.c
    U xenocara/lib/mesa/src/compiler/spirv/nir_spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_glsl450.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_variables.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_alu.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_private.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv2nir.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_mat_op_to_vec.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code_local.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_swizzle_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_noop_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packed_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vertex_id.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.cpp
    U xenocara/lib/mesa/src/compiler/glsl/TODO
    U xenocara/lib/mesa/src/compiler/glsl/opt_structure_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.py
    U xenocara/lib/mesa/src/compiler/glsl/ast_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.h
    U xenocara/lib/mesa/src/compiler/glsl/program.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_equals.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_variable.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_packing_builtins.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_redundant_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_offset_array.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_inlining.h
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_vectorize.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_shared_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/README
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_folding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/cache.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_noise.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_expr.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_named_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_algebraic.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_constant.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_validate.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_instructions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_to_hir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/cache.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_clone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector.cpp
    U xenocara/lib/mesa/src/compiler/glsl/propagate_invariance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_distance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_array_index.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_tess_level.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation_elements.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_variable_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_ubo_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_initializers.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_texture_projection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_controls.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flip_matrices.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_output_reads.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.ll
    U xenocara/lib/mesa/src/compiler/glsl/opt_conditional_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_type.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_detect_recursion.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hv_accept.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_array_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_unroll.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_atomics.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_const_arrays_to_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_insert.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_constant_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_set_program_inouts.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard_flow.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast.h
    U xenocara/lib/mesa/src/compiler/glsl/list.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_can_inline.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_uniform.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_optimization.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_strings.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_subroutine.cpp
    U xenocara/lib/mesa/src/compiler/glsl/hir_field_selection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_blend_equation_advanced.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_minmax.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.yy
    U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_rebalance_tree.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_function_inlining.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_tree_grafting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_if_simplification.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.h
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_if_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/main.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_derefs.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/general_ir_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.h
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/cache_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/varyings_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/builtin_variable_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/copy_constant_to_storage_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/sexps.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/set_uniform_initializer_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/compare_ir
    U xenocara/lib/mesa/src/compiler/glsl/tests/sampler_types_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/blob_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/invalidate_locations_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/uniform_initializer_utils.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/varyings_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/blob_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/sampler_types_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/general_ir_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/builtin_variable_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/invalidate_locations_test.Po
    N xenocara/lib/mesa/src/compiler/glsl/tests/.deps/glsl_tests_cache_test-cache_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/set_uniform_initializer_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_jumps/create_test_cases.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert.expected
    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/006-gequal.vert.expected
    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/024-shaderout.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert.expected
    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/025-function-parameters.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.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/006-gequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.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/000-basic-test.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert
    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/README
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp.c
    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/glcpp-lex.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.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/111-no-space-operator-after-hash-if.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.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/135-duplicate-parameter.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/034-define-func-self-compose-non-func.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/094-divide-by-zero-short-circuit.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/053-if-divide-and-shift.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.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/136-plus-plus-and-minus-minus.c.expected
    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/079-endif-without-if.c.expected
    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/049-if-expression-precedence.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/077-else-without-if.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/005-define-composite-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.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/098-elif-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c.expected
    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/105-multiline-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.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/121-comment-bug-72686.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/054-if-with-macros.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/084-unbalanced-parentheses.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/094-divide-by-zero-short-circuit.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected
    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/116-disable-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.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/103-garbage-after-else-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.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/134-hash-comment-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c.expected
    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/023-define-extra-whitespace.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/060-left-paren-in-macro-right-paren-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.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/077-else-without-if.c
    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/026-define-func-extra-newlines.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/008-define-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp-test
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c.expected
    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/005-define-composite-chain.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c.expected
    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/006-define-composite-chain-reverse.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/086-reserved-macro-names.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/048-if-nested.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/147-undef-builtin-allowed.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c.expected
    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/002-define-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.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/079-endif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c
    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/029-define-chain-obj-to-func-with-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.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/001-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.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/141-pragma-and-__LINE__.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.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/011-define-func-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c.expected
    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/071-punctuator.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.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/043-if-0-else.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/007-define-composite-recursive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.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/140-null-directive.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/120-undef-builtin.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.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/110-no-space-digits-after-hash-elif.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/067-nested-ifdef-ifndef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.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/139-define-without-macro-name.c.expected
    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/003-define-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.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/097-paste-with-non-function-macro.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/012-define-func-no-args.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/135-duplicate-parameter.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/031-define-chain-func-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c.expected
    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/048-if-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.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/112-no-space-operator-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.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/023-define-extra-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.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/139-define-without-macro-name.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/091-hash-line.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/037-finalize-unexpanded-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.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/106-multiline-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c.expected
    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/038-func-arg-with-commas.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.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/004-define-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.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/064-version.c.expected
    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/000-content-with-spaces.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.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/068-accidental-pasting.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/054-if-with-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/096-paste-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.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/133-eof-without-newline-comment.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/043-if-0-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.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/020-define-func-2-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c
    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/047-if-elif-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.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/039-func-arg-obj-macro-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected
    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/014-define-func-2-arg-unused.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/119-elif-after-else.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/115-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.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/042-if-1.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/127-pragma-empty.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/041-if-0.c.expected
    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/128-space-before-hash.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/133-eof-without-newline-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.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/100-macro-with-colon.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.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/117-line-continuation-and-non-continuation-backslash.c.expected
    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/088-redefine-macro-legitimate.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/078-elif-without-if.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/093-divide-by-zero.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/026-define-func-extra-newlines.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/027-define-chain-obj-to-func.c
    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/125-es-short-circuit-undefined.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/118-comment-becomes-space.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/059-token-pasting-integer.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.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/136-plus-plus-and-minus-minus.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/130-define-comment.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/029-define-chain-obj-to-func-with-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c
    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/126-garbage-after-directive.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/093-divide-by-zero.c
    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/105-multiline-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.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/024-define-chain-to-self-recursion.c
    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/134-hash-comment-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected
    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/022-define-func-arg-with-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/114-paste-integer-tokens.c
    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/glcpp-test-cr-lf
    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/052-if-bitwise.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/061-define-chain-obj-to-func-multi.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clamp_color_outputs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_vla.h
    U xenocara/lib/mesa/src/compiler/nir/nir_search.c
    U xenocara/lib/mesa/src/compiler/nir/nir_validate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_clone.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_two_sided_color.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_ops.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_global_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_inline_functions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_global_vars_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_indirect_derefs.c
    U xenocara/lib/mesa/src/compiler/nir/nir.h
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_temporaries.c
    U xenocara/lib/mesa/src/compiler/nir/nir_normalize_cubemap_coords.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_remove_phis.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip.c
    U xenocara/lib/mesa/src/compiler/nir/nir_metadata.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_dominance.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_tex.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_gcm.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_types.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_gs_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gather_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_system_values.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_propagate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_search.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vars_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bitmap.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dce.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_atomics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.py
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.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_instr_set.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_undef.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_center.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_cse.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_phis_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_c.py
    U xenocara/lib/mesa/src/compiler/nir/nir_search_helpers.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_passthrough_edgeflags.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.h
    U xenocara/lib/mesa/src/compiler/nir/nir_print.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec_to_movs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_sweep.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow_private.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_remove_dead_variables.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_split_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.py
    U xenocara/lib/mesa/src/compiler/nir/nir_propagate_invariant.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_idiv.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.h
    U xenocara/lib/mesa/src/compiler/nir/nir_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_to_source_mods.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_packing.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_ytransform.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_peephole_select.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_load_const_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_liveness.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gs_count_vertices.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_cf.c
    U xenocara/lib/mesa/src/compiler/nir/nir.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_array.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_locals_to_regs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_drawpixels.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_returns.c
    U xenocara/lib/mesa/src/compiler/nir/nir_from_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_repair_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_samplers.c
    U xenocara/lib/mesa/src/compiler/nir/tests/control_flow_tests.cpp
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/nir_tests_control_flow_tests-control_flow_tests.Po
    U xenocara/lib/mesa/src/loader/loader.c
    U xenocara/lib/mesa/src/loader/Makefile.sources
    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/loader_dri3_helper.c
    U xenocara/lib/mesa/src/loader/Makefile.in
    U xenocara/lib/mesa/src/loader/loader_dri3_helper.h
    U xenocara/lib/mesa/src/loader/SConscript
    U xenocara/lib/mesa/src/loader/Makefile.am
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.h
    U xenocara/lib/mesa/src/glx/packsingle.h
    U xenocara/lib/mesa/src/glx/glxconfig.h
    U xenocara/lib/mesa/src/glx/glxconfig.c
    U xenocara/lib/mesa/src/glx/glx_query.c
    U xenocara/lib/mesa/src/glx/dri_glx.c
    U xenocara/lib/mesa/src/glx/glxclient.h
    U xenocara/lib/mesa/src/glx/indirect.h
    U xenocara/lib/mesa/src/glx/glxglvnddispatchfuncs.h
    U xenocara/lib/mesa/src/glx/xfont.c
    U xenocara/lib/mesa/src/glx/clientattrib.c
    U xenocara/lib/mesa/src/glx/glxhash.c
    U xenocara/lib/mesa/src/glx/pixel.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_program.c
    U xenocara/lib/mesa/src/glx/indirect_size.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchindices.h
    U xenocara/lib/mesa/src/glx/indirect_texture_compression.c
    U xenocara/lib/mesa/src/glx/dri2_priv.h
    U xenocara/lib/mesa/src/glx/dri_common_query_renderer.c
    U xenocara/lib/mesa/src/glx/indirect.c
    U xenocara/lib/mesa/src/glx/dri_common_interop.c
    U xenocara/lib/mesa/src/glx/drisw_glx.c
    U xenocara/lib/mesa/src/glx/compsize.c
    U xenocara/lib/mesa/src/glx/glxextensions.h
    U xenocara/lib/mesa/src/glx/dri3_priv.h
    U xenocara/lib/mesa/src/glx/glxcurrent.c
    U xenocara/lib/mesa/src/glx/indirect_size.h
    U xenocara/lib/mesa/src/glx/packrender.h
    U xenocara/lib/mesa/src/glx/dri2.h
    U xenocara/lib/mesa/src/glx/render2.c
    U xenocara/lib/mesa/src/glx/Makefile.in
    U xenocara/lib/mesa/src/glx/glxcmds.c
    U xenocara/lib/mesa/src/glx/create_context.c
    U xenocara/lib/mesa/src/glx/indirect_init.h
    U xenocara/lib/mesa/src/glx/query_renderer.c
    U xenocara/lib/mesa/src/glx/glx_error.h
    U xenocara/lib/mesa/src/glx/XF86dri.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchfuncs.c
    U xenocara/lib/mesa/src/glx/dri_common.c
    U xenocara/lib/mesa/src/glx/indirect_transpose_matrix.c
    U xenocara/lib/mesa/src/glx/clientinfo.c
    U xenocara/lib/mesa/src/glx/single2.c
    U xenocara/lib/mesa/src/glx/SConscript
    U xenocara/lib/mesa/src/glx/glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/singlepix.c
    U xenocara/lib/mesa/src/glx/Makefile.am
    U xenocara/lib/mesa/src/glx/indirect_vertex_array_priv.h
    U xenocara/lib/mesa/src/glx/xf86dristr.h
    U xenocara/lib/mesa/src/glx/dri_sarea.h
    U xenocara/lib/mesa/src/glx/glxextensions.c
    U xenocara/lib/mesa/src/glx/dri_common.h
    U xenocara/lib/mesa/src/glx/indirect_init.c
    U xenocara/lib/mesa/src/glx/dri3_glx.c
    U xenocara/lib/mesa/src/glx/indirect_window_pos.c
    U xenocara/lib/mesa/src/glx/renderpix.c
    U xenocara/lib/mesa/src/glx/xf86dri.h
    U xenocara/lib/mesa/src/glx/glxglvnd.h
    U xenocara/lib/mesa/src/glx/glxhash.h
    U xenocara/lib/mesa/src/glx/driwindows_glx.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.h
    U xenocara/lib/mesa/src/glx/dri2_glx.c
    U xenocara/lib/mesa/src/glx/glxglvnd.c
    U xenocara/lib/mesa/src/glx/glx_error.c
    U xenocara/lib/mesa/src/glx/indirect_glx.c
    U xenocara/lib/mesa/src/glx/drisw_priv.h
    U xenocara/lib/mesa/src/glx/applegl_glx.c
    U xenocara/lib/mesa/src/glx/dri2.c
    U xenocara/lib/mesa/src/glx/vertarr.c
    U xenocara/lib/mesa/src/glx/pixelstore.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.c
    U xenocara/lib/mesa/src/glx/eval.c
    U xenocara/lib/mesa/src/glx/glxext.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.h
    U xenocara/lib/mesa/src/glx/apple/TODO
    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.h
    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_surface.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_stereo.c
    U xenocara/lib/mesa/src/glx/apple/Makefile.in
    U xenocara/lib/mesa/src/glx/apple/RELEASE_NOTES
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_viewport.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.c
    U xenocara/lib/mesa/src/glx/apple/appledri.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.c
    U xenocara/lib/mesa/src/glx/apple/Makefile.am
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_read.c
    U xenocara/lib/mesa/src/glx/apple/appledri.h
    U xenocara/lib/mesa/src/glx/apple/apple_glapi.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.h
    U xenocara/lib/mesa/src/glx/apple/apple_visual.h
    U xenocara/lib/mesa/src/glx/apple/appledristr.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.c
    U xenocara/lib/mesa/src/glx/apple/glx_empty.c
    U xenocara/lib/mesa/src/glx/tests/enum_sizes.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.h
    U xenocara/lib/mesa/src/glx/tests/query_renderer_implementation_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/query_renderer_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/indirect_api.cpp
    U xenocara/lib/mesa/src/glx/tests/Makefile.in
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.cpp
    U xenocara/lib/mesa/src/glx/tests/Makefile.am
    U xenocara/lib/mesa/src/glx/tests/clientinfo_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/mock_xdisplay.h
    U xenocara/lib/mesa/src/glx/tests/create_context_unittest.cpp
    U xenocara/lib/mesa/src/glx/windows/windowsdristr.h
    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/windowsgl.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.c
    U xenocara/lib/mesa/src/glx/windows/windowsgl.h
    U xenocara/lib/mesa/src/glx/windows/Makefile.in
    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/windows_drawable.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.h
    U xenocara/lib/mesa/src/glx/windows/windowsgl_internal.h
    U xenocara/lib/mesa/src/glx/windows/windowsdriproto.pc.in
    U xenocara/lib/mesa/src/gtest/Makefile.in
    U xenocara/lib/mesa/src/gtest/Makefile.am
    U xenocara/lib/mesa/src/gtest/src/gtest-printers.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-port.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-typed-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-test-part.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-death-test.cc
    U xenocara/lib/mesa/src/gtest/src/gtest.cc
    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/include/gtest/gtest-spi.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-typed-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-death-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_pred_impl.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_prod.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-test-part.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-message.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-string.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-port.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-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-param-util-generated.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-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/gtest-type-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h
    U xenocara/lib/mesa/src/util/mesa-sha1.h
    U xenocara/lib/mesa/src/util/Makefile.sources
    U xenocara/lib/mesa/src/util/half_float.h
    U xenocara/lib/mesa/src/util/register_allocate.h
    U xenocara/lib/mesa/src/util/u_atomic_test.c
    U xenocara/lib/mesa/src/util/format_rgb9e5.h
    U xenocara/lib/mesa/src/util/string_to_uint_map.h
    U xenocara/lib/mesa/src/util/ralloc.c
    U xenocara/lib/mesa/src/util/ralloc.h
    U xenocara/lib/mesa/src/util/u_vector.h
    U xenocara/lib/mesa/src/util/u_atomic.h
    U xenocara/lib/mesa/src/util/register_allocate.c
    U xenocara/lib/mesa/src/util/strtod.h
    U xenocara/lib/mesa/src/util/format_srgb.h
    U xenocara/lib/mesa/src/util/set.c
    U xenocara/lib/mesa/src/util/Makefile.in
    U xenocara/lib/mesa/src/util/format_srgb.py
    U xenocara/lib/mesa/src/util/vk_alloc.h
    U xenocara/lib/mesa/src/util/half_float.c
    U xenocara/lib/mesa/src/util/rgtc.c
    U xenocara/lib/mesa/src/util/bitset.h
    U xenocara/lib/mesa/src/util/mesa-sha1.c
    U xenocara/lib/mesa/src/util/u_vector.c
    U xenocara/lib/mesa/src/util/strndup.h
    U xenocara/lib/mesa/src/util/macros.h
    U xenocara/lib/mesa/src/util/SConscript
    U xenocara/lib/mesa/src/util/debug.h
    U xenocara/lib/mesa/src/util/Makefile.am
    U xenocara/lib/mesa/src/util/texcompress_rgtc_tmp.h
    U xenocara/lib/mesa/src/util/hash_table.c
    U xenocara/lib/mesa/src/util/set.h
    U xenocara/lib/mesa/src/util/simple_list.h
    U xenocara/lib/mesa/src/util/list.h
    U xenocara/lib/mesa/src/util/strndup.c
    U xenocara/lib/mesa/src/util/roundeven_test.c
    U xenocara/lib/mesa/src/util/bitscan.h
    U xenocara/lib/mesa/src/util/debug.c
    U xenocara/lib/mesa/src/util/format_r11g11b10f.h
    U xenocara/lib/mesa/src/util/slab.h
    U xenocara/lib/mesa/src/util/format_srgb.c
    U xenocara/lib/mesa/src/util/rgtc.h
    U xenocara/lib/mesa/src/util/rounding.h
    U xenocara/lib/mesa/src/util/string_to_uint_map.cpp
    U xenocara/lib/mesa/src/util/strtod.c
    U xenocara/lib/mesa/src/util/bitscan.c
    U xenocara/lib/mesa/src/util/hash_table.h
    U xenocara/lib/mesa/src/util/u_endian.h
    U xenocara/lib/mesa/src/util/slab.c
    U xenocara/lib/mesa/src/util/tests/hash_table/null_destroy.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/Makefile.in
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_null.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/Makefile.am
    U xenocara/lib/mesa/src/util/tests/hash_table/random_entry.c
    U xenocara/lib/mesa/src/util/tests/hash_table/replacement.c
    U xenocara/lib/mesa/src/util/tests/hash_table/clear.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_many.c
    U xenocara/lib/mesa/src/intel/Makefile.sources
    U xenocara/lib/mesa/src/intel/Makefile.genxml.am
    U xenocara/lib/mesa/src/intel/Makefile.isl.am
    U xenocara/lib/mesa/src/intel/Makefile.common.am
    U xenocara/lib/mesa/src/intel/Makefile.in
    U xenocara/lib/mesa/src/intel/Makefile.am
    U xenocara/lib/mesa/src/intel/Makefile.blorp.am
    U xenocara/lib/mesa/src/intel/tools/decoder.c
    U xenocara/lib/mesa/src/intel/tools/aubinator.c
    U xenocara/lib/mesa/src/intel/tools/Makefile.in
    U xenocara/lib/mesa/src/intel/tools/gen_disasm.h
    U xenocara/lib/mesa/src/intel/tools/decoder.h
    U xenocara/lib/mesa/src/intel/tools/Makefile.am
    U xenocara/lib/mesa/src/intel/tools/disasm.c
    U xenocara/lib/mesa/src/intel/genxml/gen45.xml
    U xenocara/lib/mesa/src/intel/genxml/gen_pack_header.py
    U xenocara/lib/mesa/src/intel/genxml/gen75_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen7_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen75.xml
    U xenocara/lib/mesa/src/intel/genxml/gen4.xml
    U xenocara/lib/mesa/src/intel/genxml/gen5.xml
    U xenocara/lib/mesa/src/intel/genxml/README
    U xenocara/lib/mesa/src/intel/genxml/gen9_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen6_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8.xml
    U xenocara/lib/mesa/src/intel/genxml/gen45_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen5_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen4_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen6.xml
    U xenocara/lib/mesa/src/intel/genxml/gen6_xml.h
    U xenocara/lib/mesa/src/intel/genxml/genX_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen9.xml
    U xenocara/lib/mesa/src/intel/genxml/gen_macros.h
    U xenocara/lib/mesa/src/intel/genxml/gen7.xml
    U xenocara/lib/mesa/src/intel/genxml/gen7_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen75_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen9_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8_xml.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_blit.c
    U xenocara/lib/mesa/src/intel/blorp/blorp.c
    U xenocara/lib/mesa/src/intel/blorp/blorp_clear.c
    U xenocara/lib/mesa/src/intel/blorp/blorp.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_priv.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_genX_exec.h
    U xenocara/lib/mesa/src/intel/common/gen_sample_positions.h
    U xenocara/lib/mesa/src/intel/common/gen_device_info.h
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.c
    U xenocara/lib/mesa/src/intel/common/gen_device_info.c
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.c
    U xenocara/lib/mesa/src/intel/isl/isl.h
    U xenocara/lib/mesa/src/intel/isl/isl_storage_image.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.h
    U xenocara/lib/mesa/src/intel/isl/gen_format_layout.py
    U xenocara/lib/mesa/src/intel/isl/README
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.h
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.c
    U xenocara/lib/mesa/src/intel/isl/isl_surface_state.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.h
    U xenocara/lib/mesa/src/intel/isl/isl_format.c
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.csv
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.h
    U xenocara/lib/mesa/src/intel/isl/isl.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.h
    U xenocara/lib/mesa/src/intel/isl/isl_priv.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.c
    U xenocara/lib/mesa/src/intel/isl/tests/isl_surf_get_image_offset_test.c
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/intel/vulkan/anv_query.c
    U xenocara/lib/mesa/src/intel/vulkan/TODO
    U xenocara/lib/mesa/src/intel/vulkan/gen7_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_state.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_genX.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_allocator.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/gen8_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_dynamic_offsets.c
    U xenocara/lib/mesa/src/intel/vulkan/intel_icd.json.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_push_constants.c
    U xenocara/lib/mesa/src/intel/vulkan/vk_format_info.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_blorp.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_intel.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_image.c
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_batch_chain.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pass.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_pipeline_util.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_private.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.h
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.am
    U xenocara/lib/mesa/src/intel/vulkan/anv_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_dump.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir.h
    U xenocara/lib/mesa/src/intel/vulkan/genX_blorp_exec.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_descriptor_set.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_timestamp.h
    U xenocara/lib/mesa/src/intel/vulkan/gen8_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_formats.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_pipeline_layout.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_device.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem_stubs.c
    U xenocara/lib/mesa/src/intel/vulkan/gen7_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints_gen.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline_cache.c
    U xenocara/lib/mesa/src/intel/vulkan/dev_icd.json.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_util.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/tests/state_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/block_pool_no_free.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_test_helper.h
    U xenocara/lib/mesa/src/amd/Makefile.sources
    U xenocara/lib/mesa/src/amd/Makefile.addrlib.am
    U xenocara/lib/mesa/src/amd/Makefile.in
    U xenocara/lib/mesa/src/amd/Makefile.am
    U xenocara/lib/mesa/src/amd/addrlib/addrinterface.h
    U xenocara/lib/mesa/src/amd/addrlib/addrtypes.h
    U xenocara/lib/mesa/src/amd/addrlib/addrinterface.cpp
    U xenocara/lib/mesa/src/amd/addrlib/inc/lnx_common_defs.h
    U xenocara/lib/mesa/src/amd/addrlib/inc/chip/r800/si_gb_reg.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrobject.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrobject.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrcommon.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/chip/si_ci_vi_merged_enum.h
    U xenocara/lib/mesa/src/amd/common/Makefile.sources
    U xenocara/lib/mesa/src/amd/common/ac_binary.h
    U xenocara/lib/mesa/src/amd/common/r600d_common.h
    U xenocara/lib/mesa/src/amd/common/ac_llvm_helper.cpp
    U xenocara/lib/mesa/src/amd/common/Makefile.in
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.h
    U xenocara/lib/mesa/src/amd/common/sid.h
    U xenocara/lib/mesa/src/amd/common/amd_kernel_code_t.h
    U xenocara/lib/mesa/src/amd/common/Makefile.am
    U xenocara/lib/mesa/src/amd/common/amdgpu_id.h
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.c
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.h
    U xenocara/lib/mesa/src/amd/common/amd_family.h
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.c
    U xenocara/lib/mesa/src/amd/common/ac_binary.c
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.h
    U 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_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints_gen.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_timestamp.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit2d.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_clear.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pass.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fast_clear.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_cs.c
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.in
    U xenocara/lib/mesa/src/amd/vulkan/vk_format.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_parse.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_bufimage.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_device.c
    U xenocara/lib/mesa/src/amd/vulkan/radeon_icd.json.in
    U xenocara/lib/mesa/src/amd/vulkan/radv_private.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_query.c
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.am
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_cache.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_image.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_wayland.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_formats.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_layout.csv
    U xenocara/lib/mesa/src/amd/vulkan/radv_radeon_winsys.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/dev_icd.json.in
    U xenocara/lib/mesa/src/amd/vulkan/si_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_x11.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.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_bo.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.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_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys_public.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_cs.c
    U xenocara/lib/mesa/src/mesa/Makefile.sources
    U xenocara/lib/mesa/src/mesa/gl.pc.in
    U xenocara/lib/mesa/src/mesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/SConscript
    U xenocara/lib/mesa/src/mesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.def
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/dri.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.am
    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/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_image.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_line.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_intrinsics.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_allocator.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cc.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_blend_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_d2x.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sync.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c
    N xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_monitor.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_packed_float.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_sel_peephole.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_tcs_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_disasm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_constant_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_uniforms.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_disable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_conditional_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reset.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_misc_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/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_vs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_pack.cpp
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depthstencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_point.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_dump.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compute.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_curbe.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_batch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_attribute_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_cc.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_eu_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_unfilled.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_defines.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_misc_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ps_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vue_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_combine_constants.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_cache.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_formatquery.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_structs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_cs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_analyze_boolean_resolves.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_iz.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_blorp_exec.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_link.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_l3_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_predicated_break.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_validate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_inst.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_opt_peephole_ffma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_te_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_scissor_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vf_float_conversions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_interpolation_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_fragshader.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_fragprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texblend.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_vtbl.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_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_syncobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast_priv.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlconfig.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.am
    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/xmlconfig.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/drirc
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/gen_xmlpool.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/t_options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl/LC_MESSAGES/options.mo
    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_surface.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.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/nouveau_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_generate_mipmap.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa_x.h
    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/glxheader.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/fakeglx.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_line.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.am
    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/glxapi.c
    U xenocara/lib/mesa/src/mesa/sparc/sparc_matrix.h
    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.c
    U xenocara/lib/mesa/src/mesa/sparc/xform.S
    U xenocara/lib/mesa/src/mesa/sparc/norm.S
    U xenocara/lib/mesa/src/mesa/math/m_matrix.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_debug.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_util.h
    U xenocara/lib/mesa/src/mesa/math/m_dotprod_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_translate.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.c
    U xenocara/lib/mesa/src/mesa/math/m_clip_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.h
    U xenocara/lib/mesa/src/mesa/math/m_vector.h
    U xenocara/lib/mesa/src/mesa/math/m_matrix.c
    U xenocara/lib/mesa/src/mesa/math/m_vector.c
    U xenocara/lib/mesa/src/mesa/math/m_norm_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_norm.c
    U xenocara/lib/mesa/src/mesa/math/m_trans_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_clip.c
    U xenocara/lib/mesa/src/mesa/math/m_xform_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_translate.c
    U xenocara/lib/mesa/src/mesa/math/m_copy_tmp.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse.h
    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/x86_xform.c
    U xenocara/lib/mesa/src/mesa/x86/mmx_blendtmp.h
    U xenocara/lib/mesa/src/mesa/x86/x86_cliptest.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.c
    U xenocara/lib/mesa/src/mesa/x86/sse_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/assyntax.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_features.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86.c
    U xenocara/lib/mesa/src/mesa/x86/xform_args.h
    U xenocara/lib/mesa/src/mesa/x86/sse.c
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.h
    U xenocara/lib/mesa/src/mesa/x86/clip_args.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/norm_args.h
    U xenocara/lib/mesa/src/mesa/x86/mmx_blend.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/gen_matypes.c
    U xenocara/lib/mesa/src/mesa/x86/mmx.h
    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/swrast/s_context.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aalinetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.c
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.h
    U xenocara/lib/mesa/src/mesa/swrast/s_linetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/NOTES
    U xenocara/lib/mesa/src/mesa/swrast/s_blit.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.h
    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_aaline.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.h
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.c
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch_tmp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.c
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.h
    U xenocara/lib/mesa/src/mesa/swrast/s_clear.c
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.c
    U xenocara/lib/mesa/src/mesa/swrast/swrast.h
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.c
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.h
    U xenocara/lib/mesa/src/mesa/swrast/s_tritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.h
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.h
    U xenocara/lib/mesa/src/mesa/swrast/s_bitmap.c
    U xenocara/lib/mesa/src/mesa/swrast/s_copypix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texrender.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texture.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.h
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.h
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.h
    U xenocara/lib/mesa/src/mesa/swrast/s_drawpix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.c
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.h
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.h
    U xenocara/lib/mesa/src/mesa/swrast/s_chan.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatritemp.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_dmatmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_tritmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_unfilled.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_inplace.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib_tmp.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_copy.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_rebase.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_eval.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_array.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_minmax_index.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_loopback.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_sampler.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_array.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cache.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gl_api.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels_shader.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_sampler_view.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_builtin.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.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_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_atomicbuf.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_atom_tess.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_depth.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_clip.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_image.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_storagebuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_rasterizer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_framebuffer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_list.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_stipple.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_blend.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.c
    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_syncobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.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/swrast_setup/ss_context.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/swrast_setup.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/NOTES
    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/ss_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_cliptmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_rendertmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_program.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_generic.c
    U xenocara/lib/mesa/src/mesa/tnl/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_draw.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.h
    U xenocara/lib/mesa/src/mesa/tnl/tnl.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texgen.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_points.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_render.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_normals.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texmat.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_light.c
    U xenocara/lib/mesa/src/mesa/tnl/t_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_lighttmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_context.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_sse.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_fog.c
    U xenocara/lib/mesa/src/mesa/main/matrix.c
    U xenocara/lib/mesa/src/mesa/main/shader_query.cpp
    U xenocara/lib/mesa/src/mesa/main/arrayobj.c
    U xenocara/lib/mesa/src/mesa/main/texstore.h
    U xenocara/lib/mesa/src/mesa/main/formats.c
    U xenocara/lib/mesa/src/mesa/main/fbobject.c
    U xenocara/lib/mesa/src/mesa/main/teximage.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.c
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.c
    U xenocara/lib/mesa/src/mesa/main/queryobj.c
    U xenocara/lib/mesa/src/mesa/main/copyimage.c
    U xenocara/lib/mesa/src/mesa/main/texobj.c
    U xenocara/lib/mesa/src/mesa/main/remap.c
    U xenocara/lib/mesa/src/mesa/main/lines.c
    U xenocara/lib/mesa/src/mesa/main/format_pack.py
    U xenocara/lib/mesa/src/mesa/main/framebuffer.h
    U xenocara/lib/mesa/src/mesa/main/api_exec.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.h
    U xenocara/lib/mesa/src/mesa/main/pbo.h
    U xenocara/lib/mesa/src/mesa/main/dispatch.h
    U xenocara/lib/mesa/src/mesa/main/readpix.h
    U xenocara/lib/mesa/src/mesa/main/formatquery.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.h
    U xenocara/lib/mesa/src/mesa/main/texparam.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.c
    U xenocara/lib/mesa/src/mesa/main/extensions.h
    U xenocara/lib/mesa/src/mesa/main/fbobject.h
    U xenocara/lib/mesa/src/mesa/main/format_info.py
    U xenocara/lib/mesa/src/mesa/main/ff_fragment_shader.cpp
    U xenocara/lib/mesa/src/mesa/main/dlist.c
    U xenocara/lib/mesa/src/mesa/main/texgen.c
    U xenocara/lib/mesa/src/mesa/main/execmem.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.h
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.c
    U xenocara/lib/mesa/src/mesa/main/blend.c
    U xenocara/lib/mesa/src/mesa/main/pixel.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.c
    U xenocara/lib/mesa/src/mesa/main/clip.h
    U xenocara/lib/mesa/src/mesa/main/get_hash_params.py
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.c
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.h
    U xenocara/lib/mesa/src/mesa/main/colortab.c
    U xenocara/lib/mesa/src/mesa/main/texenv.c
    U xenocara/lib/mesa/src/mesa/main/bufferobj.h
    U xenocara/lib/mesa/src/mesa/main/blit.c
    U xenocara/lib/mesa/src/mesa/main/shared.c
    U xenocara/lib/mesa/src/mesa/main/atifragshader.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.c
    U xenocara/lib/mesa/src/mesa/main/extensions_table.h
    U xenocara/lib/mesa/src/mesa/main/light.h
    U xenocara/lib/mesa/src/mesa/main/getstring.c
    U xenocara/lib/mesa/src/mesa/main/formats.csv
    U xenocara/lib/mesa/src/mesa/main/mm.c
    U xenocara/lib/mesa/src/mesa/main/points.c
    U xenocara/lib/mesa/src/mesa/main/objectlabel.c
    U xenocara/lib/mesa/src/mesa/main/varray.c
    U xenocara/lib/mesa/src/mesa/main/pack.c
    U xenocara/lib/mesa/src/mesa/main/eval.h
    U xenocara/lib/mesa/src/mesa/main/blend.h
    U xenocara/lib/mesa/src/mesa/main/polygon.c
    U xenocara/lib/mesa/src/mesa/main/fog.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.h
    U xenocara/lib/mesa/src/mesa/main/bbox.h
    U xenocara/lib/mesa/src/mesa/main/bbox.c
    U xenocara/lib/mesa/src/mesa/main/context.c
    U xenocara/lib/mesa/src/mesa/main/errors.h
    U xenocara/lib/mesa/src/mesa/main/teximage.c
    U xenocara/lib/mesa/src/mesa/main/buffers.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/main/formatquery.c
    U xenocara/lib/mesa/src/mesa/main/extensions.c
    U xenocara/lib/mesa/src/mesa/main/state.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.c
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.h
    U xenocara/lib/mesa/src/mesa/main/glheader.h
    U xenocara/lib/mesa/src/mesa/main/texparam.c
    U xenocara/lib/mesa/src/mesa/main/points.h
    U xenocara/lib/mesa/src/mesa/main/mm.h
    U xenocara/lib/mesa/src/mesa/main/texstorage.c
    U xenocara/lib/mesa/src/mesa/main/clip.c
    U xenocara/lib/mesa/src/mesa/main/dlist.h
    U xenocara/lib/mesa/src/mesa/main/format_info.h
    U xenocara/lib/mesa/src/mesa/main/bufferobj.c
    U xenocara/lib/mesa/src/mesa/main/arrayobj.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.c
    U xenocara/lib/mesa/src/mesa/main/light.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.c
    U xenocara/lib/mesa/src/mesa/main/get_hash.h
    U xenocara/lib/mesa/src/mesa/main/state.h
    U xenocara/lib/mesa/src/mesa/main/convolve.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.c
    U xenocara/lib/mesa/src/mesa/main/arbprogram.h
    U xenocara/lib/mesa/src/mesa/main/texcompress.c
    U xenocara/lib/mesa/src/mesa/main/multisample.c
    U xenocara/lib/mesa/src/mesa/main/debug_output.c
    U xenocara/lib/mesa/src/mesa/main/texformat.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.h
    U xenocara/lib/mesa/src/mesa/main/glformats.c
    U xenocara/lib/mesa/src/mesa/main/multisample.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.c
    U xenocara/lib/mesa/src/mesa/main/core.h
    U xenocara/lib/mesa/src/mesa/main/accum.h
    U xenocara/lib/mesa/src/mesa/main/pack.h
    U xenocara/lib/mesa/src/mesa/main/atifragshader.h
    U xenocara/lib/mesa/src/mesa/main/stencil.h
    U xenocara/lib/mesa/src/mesa/main/shaderapi.c
    U xenocara/lib/mesa/src/mesa/main/remap.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.c
    U xenocara/lib/mesa/src/mesa/main/imports.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.py
    U xenocara/lib/mesa/src/mesa/main/get_hash_generator.py
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.c
    U xenocara/lib/mesa/src/mesa/main/texgen.h
    U xenocara/lib/mesa/src/mesa/main/hint.h
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.h
    U xenocara/lib/mesa/src/mesa/main/hash.h
    U xenocara/lib/mesa/src/mesa/main/viewport.h
    U xenocara/lib/mesa/src/mesa/main/dlopen.h
    U xenocara/lib/mesa/src/mesa/main/textureview.h
    U xenocara/lib/mesa/src/mesa/main/blit.h
    U xenocara/lib/mesa/src/mesa/main/errors.c
    U xenocara/lib/mesa/src/mesa/main/version.h
    U xenocara/lib/mesa/src/mesa/main/hash.c
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.c
    U xenocara/lib/mesa/src/mesa/main/texstore.c
    U xenocara/lib/mesa/src/mesa/main/glformats.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.h
    U xenocara/lib/mesa/src/mesa/main/mtypes.h
    U xenocara/lib/mesa/src/mesa/main/objectlabel.h
    U xenocara/lib/mesa/src/mesa/main/condrender.h
    U xenocara/lib/mesa/src/mesa/main/scissor.c
    U xenocara/lib/mesa/src/mesa/main/api_exec.c
    U xenocara/lib/mesa/src/mesa/main/macros.h
    U xenocara/lib/mesa/src/mesa/main/syncobj.h
    U xenocara/lib/mesa/src/mesa/main/image.h
    U xenocara/lib/mesa/src/mesa/main/compute.c
    U xenocara/lib/mesa/src/mesa/main/enable.h
    U xenocara/lib/mesa/src/mesa/main/texgetimage.h
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.c
    U xenocara/lib/mesa/src/mesa/main/syncobj.c
    U xenocara/lib/mesa/src/mesa/main/colortab.h
    U xenocara/lib/mesa/src/mesa/main/extensions_table.c
    U xenocara/lib/mesa/src/mesa/main/debug.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.c
    U xenocara/lib/mesa/src/mesa/main/dd.h
    U xenocara/lib/mesa/src/mesa/main/samplerobj.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.h
    U xenocara/lib/mesa/src/mesa/main/depth.c
    U xenocara/lib/mesa/src/mesa/main/texcompress.h
    U xenocara/lib/mesa/src/mesa/main/context.h
    U xenocara/lib/mesa/src/mesa/main/remap_helper.h
    U xenocara/lib/mesa/src/mesa/main/shared.h
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.c
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.h
    U xenocara/lib/mesa/src/mesa/main/convolve.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.h
    U xenocara/lib/mesa/src/mesa/main/compute.h
    U xenocara/lib/mesa/src/mesa/main/copyimage.h
    U xenocara/lib/mesa/src/mesa/main/formats.h
    U xenocara/lib/mesa/src/mesa/main/enable.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.c
    U xenocara/lib/mesa/src/mesa/main/textureview.c
    U xenocara/lib/mesa/src/mesa/main/shaderobj.h
    U xenocara/lib/mesa/src/mesa/main/feedback.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.c
    U xenocara/lib/mesa/src/mesa/main/vdpau.h
    U xenocara/lib/mesa/src/mesa/main/accum.c
    U xenocara/lib/mesa/src/mesa/main/format_parser.py
    U xenocara/lib/mesa/src/mesa/main/shaderobj.c
    U xenocara/lib/mesa/src/mesa/main/robustness.c
    U xenocara/lib/mesa/src/mesa/main/texgetimage.c
    U xenocara/lib/mesa/src/mesa/main/attrib.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.c
    U xenocara/lib/mesa/src/mesa/main/clear.h
    U xenocara/lib/mesa/src/mesa/main/debug_output.h
    U xenocara/lib/mesa/src/mesa/main/scissor.h
    U xenocara/lib/mesa/src/mesa/main/pixel.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.h
    U xenocara/lib/mesa/src/mesa/main/attrib.c
    U xenocara/lib/mesa/src/mesa/main/texenvprogram.h
    U xenocara/lib/mesa/src/mesa/main/stencil.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.h
    U xenocara/lib/mesa/src/mesa/main/varray.h
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.c
    U xenocara/lib/mesa/src/mesa/main/histogram.c
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.h
    U xenocara/lib/mesa/src/mesa/main/drawtex.c
    U xenocara/lib/mesa/src/mesa/main/shaderapi.h
    U xenocara/lib/mesa/src/mesa/main/condrender.c
    U xenocara/lib/mesa/src/mesa/main/histogram.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.c
    U xenocara/lib/mesa/src/mesa/main/pbo.c
    U xenocara/lib/mesa/src/mesa/main/texenv.h
    U xenocara/lib/mesa/src/mesa/main/imports.h
    U xenocara/lib/mesa/src/mesa/main/feedback.h
    U xenocara/lib/mesa/src/mesa/main/depth.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.h
    U xenocara/lib/mesa/src/mesa/main/queryobj.h
    U xenocara/lib/mesa/src/mesa/main/texobj.h
    U xenocara/lib/mesa/src/mesa/main/readpix.c
    U xenocara/lib/mesa/src/mesa/main/debug.c
    U xenocara/lib/mesa/src/mesa/main/texstorage.h
    U xenocara/lib/mesa/src/mesa/main/colormac.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.c
    U xenocara/lib/mesa/src/mesa/main/clear.c
    U xenocara/lib/mesa/src/mesa/main/uniform_query.cpp
    U xenocara/lib/mesa/src/mesa/main/shaderimage.c
    U xenocara/lib/mesa/src/mesa/main/framebuffer.c
    U xenocara/lib/mesa/src/mesa/main/texstate.h
    U xenocara/lib/mesa/src/mesa/main/image.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.h
    U xenocara/lib/mesa/src/mesa/main/compiler.h
    U xenocara/lib/mesa/src/mesa/main/texstate.c
    U xenocara/lib/mesa/src/mesa/main/polygon.h
    U xenocara/lib/mesa/src/mesa/main/arbprogram.c
    U xenocara/lib/mesa/src/mesa/main/get.h
    U xenocara/lib/mesa/src/mesa/main/fog.c
    U xenocara/lib/mesa/src/mesa/main/texformat.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.h
    U xenocara/lib/mesa/src/mesa/main/shaderimage.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.c
    U xenocara/lib/mesa/src/mesa/main/lines.h
    U xenocara/lib/mesa/src/mesa/main/matrix.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.h
    U xenocara/lib/mesa/src/mesa/main/enums.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.h
    U xenocara/lib/mesa/src/mesa/main/format_unpack.h
    U xenocara/lib/mesa/src/mesa/main/barrier.c
    U xenocara/lib/mesa/src/mesa/main/drawtex.h
    U xenocara/lib/mesa/src/mesa/main/barrier.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.h
    U xenocara/lib/mesa/src/mesa/main/version.c
    U xenocara/lib/mesa/src/mesa/main/hint.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.c
    U xenocara/lib/mesa/src/mesa/main/buffers.c
    U xenocara/lib/mesa/src/mesa/main/viewport.c
    U xenocara/lib/mesa/src/mesa/main/config.h
    U xenocara/lib/mesa/src/mesa/main/eval.c
    U xenocara/lib/mesa/src/mesa/main/enums.h
    U xenocara/lib/mesa/src/mesa/main/get.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.c
    U xenocara/lib/mesa/src/mesa/main/tests/stubs.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/enum_strings.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_formats.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/main/tests/program_state_string.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_extensions.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/dispatch_sanity.cpp
    U xenocara/lib/mesa/src/mesa/program/program_parse_extra.c
    U xenocara/lib/mesa/src/mesa/program/program_parser.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.h
    U xenocara/lib/mesa/src/mesa/program/prog_print.c
    U xenocara/lib/mesa/src/mesa/program/program.h
    U xenocara/lib/mesa/src/mesa/program/program_lexer.l
    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.h
    U xenocara/lib/mesa/src/mesa/program/symbol_table.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.y
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.cpp
    U xenocara/lib/mesa/src/mesa/program/program.c
    U xenocara/lib/mesa/src/mesa/program/prog_opt_constant_fold.c
    U xenocara/lib/mesa/src/mesa/program/prog_print.h
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.c
    U xenocara/lib/mesa/src/mesa/program/lex.yy.c
    U xenocara/lib/mesa/src/mesa/program/prog_noise.h
    U xenocara/lib/mesa/src/mesa/program/programopt.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.h
    U xenocara/lib/mesa/src/mesa/program/dummy_errors.c
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.h
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.c
    U xenocara/lib/mesa/src/mesa/program/programopt.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.h
    U xenocara/lib/mesa/src/mesa/program/prog_noise.c
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.c
    U xenocara/lib/mesa/src/mesa/program/symbol_table.c
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.h
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.c
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.sources
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.c
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.in
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.h
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.am
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_queue.h
    U xenocara/lib/mesa/bin/compile
    U xenocara/lib/mesa/bin/depcomp
    U xenocara/lib/mesa/bin/test-driver
    U xenocara/lib/mesa/bin/missing
    U xenocara/lib/mesa/bin/config.guess
    U xenocara/lib/mesa/bin/ar-lib
    U xenocara/lib/mesa/bin/config.sub
    U xenocara/lib/mesa/bin/ltmain.sh
    U xenocara/lib/mesa/bin/install-sh
    U xenocara/lib/mesa/include/c99_math.h
    U xenocara/lib/mesa/include/c99_alloca.h
    U xenocara/lib/mesa/include/no_extern_c.h
    U xenocara/lib/mesa/include/c99_compat.h
    U xenocara/lib/mesa/include/GL/wglext.h
    U xenocara/lib/mesa/include/GL/osmesa.h
    U xenocara/lib/mesa/include/GL/glx_mangle.h
    U xenocara/lib/mesa/include/GL/mesa_glinterop.h
    U xenocara/lib/mesa/include/GL/glx.h
    U xenocara/lib/mesa/include/GL/gl_mangle.h
    U xenocara/lib/mesa/include/GL/glext.h
    U xenocara/lib/mesa/include/GL/glcorearb.h
    U xenocara/lib/mesa/include/GL/gl.h
    U xenocara/lib/mesa/include/GL/glxext.h
    U xenocara/lib/mesa/include/GL/internal/dri_interface.h
    U xenocara/lib/mesa/include/d3dadapter/d3dadapter9.h
    U xenocara/lib/mesa/include/d3dadapter/present.h
    U xenocara/lib/mesa/include/d3dadapter/drm.h
    U xenocara/lib/mesa/include/HaikuGL/README
    U xenocara/lib/mesa/include/HaikuGL/OpenGLKit.h
    U xenocara/lib/mesa/include/HaikuGL/GLView.h
    U xenocara/lib/mesa/include/HaikuGL/GLRenderer.h
    U xenocara/lib/mesa/include/KHR/khrplatform.h
    U xenocara/lib/mesa/include/D3D9/.editorconfig
    U xenocara/lib/mesa/include/D3D9/d3d9types.h
    U xenocara/lib/mesa/include/D3D9/d3d9caps.h
    U xenocara/lib/mesa/include/D3D9/d3d9.h
    U xenocara/lib/mesa/include/GLES2/gl2platform.h
    U xenocara/lib/mesa/include/GLES2/gl2ext.h
    U xenocara/lib/mesa/include/GLES2/gl2.h
    U xenocara/lib/mesa/include/GLES/glplatform.h
    U xenocara/lib/mesa/include/GLES/glext.h
    U xenocara/lib/mesa/include/GLES/gl.h
    U xenocara/lib/mesa/include/GLES/egl.h
    U xenocara/lib/mesa/include/EGL/eglmesaext.h
    U xenocara/lib/mesa/include/EGL/eglextchromium.h
    U xenocara/lib/mesa/include/EGL/eglext.h
    U xenocara/lib/mesa/include/EGL/eglplatform.h
    U xenocara/lib/mesa/include/EGL/egl.h
    U xenocara/lib/mesa/include/CL/cl_gl_ext.h
    U xenocara/lib/mesa/include/CL/cl_d3d10.h
    U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing.h
    U xenocara/lib/mesa/include/CL/cl_gl.h
    U xenocara/lib/mesa/include/CL/cl_d3d11.h
    U xenocara/lib/mesa/include/CL/opencl.h
    U xenocara/lib/mesa/include/CL/cl.h
    U xenocara/lib/mesa/include/CL/cl.hpp
    U xenocara/lib/mesa/include/CL/cl_ext.h
    U xenocara/lib/mesa/include/CL/cl_platform.h
    U xenocara/lib/mesa/include/CL/cl_egl.h
    U xenocara/lib/mesa/include/GLES3/gl31.h
    U xenocara/lib/mesa/include/GLES3/gl3.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/c11/.editorconfig
    U xenocara/lib/mesa/include/c11/threads_posix.h
    U xenocara/lib/mesa/include/c11/threads_win32.h
    U xenocara/lib/mesa/include/c11/threads.h
    U xenocara/lib/mesa/include/vulkan/vk_platform.h
    U xenocara/lib/mesa/include/vulkan/vk_icd.h
    U xenocara/lib/mesa/include/vulkan/vulkan.h
    U xenocara/lib/mesa/include/vulkan/vulkan_intel.h
    U xenocara/lib/mesa/include/pci_ids/virtio_gpu_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeon_pci_ids.h
    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/radeonsi_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i965_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r600_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r300_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/vmwgfx_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r200_pci_ids.h
    U xenocara/lib/mesa/doxygen/gbm.doxy
    U xenocara/lib/mesa/doxygen/common.doxy
    U xenocara/lib/mesa/doxygen/gallium.doc
    U xenocara/lib/mesa/doxygen/README
    U xenocara/lib/mesa/doxygen/tnl_dd.doxy
    U xenocara/lib/mesa/doxygen/swrast.doxy
    U xenocara/lib/mesa/doxygen/i965.doxy
    U xenocara/lib/mesa/doxygen/radeon_subset.doxy
    U xenocara/lib/mesa/doxygen/header_subset.html
    U xenocara/lib/mesa/doxygen/doxy.bat
    U xenocara/lib/mesa/doxygen/vbo.doxy
    U xenocara/lib/mesa/doxygen/nir.doxy
    U xenocara/lib/mesa/doxygen/tnl.doxy
    U xenocara/lib/mesa/doxygen/math.doxy
    U xenocara/lib/mesa/doxygen/swrast_setup.doxy
    U xenocara/lib/mesa/doxygen/main.doxy
    U xenocara/lib/mesa/doxygen/Makefile
    U xenocara/lib/mesa/doxygen/glapi.doxy
    U xenocara/lib/mesa/doxygen/core_subset.doxy
    U xenocara/lib/mesa/doxygen/math_subset.doxy
    U xenocara/lib/mesa/doxygen/glsl.doxy
    U xenocara/lib/mesa/doxygen/header.html
    U xenocara/lib/mesa/doxygen/gallium.doxy
    
    5 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	2017/01/18 22:53:25

Modified files:
	lib/mesa       : 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: egl.h eglext.h eglplatform.h 
	lib/mesa/include/GL: glcorearb.h glext.h glxext.h wglext.h 
	lib/mesa/include/GLES: egl.h gl.h glext.h glplatform.h 
	lib/mesa/include/GLES2: gl2.h gl2ext.h gl2platform.h 
	lib/mesa/include/GLES3: gl3.h gl31.h gl3ext.h gl3platform.h 
	lib/mesa/include/KHR: khrplatform.h 
	lib/mesa/src/compiler: Makefile.glsl.am Makefile.in 
	lib/mesa/src/getopt: getopt.h getopt_long.c 
	lib/mesa/src/glx: Makefile.am Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i965: Makefile.am Makefile.in 
Removed files:
	lib/mesa/src/compiler/glsl/tests/.deps: cache_test.Po 

Log message:
Merge Mesa 13.0.3


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/18 22:53:40

Modified files:
	sys/arch/i386/i386: vmm.c 
	sys/arch/i386/include: vmmvar.h 
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 

Log message:
rename a couple of macros that are causing me a merge headache with the
next SVM diff


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/18 23:22:56

Modified files:
	distrib/notes/armv7: prep 

Log message:
The u-boot package was renamed to u-boot-arm.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/18 23:41:57

Modified files:
	faq            : faq14.html 

Log message:
disklabel partitions a, b and c are special while i is kinda special, so
use different ones in the softraid examples.

requested by & ok phessler


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/18 23:48:50

Modified files:
	etc            : master.passwd group 
	etc/mail       : aliases 

Log message:
Add the _syspatch user/group: an unprivileged user for syspatch(8) used to fetch
and verify patches.

discussed with deraadt@ rpe@
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/18 23:55:58

Modified files:
	distrib/armv7/miniroot: Makefile.inc boot.cmd 
	distrib/armv7/ramdisk: install.md 

Log message:
Mainline u-boot on SABRE Lite/BD-SL-i.MX6 does not have the generic
distro hooks that automatically load an efi file if found.

Instead it looks for a '6x_bootscript' u-boot script as the original
boundary devices u-boot did.

Create a script in the nitrogen miniroot and on install that will
load a dtb and bootarm.efi then call bootefi.  Based on notes
from matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/19 00:01:37

Modified files:
	usr.bin/openssl: ocsp.c 

Log message:
fix openssl ocsp to not report sucess when the ocsp responder rejects us
ok deraadt@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/19 01:06:27

Modified files:
	distrib/sets/lists/base: md.loongson 
	usr.sbin/wsfontload: Makefile 

Log message:
Enable building wsfontload on Loongson.

OK visa@, mpi@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 01:31:53

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Drop the _FETCH variable. It's useless, we are using ftp(1) specific options
that are different on the two invocations; it's not like we'll support using
wget|curl to fetch syspatches anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/19 01:41:50

Modified files:
	regress/usr.bin/ftp: redirect.sh 

Log message:
Make it so if the "server" is slow starting we don't fail..
Since I suspect bluhm@ is hitting this on whatever derpy thing
is running the ftp regress test continuously


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 01:45:23

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Use the _syspatch user.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/19 01:55:46

Modified files:
	sys/net        : bfd.c 

Log message:
when deconfiguring a BFD session, clear both the RTF_BFD flag on the
route, and the pointer to the route bfd uses


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 02:08:45

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
ls_missing(): as a precaution, don't output anything on stdout when running
ftp(1) to prevent corrupting the patch list; we are already running in silent
mode but better safe than sorry.

Read the syspatch mirror base URL using stripcom() /etc/mirror.conf for the time
being; discussed with deraadt@ and rpe@ -- naming is not set in stone yet.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/19 02:08:50

Modified files:
	sys/net        : bfd.c 

Log message:
rtisvalid() checks for RTF_UP, so instead check for RTF_BFD


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/19 02:57:39

Modified files:
	sys/net        : bfd.c 

Log message:
make error handling a function, and use it in a few places

not all error handling is converted, some require a bit more thought


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/19 03:16:22

Modified files:
	sys/dev/pci    : vmmci.c 
	usr.sbin/vmd   : virtio.c virtio.h 

Log message:
Export the host time to the guest, add it as a timedelta sensor in vmmci(4)

OK kettenis@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/19 03:19:39

Modified files:
	sys/net        : bfd.c 

Log message:
when parsing a BFD packet, avoid an uninitialized variable if the
version check fails

found by jsg@ with clang


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/19 03:20:29

Modified files:
	sys/dev/pci    : hifn7751.c 

Log message:
Zero a return value variable at the start of hifn_process() to avoid
using it uninitialised in one path.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/19 05:36:50

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
No need for conditionals around free(9)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/19 06:34:59

Modified files:
	usr.bin/mandoc : cgi.c man_html.c mdoc_html.c 

Log message:
Start cleanup: trim useless HTML comments and <div> elements
on the <html> and <body> levels.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/19 06:41:48

Modified files:
	regress/sys/netinet/pmtu: Makefile tcp_atomicfrag6.py 
	                          tcp_connect.py tcp_connect6.py 

Log message:
Sending a PMTU ICMP packet will trigger a TCP retransmit.  The test
assumed that it would have to send an additional ACK for that.
There was a race where the test could miss the TCP retransmit before
it did send the ACK.  Sniff for the TCP retransmit before sending
the ICMP packet and do not send the ACK.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/19 06:55:49

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
Adjust indentation of the HTML output to the conventions established
by html.c.  No semantic change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/19 07:18:50

Modified files:
	benchmarks/speedtest-cli: Makefile distinfo 

Log message:
update to speedtest-cli-1.0.2


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/19 07:49:19

Modified files:
	sys/netinet6   : icmp6.c ip6_output.c 

Log message:
RFC 8021 "IPv6 Atomic Fragments Considered Harmful" deprecates
generating atomic fragments.  So remove the code that sends them.
CVE-2016-10142 has been assigned to that issue.
OK visa@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/19 07:51:02

Added files:
	sys/arch/loongson/include: mplock.h 

Log message:
Add mplock.h for loongson.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/19 07:59:04

Modified files:
	net/dnscrypt-proxy: Makefile distinfo 

Log message:
update to dnscrypt-proxy-1.9.3


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/19 08:00:38

Modified files:
	regress/sys/netinet/pmtu: tcp_atomicfrag6.py tcp_connect.py 
	                          tcp_connect6.py udp_atomicfrag6.py 
	                          udp_echo6.py 

Log message:
Our kernel does not generate IPv6 atomic fragments anymore.  Check
that the test does not receive any.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/19 08:09:04

Modified files:
	sys/arch/loongson/dev: mainbus.c 
	sys/arch/loongson/include: autoconf.h cpu.h intr.h 
	sys/arch/loongson/loongson: locore.S machdep.c 

Log message:
Extend struct platform with MP control functions, and add bootstrap code
for secondary CPUs.

Discussed with miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/19 08:27:26

Modified files:
	usr.bin/mandoc : html.c man_html.c mdoc_html.c 

Log message:
Clean up CSS rules for sections and paragraphs.
Start using real macro names for CSS classes.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/19 08:48:34

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
clean up .Sx and .Xr HTML markup


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/19 09:28:17

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-src_Makefile_in 
	editors/nano/pkg: PLIST 
Added files:
	editors/nano/patches: patch-doc_nano_1 
Removed files:
	editors/nano/patches: patch-doc_man_nano_1 

Log message:
update to 2.7.4: various bug fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/19 09:56:53

Modified files:
	usr.bin/mandoc : html.c html.h mdoc_html.c 

Log message:
clean up markup of .Bd, .D1, .Dl, .Li, and .Ql;
in particular, stop abuse of <blockquote>


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/01/19 10:08:42

Modified files:
	usr.bin/xargs  : xargs.c 
	regress/usr.bin/xargs: xargs-L.sh 

Log message:
Fix -L/-I processing in -0 mode so that NUL-delimited entries are
treated as "lines".  From FreeBSD.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/19 11:04:34

Modified files:
	lang/seed7     : Makefile 

Log message:
Standard Makefile layout


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2017/01/19 11:30:00

Modified files:
	.              : want.html 

Log message:
I need an AR5008E-3NX wifi card and the one I ordered from ebay is broken.
So I'll try my luck here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/01/19 12:31:59

Modified files:
	net/corebird   : Makefile distinfo 
	net/corebird/pkg: PLIST 

Log message:
update net/corebird 1.3.3 => 1.4.1

OK fcambus@

port changes:
- new dependency on textproc/gspell for spellchecking
- 2 new locale files (PLIST regenerated)
- WANTLIB regenerated, new entries are enchant, gspell-1
and stdc++
- add explicit LIB_DEPENDS on databases/sqlite3

upstream changelog:

Version 1.4.1 (2017-01-08)

Changelog:
- Lower the required gspell version to 1.0
- Work around a binding problem in the gtk+ 3.18 vapi of vala 0.30

Version 1.4 (2017-01-06)

Changelog:
- Images in quoted tweets now look more like they actually belong to
the quoted tweet instead of the quoting tweet.
- Allow deleting tweets from the tweet info page and not just from
timelines.
- Fix the user completion not showing all possible results
- Focus the already opened window for an account if the account gets
selected in the accounts popover
- Avoid window resizing when typing in the Direct Message text box
- Add 'q' accelerator to tweet rows for quoting
- Add spellchecking. This add a dependency to gspell
- Increase gtk+ dependency to 3.18 to get rid of some workarounds.
- Increase avatar size in profiles and slightly overlap them over the
banner. Also, always show the full banner.
- Fix completion popup positioning under Wayland
- Add experimental meson build files
- Fix some videos not playing correctly
- Add a minimal video progress indicator to the video dialog
- Fix the retweet/favorite count updating in the tweet info page


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 12:32:06

Modified files:
	audio/pulseaudio: Makefile distinfo 
	audio/pulseaudio/patches: patch-configure_ac 
	                          patch-src_Makefile_am 
	audio/pulseaudio/pkg: PLIST 
Added files:
	audio/pulseaudio/patches: patch-src_pulsecore_core-util_c 
Removed files:
	audio/pulseaudio/patches: patch-src_pulsecore_macro_h 

Log message:
Update to pulseaudio-10.0.

ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/01/19 12:44:48

Log message:
    Import devel/unibilium.
    
    pkg/DESCR:
    ---8<---
    Unibilium is a very basic terminfo library. It doesn't depend on curses or any
    other library. It also doesn't use global variables, so it should be
    thread-safe.
    --->8---
    
    OK czarkoff@, thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20170119
    
    N ports/devel/unibilium/Makefile
    N ports/devel/unibilium/distinfo
    N ports/devel/unibilium/pkg/DESCR
    N ports/devel/unibilium/pkg/PLIST
    N ports/devel/unibilium/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/01/19 12:47:04

Modified files:
	devel          : Makefile 

Log message:
Link devel/unibilium.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/19 12:49:58

Log message:
    Import py-pandocfilters 1.4.1, ok danj@
    
    Python module for writing pandoc filters. Pandoc filters are pipes that
    read a JSON serialization of the Pandoc AST from stdin, transform it in
    some way, and write it to stdout.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170120
    
    N ports/textproc/py-pandocfilters/Makefile
    N ports/textproc/py-pandocfilters/distinfo
    N ports/textproc/py-pandocfilters/pkg/PLIST
    N ports/textproc/py-pandocfilters/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/19 12:53:36

Modified files:
	textproc       : Makefile 

Log message:
+py-pandocfilters
+py-pandocfilters,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/19 13:22:49

Modified files:
	devel/py-decorator: Makefile distinfo 

Log message:
Update to py-decorator 4.0.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/01/19 13:34:04

Log message:
    Import devel/libtermkey.
    
    pkg/DESCR:
    ---8<---
    This library allows easy processing of keyboard entry from terminal-based
    programs. It handles all the necessary logic to recognise special keys, UTF-8
    combining, and so on, with a simple interface.
    --->8---
    
    OK czarkoff@, thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20170119
    
    N ports/devel/libtermkey/Makefile
    N ports/devel/libtermkey/distinfo
    N ports/devel/libtermkey/pkg/DESCR
    N ports/devel/libtermkey/pkg/PLIST
    N ports/devel/libtermkey/pkg/README
    N ports/devel/libtermkey/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/01/19 13:37:07

Modified files:
	devel          : Makefile 

Log message:
Link devel/libtermkey.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/19 13:39:36

Modified files:
	www/py-requests: Makefile distinfo 

Log message:
Update to py-requests 2.12.5


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 16:04:48

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
/etc/mirror.conf -> /etc/installurl
discussed with deraadt@ beck@ rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/19 16:16:47

Modified files:
	sys/net        : if_loop.c 

Log message:
Do not return an error code for SIOCSIFFLAGS.

This synchronize lo(4) with other pseudo-driver and fix a regression
introduced by the refactoring of the UP/DOWN logic in if.c

ok dlg@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/19 16:17:19

Modified files:
	sys/arch/i386/include: specialreg.h 
	sys/arch/amd64/include: specialreg.h 

Log message:
SVM: VMCB intercept definitions


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/19 16:18:11

Modified files:
	sys/arch/i386/i386: vmm.c 
	sys/arch/amd64/amd64: vmm.c 

Log message:
SVM: register reset and intercept setup code


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/19 16:18:29

Modified files:
	sbin/route     : Makefile route.c 
	sys/net        : bfd.c bfd.h route.h rtsock.c 

Log message:
add hooks so we can query the current state of a BFD session

bfd session details are visible with "route -n get 192.0.2.1 -bfd"

OK mpi@ deraadt@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/19 16:18:55

Modified files:
	sys/arch/amd64/include: vmmvar.h 
	sys/arch/i386/include: vmmvar.h 

Log message:
forgot this in previous commit (SVM_MSR* macro definitions)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 16:26:07

Modified files:
	x11/gnome/tracker: Makefile distinfo 

Log message:
Update to meta-tracker-1.10.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 16:41:57

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Simplify: bundle stripcom().


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/19 16:47:04

Modified files:
	lib/csu        : crt0.c 
	lib/csu/alpha  : md_init.h 
	lib/csu/sh     : md_init.h 

Log message:
MD_START is now always ___start, so expand and eliminate it

ok phessler@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/19 17:37:40

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
Rework internal_verify, mostly from OpenSSL. so we can progress
towards cleaning up the V_OK stuff.
ok kinichiro@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 17:50:16

Modified files:
	games/atc      : log.c 

Log message:
Nuke some excess whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/19 17:51:56

Modified files:
	sys/net        : if_enc.c if_pflow.c if_pfsync.c if_spppsubr.c 

Log message:
No need to handle SIOCAIFADDR in drivers, it's never passed down to
them.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/19 17:52:32

Modified files:
	sys/dev/sdmmc  : sdmmc_scsi.c 

Log message:
sdmmc sd(4) devices should be marked SID_REMOVABLE, so that eject(1) can
succeed.  No downside in the bottom part of the driver.
ok dlg krw


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 17:52:49

Modified files:
	gnu/usr.bin/cvs/src: log.c 

Log message:
Nuke some excess whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 17:55:52

Modified files:
	usr.bin/vi/common: log.c 

Log message:
Nuke some excess whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 18:12:44

Modified files:
	games/backgammon/teachgammon: teach.c tutor.c 
	usr.sbin/rpc.statd: statd.c 

Log message:
Mark functions that do not return as __dead to quiet gcc warnings.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 18:19:18

Modified files:
	usr.bin/ftp    : small.c util.c 

Log message:
#ifndef SMALL around a couple of non-SMALL labels.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/19 18:21:18

Modified files:
	usr.sbin/ntpd  : ntp.c 

Log message:
add logging messages to distinguish which safty check failed


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/19 18:55:25

Modified files:
	games/backgammon/teachgammon: data.c tutor.h 

Log message:
mark the prototypes of tutor() and leave() as __dead as well.

ok guenther, krw


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/19 18:59:09

Modified files:
	sys/stand/efi/include: efi_nii.h efiapi.h eficon.h efidevp.h 
	                       efifpswa.h efigop.h efinet.h efipxebc.h 
	                       efiser.h 

Log message:
Fix (currently unused) GUID definitions to match the EFI_GUID struct.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 20:31:40

Modified files:
	usr.sbin/rarpd : rarpd.c 

Log message:
Split error() into error() and warn() so that error() can be marked
__dead and thus let gcc sleep at night.

ok tb@ beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 20:47:31

Modified files:
	games/hunt/huntd: conf.c 
	usr.bin/getcap : getcap.c 
	usr.sbin/rbootd: utils.c 

Log message:
In "%.*s" the * takes (int). gcc whines if you try to use the result
of pointer subtraction without a cast. So cast those expressions
to (int).

Switch one local variable to the same type as the parameter it is
compared to.

ok deraadt@ guenther@ beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/19 20:48:03

Modified files:
	sys/net        : ifq.c ifq.h 

Log message:
keep output packet counters on the ifq structure.

these copy what is counted on the output path on the ifnet struct,
except ifq counts both packets and bytes when a packet is queued
instead of just the bytes.

all the counters are protected by the ifq mutex except for ifq_errors,
which can be updated safely from inside a start routine because the
ifq machinery serialises them.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/19 20:56:46

Modified files:
	sys/net        : if_pfsync.c 

Log message:
pfsync_update_net_tdb() is only called at IPL_SOFTNET, no need for a
splsofnet()/splx() dance.

Tested by Hrvoje Popovski, ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 21:03:53

Modified files:
	usr.bin/ftp    : extern.h main.c 

Log message:
Straggling __dead. Mark usage() as __dead and make gcc happier.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 21:14:52

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/19 21:15:10

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.40.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/19 21:22:58

Modified files:
	sys/netinet    : ipsec_input.c ipsec_output.c 

Log message:
Kill recursive splsofnet()/splx() dances.

Tested by Hrvoje Popovski, ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/19 21:53:15

src/regress/sys/net/pf_table

Update of /cvs/src/regress/sys/net/pf_table
In directory cvs.openbsd.org:/tmp/cvs-serv13575/pf_table

Log Message:
Directory /cvs/src/regress/sys/net/pf_table added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/19 21:54:44

Added files:
	regress/sys/net/pf_table: Makefile table.hit table.in table.miss 

Log message:
Add a basic test for pf_table using pfctl -t x -T test


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/19 21:56:17

Modified files:
	regress/sys/net: Makefile 

Log message:
Hook up the pf_table regress test


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/19 22:00:53

Modified files:
	.              : Makefile.cross 

Log message:
Adjust cross-compilation infrastructure to cope with builduser
permission requirements.

From Dale Rahn.

ok tb@
"commit it" guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/19 22:03:48

Modified files:
	sys/net        : if_pfsync.h if_bridge.h 

Log message:
Stop using pfsockaddr_union outside of pf so that we can remove its usage
inside pf later on. pfsync can use the one from ip_ipsp.h and bridge can
have its own version for now.
OK mpi@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 22:51:50

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
Move a couple of variables that are unused in SMALL under #ifndef SMALL.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/19 23:22:38

Modified files:
	usr.sbin/rarpd : rarpd.c 

Log message:
Oops. one "error(NONFATAL,..." got flipped to "error(...)" instead
of "warning(...)".

Spotted by & ok procter@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/20 00:55:20

Modified files:
	lib/libcompiler_rt: Makefile 
	lib/libcxx     : Makefile 
	lib/libcxxabi  : Makefile 

Log message:
Depend compilation on the compiler version, so that we can always
enter the directory to create an objdir.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/20 01:03:21

Modified files:
	sys/arch/arm64/arm64: machdep.c 
	sys/arch/arm64/dev: com_fdt.c pluart.c 

Log message:
Exterminate comcnspeed and comcnmode which were uninitialized and
caused issues in the tty layer.  Use the tty defaults for the cflags,
while still overwriting the terminal speed with B115200.

Found with lots of help from deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/20 01:10:54

Modified files:
	sys/net        : route.c route.h rtsock.c 

Log message:
use per-cpu counters for rtstat.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/20 01:14:55

Modified files:
	usr.bin/openssl: ocsp.c 

Log message:
fix pledge for openssl ocsp - we will need tty to ask for a cert pw


CVSROOT:	/cvs
Module name:	ports
Changes by:	florian@cvs.openbsd.org	2017/01/20 01:26:39

Modified files:
	net/powerdns   : Makefile distinfo 
Removed files:
	net/powerdns/patches: patch-pdns_dns_random_cc 
	                      patch-pdns_opensslsigners_cc 

Log message:
update to 4.0.3
OK ajacoutot


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/20 01:37:48

Modified files:
	sys/net        : bfd.c 

Log message:
correctly set our rx timer to be the required minimum, not the bare
minimum the neighbor supports


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/20 01:50:45

Modified files:
	sys/net        : bfd.c 

Log message:
only increase the error counter if we are in a not-down state


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/20 01:57:12

Modified files:
	usr.bin/openssl: asn1pars.c ca.c certhash.c crl.c crl2p7.c 
	                 dgst.c dh.c dhparam.c dsa.c dsaparam.c ec.c 
	                 ecparam.c enc.c gendh.c gendsa.c genpkey.c 
	                 genrsa.c nseq.c ocsp.c openssl.c passwd.c 
	                 pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c 
	                 pkeyutl.c rand.c req.c rsa.c rsautl.c 
	                 s_client.c s_server.c s_time.c sess_id.c 
	                 smime.c spkac.c ts.c x509.c 

Log message:
rearrange pledge promises into the canonical order; easier to eyeball


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/20 02:01:19

Modified files:
	sys/net        : bfd.c 

Log message:
don't increase the error counter in the not-down case, in general


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/20 02:11:18

Modified files:
	usr.sbin/snmpd : mib.c 

Log message:
Because of pfsync this needs ip_ipsp.h. Missed in the pfsockaddr_union cleanup.
Found by krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/20 02:14:12

Modified files:
	productivity/kmymoney: Makefile 
Added files:
	productivity/kmymoney/patches: 
	                               patch-kmymoney_plugins_kbanking_CMakeLists_txt 

Log message:
Fix KBanking after update to 4.8.0.

The actual issue was that gwenhyfar had CMake interface different to what
KMyMoney was expecting.

Initial report from dorian dot buettner at gmx dot de, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/20 02:17:59

Modified files:
	net/munin      : Makefile distinfo 

Log message:
bug fix update to munin-2.0.30


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/20 02:18:52

Modified files:
	sys/net        : bfd.c 

Log message:
fix typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/20 02:24:40

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/patches: patch-bindings_python_Makefile_in 
	textproc/link-grammar/pkg: PLIST-main 

Log message:
Update to link-grammar-5.3.14.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/20 02:36:42

Modified files:
	usr.sbin/tcpdump: print-pfsync.c 

Log message:
Another ip_ipsp.h missing, found by krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/01/20 02:49:19

Log message:
    Import PDFMiner 20140328
    
    PDFMiner is a tool for extracting information from PDF documents. Unlike other
    PDF-related tools, it focuses entirely on getting and analyzing text data.
    PDFMiner allows one to obtain the exact location of text in a page, as well as
    other information such as fonts or lines. It includes a PDF converter that can
    transform PDF files into other text formats (such as HTML). It has an
    extensible PDF parser that can be used for other purposes than text analysis.
    
    ok shadchin@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20170120
    
    N ports/textproc/py-pdfminer/Makefile
    N ports/textproc/py-pdfminer/distinfo
    N ports/textproc/py-pdfminer/pkg/PLIST
    N ports/textproc/py-pdfminer/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/20 02:54:44

Modified files:
	usr.sbin/ldapctl: Makefile 
	usr.sbin/ldapd : Makefile 

Log message:
Correctly list all libraries required.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/20 03:03:10

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-scripts_mysqld_safe_sh 
	                           patch-storage_connect_reldef_cpp 
	databases/mariadb/pkg: PLIST-server PLIST-tests 

Log message:
update to MariaDB 10.0.29, from Brad (maintainer)

CVE-2016-6664, CVE-2017-3238, CVE-2017-3243, CVE-2017-3244, CVE-2017-3257,
CVE-2017-3258, CVE-2017-3265, CVE-2017-3291, CVE-2017-3312, CVE-2017-3317,
CVE-2017-3318


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/01/20 03:03:25

Modified files:
	textproc       : Makefile 

Log message:
+py-pdfminer


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/20 03:05:13

Modified files:
	databases/mariadb: Tag: OPENBSD_6_0 Makefile distinfo 
	databases/mariadb/patches: Tag: OPENBSD_6_0 
	                           patch-scripts_mysqld_safe_sh 
	                           patch-storage_connect_reldef_cpp 
	databases/mariadb/pkg: Tag: OPENBSD_6_0 PLIST-server PLIST-tests 

Log message:
MFC update to MariaDB 10.0.29

CVE-2016-6664, CVE-2017-3238, CVE-2017-3243, CVE-2017-3244, CVE-2017-3257,
CVE-2017-3258, CVE-2017-3265, CVE-2017-3291, CVE-2017-3312, CVE-2017-3317,
CVE-2017-3318


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/20 03:18:52

Modified files:
	sys/net        : bfd.c 

Log message:
if a route is not valid, set down instead of admindown


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/20 03:26:16

Modified files:
	usr.bin/sed    : compile.c defs.h extern.h main.c misc.c 
	                 process.c 

Log message:
Split error() into error() and warning() so error() can be marked __dead to
appease gcc.

ok procter@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 03:40:30

Modified files:
	libexec/ld.so/aarch64: archdep.h 
	libexec/ld.so/alpha: archdep.h 
	libexec/ld.so/amd64: archdep.h 
	libexec/ld.so/arm: archdep.h 
	libexec/ld.so/hppa: archdep.h 
	libexec/ld.so/i386: archdep.h 
	libexec/ld.so/m88k: archdep.h 
	libexec/ld.so/mips64: archdep.h 
	libexec/ld.so/powerpc: archdep.h 
	libexec/ld.so/sh: archdep.h 
	libexec/ld.so/sparc64: archdep.h 

Log message:
Delete ancient macros and unnecessary #includes

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/20 04:10:52

Modified files:
	gnu/lib/libreadline: bind.c complete.c histexpand.c input.c 
	                     tilde.c 

Log message:
Take gcc's suggestions about parenthesis around assignments used
as truth values. Change a parameter to 'const'. All without making
promises about any further cleanup in /gnu/.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/20 04:55:08

Modified files:
	usr.sbin/ldapd : Makefile attributes.c auth.c conn.c control.c 
	                 filter.c index.c ldapd.c ldapd.h ldape.c log.c 
	                 modify.c namespace.c parse.y schema.c search.c 
	                 util.c validate.c 
	usr.sbin/ldapctl: Makefile ldapctl.c 
Added files:
	usr.sbin/ldapd : log.h logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok krw@ jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/20 05:03:43

Modified files:
	mail/mutt      : Makefile 
Added files:
	mail/mutt/patches: patch-mutt_ssl_c 

Log message:
Mutt has its own ssl-cert-checking code rather than deferring to
(open|libre)ssl, which didn't handle alt chains. Backport an upstream
commit which changes to using SSL_set_verify + callback. Neomutt already
has the newer code so wasn't affected.

Problem connecting to imap.gmail.com reported by krw.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/20 05:08:24

Modified files:
	usr.sbin/ldapd : log.c 

Log message:
unbreak tree


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/20 05:19:02

Modified files:
	regress/usr.bin/xargs: Makefile 

Log message:
Use bsd.regress.mk in the intended way so that the test prints
FAILED when it fails.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/20 05:19:18

Modified files:
	usr.sbin/ldpctl: Makefile 
	usr.sbin/ldpd  : Makefile kroute.c lde.c ldpd.c ldpd.h ldpe.c 
	                 log.c log.h 
Added files:
	usr.sbin/ldpd  : logmsg.c 

Log message:
work on making log.c similar in all daemons:

move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

removal of log_rtmsg() aproved by claudio@

ok claudio@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/20 05:39:36

Modified files:
	usr.sbin/ypldap: ldapclient.c log.c ypldap.c ypldap.h 
Added files:
	usr.sbin/ypldap: log.h 

Log message:
work on making log.c similar in all daemons:

reduce the (mostly whitespace) differences so that log.c's can be
diffed easily. disclaimer change ok henning@.

ok krw@ jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/20 05:59:12

Modified files:
	www/p5-WWW-Mechanize-FormFiller: Makefile distinfo 

Log message:
update p5-WWW-Mechanize-FormFiller to 0.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/20 06:02:40

Modified files:
	devel/p5-namespace-autoclean: Makefile 

Log message:
Add missing test dependencies.
maintainer timeout


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/20 06:43:47

Modified files:
	multimedia/gstreamer1/plugins-good: Makefile 
	x11/gnome/control-center: Makefile 
	x11/gnome/empathy: Makefile 
	x11/gnome/settings-daemon: Makefile 
	x11/gnome/shell: Makefile 
	x11/spice-gtk  : Makefile 
	x11/virt-viewer: Makefile 
	x11/xfce4/xfce4-pulseaudio: Makefile 

Log message:
Regen WANTLIB to unbreak after pulseaudio lost its dependency on json-c.

reported by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 06:46:10

Modified files:
	sbin/iked      : ikev2.h 

Log message:
New RFC7383 define

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 06:47:17

Modified files:
	sbin/iked      : ikev2_pld.c 

Log message:
Minor formatting fix

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 06:49:48

Modified files:
	sbin/iked      : ikev2_pld.c 

Log message:
Include only found SPIs into the PAYLOAD_DELETE message

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 06:51:08

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Verify the certificate imsg payload size

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 06:56:51

Modified files:
	sbin/iked      : parse.y 

Log message:
Check bounds of the flows array when configuring traffic selectors

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 06:58:05

Modified files:
	sbin/iked      : ikev2_msg.c 

Log message:
Closed SAs should never be treated as valid

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/20 07:02:33

Modified files:
	usr.bin/tmux   : client.c 

Log message:
Print error rather than fatal() if tcgetattr() fails, which is much more
useful to user.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 07:08:08

Modified files:
	sbin/iked      : ca.c 

Log message:
Make sure to free reference to the public key after decoding

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 07:09:00

Modified files:
	sbin/iked      : ikev2_msg.c 

Log message:
Reset various pointers in ikev2_msg_cleanup

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 07:10:05

Modified files:
	sbin/iked      : iked.h imsg_util.c 

Log message:
Constify the data argument for ibuf_new

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 07:12:32

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Add a warning when the address pool is exhausted

From and OK markus@, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/20 09:57:38

Modified files:
	sys/dev/pv     : xen.c 

Log message:
Merge two conditional expressions


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/20 10:39:31

Modified files:
	.              : INDEX 

Log message:
sync; 9849


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/20 12:58:00

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
standardize .Bl and .It class attributes


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/20 14:37:52

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
standardize .Rs class attributes


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/20 16:14:52

Modified files:
	distrib/miniroot: install.sub 

Log message:
Use a global variable PUB_KEY for the location of the key file.

OK tb@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 16:18:39

Modified files:
	gnu/llvm/lib/CodeGen: TargetLoweringBase.cpp 

Log message:
Restore setting the visibility of __guard_local to hidden for better
code generation.  Use dyn_case_or_null instead of a static cast to
solve the crashes in the previous code.

ok stefan@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/20 16:19:07

Modified files:
	lib/libm/src/ld80: s_nextafterl.c 

Log message:
Implement gcc suggestion of extra parentheses. No functional change.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/20 16:29:58

Modified files:
	usr.sbin/rtadvd: rtadvd.c log.c log.h 

Log message:
work on making log.c similar in all daemons:
reduce the (mostly whitespace) differences so that log.c's can be
diffed easily.
need to set verbose in main() when option -d is used.

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/20 16:50:59

Modified files:
	usr.bin/mandoc : man_html.c mdoc_html.c 

Log message:
Standardize class attributes for semantic macros.
Correct markup for .Va and iprove markup for .Dv, .Er, .Ev while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/20 17:37:16

Modified files:
	gnu/llvm/tools/clang/lib/Driver: Tools.cpp 

Log message:
Make LLVM create strict aligned code for OpenBSD/arm64.  We currently
don't enforce it yet, but we want to go down that road.  Additionally
the Pine64 seems to boot up with strict alignment on by default, so
this also implicitly fixes efiboot on that hardware.

ok kettenis@ phessler@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 17:45:13

Modified files:
	lib/csu        : crtbegin.c crtbeginS.c crtend.c crtendS.c 
	                 extern.h 
	lib/csu/arm    : md_init.h 
	lib/csu/hppa   : md_init.h 

Log message:
Declare the symbols that label the .ctors, .dtors, .eh_frame, and .jcr
sections as extern hidden arrays of indefinite size, so that the compiler
(well, clang) doesn't believe it knows the exact contents and thus optimize
things into infinite loops.  Actually set the symbols to be in the sections
and insert the leading and trailing values via __asm().

Problem pointed out by patrick@
testing and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 17:46:32

Modified files:
	lib/csu        : Makefile 

Log message:
amd64 can build rcrt0.o with the stack-protector

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/20 18:07:25

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
Make return value of X509_verify_cert be consistent with the error code,
with the caveat that we force V_OK when a user provided callback has
us returning success.
ok inoguchi@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/20 18:09:54

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
fix bogus comment
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 18:15:00

Modified files:
	libexec/ld.so/aarch64: archdep.h syscall.h 
	libexec/ld.so/alpha: syscall.h 
	libexec/ld.so/amd64: archdep.h syscall.h 
	libexec/ld.so/arm: archdep.h syscall.h 
	libexec/ld.so/hppa: archdep.h syscall.h 
	libexec/ld.so/i386: archdep.h syscall.h 
	libexec/ld.so/m88k: syscall.h 
	libexec/ld.so/mips64: syscall.h 
	libexec/ld.so/sh: archdep.h syscall.h 
	libexec/ld.so/sparc64: archdep.h syscall.h 

Log message:
_dl_exit() is __dead, so it should return void.
Move _dl_mmap() and _dl_mquery() inlines from archdep.h to syscall.h and
remove pointless casts and unnecessary parens.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/20 18:20:29

Modified files:
	usr.bin/mandoc : cgi.c man_html.c mdoc_html.c 

Log message:
clean up the remaining class attributes


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/20 18:32:19

Modified files:
	sys/net        : if_var.h 

Log message:
Make the if_flags member unsigned.  This was prompted by clang
complaining that assigning the MULTICAST flag, which sets the
uppermost bit, would invert the meaning of MULTICAST flag's
numeric value.

ok claudio@ deraadt@ tom@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/20 18:34:50

Modified files:
	lib            : Makefile 

Log message:
Hook up libcompiler_rt, libcxx and libcxxabi to the build.  Since their
Makefiles are now guarded to not compile on non-clang architectures, we
can safely add them.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 18:43:16

Modified files:
	lib/csu/hppa   : md_init.h 

Log message:
Fix misspelling in comment


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/20 19:09:49

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
Avoid writing constant style attributes over and over again.
Move them to the style sheet.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/20 19:28:42

Modified files:
	usr.bin/mandoc : html.c 

Log message:
slightly simplify header and footer styles


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/20 19:32:37

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
bug was fixed, delete the BUGS section


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/20 20:44:46

Modified files:
	sys/net        : rtsock.c 

Log message:
Change route_input to a non-variadic function and just pass the address
family to it. Simplifies the code and disconnects route_input from protosw.
The rouing socket is special so no need to try to work like other protos.
With input from bluhm@, OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/20 20:51:18

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c 

Log message:
Split out the Allwinner H3 specific clock code into its own functions and
call those via a function pointer such that we can support other SoCs by
simply adding new functions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/20 21:10:44

Modified files:
	sysutils/packer: Makefile distinfo 

Log message:
Update to packer-0.12.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 21:14:19

Modified files:
	lib/csu        : extern.h crt0.c 

Log message:
Pull in declarations for main() and __init() to make clang happy.
Mark __init() as hidden

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 21:16:49

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
Expand IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN macro.

No change in generated assembly.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 21:18:18

Modified files:
	lib/libssl     : ssl_locl.h 

Log message:
Expand DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN macro.

No change in preprocessor output (ignoring whitespace and line numbers).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 21:31:25

Modified files:
	lib/libcrypto/asn1: a_strnid.c ameth_lib.c 

Log message:
Expand DECLARE_OBJ_BSEARCH_CMP_FN and IMPLEMENT_OBJ_BSEARCH_CMP_FN macros.

No change to generated assembly excluding line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/20 21:33:00

Modified files:
	distrib/miniroot: install.sub 

Log message:
Start creating and using /etc/installurl. This file is created
during installation if an OpenBSD mirror server is used for the
sets download. It contains the mirror server url in the same format
as provided by ftplist.cgi.

The installurl file is used by the OpenBSD installer, the syspatch(8)
and the pkg_add(1) commands.

Stop creating and updating the /etc/pkg.conf file - the pkg_add(1)
command will use the information in installurl.

Use a new dbversion of the CGIs which accecpt and provide mirror
urls without the release/arch part at the end..

Idea from ajacoutot@
Joint work with and OK ajacoutot@ tb@ beck@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/20 21:34:16

Modified files:
	lib/libcrypto/bn: bn_exp.c 

Log message:
/usr/bin/unifdef -D MONT_MUL_MOD -D MONT_EXP_WORD -D RECP_MUL_MOD -m bn_exp.c
with some style cleanup after. no binary change
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 21:38:23

Modified files:
	lib/libcrypto/evp: evp_pbe.c pmeth_lib.c 

Log message:
Expand DECLARE_OBJ_BSEARCH_CMP_FN and IMPLEMENT_OBJ_BSEARCH_CMP_FN macros.

No change to generated assembly excluding line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 21:42:16

Modified files:
	lib/libcrypto/x509v3: v3_lib.c v3_purp.c 

Log message:
Expand DECLARE_OBJ_BSEARCH_CMP_FN and IMPLEMENT_OBJ_BSEARCH_CMP_FN macros.

No change to generated assembly excluding line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 21:44:43

Modified files:
	lib/libcrypto/objects: obj_dat.c obj_xref.c 

Log message:
Expand DECLARE_OBJ_BSEARCH_CMP_FN and IMPLEMENT_OBJ_BSEARCH_CMP_FN macros.

No change to generated assembly excluding line numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 21:53:22

Modified files:
	lib/libcrypto/objects: objects.h 

Log message:
Place {DECLARE,IMPLEMENT}_OBJ_BSEARCH{_GLOBAL,}_CMP_FN macros undef
LIBRESSL_INTERNAL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/20 22:03:28

Modified files:
	sysutils/serf  : Makefile distinfo 

Log message:
Update to (hashicorp-)serf-0.8.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/20 22:19:08

Modified files:
	sys/arch/armv7/sunxi: sxiccmu.c sxiccmu_clocks.h 

Log message:
Implement EHCI and MMC clock support for the Allwinner A64 SoC.
Unfortunately this does not yet enable us to use the MMC on the
Pine64.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/20 22:19:53

Modified files:
	sys/arch/armv7/sunxi: sxiehci.c 

Log message:
Match on the Allwinner A64 ehci compatible as well.

ok kettenis@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/20 22:36:33

Modified files:
	sys/net        : if_spppsubr.c 

Log message:
remove some extra whitespace.

no functional change (unfortunately)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 22:42:04

Modified files:
	sys/sys        : proc.h sysctl.h exec_elf.h 
	sys/kern       : exec_elf.c init_main.c kern_acct.c kern_exec.c 
	                 kern_kthread.c kern_ktrace.c kern_pledge.c 
	                 kern_proc.c kern_sched.c kern_sig.c 
	                 kern_synch.c kern_sysctl.c kern_xxx.c tty.c 
	sys/uvm        : uvm_mmap.c 
	sys/arch/alpha/alpha: interrupt.c trap.c 
	sys/arch/amd64/amd64: trap.c 
	sys/arch/arm/arm: fault.c 
	sys/arch/armv7/exynos: exesdhc.c 
	sys/arch/armv7/imx: imxesdhc.c 
	sys/arch/armv7/omap: ommmc.c 
	sys/arch/mips64/mips64: fp_emulate.c pmap.c trap.c 
	sys/arch/sh/sh : db_interface.c trap.c 
	sys/arch/sparc64/fpu: fpu.c 
	sys/arch/sparc64/sparc64: machdep.c trap.c 
	sys/dev        : vnd.c 
	sys/dev/sdmmc  : sdhc.c sdmmc.c sdmmc_scsi.c 
	lib/libkvm     : kvm_file2.c 

Log message:
p_comm is the process's command and isn't per thread, so move it from
struct proc to struct process.

ok deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/20 22:46:56

Modified files:
	lib/csu        : crtbegin.c crtbeginS.c 

Log message:
Make crtbegin.c and crtbeginS.c consistent on stylistic points

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/20 23:00:38

Modified files:
	share/man/man8 : autoinstall.8 

Log message:
Clarify what local response file actually means.

With and OK from tb@
OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/20 23:50:02

Modified files:
	lib/libssl     : d1_clnt.c d1_meth.c d1_srvr.c t1_clnt.c 
	                 t1_meth.c t1_srvr.c 

Log message:
Specify minimum and maximum protocol version for each method. This is
currently unused, but will be in the near future.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/20 23:55:52

Modified files:
	share/mk       : bsd.obj.mk 

Log message:
Only do chown :wobj when this command will succeed. Allows using
bsd.prog.mk outside /usr/src by users not belonging to group wobj.

Requested by many after a report by Sebastien Marie.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/21 00:10:04

Modified files:
	sys/arch/armv7/sunxi: sxipio.c sxipio_pins.h 

Log message:
Add support for the Allwinner A64 (sun50i-a64).

Requested by patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/21 00:47:42

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
1. When shrinking a chunk allocation, compare the size of the current
allocation to the size of the new allocation (instead of the requested size).
2. Previously realloc takes the easy way and always reallocates if C is
active. This commit fixes by carefully updating the recorded requested
size in all cases, and writing the canary bytes in the proper location
after reallocating.
3. Introduce defines to test if MALLOC_MOVE should be done and to
compute the new value.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/21 00:52:22

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/21 00:52:59

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.41.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:17:06

Modified files:
	bin/pax        : file_subs.c 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:18:53

Modified files:
	distrib/special/doas: doas.c 
	distrib/special/libstubs: db.c 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:22:57

Modified files:
	games/adventure: crc.c main.c save.c vocab.c 
	games/backgammon/teachgammon: teach.c tutor.h 
	games/hunt/huntd: answer.c conf.c draw.c driver.c execute.c 
	                  expl.c extern.c hunt.h makemaze.c server.h 
	                  shots.c terminal.c 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:25:30

Modified files:
	gnu/lib/libreadline: bind.c callback.c chardefs.h complete.c 
	                     display.c emacs_keymap.c funmap.c 
	                     histexpand.c histfile.c histlib.h history.c 
	                     history.h histsearch.c input.c kill.c 
	                     macro.c mbutil.c misc.c nls.c readline.c 
	                     readline.h rldefs.h rltty.c savestring.c 
	                     signals.c terminal.c text.c tilde.c 
	                     vi_mode.c 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 01:26:49

Modified files:
	sys/dev/fdt    : files.fdt 
	sys/arch/armv7/sunxi: files.sunxi sxiahci.c sxidog.c sxie.c 
	                      sxiintc.c sxitimer.c 
Added files:
	sys/dev/fdt    : sunxireg.h sxiccmu.c sxiccmu_clocks.h sxiehci.c 
	                 sximmc.c sxipio.c sxipio_pins.h sxipiovar.h 
	                 sxirtc.c 
Removed files:
	sys/arch/armv7/sunxi: sunxireg.h sxiccmu.c sxiccmu_clocks.h 
	                      sxiehci.c sximmc.c sxipio.c sxipio_pins.h 
	                      sxipiovar.h sxirtc.c 

Log message:
Move Allwinner drivers that will soon be used by OpenBSD/arm64
to the new MI FDT driver directory.

"go ahead" kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:29:13

Modified files:
	lib/libc/rpc   : rpc_prot.c xdr.c xdr_array.c 
	lib/libm/src/ld80: e_atanhl.c e_coshl.c e_fmodl.c e_hypotl.c 
	                   e_log10l.c e_log2l.c e_logl.c e_powl.c 
	                   e_sinhl.c k_cosl.c k_sinl.c s_log1pl.c 
	                   s_nanl.c s_remquol.c 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 01:29:23

Modified files:
	sys/dev/fdt    : sxiccmu_clocks.h 

Log message:
Add support for the Allwinner A64 PIO controller clock.

ok kettenis@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:31:44

Modified files:
	sbin/ifconfig  : ifconfig.c 
	sbin/restore   : extern.h main.c restore.h tape.c 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:33:07

Modified files:
	usr.bin/ftp    : cmds.c cmdtab.c complete.c cookie.c domacro.c 
	                 extern.h fetch.c ftp_var.h main.c small.c 
	                 stringlist.h util.c 
	usr.bin/lex    : main.c 
	usr.bin/rpcgen : rpc_main.c rpc_scan.h rpc_util.h 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:33:51

Modified files:
	usr.sbin/amd/amq: amq.c 
	usr.sbin/mopd/common: device.c dl.c file.c mopdef.h 
	usr.sbin/mopd/mopa.out: mopa.out.c 
	usr.sbin/mrouted: main.c 
	usr.sbin/mtrace: mtrace.c 
	usr.sbin/rpc.statd: procs.c statd.c test.c 

Log message:
Nuke whitespace foolish enough to expose itself during the great
"warning:" rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/21 01:40:04

Modified files:
	sys/net        : bfd.c 

Log message:
be more explict with the size of bfd packets we send and receive


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 01:41:42

Modified files:
	usr.sbin/acme-client: Makefile acme-client.1 chngproc.c extern.h 
	                      main.c netproc.c parse.h parse.y 

Log message:
acme-client use configuration file [1 of 5]

start using the configuration file and delete command line arguments:

-a agreement    -> agreement url ...
-c certdir      -> domain certificate "path"
-f accountkey   -> account key "path"
-k domainkey    -> domain key "path"
-s authority    -> sign with "name"

new argument:
-f configfile

the changes needed to use the new configuration are local to main.c for now.
While the configuration could be passed directly to netproc(), keyproc() etc,
the diff is smaller this way.

This also removes the multidir (-m) mode for now - specify different paths in
each domain {} block instead.

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 01:43:09

Modified files:
	usr.sbin/acme-client: acme-client.1 acme-client.conf.5 main.c 
	                      parse.h parse.y 

Log message:
acme-client use configuration file [2 of 5]

- add challengedir option to config file
- remove -C option from command line

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 01:44:35

Modified files:
	usr.sbin/acme-client: acme-client.1 main.c 

Log message:
acme-client use configuration file [3 of 5]

change command line options:

n -> A   new Account key
N -> D   new Domain key

With this acme-client has these main usage patterns:

* create new Account Key and Domain Key and get a certificate:

acme-client -A -D www.example.com

* renew certificate:

acme-client www.example.com

* revoke certificate:

acme-client -r www.example.com

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 01:45:46

Modified files:
	sys/arch/arm64/arm64: conf.c 

Log message:
arm64 does not make use of constab but instead uses the same
mechanism as armv7.  Remove it so no one starts to believe
we would do it that way.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 01:45:52

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
acme-client use configuration file [4 of 5]

fix getopt()

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 01:47:22

Modified files:
	usr.sbin/acme-client: acme-client.1 main.c parse.h parse.y 

Log message:
acme-client use configuration file [5 of 5]
implement new -n option to check and print configuration

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:48:11

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
typo; ok benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:49:30

Modified files:
	usr.sbin/acme-client: chngproc.c 

Log message:
kill remote with fire, we need to handle this differently
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:49:59

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
typo; ok benno


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/21 01:50:58

Modified files:
	share/man/man8 : release.8 

Log message:
Add my copyright.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 01:51:00

Modified files:
	usr.bin/look   : look.c 
	usr.sbin/mrouted: prune.c 

Log message:
Accommodate gcc's suggestion that assignments used as truth values
should be enclosed in parentheses.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:51:00

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
We are only dealing with one domain on the command line
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:52:30

Modified files:
	usr.sbin/acme-client: acme-client.1 extern.h fileproc.c main.c 

Log message:
Remove backup option. This is not acme-client's business; also it gets
in the way.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:53:10

Modified files:
	usr.sbin/acme-client: fileproc.c 

Log message:
remove unused vars; OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 01:54:24

Modified files:
	sys/arch/arm64/conf: GENERIC files.arm64 

Log message:
Add Allwinner A64 devices to OpenBSD/arm64.  This means we can run
on the Pine64.  While there add a few more usb and pseudo devices.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:54:26

Modified files:
	usr.sbin/acme-client: extern.h fileproc.c main.c revokeproc.c 

Log message:
Split certificate file from config file into certdir and certfile.
This way we can still chroot to certdir but the the certificate file
is not fixed to "cert.pem".

Writing of chain.pem and fullchain.pem is currently broken with this.

OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 01:55:09

Modified files:
	usr.sbin/acme-client: acme-client.conf.5 main.c parse.h parse.y 

Log message:
Implement domain chain certificate.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 01:57:05

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
see also acme-client.conf(5) suggested by millert and Raf Czlonka
ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 01:57:49

Modified files:
	usr.sbin/acme-client: acme-client.conf.5 

Log message:
document default challengedir "/var/www/acme"


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 02:00:29

Modified files:
	usr.sbin/acme-client: acme-client.conf.5 main.c parse.h parse.y 

Log message:
add option 'domain full chain certificate "path"',
revokation works, the fullchain file will be unlinked.

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 02:05:31

Modified files:
	usr.sbin/acme-client: acme-client.1 acme-client.conf.5 

Log message:
Improve Documentation

ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 02:06:57

Modified files:
	etc            : acme-client.conf 

Log message:
Default configuration file: use quotes for all files and
give a sensible example for the domain {} section.

ok florian


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/01/21 02:08:40

Modified files:
	faq            : current.html 

Log message:
2017/01/21 - acme-client(1) uses config file

ok florian


CVSROOT:	/cvs
Module name:	www
Changes by:	jsing@cvs.openbsd.org	2017/01/21 02:09:41

Log message:
    Add slides for the libtls presentation I gave at linux.conf.au 2017.
    
    Status:
    
    Vendor Tag:	jsing
    Release Tags:	jsing_20170120
    
    N www/papers/linuxconfau2017-libtls/heartbleed.svg
    N www/papers/linuxconfau2017-libtls/index.html
    N www/papers/linuxconfau2017-libtls/deck.js/MIT-license.txt
    N www/papers/linuxconfau2017-libtls/deck.js/jquery.min.js
    N www/papers/linuxconfau2017-libtls/deck.js/modernizr.custom.js
    N www/papers/linuxconfau2017-libtls/deck.js/core/deck.core.css
    N www/papers/linuxconfau2017-libtls/deck.js/core/deck.core.js
    N www/papers/linuxconfau2017-libtls/deck.js/core/deck.core.scss
    N www/papers/linuxconfau2017-libtls/deck.js/core/print.css
    N www/papers/linuxconfau2017-libtls/deck.js/core/print.scss
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/goto/deck.goto.css
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/goto/deck.goto.html
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/goto/deck.goto.js
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/goto/deck.goto.scss
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/menu/deck.menu.css
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/menu/deck.menu.js
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/menu/deck.menu.scss
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/navigation/deck.navigation.css
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/navigation/deck.navigation.html
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/navigation/deck.navigation.js
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/navigation/deck.navigation.scss
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/scale/deck.scale.css
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/scale/deck.scale.js
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/scale/deck.scale.scss
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/status/deck.status.css
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/status/deck.status.html
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/status/deck.status.js
    N www/papers/linuxconfau2017-libtls/deck.js/extensions/status/deck.status.scss
    N www/papers/linuxconfau2017-libtls/deck.js/introduction/index.html
    N www/papers/linuxconfau2017-libtls/deck.js/themes/style/_reset.scss
    N www/papers/linuxconfau2017-libtls/deck.js/themes/style/swiss.css
    N www/papers/linuxconfau2017-libtls/deck.js/themes/style/swiss.scss
    N www/papers/linuxconfau2017-libtls/deck.js/themes/transition/horizontal-slide.css
    N www/papers/linuxconfau2017-libtls/deck.js/themes/transition/horizontal-slide.scss
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 02:23:19

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Only switch the pagetable if we were asked to switch to a user
process.  This seems to happen when we switch away from a proc
to kill it.  We should probably start keeping a 'dummy' table
around.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/21 02:29:09

Modified files:
	usr.bin/openssl: apps.c ocsp.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2017/01/21 02:31:54

Modified files:
	.              : events.html 

Log message:
Joel has given his talk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/21 02:31:55

Modified files:
	devel/py-test-runner: Makefile distinfo 

Log message:
Update to py-test-runner 2.10.1


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/21 02:33:58

Modified files:
	faq            : current.html 

Log message:
make acme-client section a bit more concise and use the usual faq style.

discussed with benno


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/21 02:38:59

Modified files:
	regress/lib/libcrypto/bn/general: Makefile bntest.c 
	regress/lib/libcrypto/bn/mont: Makefile 
	regress/lib/libcrypto/exp: Makefile exptest.c 
	lib/libcrypto  : Makefile 
	lib/libcrypto/bn: bn.h bn_blind.c bn_exp.c bn_lcl.h bn_prime.c 
	                  bn_sqrt.c 
	lib/libcrypto/dh: dh_key.c 
	lib/libcrypto/dsa: dsa_ameth.c dsa_gen.c dsa_key.c dsa_ossl.c 
	lib/libcrypto/pem: pvkfmt.c 
	lib/libcrypto/rsa: rsa_eay.c 

Log message:
Make explicit _ct and _nonct versions of bn_mod_exp funcitons that
matter for constant time, and make the public interface only used
external to the library.

This moves us to a model where the important things are constant time
versions unless you ask for them not to be, rather than the opposite.
I'll continue with this method by method.

Add regress tests for same.
ok jsing@


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2017/01/21 02:39:10

Modified files:
	.              : events.html 

Log message:
Link to Joel's slides


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 02:40:15

Modified files:
	sys/arch/arm64/arm64: autoconf.c 

Log message:
Add missing spl0() call.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 03:03:27

Modified files:
	usr.bin/look   : look.c 

Log message:
Nuke more whitespace caught in the headlights of "warning:"
rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 03:05:23

Modified files:
	usr.bin/sed    : process.c 

Log message:
Nuke more whitespace caught in the headlights of "warning:"
rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/21 03:15:15

Modified files:
	sys/net        : bfd.c 

Log message:
sockets tell us the size of their data.  since we want one udp packet,
just use that.  uses one less soreceive() loop per packet received.

hints from claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/21 03:20:56

Modified files:
	sysutils/consul-template: Makefile distinfo 

Log message:
- update to consul-template 0.18.0

https://github.com/hashicorp/consul-template/blob/v0.18.0/CHANGELOG.md


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 03:34:25

Modified files:
	usr.sbin/mrouted: prune.c 

Log message:
Having a 'case 256:' in a switch (<uchar>) {} is bad on principle
and makes gcc unhappy.

In-line the single use #define, eliminate the 256: case and remove
a now unneeded local variable.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/21 03:38:29

Modified files:
	lib/libcrypto/bn: bn.h bn_div.c bn_exp.c bn_exp2.c bn_gcd.c 
	                  bn_lcl.h bn_mod.c bn_mont.c bn_prime.c 
	                  bn_recp.c 
	lib/libcrypto/dsa: dsa_ameth.c dsa_gen.c dsa_ossl.c 
	lib/libcrypto/gost: gostr341001.c 
	lib/libcrypto/rsa: rsa_chk.c rsa_eay.c rsa_gen.c 

Log message:
Split out BN_div and BN_mod into ct and nonct versions for Internal use.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 03:58:15

Modified files:
	sys/arch/amd64/conf: files.amd64 
	sys/arch/arm/conf: files.arm 
	sys/arch/arm64/conf: files.arm64 
	sys/arch/armv7/conf: files.armv7 
	sys/arch/i386/conf: files.i386 
	sys/dev/pci    : files.pci 
	sys/dev/pv     : files.pv 

Log message:
Move virtio config from files.pci to files.pci

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the first step of moving the virtio files to
dev/pv.  No functional change.

arm kernel changes tested by jsg@ and patrick@
no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/21 04:00:47

Modified files:
	lib/libcrypto/bn: bn.h bn_blind.c bn_gcd.c bn_lcl.h bn_mont.c 
	                  bn_x931p.c 
	lib/libcrypto/dsa: dsa_ossl.c 
	lib/libcrypto/ec: ecp_smpl.c 
	lib/libcrypto/ecdsa: ecs_ossl.c 
	lib/libcrypto/gost: gostr341001.c 
	lib/libcrypto/rsa: rsa_chk.c rsa_crpt.c rsa_gen.c 

Log message:
Add ct and nonct versions of BN_mod_inverse for internal use
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 04:03:42

Modified files:
	bin/test       : test.c 

Log message:
Add an explicit syntax() call to indicate that no binary op was
found. Makes gcc happier. Add __dead to function prototype as we
go by.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:21:28

Added files:
	sys/dev/pv     : if_vio.c 

Log message:
Move if_vio.c to sys/dev/pv/if_vio.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/if_vio.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/21 04:21:41

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
In iwm(4), cancel mira timeouts in iwm_stop() and iwm_newstate() instead of
relying on the newstate task to do so. Fixes races of driver code against
mira timeouts leading to crashes in some situations, e.g. occasionally when
changing channels while the interface is up.
ok procter@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:22:29

Added files:
	sys/dev/pv     : vioblk.c 

Log message:
Move vioblk.c to sys/dev/pv/vioblk.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/vioblk.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:22:34

Added files:
	sys/dev/pv     : vioblkreg.h 

Log message:
Move vioblkreg.h to sys/dev/pv/vioblkreg.h

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/vioblkreg.h.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:22:38

Added files:
	sys/dev/pv     : viocon.c 

Log message:
Move viocon.c to sys/dev/pv/viocon.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/viocon.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:22:43

Added files:
	sys/dev/pv     : viomb.c 

Log message:
Move viomb.c to sys/dev/pv/viomb.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/viomb.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:22:48

Added files:
	sys/dev/pv     : viornd.c 

Log message:
Move viornd.c to sys/dev/pv/viornd.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/viornd.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:22:52

Added files:
	sys/dev/pv     : vioscsi.c 

Log message:
Move vioscsi.c to sys/dev/pv/vioscsi.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/vioscsi.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:22:57

Added files:
	sys/dev/pv     : vioscsireg.h 

Log message:
Move vioscsireg.h to sys/dev/pv/vioscsireg.h

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/vioscsireg.h.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:23:01

Added files:
	sys/dev/pv     : virtio.c 

Log message:
Move virtio.c to sys/dev/pv/virtio.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/virtio.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:23:06

Added files:
	sys/dev/pv     : virtioreg.h 

Log message:
Move virtioreg.h to sys/dev/pv/virtioreg.h

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/virtioreg.h.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	stsp@cvs.openbsd.org	2017/01/21 04:23:09

Modified files:
	lib/mesa       : Makefile.bsd-wrapper 

Log message:
Disable the shader cache in Mesa on powerpc. Its implementation uses gcc
atomic builtins on a 64 bit integer which is not supported on 32 bit powerpc.
Makes 3D work again on a PowerBook G4 with an ATI RV350 video card.
tweak and ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:23:10

Added files:
	sys/dev/pv     : virtiovar.h 

Log message:
Move virtiovar.h to sys/dev/pv/virtiovar.h

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/virtiovar.h.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:23:14

Added files:
	sys/dev/pv     : vmmci.c 

Log message:
Move vmmci.c to sys/dev/pv/vmmci.c

virtio itself is not PCI, it is a paravirtual bus on top of either PCI
or MMIO (arm).  This is the second step of moving the virtio files to
dev/pv.  No functional change.

Moving the file is done by removing and adding it again - the old
history can be found in the Attic of sys/dev/pci/vmmci.c.

no objections from sf@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:29:52

Modified files:
	sys/dev/pci    : virtio_pci.c 
	sys/arch/arm64/dev: virtio_mmio.c 
	sys/arch/armv7/vexpress: virtio_mmio.c 

Log message:
Switch include of virtio header from dev/pci/to dev/pv/


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/21 04:30:11

Modified files:
	usr.bin/make   : job.c 

Log message:
Stop calling out to sudo/doas to kill processes.  Reliance on system
configuration to perform a racy behaviour is not wise.
ok natano


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/21 04:32:04

Modified files:
	usr.bin/netstat: inet6.c show.c 
	usr.bin/rusers : rusers.c 
	usr.bin/showmount: showmount.c 
	usr.bin/ssh    : mux.c 
	usr.bin/systat : inetname.c 
	usr.bin/tftp   : main.c 
	usr.sbin/httpd : server_fcgi.c 
	usr.sbin/mrouted: rsrr.c 
	usr.sbin/npppctl: npppctl.c 

Log message:
The POSIX APIs that that sockaddrs all ignore the s*_len field in the
incoming socket, so userspace doesn't need to set it unless it has its
own reasons for tracking the size along with the sockaddr.

ok phessler@ deraadt@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:33:01

Modified files:
	sys/dev/pv     : files.pv vioblk.c vioscsi.c 

Log message:
Switch include of virtio header from dev/pci/ to dev/pv/


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:36:54

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
Switch include of virtio header from dev/pci/ to dev/pv/


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 04:45:52

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
Enforce minimum config in the parser.
Based on a diff by & OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/21 04:47:16

Removed files:
	sys/dev/pci    : if_vio.c vioblk.c vioblkreg.h viocon.c viomb.c 
	                 viornd.c vioscsi.c vioscsireg.h virtio.c 
	                 virtioreg.h virtiovar.h vmmci.c 

Log message:
non-PCI virtio files have been moved to sys/dev/pv


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 04:51:58

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
it's chain certificate not certificate chain


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 05:04:37

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
dont print config if its broken
ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/21 05:21:57

Modified files:
	usr.bin/fstat  : fstat.1 fstat.c 

Log message:
Expose the close-on-exec flag near the R/W flags.
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/01/21 05:31:34

Modified files:
	usr.bin/make   : job.c 

Log message:
Use errno to make the debug message more descriptive.
ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/21 05:33:38

Modified files:
	devel/iso-codes: Makefile distinfo 

Log message:
update to iso-codes-3.74


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/01/21 05:35:40

Modified files:
	usr.bin/make   : job.c 

Log message:
Dedup prototype for really_kill().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/21 05:40:49

Modified files:
	gnu/lib        : Makefile 

Log message:
Only build gcc4 libs if COMPILER_VERSION is gcc4.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/21 05:45:41

Modified files:
	usr.sbin/vmd   : pci.c virtio.h 

Log message:
updated include paths for recently moved virtio stuff


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/21 05:54:10

Modified files:
	usr.sbin/acme-client: fileproc.c main.c 

Log message:
it is ok to only specify a full chain certificate
OK benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/21 05:56:49

Modified files:
	sysutils/py-ghmi: Makefile distinfo 
	sysutils/py-ghmi/pkg: PLIST 

Log message:
update to py-ghmi-1.0.16


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/21 05:58:15

Modified files:
	x11/xkbcommon  : Makefile distinfo 

Log message:
update to libxkbcommon-0.7.1


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 05:59:06

Modified files:
	usr.sbin/acme-client: main.c parse.h parse.y 

Log message:
move config data structures mostly to TAILQs, because that way we
preserve order.

ok florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/21 06:08:22

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
update to epiphany-3.22.5


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/21 06:16:40

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
find the first authority works better this way, now that we use a tailq
ok florian@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/01/21 06:18:23

Modified files:
	.              : hackathons.html 

Log message:
s2k17 is in progress.  web ready artwork still coming


CVSROOT:	/cvs
Module name:	www
Changes by:	jsing@cvs.openbsd.org	2017/01/21 06:58:54

Modified files:
	.              : events.html 

Log message:
Add a link to the video of the linux.conf.au 2017 presentation.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/21 07:31:27

Modified files:
	distrib/sets/lists/comp: md.loongson 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/21 07:45:29

Modified files:
	sys/arch/mips64/include: _types.h asm.h 

Log message:
Add _MIPS_ISA_MIPS32 and _MIPS_ISA_MIPS64 defines for clang.

OK deraadt@ phessler@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/01/21 08:30:26

Modified files:
	news/tin       : Makefile distinfo 

Log message:
bugfix update to 2.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/21 08:53:15

Modified files:
	usr.sbin/acme-client: acme-client.1 acme-client.conf.5 main.c 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/21 09:17:24

Modified files:
	.              : 3RDPARTY MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/21 11:25:02

Modified files:
	comms/qtserialport: Makefile 
	cad/fritzing   : Makefile 
	x11/qt5/qtserialport: Makefile 
	x11/py-qt5     : Makefile 

Log message:
Having comms/qtserialport and x11/qt5/qtserialport not conflicting
is not enough for stable builds: all their dependees should depend
on either <5.6 or >=5.6 version as well.

Issue reported by naddy@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/21 11:40:20

Modified files:
	driver/xf86-input-vmmouse: ChangeLog Makefile.in config.h.in 
	                           configure configure.ac 
	driver/xf86-input-vmmouse/fdi: Makefile.in 
	driver/xf86-input-vmmouse/man: Makefile.in 
	driver/xf86-input-vmmouse/shared: Makefile.in vmmouse_client.c 
	                                  vmmouse_client.h 
	                                  vmmouse_defs.h vmmouse_proto.c 
	                                  vmmouse_proto.h 
	driver/xf86-input-vmmouse/src: Makefile.am Makefile.in vmmouse.c 
	driver/xf86-input-vmmouse/tools: Makefile.am Makefile.in 
	                                 vmmouse_detect.c 
Added files:
	driver/xf86-input-vmmouse/tools: vmmouse_iopl.c vmmouse_udev.c 

Log message:
Update to xf86-input-vmmouse 13.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/21 14:38:11

Modified files:
	audio/opus     : Makefile distinfo 

Log message:
Update to 1.1.4: A specially-crafted Opus packet could cause an
integer wrap-around in the SILK LSF stabilization code.

Reported as CVE-2017-0381, but upstream does not believe that any
remote code execution is possible.
https://git.xiph.org/?p=opus.git;a=commit;h=70a3d641b760b3d313b6025f82aed93a4607


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/01/21 14:58:32

Modified files:
	usr.sbin/makefs: ffs.c 

Log message:
Use MD disklabel position.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/21 15:12:31

Modified files:
	.              : events.html 

Log message:
use direct links to youtube and use https for that


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/01/21 15:55:01

Modified files:
	www/privoxy    : Makefile distinfo 
	www/privoxy/patches: patch-GNUmakefile_in patch-configure_in 
	www/privoxy/pkg: PLIST 

Log message:
Update to privoxy-3.0.26

From semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/21 16:02:53

Modified files:
	lib/libcrypto/bn: bn_gcd.c 

Log message:
use BN_div_nonct where it is safe to do so.
ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/21 16:46:01

Modified files:
	archivers/unshield: Makefile distinfo 
	archivers/unshield/patches: patch-CMakeLists_txt 
	                            patch-lib_internal_h 
Removed files:
	archivers/unshield/patches: patch-src_unshield_c 

Log message:
update to unshield 1.4.2


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/21 16:49:45

Modified files:
	faq            : faq14.html 

Log message:
revert the previous cosmetic change; jsing confirms that the sparc64
bootloader only looks at disklabel 'a'. add a comment as a reminder.

pointed out by nick holland, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/21 17:03:18

Modified files:
	lib/libssl     : s3_lib.c 

Log message:
There is no point in setting struct fields to zero, when you've already
zeroed the entire struct via memset.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/21 17:09:13

Modified files:
	lib/libssl     : s3_lib.c 

Log message:
Clean up ssl3_new() - in particular, we do not need to zero fields that
are within a struct that was just allocated via calloc.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/21 17:39:45

Modified files:
	sys/net        : bfd.c 

Log message:
set the TOS/ECN field to Internetwork Control, since that is exactly
what we are doing


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/21 18:13:47

Modified files:
	mail/gmime     : Makefile distinfo 
	mail/gmime/pkg : PLIST 

Log message:
Update to gmime-2.6.23.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/21 18:20:36

Modified files:
	libexec/ld.so  : library_subr.c resolve.c resolve.h 

Log message:
Add support for DT_RUNPATH and DT_FLAGS

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/21 18:38:25

Modified files:
	sys/arch/armv7/stand/efiboot: start.S 
	sys/arch/arm64/stand/efiboot: start.S 

Log message:
Mark the .peheader section as "a".  Makes it possible to link with lld.

ok guenther@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 18:55:08

Modified files:
	sbin/savecore  : zopen.c 

Log message:
tedu@ didn't take the getcode() prototype with the getcode() implementation.

Restore gcc's equanimity by tedu@'ing the prototype.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/21 19:51:32

Modified files:
	multimedia/libass: Makefile distinfo 

Log message:
Update to libass-0.13.6.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/21 19:53:47

Modified files:
	multimedia/xine-lib: Makefile 
	multimedia/xine-lib/pkg: PLIST 

Log message:
Reducing the external dependencies a bit by utilizing FFmpeg instead
of the reference decoders for AAC, AC3, DTS and MP3.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:10

src/gnu/usr.bin/clang/include/lld

Update of /cvs/src/gnu/usr.bin/clang/include/lld
In directory cvs.openbsd.org:/tmp/cvs-serv54587/usr.bin/clang/include/lld

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/lld added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:10

src/gnu/usr.bin/clang/libLLVMLTO

Update of /cvs/src/gnu/usr.bin/clang/libLLVMLTO
In directory cvs.openbsd.org:/tmp/cvs-serv54587/usr.bin/clang/libLLVMLTO

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMLTO added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:10

src/gnu/usr.bin/clang/lld

Update of /cvs/src/gnu/usr.bin/clang/lld
In directory cvs.openbsd.org:/tmp/cvs-serv54587/usr.bin/clang/lld

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/lld added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:10

src/gnu/usr.bin/clang/libLLVMPasses

Update of /cvs/src/gnu/usr.bin/clang/libLLVMPasses
In directory cvs.openbsd.org:/tmp/cvs-serv54587/usr.bin/clang/libLLVMPasses

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMPasses added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:10

src/gnu/usr.bin/clang/liblldConfig

Update of /cvs/src/gnu/usr.bin/clang/liblldConfig
In directory cvs.openbsd.org:/tmp/cvs-serv54587/usr.bin/clang/liblldConfig

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/liblldConfig added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:10

src/gnu/usr.bin/clang/liblldCore

Update of /cvs/src/gnu/usr.bin/clang/liblldCore
In directory cvs.openbsd.org:/tmp/cvs-serv54587/usr.bin/clang/liblldCore

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/liblldCore added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:10

src/gnu/usr.bin/clang/liblldELF

Update of /cvs/src/gnu/usr.bin/clang/liblldELF
In directory cvs.openbsd.org:/tmp/cvs-serv54587/usr.bin/clang/liblldELF

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/liblldELF added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:10:26

src/gnu/usr.bin/clang/include/lld/Config

Update of /cvs/src/gnu/usr.bin/clang/include/lld/Config
In directory cvs.openbsd.org:/tmp/cvs-serv81014/usr.bin/clang/include/lld/Config

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/lld/Config added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:13:07

Modified files:
	gnu/usr.bin/clang: Makefile 
Added files:
	gnu/usr.bin/clang/include/lld/Config: Version.inc 
	gnu/usr.bin/clang/libLLVMLTO: Makefile 
	gnu/usr.bin/clang/libLLVMPasses: Makefile 
	gnu/usr.bin/clang/liblldConfig: Makefile 
	gnu/usr.bin/clang/liblldCore: Makefile 
	gnu/usr.bin/clang/liblldELF: Makefile 
	gnu/usr.bin/clang/lld: Makefile 

Log message:
Add build infrastructure for lld.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 20:14:24

Modified files:
	gnu/llvm/tools/lld/tools/lld: lld.cpp 

Log message:
Disable COFF and Mach-O for OpenBSD to reduce build dependencies.
Only having ELF is perfectly fine for us.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/21 20:27:31

Modified files:
	sys/arch/alpha : Makefile 
	sys/arch/amd64 : Makefile 
	sys/arch/arm64 : Makefile 
	sys/arch/armv7 : Makefile 
	sys/arch/hppa  : Makefile 
	sys/arch/i386  : Makefile 
	sys/arch/landisk: Makefile 
	sys/arch/loongson: Makefile 
	sys/arch/luna88k: Makefile 
	sys/arch/macppc: Makefile 
	sys/arch/octeon: Makefile 
	sys/arch/sgi   : Makefile 
	sys/arch/socppc: Makefile 
	sys/arch/sparc64: Makefile 

Log message:
Introduce the KEEPKERNELS variable: if this is set either in mk.conf or
the environment, 'make cleandir' does not descend into kernel build
directories.  Thus, kernel object files survive 'make build' on slower
architectures.

WARNING:
If you set this variable, you run the risk of breaking 'make release':
Be sure to run 'make cleandir' from /sys/arch/$(machine)/compile before
doing 'make release'.  This issue will be addressed shortly.

requested by kettenis;
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/21 20:30:24

Modified files:
	distrib/miniroot: install.sub 

Log message:
Tweak previous ...
- remove the unsued _err variable
- rework the extraction of the mirror dir info from HTTP_LIST
- use INSTALL_MIRROR to save the mirror info from HTTP_LIST
- use _http_proto to for the final INSTALL_URL if it's a mirror
- assign the correct info to INSTALL_URL
- write INSTALL_URL to /etc/installurl on install if a mirror was used

Feedback and OK tb@
'Looks good' deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/21 20:40:43

Modified files:
	share/man/man8 : release.8 

Log message:
system release -> release
system -> base system
xenocara -> Xenocara
permissions 770 -> mode 770

Discussed with and OK tb@
Xenocara change OK matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/21 20:47:20

Modified files:
	sys/net        : route.h 

Log message:
Zap some bad whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/21 20:50:45

Modified files:
	lib/libssl     : d1_lib.c dtls1.h s3_lib.c ssl.h ssl3.h 
	                 ssl_lib.c ssl_locl.h ssl_sess.c 

Log message:
Convert publically visible structs to translucent structs.

This change adds an internal opaque struct for each of the significant
publically visible structs. The opaque struct is then allocated and
attached to the publically visible struct when the appropriate *_new()
function is called, then cleared and freed as necessary.

This will allow for changes to be made to the internals of libssl, without
requiring a major bump each time the publically visible structs are
modified.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/21 20:53:11

Modified files:
	lib/libssl     : shlib_version 
	lib/libtls     : shlib_version 

Log message:
Bump majors for libssl and libtls following the translucent struct change.

Further changes to the publically visible structs will ride this bump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/21 20:53:43

Modified files:
	multimedia/xine-lib: Tag: OPENBSD_6_0 Makefile 
Added files:
	multimedia/xine-lib/patches: Tag: OPENBSD_6_0 
	                             patch-src_xine-utils_memcpy_c 

Log message:
MFC:
memcpy: fix segfault in times(NULL).

prodded by Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/21 20:56:33

Modified files:
	gnu/usr.bin/clang/clang: Makefile 
	gnu/usr.bin/clang/clang-tblgen: Makefile 
	gnu/usr.bin/clang/lld: Makefile 
	gnu/usr.bin/clang/llvm-tblgen: Makefile 

Log message:
Include bsd.own.mk in a few more places to pick up mk.conf overrides.
ok patrick@ tb@ kettenis@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/21 20:59:30

Modified files:
	lib/libtls     : tls.h 

Log message:
Wrap long lines.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/21 21:07:44

Modified files:
	lib/libssl     : ssl.h ssl_locl.h 

Log message:
Move recently added min_version/max_version from SSL and SSL_CTX to their
opaque structs.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/21 21:18:52

Modified files:
	sys/arch/arm64/stand/efiboot: efiboot.c 

Log message:
Increment the right loop variable.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/21 21:31:02

Modified files:
	sys/net        : rtsock.c 

Log message:
Cleanup error handling. Do not use 'goto flush' early on since the message
is actually not syntactically valid, call 'goto fail' instead.
Remove unneeded rtable_exists() exists checks since those have been done
early on.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/21 21:48:23

Modified files:
	sys/net        : ifq.h hfsc.c 

Log message:
white space fixes. no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/21 22:14:42

Modified files:
	lib/libssl     : ssl.h ssl_locl.h ssl_sess.c t1_lib.c 

Log message:
Move internal parts of ssl_session_st to internal
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/21 22:26:48

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 23:00:14

Modified files:
	gnu/usr.bin/clang/lld: Makefile 

Log message:
Compile and install lld as ld.lld, since that's what the ecosystem
is expecting.

Prompted and ok by kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/21 23:07:21

Modified files:
	gnu/usr.bin/clang/clang: Makefile 
	gnu/usr.bin/clang/lld: Makefile 

Log message:
On clang architectures cc, c++ and cpp are provided by clang.  Also,
ld is provided by lld.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/21 23:36:49

Modified files:
	lib/libssl     : s3_clnt.c s3_lib.c s3_srvr.c ssl.h ssl_lib.c 
	                 ssl_locl.h t1_lib.c 

Log message:
Move ALPN and NPN fields from SSL/SSL_CTX to internal.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 00:16:37

Modified files:
	gnu/usr.bin/clang/clang: Makefile 
	gnu/usr.bin/clang/lld: Makefile 

Log message:
Always provide clang as cc, c++ and cpp, and lld as ld.

Per discussion with deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/22 00:16:39

Modified files:
	lib/libssl     : d1_both.c d1_clnt.c d1_lib.c d1_pkt.c d1_srvr.c 
	                 dtls1.h s3_clnt.c s3_srvr.c ssl_lib.c 
	                 ssl_locl.h t1_enc.c 

Log message:
Move most of DTLS1_STATE to internal.
ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 00:50:49

Log message:
    import py-artifacts, a free, community-sourced, machine-readable knowledge
    base of forensic artifacts that the world can use both as an information
    source and within other tools.
    ok shadchin@ benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170122
    
    N ports/security/py-artifacts/Makefile
    N ports/security/py-artifacts/distinfo
    N ports/security/py-artifacts/pkg/PLIST
    N ports/security/py-artifacts/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 00:52:58

Modified files:
	security       : Makefile 

Log message:
SUBDIR += py-artifacts
SUBDIR += py-artifacts,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 00:55:18

Log message:
    import python xlsxwriter, Python module for creating Excel XLSX files.
    ok benoit@ shadchin@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170122
    
    N ports/devel/py-xlsxwriter/Makefile
    N ports/devel/py-xlsxwriter/distinfo
    N ports/devel/py-xlsxwriter/pkg/PLIST
    N ports/devel/py-xlsxwriter/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 00:56:26

Modified files:
	devel          : Makefile 

Log message:
SUBDIR += py-xlsxwriter
SUBDIR += py-xlsxwriter,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:00:32

Log message:
    import python bencoding and bdecoding implementation
    ok benoit@ shadchin@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170122
    
    N ports/devel/py-bencode/Makefile
    N ports/devel/py-bencode/distinfo
    N ports/devel/py-bencode/pkg/PLIST
    N ports/devel/py-bencode/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:01:39

Modified files:
	devel          : Makefile 

Log message:
+     SUBDIR += py-bencode


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:05:42

Log message:
    import py-binplist, binary property list (plist) parser module written in
    Python.
    inputs and ok shadchin@, ok benoit@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170122
    
    N ports/devel/py-binplist/Makefile
    N ports/devel/py-binplist/distinfo
    N ports/devel/py-binplist/pkg/PLIST
    N ports/devel/py-binplist/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:07:01

Modified files:
	devel          : Makefile 

Log message:
+     SUBDIR += py-binplist


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:09:59

Log message:
    import dfDateTime, or Digital Forensics date and time, provides date and time
    objects to preserve accuracy and precision.
    ok benoit@ shadchin@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170122
    
    N ports/security/py-dfdatetime/Makefile
    N ports/security/py-dfdatetime/distinfo
    N ports/security/py-dfdatetime/pkg/PLIST
    N ports/security/py-dfdatetime/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:11:07

Modified files:
	security       : Makefile 

Log message:
+     SUBDIR += py-dfdatetime


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:18:04

Log message:
    import Python bindings for The Sleuth Kit (libtsk).
    ok benoit@ shadchin@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170122
    
    N ports/sysutils/py-tsk/Makefile
    N ports/sysutils/py-tsk/distinfo
    N ports/sysutils/py-tsk/pkg/PLIST
    N ports/sysutils/py-tsk/pkg/DESCR
    N ports/sysutils/py-tsk/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/01/22 01:19:14

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += py-tsk


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 01:19:36

Modified files:
	regress/lib/libssl/unit: Makefile tls_ext_alpn.c 

Log message:
Update the TLS ALPN unit tests to work with internal/opaque data.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/22 01:27:50

Modified files:
	lib/libtls     : tls.c 

Log message:
Disable session cache and tickets by default.
OK beck@ jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/22 01:31:44

Modified files:
	fonts/mplus-fonts: Makefile distinfo 

Log message:
Update to mplus-fonts-062.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 02:02:08

Modified files:
	lib/libssl     : d1_both.c d1_clnt.c d1_enc.c d1_pkt.c d1_srvr.c 
	                 s23_srvr.c s3_both.c s3_clnt.c s3_lib.c 
	                 s3_pkt.c s3_srvr.c ssl3.h ssl_cert.c ssl_lib.c 
	                 ssl_locl.h t1_enc.c t1_lib.c t1_reneg.c 

Log message:
Move most of the SSL3_STATE fields to internal - the ones that remain are
known to be used by ports.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/22 02:03:09

Modified files:
	share/man/man9 : style.9 

Log message:
remove the perfect example
ok lengthyhackroomdiscussion@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 02:09:46

Added files:
	distrib/sets/lists/base: md.arm64 
	distrib/sets/lists/comp: md.arm64 
	distrib/sets/lists/etc: md.arm64 
	distrib/sets/lists/game: md.arm64 
	distrib/sets/lists/man: md.arm64 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/22 02:44:15

Modified files:
	driver/xf86-input-joystick: ChangeLog Makefile.in configure 
	                            configure.ac 
	driver/xf86-input-joystick/config: 50-joystick-all.conf 
	driver/xf86-input-joystick/src: backend_bsd.c backend_evdev.c 
	                                backend_joystick.c jstk.c jstk.h 
	                                jstk_axis.c jstk_key.c 
Added files:
	driver/xf86-input-joystick: compile 

Log message:
Update to xf86-input-joystick 1.6.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/22 02:53:08

Modified files:
	driver/xf86-input-keyboard: ChangeLog configure configure.ac 
	driver/xf86-input-keyboard/src: bsd_KbdMap.c kbd.c 

Log message:
Update to xf86-input-keyboard 1.9.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/22 02:53:41

Modified files:
	driver/xf86-input-mouse: ChangeLog README compile configure 
	                         configure.ac xorg-mouse.pc.in 
	driver/xf86-input-mouse/src: mouse.c 

Log message:
Update to xf86-input-mouse 1.9.2


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/22 02:54:53

Modified files:
	driver/xf86-input-synaptics: ChangeLog config.h.in configure 
	                             configure.ac 
	driver/xf86-input-synaptics/conf: Makefile.am Makefile.in 
	driver/xf86-input-synaptics/include: synaptics-properties.h 
	driver/xf86-input-synaptics/man: synaptics.man 
	driver/xf86-input-synaptics/src: eventcomm.c properties.c 
	                                 ps2comm.c synaptics.c 
	                                 synapticsstr.h synproto.h 
	driver/xf86-input-synaptics/tools: synclient.c syndaemon.c 
Added files:
	driver/xf86-input-synaptics/conf: 70-synaptics.conf 
Removed files:
	driver/xf86-input-synaptics/conf: 50-synaptics.conf 

Log message:
Update to xf86-input-synaptics 1.9.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/22 03:04:05

Modified files:
	distrib/sets/lists/xserv: md.amd64 md.i386 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/22 03:04:42

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/22 03:17:39

Modified files:
	sys/arch/armv7/imx: if_fec.c 
	sys/arch/armv7/omap: if_cpsw.c 
	sys/arch/armv7/sunxi: sxie.c 
	sys/arch/macppc/dev: if_bm.c if_mc.c 
	sys/arch/octeon/dev: cn30xxgmx.c 
	sys/arch/sgi/dev: if_iec.c if_mec.c 
	sys/arch/sgi/hpc: if_sq.c 
	sys/arch/socppc/dev: if_tsec.c 
	sys/arch/sparc64/dev: vnet.c 
	sys/dev/ic     : acx.c aic6915.c am7990.c am79900.c an.c 
	                 ar5008.c ar9003.c ath.c atw.c bwi.c dc.c 
	                 dp8390.c dwc_gmac.c elink3.c fxp.c gem.c hme.c 
	                 i82596.c if_wi.c lemac.c malo.c mtd8xx.c pgt.c 
	                 re.c rt2560.c rt2661.c rt2860.c rtl81x9.c rtw.c 
	                 smc83c170.c smc91cxx.c ti.c xl.c 
	sys/dev/isa    : if_ef_isapnp.c if_eg.c if_el.c if_ex.c if_ie.c 
	sys/dev/pci    : if_age.c if_alc.c if_ale.c if_bce.c if_bge.c 
	                 if_bnx.c if_cas.c if_de.c if_em.c if_et.c 
	                 if_ipw.c if_iwi.c if_iwm.c if_iwn.c if_ix.c 
	                 if_ixgb.c if_jme.c if_lge.c if_lii.c if_msk.c 
	                 if_myx.c if_nep.c if_nfe.c if_nge.c if_nxe.c 
	                 if_oce.c if_pcn.c if_rtwn.c if_se.c if_sis.c 
	                 if_sk.c if_ste.c if_stge.c if_tht.c if_tl.c 
	                 if_txp.c if_vge.c if_vic.c if_vmx.c if_vr.c 
	                 if_vte.c if_wb.c if_wpi.c if_xge.c 
	sys/dev/pcmcia : if_malo.c if_xe.c 
	sys/dev/pv     : if_hvn.c if_vio.c if_xnf.c 
	sys/dev/sbus   : be.c qe.c 
	sys/dev/usb    : if_athn_usb.c if_atu.c if_aue.c if_axe.c 
	                 if_axen.c if_cdce.c if_cue.c if_kue.c if_mos.c 
	                 if_otus.c if_ral.c if_rsu.c if_rum.c if_run.c 
	                 if_smsc.c if_uath.c if_udav.c if_ugl.c if_umb.c 
	                 if_upgt.c if_upl.c if_ure.c if_url.c 
	                 if_urndis.c if_urtw.c if_urtwn.c if_zyd.c 
	sys/net        : if.c if_etherip.c if_gif.c if_pair.c if_pppoe.c 
	                 if_trunk.c if_tun.c if_vether.c if_vlan.c 
	                 if_vxlan.c 

Log message:
move counting if_opackets next to counting if_obytes in if_enqueue.

this means packets are consistently counted in one place, unlike the
many and various ways that drivers thought they should do it.

ok mpi@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/22 05:13:09

Modified files:
	net/dnsdist    : Makefile 

Log message:
dnsdist needs 64-bit atomics; use -march=i586 on i386


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2017/01/22 10:00:33

Modified files:
	lang/php/5.6   : Makefile distinfo 
	lang/php/5.6/patches: patch-main_php_ini_c 

Log message:
Update to PHP 5.6.30.
OK sthen@ and robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2017/01/22 10:01:32

Modified files:
	lang/php/7.0   : Makefile distinfo 
	lang/php/7.0/patches: patch-main_php_ini_c 

Log message:
Update to PHP 7.0.15
OK sthen@ and robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/22 10:17:38

Modified files:
	distrib/sets/lists/comp: mi 
	sys/dev/wsfont : wsfont.c 
Removed files:
	sys/dev/wsfont : sony12x24.h sony8x16.h 

Log message:
Remove sony8x16 and sony12x24 fonts.

They were not compiled in by default, and are Serif fonts, which doesn't
work very well for monospaced bitmap fonts intended for console use.

OK mpi@, visa@, jcs@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/22 12:00:01

Modified files:
	usr.bin/tmux   : input.c 

Log message:
Accept the OSC 52 escape sequence inside tmux to add a new buffer, from
harry dot gindi at live dot com.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/22 13:08:10

Modified files:
	sys/conf       : files 
	sys/dev/pv     : files.pv 

Log message:
define virtio in conf/files

This unbreaks build on archs that are non-pv but PCI because I moved
virtio out of files.pci but kept a virtio dependency for the
virtio_pci driver.

Issue report and fix suggested by visa@ and miod@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/01/22 14:23:51

Modified files:
	driver/xf86-input-vmmouse: configure configure.ac 

Log message:
Disable linking of libi386 too (linking do libamd64 was already disabled,
but I manage to commit the incomplete version). Noticed by sthen@. Thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2017/01/22 15:08:39

Log message:
    Import devel/p5-Data-SExpression
    
    Parse Lisp S-Expressions into perl data structures
    
    From Sean Levy <attila AT stalphonsos.com>
    
    OK jca@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20170122
    
    N ports/devel/p5-Data-SExpression/Makefile
    N ports/devel/p5-Data-SExpression/distinfo
    N ports/devel/p5-Data-SExpression/pkg/PLIST
    N ports/devel/p5-Data-SExpression/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2017/01/22 15:11:22

Modified files:
	devel          : Makefile 

Log message:
Link devel/p5-Data-SExpression


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/22 15:47:11

Modified files:
	distrib/miniroot: install.sub 

Log message:
Prefix local variables with '_'.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/22 15:57:15

Modified files:
	share/man/man9 : style.9 

Log message:
improve on previous edit.
suggested by jmc@, thanks for watching over my feeble attempts to edit
manpages.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/22 16:23:23

Modified files:
	distrib/miniroot: install.sub 

Log message:
Unobscure the installer script code a bit by adding and rewording comments.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/22 16:37:37

Modified files:
	distrib/miniroot: install.sub 

Log message:
= -> == inside [[ ]] tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/22 16:38:30

Modified files:
	distrib/miniroot: install.sub 

Log message:
Ensure the right hand side of the test is not treated as pattern.

OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/22 16:43:54

Modified files:
	distrib/amd64/common: install.md 
	distrib/armv7/ramdisk: install.md 
	distrib/i386/common: install.md 
	distrib/landisk/ramdisk: install.md 
	distrib/loongson/ramdisk: install.md 
	distrib/luna88k/ramdisk: install.md 
	distrib/macppc/ramdisk: install.md 
	distrib/octeon/ramdisk: install.md 
	distrib/sgi/ramdisk: install.md 
	distrib/socppc/ramdisk: install.md 
	distrib/sparc64/common: install.md 

Log message:
Whitespaces ...


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/01/22 16:47:27

Modified files:
	multimedia/mlbviewer: Makefile 

Log message:
move py-gdata from being a wrong LIB_DEPEND to a correct RUN_DEPEND

reminded many times by mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/22 16:56:44

Modified files:
	lib/libc       : Makefile 

Log message:
Link libc with compiler_rt not libgcc if COMPILER_VERSION is clang.

This is not a list of archs with compiler_rt as it is intended that
any arch switching to clang will have the required md bits added to
compiler_rt first.

ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/22 17:10:07

Modified files:
	sys/net        : rtsock.c 
	sbin/route     : route.c 

Log message:
Zap some bad whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/22 17:12:36

Modified files:
	usr.sbin/ospfd : ospfd.h rde.c 

Log message:
Remove incomplete "forced nexthop" support.

Discussed with claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/22 17:12:52

Modified files:
	sys/net        : route.h 

Log message:
Typo in comment. It's 'rtm_addrs', not 'rtm_addr'


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 17:12:55

Modified files:
	lib/libssl     : d1_clnt.c d1_srvr.c s23_clnt.c s23_srvr.c 
	                 s3_clnt.c s3_srvr.c ssl.h ssl_lib.c ssl_locl.h 
	                 ssl_sess.c 

Log message:
Move the stats struct from SSL_CTX to internal.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/22 17:16:31

Modified files:
	sys/net        : route.h 

Log message:
Add comment above rtm_flags #define's.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 17:17:25

Modified files:
	sys/arch/arm64/conf: GENERIC 
Added files:
	sys/arch/arm64/conf: RAMDISK 

Log message:
Add RAMDISK config for arm64.  While there, clean up spaces in
the GENERIC config.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/22 17:59:22

Modified files:
	sys/net        : route.h 

Log message:
Add comment above rtm_type #define's.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 17:59:26

Modified files:
	distrib/special/installboot: Makefile 

Log message:
Use stubs for arm64 as well.

ok phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/22 18:00:58

Modified files:
	sys/dev/microcode/atmel: Makefile 
	sys/dev/microcode/kue: Makefile 
	sys/dev/microcode/rum: Makefile 
	sys/dev/microcode/tusb3410: Makefile 
	sys/dev/microcode/udl: Makefile 
	sys/dev/microcode/zydas: Makefile 

Log message:
Build firmware for usb devices on arm64.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/22 18:02:11

Modified files:
	sys/net        : art.c art.h 

Log message:
Make the art interface a bit more generic by not depending on sockaddr
in the functions. This way it can be used for other trees as well.
OK mpi@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 18:04:23

Modified files:
	lib/libssl     : ssl.h 

Log message:
Remove heartbeat related fields from the SSL_CTX, which are unused
(thankfully).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 18:10:10

Modified files:
	sys/uvm        : uvm_addr.c 

Log message:
Move static function to the bottom of the file, to the only user
of that function, to guard it with SMALL_KERNEL.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/22 18:10:31

Modified files:
	sys/dev/ic     : mfireg.h mfi.c 
	sys/dev/pci    : mfii.c 

Log message:
represent the mbox layout with union instead of an array of bytes.

memcpying uint16_ts into inconsistently addressed offsets is hard
to read, and this makes future work easier to implement.

tested on mfi(4) and mfii(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/22 18:20:08

Modified files:
	sys/dev/ic     : mfireg.h 

Log message:
massage some event related details.

turn the enum of event argument types into a series of #defines so
when you printf the arg type you can search for the number and get
an answer without having to count lines.

add a struct for extended physical address arguments in event
messages.

add a list of event types.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 18:22:08

Modified files:
	lib/libssl     : s3_clnt.c s3_lib.c s3_srvr.c ssl.h ssl_lib.c 
	                 ssl_locl.h ssl_sess.c 

Log message:
Move not_resumable and sess_cert from SSL_SESSION to internal.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/22 18:26:09

Modified files:
	sys/net        : if.c if.h rtsock.c 

Log message:
merge the ifnet and ifqueue stats together when userland wants them.

a new if_data() function takes a pointer to ifnet and merges its
if_data and ifq statistics. it takes the ifq mutex around the reads
of the ifq stats so they get a consistent copy.

the ifnet and ifq stats are merged because some parts of the stack
still update the ifnet counters.

ok visa@ (on an earlier diff) mpi@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/22 19:11:30

Modified files:
	distrib/miniroot: install.sub 

Log message:
Export AI_MAC and AI_SERVER in addition to AI_MODE so they're visible
in the install.site and upgrade.site scripts.

OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/22 19:14:46

Modified files:
	distrib/miniroot: install.sub 

Log message:
Clean up possible leftover prefetch area in case of installer restarts.

OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 19:22:36

src/distrib/arm64

Update of /cvs/src/distrib/arm64
In directory cvs.openbsd.org:/tmp/cvs-serv58225/arm64

Log Message:
Directory /cvs/src/distrib/arm64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 19:22:45

src/distrib/arm64/ramdisk

Update of /cvs/src/distrib/arm64/ramdisk
In directory cvs.openbsd.org:/tmp/cvs-serv51739/arm64/ramdisk

Log Message:
Directory /cvs/src/distrib/arm64/ramdisk added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/22 19:24:00

Added files:
	distrib/arm64  : Makefile 
	distrib/arm64/ramdisk: Makefile Makefile.inc install.md list 

Log message:
Add support for creating RAMDISK kernels for arm64.  Based on
the armv7 code, but with the u-boot, device tree and mkuboot
bits stripped out.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/22 19:51:02

Modified files:
	multimedia/x265: Makefile 

Log message:
Disable the benchmarks (not built by default) for now to workaround an
issue with Clang 4.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/22 20:01:41

Modified files:
	share/man/man4 : gpio.4 

Log message:
add sxipio(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/22 20:04:57

Modified files:
	sys/arch/arm64/arm64: conf.c 

Log message:
Add gpio(4) and switch(4) to cdevsw.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/22 20:12:25

Modified files:
	usr.sbin/gpioctl: Makefile 
	usr.sbin/hotplugd: Makefile 

Log message:
Build gpioctl(8) and hotplugd(8) on arm64.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 20:17:55

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 20:31:33

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/22 20:47:37

Modified files:
	sbin/pflogd    : privsep.c 

Log message:
pflogd will need pledge(proc), still disabled because of bfd
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 21:15:28

Modified files:
	lib/libssl     : d1_clnt.c d1_pkt.c d1_srvr.c s23_clnt.c 
	                 s23_srvr.c s3_clnt.c s3_lib.c s3_pkt.c 
	                 s3_srvr.c ssl.h ssl_cert.c ssl_lib.c ssl_locl.h 
	                 ssl_rsa.c ssl_sess.c t1_lib.c 

Log message:
Move callback function pointers and argument pointers from SSL_CTX to
internal.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/22 21:25:02

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
add the mfii opcode for passthru commands


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 21:25:05

Modified files:
	sys/sys        : pledge.h 
	sys/kern       : kern_pledge.c 
	bin/pax        : ar_io.c pax.c 
	lib/libc/sys   : pledge.2 
	usr.sbin/httpd : httpd.c 
	sbin/pflogd    : privsep.c 
	usr.sbin/tcpdump: privsep.c 

Log message:
Split pledge "ioctl" into "tape" and "bpf", and allow SIOCGIFGROUP only
upon "inet".  Adjust the 4 programs that care about this.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/22 21:26:57

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
store the full 64bits of the sense bufers dva.

this is in preparation of reusing the sense buffer for passthru dcmds


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 21:43:46

Modified files:
	sys/dev/wscons : wsdisplay_compat_usl.c 

Log message:
Only allow change-setting ioctls when FWRITE is set on the descriptor.
ok I forget who


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 21:45:59

Modified files:
	sbin/dhclient  : dhclient.c dispatch.c 

Log message:
Keep socket open from startup, and reuse for SIOCGIFFLAGS later on,
rather than opening a fresh socket on the fly.
ok krw


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 21:53:15

Modified files:
	bin/csh        : lex.c 

Log message:
Call isatty() before tcgetattr() in the lex.  This is a little redundant,
but avoids doing pledge "tty" operations against flat files.  The shell's
tty will be kind of special in the near future. isatty is also a lot less
kernel code to run through the loop.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/22 21:55:27

Modified files:
	lib/libssl     : bio_ssl.c d1_both.c d1_clnt.c d1_pkt.c 
	                 d1_srvr.c s23_clnt.c s23_lib.c s23_srvr.c 
	                 s3_both.c s3_clnt.c s3_lib.c s3_pkt.c s3_srvr.c 
	                 ssl.h ssl_cert.c ssl_lib.c ssl_locl.h 
	                 ssl_sess.c t1_lib.c 

Log message:
move the callbacks from ssl_st to internal
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 21:57:13

Modified files:
	libexec/getty  : main.c 

Log message:
pledge a tiny bit later.  This results in the specified tty being
opened before the first pledge call.
testing by tb and benno and others


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/22 22:03:47

Modified files:
	faq            : current.html 

Log message:
fix man links for acme-client{,.conf} . spotted by amit kulkarni


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 22:13:02

Modified files:
	lib/libssl     : d1_srtp.c s3_clnt.c s3_lib.c s3_srvr.c ssl.h 
	                 ssl_cert.c ssl_lib.c ssl_locl.h ssl_rsa.c 
	                 ssl_sess.c t1_lib.c 

Log message:
Move most of the fields in SSL_CTX to internal - the ones that remain are
known to be in use.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/22 22:18:45

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
rework how we address physical disks on the second scsibus.

to talk to a physical disk on mfii you need to know its physical
disk id and its current dev handle.

you can fetch a list of physical disks with a MR_DCMD_PD_GET_LIST
command, and you get the dev handle by fetching the associated info
from a MR_DCMD_LD_MAP_GET_INFO command.

i made a mistake and thought that the index into the PD_GET_LIST
info was the target id of a disk, and that should also be used as
the index into the LD_MAP_GET_INFO structures. it turns out that
the PD_GET_LIST is a dense array of info that points at the target
id, and the target id is used as the index into the LD_MAP_GET_INFO.

it also turns out that the dev handles from LD_MAP_GET_INFO can
change at runtime, so we should update them all when the bus topology
changes.

this change fetches a list of dev handles via LD_MAP_GET_INFO up
front, and makes them availble to the passthru bus scsi_cmd handler
via SRP. in the future hotplug events will update the map concurrently
with disk accesses.

also get rid of the probe for pd disks since the id from PD_GET_LIST
and what the scsibus automatically probes are the same. we just let
the midlayre blindly probe all possible targets on the passthru
bus. the pd scsibus probe handler still fetches specific disk info
to ensure we only provide access to disks marked as PASSTHRU in the
firmware.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/22 22:27:22

Modified files:
	lib/libssl     : ssl.h ssl_locl.h ssl_sess.c 

Log message:
Move ex_data, next and prev from SSL_SESSION to internal.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/22 22:49:24

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Backwards compat for pledge "ioctl" for about a week


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/22 23:13:34

Modified files:
	sys/arch/arm64/dev: simplebus.c 
	sys/arch/arm/simplebus: simplebus.c 

Log message:
No need to explicitly use config_activate_children in the cfattach struct.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/22 23:45:30

Modified files:
	lib/libssl     : d1_both.c d1_clnt.c d1_enc.c d1_pkt.c d1_srtp.c 
	                 d1_srvr.c s23_clnt.c s23_pkt.c s23_srvr.c 
	                 s3_both.c s3_cbc.c s3_clnt.c s3_lib.c s3_pkt.c 
	                 s3_srvr.c ssl.h ssl_cert.c ssl_lib.c ssl_locl.h 
	                 ssl_sess.c t1_enc.c t1_lib.c 

Log message:
Move a large part of ssl_st into internal, so we can see what squeals.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/22 23:49:31

Modified files:
	regress/lib/libssl/unit: cipher_list.c 

Log message:
Fix regress to handle movement of ssl structures to internal


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/23 00:19:39

Modified files:
	lib/libc/sys   : pledge.2 

Log message:
whitespace between macro args and punctuation, and zap a ton
of unneccessary quoting; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/23 00:27:21

Modified files:
	sys/net        : if.h if.c rtsock.c 

Log message:
i botched the copyout to ifr->ifr_data in SIOCGIFDATA.

this lets pflogd run again.

rename if_data() to if_getdata() while here to make grepping for
things less noisy.

reported by jsg@
worked through with deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 01:05:47

Modified files:
	sys/arch/arm64/conf: GENERIC files.arm64 
Added files:
	sys/arch/arm64/dev: bcm2835_dwctwo.c bcm2836_intr.c 

Log message:
Add drivers for the Raspberry Pi 3.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/23 01:08:07

Modified files:
	lib/libssl     : d1_enc.c d1_pkt.c s3_cbc.c s3_pkt.c ssl.h 
	                 ssl_lib.c ssl_locl.h t1_enc.c 

Log message:
move back read_hash and enc_read_ctx into ssl_st. wpa_supplicant and
other perversions touches them sickly and unnaturally.


CVSROOT:	/cvs
Module name:	src
Changes by:	joris@cvs.openbsd.org	2017/01/23 01:19:49

Modified files:
	usr.bin        : Makefile 

Log message:
Relink opencvs to the build.
sure deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 01:21:34

Modified files:
	sys/arch/arm64/conf: kern.ldscript 

Log message:
Remove final align as it confuses lld.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 01:23:41

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Avoid mapping memory outside kernel VA space.  This happens on machines
where we don't load the kernel at the start of physical memory such as
the Raspberry Pi 3.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/23 01:24:03

Modified files:
	devel/liburcu  : Makefile 

Log message:
Avoid lang/gcc TLS emulation, breaks regress tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/23 01:24:41

Modified files:
	devel/liburcu  : Makefile 

Log message:
Tweak comment


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/23 01:31:27

Modified files:
	devel          : Makefile 

Log message:
Unbreak sqlports: p5-Data-SExpresion -> p5-Data-SExpression


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 01:37:08

Modified files:
	sys/arch/arm/arm: conf.c 
	sys/arch/landisk/landisk: conf.c 

Log message:
remove #defines present in MI conf.h; ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/23 01:38:09

Modified files:
	usr.sbin/bgpd  : log.c 

Log message:
whitespace
ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/23 01:40:07

Modified files:
	usr.sbin/iscsid: iscsid.c log.c log.h 

Log message:
copy log.c/h from bgpd.
ok claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/23 01:40:45

Modified files:
	usr.sbin/ospfd : log.c log.h 

Log message:
copy log.c/h from bgpd.
ok claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/23 01:41:02

Modified files:
	usr.sbin/ospf6d: log.c log.h 

Log message:
copy log.c/h from bgpd.
ok claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/23 01:48:45

Modified files:
	lib/libssl     : d1_both.c d1_clnt.c d1_pkt.c d1_srvr.c 
	                 s23_clnt.c s23_srvr.c s3_both.c s3_clnt.c 
	                 s3_lib.c s3_pkt.c s3_srvr.c ssl.h ssl_lib.c 
	                 ssl_locl.h ssl_stat.c t1_lib.c 

Log message:
send state and rstate from ssl_st into internal. There are accessors
so these should not be diddled with directly
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/23 02:02:57

Modified files:
	sys/arch/arm64/conf: RAMDISK 

Log message:
Add Raspberry Pi 3 drivers to RAMDISK as well.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 02:08:24

Modified files:
	sys/net        : pf_table.c 

Log message:
Kill unecessary splsoftnet()/splx() dances, what's protecting radix
globals is the KERNEL_LOCK().

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/23 02:09:15

Modified files:
	libexec/spamd  : spamd.c 

Log message:
Switch spamd to nonblocking descriptors so we can count on getting a
short write when the socket buffers are full, instead of blocking.
ok benno@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 02:10:06

Modified files:
	sys/netinet    : ipsec_input.c 

Log message:
Assert for IPL_SOFTNET rather than raising SPL recursively.

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/23 02:21:04

Modified files:
	libexec/spamd  : spamd.c 

Log message:
check EAGAIN in the correct place,
noticed and ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/23 02:52:37

Modified files:
	lang/seed7     : Makefile 

Log message:
BROKEN on arm


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/23 03:09:43

Modified files:
	usr.bin/tmux   : Makefile client.c tmux.c tmux.h window.c 
Added files:
	usr.bin/tmux   : pty.c 

Log message:
Open /dev/ptm before pledge() and save it to be used for PTMGET later
(this means inlining forkpty()).

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 03:15:53

Modified files:
	sys/arch/arm64/dev: agtimer.c 

Log message:
Also attach to "arm,armv7-timer".

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 03:22:06

Modified files:
	lib/libssl     : d1_clnt.c d1_meth.c d1_srvr.c ssl.h ssl_lib.c 
	                 t1_clnt.c t1_meth.c t1_srvr.c 

Log message:
Remove ssl_ctrl, ssl_ctx_ctrl, ssl_callback_ctrl and ssl_ctx_callback_ctrl
from SSL_METHOD, replacing usage with direct calls to the appropriate
functions.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/23 03:30:15

Modified files:
	libexec/ld.so/aarch64: rtld_machine.c 

Log message:
Fix format string mismatches

testing assistance patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/23 03:30:58

Modified files:
	libexec/ld.so/amd64: rtld_machine.c 
	libexec/ld.so/arm: rtld_machine.c 
	libexec/ld.so/mips64: rtld_machine.c 
	libexec/ld.so/powerpc: rtld_machine.c 

Log message:
Fix format string mismatches


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 03:46:02

Modified files:
	sys/arch/arm64/dev: simplebus.c simplebusvar.h 

Log message:
Parse and use "dma-ranges" property to do the appropriate dma address
translations on machines like the Raspberry Pi.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 03:47:53

Modified files:
	sys/arch/arm64/dev: simplebus.c 

Log message:
Add (temporary) workaround for the missing "dma-ranges" property in the
device tree provided by the current Raspberry Pi firmware.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/23 03:49:12

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
quick blurb about the upcoming CLANG_ARCHS variable


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/01/23 03:50:26

Modified files:
	infrastructure/mk: arch-defines.mk 
	infrastructure/package: gen-package-pages 

Log message:
add aarch64 definitions to the ports framework

facts verified by patrick@ and kettenis@
OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/01/23 03:54:51

Modified files:
	sys/arch/loongson/dev: kb3310.c 

Log message:
Nuke extraneous whitespace and tabs.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 03:57:19

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/23 04:04:19

Modified files:
	libexec/ld.so  : dir.h path.h sod.h util.h 

Log message:
Wrap function declarations with __{BEGIN,END}_HIDDEN_DECLS to reduce
relocations inside ld.so that it has to bootstrap

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/23 04:05:28

src/regress/lib/libc/malloc/malloc_general

Update of /cvs/src/regress/lib/libc/malloc/malloc_general
In directory cvs.openbsd.org:/tmp/cvs-serv74861/malloc_general

Log Message:
Directory /cvs/src/regress/lib/libc/malloc/malloc_general added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/23 04:06:32

Added files:
	regress/lib/libc/malloc/malloc_general: Makefile 
	                                        malloc_general.c 

Log message:
test malloc/realloc/free with some flag combo's


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/23 04:07:18

Modified files:
	regress/lib/libc/malloc: Makefile 

Log message:
hook malloc_general to the tests


CVSROOT:	/cvs
Module name:	src
Changes by:	zhuk@cvs.openbsd.org	2017/01/23 04:13:11

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
Add LLVM_ARCHS description as well, to make more clear the distinction
between it and CLANG_ARCHS.

Clang comes before GCC in English, so sort the header itself, and move
and move the whole item up.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/23 04:22:58

Modified files:
	net/snort      : Makefile 

Log message:
nghttp2 gets picked-up (so build fails in bulks because since it's not a
registered dependency, dpb(1) remove it in the middle of the build)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 04:33:41

Modified files:
	usr.sbin/bgpd  : rde_update.c 

Log message:
Refactor a bit to make it look a bit more like the rde_update_update code.
No functional change, less recursion and indents.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 04:37:29

Modified files:
	sys/net        : if.h if_bridge.c if_enc.c if_pflog.c if_gif.c 
	                 if_gre.c if_loop.c if_mpe.c if_mpw.c if_pair.c 
	                 if_pfsync.c if_pflow.c if_etherip.c if_vlan.c 
	                 if.c 
	sys/netinet    : ip_carp.c 

Log message:
Flag pseudo-interfaces as such in order to call add_net_randomness()
only once per packet.

Fix a regression introduced when if_input() started to be called by
every pseudo-driver.

ok claudio@, dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/23 04:40:16

Modified files:
	games/redeclipse: Makefile distinfo 
	games/redeclipse/pkg: PLIST-data 

Log message:
update to Red Eclipse 1.5.8


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 04:43:40

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_rib.c 

Log message:
Rename struct rib to struct rib_desc. Mechanical change, OK gcc


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 04:44:35

Modified files:
	.              : hackathons.html 
Added files:
	images/hackathons: a2k17-s.gif a2k17.gif 

Log message:
still waiting on high-quality image but here is something for now


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 04:46:02

Modified files:
	usr.sbin/bgpd  : rde.h rde_rib.c 

Log message:
Now rename struct rib_tree to struct rib. Again OK gcc


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/23 05:02:14

Modified files:
	sys/arch/arm64/stand/efiboot: exec.c 

Log message:
We are supposed to be mapped on a 128 MB block, so skip the first
few bits to calculate a valid virtual address for esym.

Found with kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 05:25:19

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_rib.c 

Log message:
More rototilling, make rib_new and rib_find return a point to struct rib_desc


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 05:29:50

Modified files:
	sys/arch/arm64/arm64: mem.c 

Log message:
Synchronize with the arm version of this file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/23 05:33:12

Modified files:
	devel/p5-Test-Script: Makefile distinfo 

Log message:
update p5-Test-Script to 1.14
remove needless build dependency
take maintainer
OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 05:34:06

Modified files:
	sys/arch/arm64/arm64: conf.c 
	sys/arch/arm64/conf: GENERIC files.arm64 
	sys/arch/arm64/include: conf.h 
Added files:
	sys/arch/arm64/arm64: openprom.c 
	sys/arch/arm64/include: openpromio.h 

Log message:
openprom(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 05:39:37

Modified files:
	usr.sbin/eeprom: Makefile 

Log message:
Build on arm64.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 05:43:48

Modified files:
	etc/etc.arm64  : MAKEDEV.md 

Log message:
Add /dev/openprom.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 05:44:18

Modified files:
	etc/etc.arm64  : MAKEDEV 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 05:46:13

Modified files:
	bin/pax        : ar_io.c pax.c 

Log message:
Slow down the churn and continue using old pledge name "ioctl" instead
of "tape" for a week or so.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/23 05:59:12

Modified files:
	libexec/ld.so  : tib.c 

Log message:
The functionality of _dl_allocate_tib() is used internally, so rename
it to allocate_tib(), mark that hidden, then make the exported function
an alias of that.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/23 06:00:09

Modified files:
	libexec/ld.so  : dl_printf.c dlfcn.c resolve.c 

Log message:
Mark a bunch of stuff static

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 06:01:06

Modified files:
	sys/arch/arm64/conf: GENERIC 

Log message:
Enable simplefb(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 06:08:47

Modified files:
	usr.sbin/bgpd  : rde.h rde_rib.c 

Log message:
Revert the struct rib_tree rename. I need a struct in between because of
how struct rib_entry is used.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/23 06:13:12

Modified files:
	libexec/ld.so  : resolve.c 

Log message:
Whoops, lost the adjustment of DT_RUNPATH value as a DT_STRTAB value.

problem reported by semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/23 06:29:06

Modified files:
	sys/arch/arm64/conf: kern.ldscript 

Log message:
_end should be on a 64-bit boundary, so make sure to align
the end of BSS by 64-bit and not 32-bit.

With and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 06:36:13

Modified files:
	lib/libssl     : bio_ssl.c d1_both.c d1_clnt.c d1_lib.c 
	                 d1_meth.c d1_pkt.c d1_srvr.c s23_clnt.c 
	                 s23_srvr.c s3_both.c s3_clnt.c s3_lib.c 
	                 s3_pkt.c s3_srvr.c ssl.h ssl_lib.c ssl_locl.h 
	                 ssl_sess.c t1_clnt.c t1_enc.c t1_lib.c 
	                 t1_meth.c t1_srvr.c 

Log message:
Split most of SSL_METHOD out into an internal variant, which is opaque.

Discussed with beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/23 06:39:24

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
In comparison to _start, where we only need the address of the
function, we need another indirection for esym.  The address of
esym is simply the address of the variable.  But in the case of
esym we want to read and modify its value.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/23 06:41:45

Modified files:
	sys/arch/arm64/arm64: machdep.c 

Log message:
Initialize DDB if compiled with option DDB.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/23 06:43:50

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
Create a mapping for the FDT if it happens to be on a different 1 GiB
mapping than the kernel.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/23 06:50:10

Modified files:
	cad/openscad   : Makefile 

Log message:
Try to build with -O1 instead of -O2 on alpha. This may help,
or may not - can't check due to lack of hardware.

Initiated by alpha bulk build report from phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/23 06:58:11

Modified files:
	sys/arch/arm64/conf: files.arm64 RAMDISK 

Log message:
Make the RAMDISK kernel actually try to boot the ramdisk.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/23 07:00:22

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable USBVERBOSE on both the GENERIC and RAMDISK kernel.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/23 07:02:02

Modified files:
	sys/arch/arm64/arm64: machdep.c 

Log message:
Enter UKC when built with BOOT_CONFIG and -c is specified.

ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 07:11:21

Modified files:
	sys/arch/arm64/conf: kern.ldscript 

Log message:
Remove duplicate $OpenBSD$ tag.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 07:15:16

Modified files:
	sys/arch/arm64/conf: GENERIC 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : bcm2835_dog.c 

Log message:
Add bcmdog(4), a watchdog timer for the Raspberry Pi.

Based on code written by patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/23 07:29:12

Modified files:
	sys/arch/arm64/conf: RAMDISK 

Log message:
Enable bcmdog on RAMDISK as well so it can reboot.

ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 07:35:42

Modified files:
	lib/libssl     : d1_pkt.c s23_clnt.c s23_srvr.c s3_both.c 
	                 s3_lib.c s3_pkt.c s3_srvr.c ssl.h ssl_lib.c 
	                 ssl_locl.h t1_enc.c t1_lib.c 

Log message:
Move options and mode from SSL_CTX and SSL to internal, since these can be
set and cleared via existing functions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/23 08:20:21

Modified files:
	devel/py-parsedatetime: Makefile distinfo 
	devel/py-parsedatetime/pkg: PLIST 

Log message:
update to py-parsedatetime-2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2017/01/23 09:20:35

Modified files:
	libexec/ld.so  : resolve.c 

Log message:
remove line that slipped in with rev 1.77 but doesn't belong there; ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/23 09:31:24

Modified files:
	sys/kern       : uipc_proto.c 
	sys/net        : pfkey.c raw_cb.h raw_usrreq.c 
	sys/netinet    : raw_ip.c 
	sys/netinet6   : raw_ip6.c 

Log message:
The function raw_input() has not been called since netiso has been
removed in 2004.  The comment about raw_input() above rip_input()
was added in 1981, but it is wrong since 1992.  After that it has
been copied to rip6_input().  (*pr_input)() is never called with
the parameters (mbuf, sockproto, sockaddr, sockaddr).
So retire raw_input().
OK guenther@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/01/23 09:47:04

Modified files:
	lang/node      : Makefile distinfo 
	lang/node/patches: patch-deps_npm_lib_build_js 
	                   patch-deps_npm_lib_npm_js patch-node_gyp 
	lang/node/pkg  : PLIST 
Added files:
	lang/node/patches: patch-tools_icu_icu-generic_gyp 

Log message:
Bump node to latest. Tested on amd64 and i386.

- fix Makefile layout
- back to using internal openssl :(

Rough OK from awolk@, OK fcambus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2017/01/23 11:00:23

Modified files:
	net/dnscrypt-proxy: Makefile 
	net/dnscrypt-proxy/pkg: README-main 

Log message:
fix wording in the pkg readme, bump REVISION-main

ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/23 14:56:32

Added files:
	math/cgal/patches: patch-include_CGAL_config_h 

Log message:
Use endian.h to detect endianness

The handrolled list of architectures didn't mention arm.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/23 15:03:46

Modified files:
	regress/usr.bin/ftp: redirect.sh 

Log message:
When run as root, fstat prints the pcb pointer instead of 0x0.
Force netcat and ftp to use IPv4.  Unset ftp proxy environment.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/23 15:26:19

Modified files:
	regress/usr.bin/ftp: redirect.sh 

Log message:
The ftp program is only verbose by default, if stdin is a tty.  As
the test greps for messages that are in the verbose output, add a
ftp -v option so that make regress can be run by cron(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 15:34:10

Modified files:
	sys/kern       : kern_descrip.c vfs_syscalls.c 
	sys/sys        : filedesc.h 

Log message:
Avoid curproc dance in dupfdopen(), by passing a struct proc *
ok guenther mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/23 15:34:38

Modified files:
	lib/libssl     : ssl.h ssl_lib.c ssl_locl.h ssl_rsa.c 

Log message:
move default_passwd_cb and default_passwd_cb_userdata back into
the ssl_ctx from internal - these are used directly by python
and openvpn and a few other things - we have the set accessors
but the get accessors were added in 1.1 and these roll their
own caveat OPENSSL_VERSION chickenpluckery


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/23 15:43:17

Modified files:
	sys/arch/armv7/conf: RAMDISK GENERIC 

Log message:
enable bcmdog on armv7 as well


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 15:47:59

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_decide.c rde_rib.c 

Log message:
Introduce a struct rib sitting between struct rib_desc and struct rib_tree.
This way the tree becomes a bit better decoupled.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 15:53:52

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_rib.c 

Log message:
Rename rib pointer in struct prefix to re since it points to a rib_entry.
While there also remove a comment that is since a few years at least.
OK gcc


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/23 16:10:35

Modified files:
	regress/usr.bin/ftp: redirect.sh 

Log message:
For testing http redirect unset http_proxy, not ftp_proxy.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 16:22:00

Modified files:
	sys/kern       : kern_descrip.c 

Log message:
Allocate all memory chunks, and potentially sleeping, before freeing
the old array of open files.

Fix a race for multi-threaded processes reported by cheeky.m@gmx.com
on bugs@ and analyzed with bluhm@.

ok deraadt@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 16:30:44

Modified files:
	usr.sbin/bgpd  : util.c 

Log message:
Make util.c fatal() free by allowing undefined behaviour in prefix_compare.
If you pass in crap then you will not get gold back.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/23 16:35:42

Modified files:
	usr.sbin/bgpctl: bgpctl.c 

Log message:
cleanup log* functions that break with bgpd reacharound
ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 16:37:21

Modified files:
	usr.sbin/bgpctl: Makefile 

Log message:
Kill the timer.c reacharound it is not needed.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 16:38:51

Modified files:
	usr.sbin/bgpctl: bgpctl.c 

Log message:
Mission accomplished, bgpctl is now fatal free.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 16:44:04

Modified files:
	sys/kern       : uipc_usrreq.c 
	sys/sys        : unpcb.h 

Log message:
File descriptor passing internalizes fd's into an mbuf-stored array of
struct file *, and then externalizes back to fd upon delivery.
Convert storage to array of struct fdpass, containing struct file *
(and soon something else).  memcpy originally intended for alignment
purposes can be removed because CMSG_ALIGN is _ALIGN.

There is some anxiety over changing this code, but it reads easier.
ok mpi guenther kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/23 16:54:01

Modified files:
	etc            : Makefile 

Log message:
Interpolate a 'make cleandir' if KEEPKERNELS is set to a non-empty string,
right before building kernels. This should unbreak 'make release' for
people having this setting.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 17:00:12

Modified files:
	lib/libtls     : tls_init.3 

Log message:
tls_config_add_keypair_mem is the function to add additional keypairs and
ocsp_staple functions set the OCSP response they don't add them (which implies
you can call them multiple times).
Discussed with jsing@ beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 17:17:14

Modified files:
	sys/net        : rtsock.c 

Log message:
Introduce rt_report() a function that generates a route message from an
rt_entry. Use this function in the success case of all route commands.
Reduce the goto madness in route_output and make the code hopefully a
bit easier to read and work with.
OK mpi@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 17:20:28

Modified files:
	usr.sbin/acpidump: Makefile 

Log message:
remove unused junk definitions


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 17:28:31

Modified files:
	lib/libtls     : tls_init.3 

Log message:
Shuffle the deck chairs to bring them back in order.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/23 17:32:05

Modified files:
	regress/sys/net/pf_fragment: udp6_cksum.py udp_cksum.py 
	regress/sys/netinet6/frag6: frag6_udpatomic.py 
	                            frag6_udpheader.py 
	                            frag6_udppayload.py 

Log message:
Fix typo in variable name.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/23 17:40:13

Modified files:
	lang/php       : Makefile.inc 

Log message:
BROKEN on alpha: pcre_jit_compile.c:65:2: error: #error Unsupported architecture


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/23 17:43:43

Modified files:
	devel/ti-msp430gcc: Makefile 

Log message:
BROKEN on alpha

relocation truncated to fit: GPRELHIGH against symbol `default_target_hard_regs' defined in .bss section in libbackend.a(reginfo.o)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 17:58:55

Modified files:
	sys/arch/amd64/amd64: db_trace.c 
	sys/arch/arm/arm: db_trace.c 
	sys/arch/i386/i386: db_trace.c 
	sys/arch/powerpc/ddb: db_trace.c 
	sys/arch/sparc64/sparc64: db_trace.c 
	sys/kern       : kern_fork.c kern_proc.c kern_sig.c kern_time.c 
	                 sys_process.c sys_generic.c 
	sys/sys        : proc.h 
	share/man/man9 : Makefile 
Added files:
	share/man/man9 : tfind.9 
Removed files:
	share/man/man9 : pfind.9 

Log message:
Rename pfind(9) into tfind(9) to reflect that it deals with threads.

While here document prfind(9.

with and ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 18:01:33

Modified files:
	share/man/man4 : ddb.4 

Log message:
The /p modifier now takes a TID, while here add a missing argument
for 'show all procs'.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/23 18:11:11

Modified files:
	etc/rc.d       : rc.subr 

Log message:
Whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 18:16:26

Modified files:
	lib/libtls     : tls_init.3 

Log message:
Add missing documentation for tls_config_set_verify_depth
Done together with jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 18:34:09

Modified files:
	lib/libssl     : ssl_sess.c 

Log message:
There is no point in zeroing fields that exist within a struct that is
about to be explicit_bzero'd and freed.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 18:39:13

Modified files:
	lib/libssl     : s3_clnt.c ssl_sess.c 

Log message:
ssl_sess_cert_free() checks for NULL, so do not bother doing it at the
call sites.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/23 18:43:32

Modified files:
	lib/csu/aarch64: md_init.h 

Log message:
Fix passing &_DYNAMIC to _dl_boot_bind; makes -static -pie work.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 18:44:00

Modified files:
	lib/libssl     : s3_srvr.c ssl_ciph.c ssl_lib.c ssl_sess.c 

Log message:
sk_SSL_CIPHER_free() checks for NULL so do not bother doing the same from
the callers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 18:46:12

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
Remove a "free up if allocated" comment that exists before code that frees
things if they are allocated.

ok captainobvious@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 18:47:22

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
ssl_cert_free() checks for NULL itself.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/23 18:48:05

Modified files:
	lib/libtls     : Symbols.list tls.h tls_config.c tls_init.3 
	                 tls_internal.h tls_server.c 

Log message:
Introduce ticket support. To enable them it is enough to set a positive
lifetime with tls_config_set_session_lifetime(). This enables tickets
and uses an internal automatic rekeying mode for the ticket keys.

If multiple processes are involved the following functions can be used to make
tickets work accross all instances:
- tls_config_set_session_id() sets the session identifier
- tls_config_add_ticket_key() adds an encryption and authentication key

For now only the last 4 keys added will be used (unless they are too old).
If tls_config_add_ticket_key() is used the caller must ensure to add new keys
regularly. It is best to do this 4 times per session lifetime (which is also
the ticket key lifetime).

Since tickets break PFS it is best to minimize the session lifetime according
to needs.

With a lot of help, input and OK beck@, jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/23 19:28:17

Modified files:
	sys/dev/ic     : qla.c qlw.c 
	sys/dev/pci    : qle.c 
	sys/dev/pci/drm: drm_atomic.h 
	sys/sys        : proc.h 

Log message:
Use header <sys/atomic.h> rather than <machine/atomic.h> in MI code.

OK mpi@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2017/01/23 19:36:03

Modified files:
	www/p5-CGI-Emulate-PSGI: Makefile distinfo 

Log message:
Update www/p5-CGI-Emulate-PSGI to 0.22

OK bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/23 19:37:10

Modified files:
	libexec/ld.so  : resolve.c 

Log message:
Unbreak $ORIGIN support when only one of DT_RUNPATH and DT_RPATH is used


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/23 19:52:36

Modified files:
	sys/net        : bfd.c 

Log message:
move setting the IP TOS from the listening socket to the sending socket


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 19:56:17

Modified files:
	lib/libssl     : ssl.h 

Log message:
unifdef OPENSSL_NO_BIO - we do not support this in any form.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/23 19:56:50

Modified files:
	share/mk       : bsd.obj.mk 

Log message:
Zap a "true ;" that is there for no good reason.

discussed with ajacoutot


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 20:00:54

Modified files:
	lib/libssl     : s3_lib.c 

Log message:
There is no point returning then breaking...


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/23 20:13:13

Modified files:
	etc            : changelist 

Log message:
Add /etc/installurl to changelist.
ok deraadt@ rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/23 20:22:13

Modified files:
	share/mk       : bsd.obj.mk 

Log message:
Modernize and unify test idioms for the sake of readability and
consistency. Done jointly with rpe.

ok deraadt, phessler, rpe;
also looks good to guenther despite a slight change in semantics


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 20:38:48

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 20:41:43

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Fix typo in brainpool curve name within a comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/23 20:53:32

Modified files:
	sys/net        : bfd.c 

Log message:
only send the rt msg on timeout failure if bfd is not down


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/23 20:57:35

Modified files:
	sys/arch/octeon/dev: if_cnmac.c 
	sys/dev/ic     : re.c 
	sys/dev/pci    : if_bge.c if_bnx.c if_em.c if_myx.c if_ix.c 
	sys/dev/pv     : if_hvn.c if_xnf.c 
	sys/net        : hfsc.c if.c if.h if_mpw.c if_var.h if_vlan.c 
	                 ifq.c ifq.h 

Log message:
add support for multiple transmit ifqueues per network interface.

an ifq to transmit a packet is picked by the current traffic
conditioner (ie, priq or hfsc) by providing an index into an array
of ifqs. by default interfaces get a single ifq but can ask for
more using if_attach_queues().

the vast majority of our drivers still think there's a 1:1 mapping
between interfaces and transmit queues, so their if_start routines
take an ifnet pointer instead of a pointer to the ifqueue struct.
instead of changing all the drivers in the tree, drivers can opt
into using an if_qstart routine and setting the IFXF_MPSAFE flag.
the stack provides a compatability wrapper from the new if_qstart
handler to the previous if_start handlers if IFXF_MPSAFE isnt set.

enabling hfsc on an interface configures it to transmit everything
through the first ifq. any other ifqs are left configured as priq,
but unused, when hfsc is enabled.

getting this in now so everyone can kick the tyres.

ok mpi@ visa@ (who provided some tweaks for cnmac).


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/23 21:09:59

Modified files:
	sys/sys        : filedesc.h 
	sys/kern       : uipc_usrreq.c kern_descrip.c 

Log message:
Track a per-fd flag UF_PLEDGED.  This indicates the initial open was done by a
pledged process. dup(2) and recvmsg(2) retain UF_PLEDGED from the original fd.
In pledge "exec" circumstances, exceve clears UF_PLEDGED on all the process's
fds.

In a pledge'd process, ioctl(2) can use this additional information to grant
access to ioctl's which are more sensitive or dive deeply into the kernel.
Developers will be encouraged to open such sensitive resources before calling
pledge(2), rather than afterwards.  That matches the heading of privsep
development practices.

Future changes will introduce those ioctl(2) changes.

Lots of discussions with semarie guenther and benno.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/23 21:22:42

Modified files:
	usr.sbin/bgpd  : bgpd.c bgpd.h carp.c config.c control.c 
	                 kroute.c log.c log.h logmsg.c mrt.c parse.y 
	                 pfkey.c pftable.c printconf.c rde.c rde_attr.c 
	                 rde_decide.c rde_filter.c rde_prefix.c 
	                 rde_rib.c rde_update.c session.c timer.c util.c 

Log message:
sync log.c from relayd et al to bgpd.

there is still a little difference regarding handling of the verbosity
value that will be handled later.

ok claudio@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/23 21:24:25

Modified files:
	usr.sbin/ospfd : control.c log.c log.h ospfd.c ospfd.h ospfe.c 
	                 rde.c 

Log message:
sync log.c from relayd et al to ospfd.

there is still a little difference regarding handling of the verbosity
value that will be handled later.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/23 21:45:35

Modified files:
	sys/net        : route.c 

Log message:
when we lose link, do not delete entries that have the RTF_BFD flag set

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 21:50:48

Modified files:
	sys/kern       : kern_proc.c 
	share/man/man4 : ddb.4 

Log message:
Display the thread ID (TID) rather than the process group ID (PGRP)
in ddb(4)'s default 'ps' view.

This allow to use 'tr /p' easily now that it requires a TID.

With inputs from guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/23 22:29:22

Modified files:
	distrib/armv7/miniroot: boot.cmd 
	distrib/armv7/ramdisk: install.md 

Log message:
There are two u-boot targets which should work with the sabre lite
boards.  mx6qsabrelite (which sets fdt_addr) and nitrogen6q
(which sets fdtaddr).  The difference seems to be the mx6qsabrelite
target uses a small loader in SPI connected flash which will load
the rest of u-boot from an SD card.  The nitrogen6q target normally
loads all of u-boot from an image in flash and then searches for a
6x_bootscript file with u-boot commands on MMC and SATA.

While neither of them supports "Generic Distro Configuration" which
would automatically search for an EFI image, if they did fdt_addr
is intended to be used for a DTB in ROM, while fdt_addr_r is intended
to be used for a DTB in RAM.

Change the 6x_bootscript u-boot commands to load the DTB to
fdtaddr instead of fdt_addr as matthieu@ reported fdt_addr was not
present in the u-boot environment on his system.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 22:32:00

Modified files:
	sys/kern       : kern_proc.c 
	share/man/man4 : ddb.4 

Log message:
Display process group in "ps /w" since they got removed from "ps /n".

While here fix the formating of /w /o and /a.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/23 22:44:10

Modified files:
	sys/kern       : uipc_syscalls.c 

Log message:
In accept(2) and accept4(2) allocate a new file descriptor before
checking if the socket head's queue is empty and possibly sleeping.

This way we avoid lock ordering problems as the NET_LOCK() and
fdplock() won't be held at the same time.

Note that socketpair(2) and close(2) are the two remaining syscalls
holding these locks at the same time.  They both respect the same
order: fdplock() then NET_LOCK().

Initial deadlock reported by kettenis@ and ajacoutot@.

ok bluhm@, guenther@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2017/01/23 23:08:36

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
vmctl start -k is optional; also emphasise it specifies a path on the host
ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/23 23:45:39

Modified files:
	regress/lib/libssl/ssl: ssltest.c 

Log message:
Use prime256v1 for tests unless otherwise specified.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/24 00:08:14

Modified files:
	devel/harfbuzz : Makefile distinfo 
	devel/harfbuzz/pkg: PLIST-main 

Log message:
Update to harfbuzz-1.4.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/24 00:48:37

Modified files:
	libexec/ld.so  : dl_printf.c library.c library_mquery.c 
	                 library_subr.c loader.c malloc.c reallocarray.c 
	                 resolve.c sod.c trace.c util.c util.h 
	libexec/ld.so/aarch64: archdep.h ldasm.S rtld_machine.c 
	                       syscall.h 
	libexec/ld.so/alpha: archdep.h ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/amd64: ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/arm: archdep.h ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/hppa: archdep.h ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/i386: archdep.h ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/m88k: archdep.h ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/mips64: ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/powerpc: archdep.h ldasm.S rtld_machine.c 
	                       syscall.h 
	libexec/ld.so/sh: archdep.h ldasm.S rtld_machine.c syscall.h 
	libexec/ld.so/sparc64: archdep.h ldasm.S rtld_machine.c 
	                       syscall.h 

Log message:
On fatal errors, kill ourselves with thrkill(0,9,NULL) instead of
simply exiting, via helper functions _dl_die(), _dl_diedie(), and
_dl_oom().

prompted by a complaint from jsing@
ok jsing@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/24 00:57:15

Modified files:
	share/man/man5 : mk.conf.5 

Log message:
Document KEEPKERNELS: If set to "yes" in mk.conf or in the environment,
kernels are not cleaned out during "make build", but only right before
they are built during "make release".

ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/24 00:57:39

Modified files:
	lib/libtls     : tls_init.3 

Log message:
accross -> across;


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 00:59:54

Modified files:
	usr.sbin/acme-client: certproc.c fileproc.c http.c http.h util.c 

Log message:
string terminator is called a NUL


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/24 00:59:58

Modified files:
	share/man/man9 : fork1.9 

Log message:
pfind(9) has been renamed to tfind(9);


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/24 01:09:05

Modified files:
	sys/sys        : systm.h 
	sys/lib/libkern: bcmp.c bcopy.c bzero.c memcmp.c memcpy.c 
	                 memmove.c memset.c 

Log message:
In preparation of compiling our kernels with -ffreestanding, explicitly map
a few performance-critical functions to compiler builtins.  Since the
builtins supported by gcc3, gcc4 and clang are not the same, there are
(unfortunately) some compiler checks to make sure we only do the mapping
for builtins that are actually supported by the compiler.

ok jca@, tom@, guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 01:33:38

Log message:
    Import LLVM 4.0.0 rc1 including clang and lld to help the current
    development effort on OpenBSD/arm64.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LLVM_4_0_0_RC1
    
    U src/gnu/llvm/LICENSE.TXT
    U src/gnu/llvm/CREDITS.TXT
    U src/gnu/llvm/README.txt
    U src/gnu/llvm/.clang-tidy
    N src/gnu/llvm/RELEASE_TESTERS.TXT
    U src/gnu/llvm/.gitignore
    U src/gnu/llvm/configure
    U src/gnu/llvm/.arcconfig
    U src/gnu/llvm/.clang-format
    U src/gnu/llvm/llvm.spec.in
    U src/gnu/llvm/CMakeLists.txt
    U src/gnu/llvm/CODE_OWNERS.TXT
    U src/gnu/llvm/LLVMBuild.txt
    U src/gnu/llvm/tools/CMakeLists.txt
    U src/gnu/llvm/tools/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-shlib/libllvm.cpp
    U src/gnu/llvm/tools/llvm-shlib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
    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-size/llvm-size.cpp
    U src/gnu/llvm/tools/llvm-size/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-size/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
    N src/gnu/llvm/tools/llvm-cxxfilt/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-cat/llvm-cat.cpp
    N src/gnu/llvm/tools/llvm-cat/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-cat/LLVMBuild.txt
    U src/gnu/llvm/tools/obj2yaml/elf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/coff2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/macho2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/Error.cpp
    U src/gnu/llvm/tools/obj2yaml/CMakeLists.txt
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.h
    N src/gnu/llvm/tools/obj2yaml/dwarf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/Error.h
    U src/gnu/llvm/tools/llvm-rtdyld/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-nm/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-nm/llvm-nm.cpp
    U src/gnu/llvm/tools/llvm-nm/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-strings/llvm-strings.cpp
    N src/gnu/llvm/tools/llvm-strings/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-strings/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-opt-report/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-opt-report/OptReport.cpp
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2010.targets
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
    U src/gnu/llvm/tools/msbuild/toolset-vs2014.targets
    U src/gnu/llvm/tools/msbuild/install.bat
    U src/gnu/llvm/tools/msbuild/toolset-vs2014_xp.targets
    U src/gnu/llvm/tools/msbuild/toolset-vs2013_xp.targets
    U src/gnu/llvm/tools/msbuild/uninstall.bat
    U src/gnu/llvm/tools/msbuild/toolset-vs2013.targets
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012.targets
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets
    U src/gnu/llvm/tools/msbuild/CMakeLists.txt
    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/llvm-config/BuildVariables.inc.in
    U src/gnu/llvm/tools/llvm-config/llvm-config.cpp
    U src/gnu/llvm/tools/llvm-config/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-xray/xray-account.h
    N src/gnu/llvm/tools/llvm-xray/func-id-helper.h
    N src/gnu/llvm/tools/llvm-xray/xray-extract.cc
    N src/gnu/llvm/tools/llvm-xray/xray-sleds.h
    N src/gnu/llvm/tools/llvm-xray/func-id-helper.cc
    N src/gnu/llvm/tools/llvm-xray/xray-registry.h
    N src/gnu/llvm/tools/llvm-xray/llvm-xray.cc
    N src/gnu/llvm/tools/llvm-xray/xray-extract.h
    N src/gnu/llvm/tools/llvm-xray/xray-registry.cc
    N src/gnu/llvm/tools/llvm-xray/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-xray/xray-account.cc
    N src/gnu/llvm/tools/llvm-xray/xray-record-yaml.h
    N src/gnu/llvm/tools/llvm-xray/xray-converter.h
    N src/gnu/llvm/tools/llvm-xray/xray-converter.cc
    U src/gnu/llvm/tools/llvm-c-test/calc.c
    U src/gnu/llvm/tools/llvm-c-test/module.c
    U src/gnu/llvm/tools/llvm-c-test/helpers.c
    U src/gnu/llvm/tools/llvm-c-test/echo.cpp
    U src/gnu/llvm/tools/llvm-c-test/object.c
    U src/gnu/llvm/tools/llvm-c-test/disassemble.c
    U src/gnu/llvm/tools/llvm-c-test/include-all.c
    U src/gnu/llvm/tools/llvm-c-test/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-c-test/metadata.c
    U src/gnu/llvm/tools/llvm-c-test/diagnostic.c
    U src/gnu/llvm/tools/llvm-c-test/main.c
    U src/gnu/llvm/tools/llvm-c-test/llvm-c-test.h
    U src/gnu/llvm/tools/llvm-c-test/targets.c
    N src/gnu/llvm/tools/llvm-c-test/attributes.c
    U src/gnu/llvm/tools/sancov/sancov.cc
    N src/gnu/llvm/tools/sancov/coverage-report-server.py
    U src/gnu/llvm/tools/sancov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-symbolizer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2elf.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2macho.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.cpp
    N src/gnu/llvm/tools/yaml2obj/yaml2dwarf.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2coff.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.h
    U src/gnu/llvm/tools/yaml2obj/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/MachODumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/COFFImportDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ELFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.h
    U src/gnu/llvm/tools/llvm-readobj/StackMapPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
    U src/gnu/llvm/tools/llvm-readobj/COFFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.h
    U src/gnu/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.h
    U src/gnu/llvm/tools/llvm-readobj/Error.cpp
    U src/gnu/llvm/tools/llvm-readobj/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/CodeView.h
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.cpp
    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/ARMAttributeParser.h
    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
    N src/gnu/llvm/tools/llvm-modextract/llvm-modextract.cpp
    N src/gnu/llvm/tools/llvm-modextract/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-modextract/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/llvm-jitlistener/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dis/llvm-dis.cpp
    U src/gnu/llvm/tools/llvm-dis/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dis/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-lto2/llvm-lto2.cpp
    N src/gnu/llvm/tools/llvm-lto2/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-lto2/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.h
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.h
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.h
    U src/gnu/llvm/tools/llvm-cov/llvm-cov.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageViewOptions.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.h
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
    N src/gnu/llvm/tools/llvm-cov/CoverageExporterJson.cpp
    U src/gnu/llvm/tools/llvm-cov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
    U src/gnu/llvm/tools/llvm-cov/gcov.cpp
    U src/gnu/llvm/tools/llvm-cov/CodeCoverage.cpp
    U src/gnu/llvm/tools/llvm-cov/TestingSupport.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/LLVMBuild.txt
    U src/gnu/llvm/tools/sanstats/sanstats.cpp
    U src/gnu/llvm/tools/sanstats/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-stress/llvm-stress.cpp
    U src/gnu/llvm/tools/llvm-stress/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-stress/LLVMBuild.txt
    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-as-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-as-fuzzer/llvm-as-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-mc/Disassembler.h
    U src/gnu/llvm/tools/llvm-mc/Disassembler.cpp
    U src/gnu/llvm/tools/llvm-mc/CMakeLists.txt
    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-as/llvm-as.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-mcmarkup/llvm-mcmarkup.cpp
    U src/gnu/llvm/tools/llvm-mcmarkup/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mcmarkup/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwp/DWPError.h
    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/llvm-dwp.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/YamlTypeDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyVariableDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/OutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbdump/YAMLOutputStyle.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyEnumDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LLVMOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbdump/YAMLOutputStyle.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/YamlTypeDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyTypeDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyTypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-pdbdump/YamlSymbolDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyEnumDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.h
    U src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyVariableDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PdbYaml.cpp
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PdbYaml.h
    N src/gnu/llvm/tools/llvm-pdbdump/YamlSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.h
    N src/gnu/llvm/tools/llvm-pdbdump/YamlSerializationContext.h
    U src/gnu/llvm/tools/llvm-pdbdump/fuzzer/llvm-pdbdump-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-objdump/WasmDump.cpp
    U src/gnu/llvm/tools/llvm-objdump/llvm-objdump.cpp
    U src/gnu/llvm/tools/llvm-objdump/MachODump.cpp
    U src/gnu/llvm/tools/llvm-objdump/COFFDump.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.h
    U src/gnu/llvm/tools/llvm-objdump/LLVMBuild.txt
    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-cxxdump/Error.cpp
    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/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/dsymutil/DebugMap.cpp
    U src/gnu/llvm/tools/dsymutil/dsymutil.cpp
    U src/gnu/llvm/tools/dsymutil/MachOUtils.cpp
    U src/gnu/llvm/tools/dsymutil/dsymutil.h
    U src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.h
    U src/gnu/llvm/tools/dsymutil/MachODebugMapParser.cpp
    U src/gnu/llvm/tools/dsymutil/CMakeLists.txt
    U src/gnu/llvm/tools/dsymutil/DebugMap.h
    U src/gnu/llvm/tools/dsymutil/DwarfLinker.cpp
    U src/gnu/llvm/tools/dsymutil/MachOUtils.h
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.cpp
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.h
    U src/gnu/llvm/tools/dsymutil/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-go/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-go/llvm-go.go
    U src/gnu/llvm/tools/lto/LTODisassembler.cpp
    U src/gnu/llvm/tools/lto/lto.exports
    U src/gnu/llvm/tools/lto/CMakeLists.txt
    U src/gnu/llvm/tools/lto/lto.cpp
    U src/gnu/llvm/tools/bugpoint/ExtractFunction.cpp
    U src/gnu/llvm/tools/bugpoint/FindBugs.cpp
    U src/gnu/llvm/tools/bugpoint/ListReducer.h
    U src/gnu/llvm/tools/bugpoint/Miscompilation.cpp
    U src/gnu/llvm/tools/bugpoint/BugDriver.cpp
    U src/gnu/llvm/tools/bugpoint/BugDriver.h
    U src/gnu/llvm/tools/bugpoint/CrashDebugger.cpp
    U src/gnu/llvm/tools/bugpoint/ExecutionDriver.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.h
    U src/gnu/llvm/tools/bugpoint/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint/bugpoint.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.cpp
    U src/gnu/llvm/tools/bugpoint/OptimizerDriver.cpp
    U src/gnu/llvm/tools/bugpoint/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-diff/llvm-diff.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffLog.h
    U src/gnu/llvm/tools/llvm-diff/DiffLog.cpp
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.cpp
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
    U src/gnu/llvm/tools/llvm-diff/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.h
    U src/gnu/llvm/tools/llvm-diff/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto/llvm-lto.cpp
    U src/gnu/llvm/tools/llvm-lto/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-lto/LLVMBuild.txt
    U src/gnu/llvm/tools/bugpoint-passes/TestPasses.cpp
    U src/gnu/llvm/tools/bugpoint-passes/bugpoint.exports
    U src/gnu/llvm/tools/bugpoint-passes/CMakeLists.txt
    U src/gnu/llvm/tools/lli/lli.cpp
    U src/gnu/llvm/tools/lli/OrcLazyJIT.h
    U src/gnu/llvm/tools/lli/RemoteJITUtils.h
    U src/gnu/llvm/tools/lli/CMakeLists.txt
    U src/gnu/llvm/tools/lli/OrcLazyJIT.cpp
    U src/gnu/llvm/tools/lli/LLVMBuild.txt
    U src/gnu/llvm/tools/lli/ChildTarget/CMakeLists.txt
    U src/gnu/llvm/tools/lli/ChildTarget/ChildTarget.cpp
    U src/gnu/llvm/tools/lli/ChildTarget/LLVMBuild.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/opt/NewPMDriver.cpp
    U src/gnu/llvm/tools/opt/BreakpointPrinter.h
    U src/gnu/llvm/tools/opt/NewPMDriver.h
    U src/gnu/llvm/tools/opt/AnalysisWrappers.cpp
    U src/gnu/llvm/tools/opt/PassPrinters.cpp
    U src/gnu/llvm/tools/opt/opt.cpp
    U src/gnu/llvm/tools/opt/PrintSCC.cpp
    U src/gnu/llvm/tools/opt/PassPrinters.h
    U src/gnu/llvm/tools/opt/CMakeLists.txt
    U src/gnu/llvm/tools/opt/BreakpointPrinter.cpp
    U src/gnu/llvm/tools/opt/GraphPrinters.cpp
    U src/gnu/llvm/tools/opt/LLVMBuild.txt
    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-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/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/xcode-toolchain/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-split/CMakeLists.txt
    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-mc-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mc-fuzzer/llvm-mc-fuzzer.cpp
    U src/gnu/llvm/tools/clang/LICENSE.TXT
    U src/gnu/llvm/tools/clang/README.txt
    U src/gnu/llvm/tools/clang/.clang-tidy
    U src/gnu/llvm/tools/clang/ModuleInfo.txt
    U src/gnu/llvm/tools/clang/NOTES.txt
    U src/gnu/llvm/tools/clang/INSTALL.txt
    U src/gnu/llvm/tools/clang/.gitignore
    U src/gnu/llvm/tools/clang/.arcconfig
    U src/gnu/llvm/tools/clang/.clang-format
    U src/gnu/llvm/tools/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/clang/tools/CMakeLists.txt
    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/diag-build/diag-build.sh
    N src/gnu/llvm/tools/clang/tools/clang-offload-bundler/ClangOffloadBundler.cpp
    N src/gnu/llvm/tools/clang/tools/clang-offload-bundler/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/driver/cc1_main.cpp
    U src/gnu/llvm/tools/clang/tools/driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/driver/driver.cpp
    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-sublime.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-diff.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format.el
    U src/gnu/llvm/tools/clang/tools/clang-format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/git-clang-format
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-bbedit.applescript
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp
    N src/gnu/llvm/tools/clang/tools/clang-import-test/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-import-test/clang-import-test.cpp
    U src/gnu/llvm/tools/clang/tools/clang-check/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-check/ClangCheck.cpp
    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/scan-build-py/README.md
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/ear.c
    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/__init__.py
    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/src/emit-one.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/broken-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/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/broken-two.c
    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/functional/src/compilation_database/build_regular.json.in
    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/build/Makefile
    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_cdb.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_create_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/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/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/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_runner.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_report.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/analyze.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/clang.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/runner.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/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/libscanbuild/resources/sorttable.js
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/scan-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-c++
    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++.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc.bat
    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-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-cc.bat
    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-c++.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-c++
    U src/gnu/llvm/tools/clang/tools/scan-build/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build/man/scan-build.1
    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/libexec/c++-analyzer.bat
    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/ccc-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/bin/set-xcode-analyzer
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ClangFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.h
    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/CIndexer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexInclusionStack.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexUSRs.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.cpp
    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/CLog.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndex.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCodeCompletion.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/CXString.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXTranslationUnit.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/Indexing.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexHigh.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.h
    U src/gnu/llvm/tools/clang/tools/libclang/CursorVisitor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.h
    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/CXString.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXStoredDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/scan-view/CMakeLists.txt
    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/FileRadar.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/GetRadarVersion.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/startfile.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/Reporter.py
    U src/gnu/llvm/tools/clang/tools/scan-view/bin/scan-view
    U src/gnu/llvm/tools/clang/tools/diagtool/ShowEnabledWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/diagtool_main.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.h
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/ListWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.h
    U src/gnu/llvm/tools/clang/tools/diagtool/TreeView.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/README.txt
    N 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/ClangFormat.sln
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/source.extension.vsixmanifest.in
    N src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/packages.config
    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/Guids.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/ClangFormat.csproj
    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/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/VSPackage.resx
    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/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/INPUTS/cfg-long-chain2.c
    U src/gnu/llvm/tools/clang/INPUTS/c99-intconst-1.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/cfg-nested-var-scopes.cpp
    U src/gnu/llvm/tools/clang/INPUTS/cfg-big-switch.c
    U src/gnu/llvm/tools/clang/INPUTS/all-std-headers.cpp
    U src/gnu/llvm/tools/clang/INPUTS/carbon_h.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/macro_pounder_fn.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain3.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-nested-switches.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain1.c
    U src/gnu/llvm/tools/clang/www/features.html
    U src/gnu/llvm/tools/clang/www/hacking.html
    U src/gnu/llvm/tools/clang/www/menu.html.incl
    U src/gnu/llvm/tools/clang/www/cxx_dr_status.html
    U src/gnu/llvm/tools/clang/www/compatibility.html
    U src/gnu/llvm/tools/clang/www/menu.css
    U src/gnu/llvm/tools/clang/www/get_started.html
    U src/gnu/llvm/tools/clang/www/comparison.html
    U src/gnu/llvm/tools/clang/www/cxx_compatibility.html
    U src/gnu/llvm/tools/clang/www/favicon.ico
    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/clang_video-07-25-2007.html
    U src/gnu/llvm/tools/clang/www/feature-memory1.png
    U src/gnu/llvm/tools/clang/www/builtins.py
    U src/gnu/llvm/tools/clang/www/feature-compile1.png
    U src/gnu/llvm/tools/clang/www/diagnostics.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.4-clang0x.patch
    U src/gnu/llvm/tools/clang/www/UniversalDriver.html
    U src/gnu/llvm/tools/clang/www/clang_video-05-25-2007.html
    U src/gnu/llvm/tools/clang/www/related.html
    U src/gnu/llvm/tools/clang/www/carbon-compile.png
    U src/gnu/llvm/tools/clang/www/robots.txt
    U src/gnu/llvm/tools/clang/www/libstdc++4.7-clang11.patch
    U src/gnu/llvm/tools/clang/www/make_cxx_dr_status
    U src/gnu/llvm/tools/clang/www/index.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.6-clang11.patch
    U src/gnu/llvm/tools/clang/www/OpenProjects.html
    U src/gnu/llvm/tools/clang/www/content.css
    U src/gnu/llvm/tools/clang/www/get_involved.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/latest_checker.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/faq.html
    U src/gnu/llvm/tools/clang/www/analyzer/checker_dev_manual.html
    U src/gnu/llvm/tools/clang/www/analyzer/xcode.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/implicit_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/annotations.html
    U src/gnu/llvm/tools/clang/www/analyzer/index.html
    U src/gnu/llvm/tools/clang/www/analyzer/open_projects.html
    U src/gnu/llvm/tools/clang/www/analyzer/installation.html
    U src/gnu/llvm/tools/clang/www/analyzer/filing_bugs.html
    U src/gnu/llvm/tools/clang/www/analyzer/release_notes.html
    U src/gnu/llvm/tools/clang/www/analyzer/scan-build.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/images/example_use_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_null_pointer.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_ns_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_xcode.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_custom_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained_gc.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_html.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_attribute_nonnull.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/scan_build_cmd.png
    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/arrows_dark.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_dark.gif
    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/demo/cathead.png
    U src/gnu/llvm/tools/clang/www/demo/index.cgi
    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/what is this directory.txt
    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/enumerations.py
    U src/gnu/llvm/tools/clang/bindings/python/clang/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/util.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_cdb.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_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/__init__.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_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_tokens.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_translation_unit.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_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/INPUTS/hello.cpp
    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/include.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/header2.h
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/parse_arguments.c
    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/xml/comment-xml-schema.rng
    U src/gnu/llvm/tools/clang/utils/find-unused-diagnostics.sh
    U src/gnu/llvm/tools/clang/utils/modfuzz.py
    U src/gnu/llvm/tools/clang/utils/CmpDriver
    U src/gnu/llvm/tools/clang/utils/CaptureCmd
    U src/gnu/llvm/tools/clang/utils/FuzzTest
    U src/gnu/llvm/tools/clang/utils/token-delta.py
    U src/gnu/llvm/tools/clang/utils/ClangDataFormat.py
    U src/gnu/llvm/tools/clang/utils/builtin-defines.c
    U src/gnu/llvm/tools/clang/utils/FindSpecRefs
    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/ubiviz
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestAdd.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestBuild.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/VtableTest/check-ztt
    U src/gnu/llvm/tools/clang/utils/VtableTest/gen.cc
    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/ABITest/build-and-summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize-all.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/build.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/TypeGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/Makefile.test.common
    U src/gnu/llvm/tools/clang/utils/ABITest/Enumeration.py
    U src/gnu/llvm/tools/clang/utils/ABITest/ABITestGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-32/Makefile
    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/check_cfc/setup.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/obj_diff.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/check_cfc/check_cfc.cfg
    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/deep-stack.py
    U src/gnu/llvm/tools/clang/utils/TestUtils/pch-test.pl
    U src/gnu/llvm/tools/clang/utils/CIndex/completion_logger_server.py
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
    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/CMakeLists.txt
    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/ClangAttrEmitter.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/utils/perf-training/README.txt
    U src/gnu/llvm/tools/clang/utils/perf-training/lit.cfg
    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.site.cfg.in
    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/examples/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/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/README.txt
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/main.cpp
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/CMakeLists.txt
    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/analyzer-plugin/SampleAnalyzerPlugin.exports
    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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage-base.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/README.txt
    N src/gnu/llvm/tools/clang/cmake/caches/DistributionExample.cmake
    N src/gnu/llvm/tools/clang/cmake/caches/DistributionExample-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2-instrumented.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage1.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2.cmake
    U src/gnu/llvm/tools/clang/include/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFG.h
    N 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/CFGStmtMap.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CodeInjector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CallGraph.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisContext.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/Support/BumpVector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.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/ThreadSafetyOps.def
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.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
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/OSLog.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexSymbol.h
    U src/gnu/llvm/tools/clang/include/clang/Index/USRGeneration.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CommentToXML.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Specifiers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_neon.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/VersionTuple.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Cuda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceLocation.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Linkage.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
    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/Attributes.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attr.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.inc.in
    U src/gnu/llvm/tools/clang/include/clang/Basic/PlistSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/StmtNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Lambda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/CharInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Visibility.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DeclNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandards.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.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/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.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/ASTUnit.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandard.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroArgs.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/PreprocessorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PTHManager.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Lexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PTHLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Token.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Pragma.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Overload.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Sema.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaLambda.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DeclSpec.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Designator.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Weak.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Scope.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Sema/LoopHint.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AttributeList.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Template.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Initialization.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Ownership.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/ParseAST.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
    N 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/RefactoringCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Tooling.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring.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/Core/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/QualTypeNames.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
    N src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.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/StaticAnalyzer/Frontend/ModelConsumer.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/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/CheckerManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.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/SValBuilder.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/LoopWidening.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/ProgramStateTrait.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/SymbolManager.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/DynamicTypeInfo.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/Regions.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.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/SValVisitor.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/TaintTag.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/SVals.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/CoreEngine.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/APSIntType.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/StoreRef.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/SubEngine.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/SummaryManager.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/SymExpr.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/TaintManager.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/BugReporterVisitor.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/BugReporter.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
    U src/gnu/llvm/tools/clang/include/clang/FrontendTool/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Format/Format.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclGroup.h
    U src/gnu/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
    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/ASTTypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LambdaCapture.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OpenMPClause.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Expr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTVector.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecordLayout.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclFriend.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Type.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AST.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td
    U src/gnu/llvm/tools/clang/include/clang/AST/Mangle.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTFwd.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BaseSubobject.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/NSAPI.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclarationName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Availability.h
    U src/gnu/llvm/tools/clang/include/clang/AST/GlobalDecl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LocInfoType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentSema.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Attr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AttrIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLoc.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RawCommentList.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTLambda.h
    U src/gnu/llvm/tools/clang/include/clang/AST/APValue.h
    U src/gnu/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/AST/VTableBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentLexer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CXXInheritance.h
    U src/gnu/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeOrdering.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclLookups.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTImporter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ParentMap.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Decl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Stmt.h
    U src/gnu/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CharUnits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CanonicalType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommands.td
    U src/gnu/llvm/tools/clang/include/clang/AST/Redeclarable.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.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/Rewrite/Core/DeltaTree.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
    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/Serialization/SerializationDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTReader.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/Registry.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/FileOffset.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/Commit.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.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/SwiftCallingConv.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
    U src/gnu/llvm/tools/clang/include/clang/Config/config.h.cmake
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Options.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Util.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Phases.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.def
    U src/gnu/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/SanitizerArgs.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/Driver.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Compilation.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/ToolChain.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Job.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Driver/CC1Options.td
    N src/gnu/llvm/tools/clang/include/clang/Driver/Distro.h
    C src/gnu/llvm/tools/clang/include/clang/Driver/Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Tool.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Action.h
    U src/gnu/llvm/tools/clang/include/clang-c/Index.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXErrorCode.h
    U src/gnu/llvm/tools/clang/include/clang-c/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang-c/BuildSystem.h
    U src/gnu/llvm/tools/clang/include/clang-c/Documentation.h
    U src/gnu/llvm/tools/clang/include/clang-c/Platform.h
    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/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/Analysis/CFGTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CMakeLists.txt
    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/VirtualFileSystemTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/DiagnosticTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CodeGenActionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Frontend/FrontendActionTest.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/HeaderMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Lex/PPCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Sema/ExternalSemaSourceTest.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/Tooling/RefactoringTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestTypeLocVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CommentHandlerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTestContext.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestCallVisitor.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementTest.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/LookupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CompilationDatabaseTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/FixItTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/TestVisitor.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestDeclVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ToolingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Tooling/QualTypeNamesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestExprVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementsYamlTest.cpp
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/AnalyzerOptionsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CleanupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortImportsTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestUtils.h
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestSelective.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortIncludesTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTestObjC.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJava.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestProto.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTImporterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/MatchVerifier.h
    U src/gnu/llvm/tools/clang/unittests/AST/ASTTypeTraitsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/PostOrderASTVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTVectorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/SourceLocationTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ExternalASTSourceTest.cpp
    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/StmtPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTContextParentMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/AST/EvaluateAsRValueTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/NamedDeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Rewrite/RewriteBufferTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.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/ASTMatchersNodeTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTest.h
    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/ASTMatchers/Dynamic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/VariantValueTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/BufferSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Driver/DistroTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/ToolChainTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/MultilibTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/docs/LibASTMatchers.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/LTOVisibility.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersReference.html
    U src/gnu/llvm/tools/clang/docs/ClangFormatStyleOptions.rst
    U src/gnu/llvm/tools/clang/docs/UndefinedBehaviorSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ObjectiveCLiterals.rst
    U src/gnu/llvm/tools/clang/docs/SafeStack.rst
    U src/gnu/llvm/tools/clang/docs/index.rst
    U src/gnu/llvm/tools/clang/docs/README.txt
    U src/gnu/llvm/tools/clang/docs/Modules.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerStats.rst
    U src/gnu/llvm/tools/clang/docs/SourceBasedCodeCoverage.rst
    U src/gnu/llvm/tools/clang/docs/LibTooling.rst
    U src/gnu/llvm/tools/clang/docs/make.bat
    U src/gnu/llvm/tools/clang/docs/PCHLayout.png
    U src/gnu/llvm/tools/clang/docs/PTHInternals.rst
    U src/gnu/llvm/tools/clang/docs/doxygen-mainpage.dox
    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/AttributeReference.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrity.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/ThreadSafetyAnalysis.rst
    U src/gnu/llvm/tools/clang/docs/ClangFormat.rst
    U src/gnu/llvm/tools/clang/docs/MemorySanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrityDesign.rst
    U src/gnu/llvm/tools/clang/docs/Makefile.sphinx
    N src/gnu/llvm/tools/clang/docs/DiagnosticsReference.rst
    U src/gnu/llvm/tools/clang/docs/DriverArchitecture.png
    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/ItaniumMangleAbiTags.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizerDesign.rst
    U src/gnu/llvm/tools/clang/docs/ExternalClangExamples.rst
    U src/gnu/llvm/tools/clang/docs/BlockLanguageSpec.rst
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.txt
    N src/gnu/llvm/tools/clang/docs/Toolchain.rst
    U src/gnu/llvm/tools/clang/docs/UsersManual.rst
    U src/gnu/llvm/tools/clang/docs/PCHInternals.rst
    U src/gnu/llvm/tools/clang/docs/ClangTools.rst
    U src/gnu/llvm/tools/clang/docs/IntroductionToTheClangAST.rst
    U src/gnu/llvm/tools/clang/docs/LibFormat.rst
    U src/gnu/llvm/tools/clang/docs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/docs/conf.py
    U src/gnu/llvm/tools/clang/docs/doxygen.cfg.in
    U src/gnu/llvm/tools/clang/docs/LeakSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersTutorial.rst
    N src/gnu/llvm/tools/clang/docs/ThinLTO.rst
    U src/gnu/llvm/tools/clang/docs/HowToSetupToolingForLLVM.rst
    U src/gnu/llvm/tools/clang/docs/CrossCompilation.rst
    U src/gnu/llvm/tools/clang/docs/MSVCCompatibility.rst
    U src/gnu/llvm/tools/clang/docs/ClangCheck.rst
    U src/gnu/llvm/tools/clang/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerCoverage.rst
    U src/gnu/llvm/tools/clang/docs/RAVFrontendAction.rst
    U src/gnu/llvm/tools/clang/docs/LanguageExtensions.rst
    U src/gnu/llvm/tools/clang/docs/PCHLayout.graffle
    U src/gnu/llvm/tools/clang/docs/JSONCompilationDatabase.rst
    U src/gnu/llvm/tools/clang/docs/AutomaticReferenceCounting.rst
    U src/gnu/llvm/tools/clang/docs/Tooling.rst
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.rst
    U src/gnu/llvm/tools/clang/docs/InternalsManual.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/index.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/make.bat
    U src/gnu/llvm/tools/clang/docs/analyzer/DebugChecks.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/RegionStore.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/IPA.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/conf.py
    U src/gnu/llvm/tools/clang/docs/analyzer/nullability.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/docs/CommandGuide/index.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/clang.rst
    U src/gnu/llvm/tools/clang/lib/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFG.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyLogical.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/FormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Dominators.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Consumed.cpp
    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/BodyFarm.h
    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/ScanfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/OSLog.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexSymbol.cpp
    U src/gnu/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.cpp
    U src/gnu/llvm/tools/clang/lib/Index/SimpleFormatContext.h
    U src/gnu/llvm/tools/clang/lib/Index/USRGeneration.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexBody.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.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/CommentToXML.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.h
    U src/gnu/llvm/tools/clang/lib/Basic/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Sanitizers.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CharInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileSystemStatCache.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/LangOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Attributes.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Warnings.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Basic/TokenKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceLocation.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileManager.cpp
    C src/gnu/llvm/tools/clang/lib/Basic/Targets.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Version.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Cuda.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/VersionTuple.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Headers/x86intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdatomic.h
    U src/gnu/llvm/tools/clang/lib/Headers/altivec.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/ia32intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/msa.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/rtmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
    U src/gnu/llvm/tools/clang/lib/Headers/ammintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/unwind.h
    U src/gnu/llvm/tools/clang/lib/Headers/inttypes.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmxlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512bwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fma4intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/wmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
    U src/gnu/llvm/tools/clang/lib/Headers/opencl-c.h
    U src/gnu/llvm/tools/clang/lib/Headers/immintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
    U src/gnu/llvm/tools/clang/lib/Headers/xopintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fxsrintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cpuid.h
    U src/gnu/llvm/tools/clang/lib/Headers/popcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdnoreturn.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx2intrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
    U src/gnu/llvm/tools/clang/lib/Headers/smmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xtestintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/arm_acle.h
    U src/gnu/llvm/tools/clang/lib/Headers/xmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdbool.h
    U src/gnu/llvm/tools/clang/lib/Headers/float.h
    U src/gnu/llvm/tools/clang/lib/Headers/tmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512cdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512fintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/f16cintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/s390intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/nmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmiintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/module.modulemap
    U src/gnu/llvm/tools/clang/lib/Headers/fmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512pfintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/prfchwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/clflushoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
    U src/gnu/llvm/tools/clang/lib/Headers/rdseedintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/adxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mwaitxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
    U src/gnu/llvm/tools/clang/lib/Headers/emmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pkuintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm3dnow.h
    U src/gnu/llvm/tools/clang/lib/Headers/limits.h
    U src/gnu/llvm/tools/clang/lib/Headers/intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdarg.h
    U src/gnu/llvm/tools/clang/lib/Headers/tbmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512dqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stddef.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdint.h
    U src/gnu/llvm/tools/clang/lib/Headers/iso646.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm_malloc.h
    U src/gnu/llvm/tools/clang/lib/Headers/tgmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/avxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/lzcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/shaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdalign.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/armintr.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512erintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vadefs.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h
    U src/gnu/llvm/tools/clang/lib/Headers/varargs.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavesintrin.h
    N src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/new
    N src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/complex
    N src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/algorithm
    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/PrintPreprocessedOutput.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
    C src/gnu/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.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/SerializedDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CompilerInstance.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/MultiplexConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendActions.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/CreateInvocationFromCommandLine.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Lexer.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/Preprocessor.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCaching.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
    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/PTHLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderMap.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPExpressions.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPDirectives.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaChecking.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AttributeList.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Sema.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaInit.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DeclSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLambda.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOverload.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAccess.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLookup.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Scope.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaType.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TreeTransform.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCast.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTentative.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/RAIIObjectsForParser.h
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.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/ParsePragma.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseObjc.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseAST.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseInit.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FixIt.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Tooling.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
    N src/gnu/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/QualTypeNames.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.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/TransGCCalls.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
    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/TransAPIUses.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Internals.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMT.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/CheckerRegistration.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.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/HTMLDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.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/ProgramState.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.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/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/MPIBugReporter.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.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/Format/Encoding.h
    N src/gnu/llvm/tools/clang/lib/Format/Comments.cpp
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
    N src/gnu/llvm/tools/clang/lib/Format/Comments.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/Format.cpp
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.h
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.h
    U src/gnu/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclarationName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Mangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/AttrImpl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclGroup.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypeLoc.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Stmt.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypePrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Expr.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTableBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Decl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTTBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ParentMap.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Type.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprClassification.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentSema.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/OpenMPClause.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXABI.h
    U src/gnu/llvm/tools/clang/lib/AST/StmtIterator.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NSAPI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclFriend.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/AST/ExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTImporter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/APValue.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDumper.cpp
    U src/gnu/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtProfile.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayout.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTContext.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXInheritance.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Comment.cpp
    U src/gnu/llvm/tools/clang/lib/AST/InheritViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RawCommentList.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/Rewrite/HTMLRewrite.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/Serialization/GlobalModuleIndex.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderStmt.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/Serialization/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
    U src/gnu/llvm/tools/clang/lib/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReader.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/VariantValue.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/Registry.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
    U src/gnu/llvm/tools/clang/lib/Edit/Commit.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/EditedSource.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/ConstantBuilder.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGException.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/README.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.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/CodeGenModule.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/Address.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuilder.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGValue.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ABIInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.h
    N src/gnu/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.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/CGObjC.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGClass.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
    N src/gnu/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDABuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Tools.h
    U src/gnu/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Types.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/Tools.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Tool.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Phases.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Job.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/Distro.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Compilation.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Action.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Driver.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/DriverOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Driver/Multilib.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains.h
    U src/gnu/llvm/tools/clang/lib/Driver/InputInfo.h
    U src/gnu/llvm/tools/lld/LICENSE.TXT
    U src/gnu/llvm/tools/lld/README.md
    U src/gnu/llvm/tools/lld/.gitignore
    U src/gnu/llvm/tools/lld/.arcconfig
    U src/gnu/llvm/tools/lld/.clang-format
    U src/gnu/llvm/tools/lld/CMakeLists.txt
    U src/gnu/llvm/tools/lld/CODE_OWNERS.TXT
    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/lld/cmake/modules/FindVTune.cmake
    N src/gnu/llvm/tools/lld/cmake/modules/AddLLD.cmake
    U src/gnu/llvm/tools/lld/COFF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/COFF/README.md
    U src/gnu/llvm/tools/lld/COFF/InputFiles.cpp
    N src/gnu/llvm/tools/lld/COFF/Strings.h
    N src/gnu/llvm/tools/lld/COFF/Strings.cpp
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/COFF/InputFiles.h
    N src/gnu/llvm/tools/lld/COFF/Memory.h
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.h
    U src/gnu/llvm/tools/lld/COFF/Writer.h
    U src/gnu/llvm/tools/lld/COFF/ICF.cpp
    U src/gnu/llvm/tools/lld/COFF/ModuleDef.cpp
    U src/gnu/llvm/tools/lld/COFF/Driver.cpp
    U src/gnu/llvm/tools/lld/COFF/Driver.h
    U src/gnu/llvm/tools/lld/COFF/Error.cpp
    N src/gnu/llvm/tools/lld/COFF/PDB.h
    U src/gnu/llvm/tools/lld/COFF/Chunks.h
    U src/gnu/llvm/tools/lld/COFF/CMakeLists.txt
    U src/gnu/llvm/tools/lld/COFF/DLL.cpp
    U src/gnu/llvm/tools/lld/COFF/Options.td
    U src/gnu/llvm/tools/lld/COFF/Symbols.cpp
    U src/gnu/llvm/tools/lld/COFF/Librarian.cpp
    U src/gnu/llvm/tools/lld/COFF/Symbols.h
    U src/gnu/llvm/tools/lld/COFF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/COFF/Writer.cpp
    U src/gnu/llvm/tools/lld/COFF/PDB.cpp
    U src/gnu/llvm/tools/lld/COFF/Error.h
    U src/gnu/llvm/tools/lld/COFF/Chunks.cpp
    U src/gnu/llvm/tools/lld/COFF/Config.h
    U src/gnu/llvm/tools/lld/COFF/DLL.h
    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/Core/DefinedAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SymbolTable.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Writer.h
    U src/gnu/llvm/tools/lld/include/lld/Core/LLVM.h
    U src/gnu/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Node.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Resolver.h
    U src/gnu/llvm/tools/lld/include/lld/Core/LinkingContext.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Parallel.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reader.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Instrumentation.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Atom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reference.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/TODO.txt
    U src/gnu/llvm/tools/lld/include/lld/Core/PassManager.h
    N src/gnu/llvm/tools/lld/include/lld/Core/Reproduce.h
    U src/gnu/llvm/tools/lld/include/lld/Core/File.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Error.h
    N src/gnu/llvm/tools/lld/include/lld/Support/Memory.h
    U src/gnu/llvm/tools/lld/include/lld/Config/Version.inc.in
    U src/gnu/llvm/tools/lld/include/lld/Config/Version.h
    U src/gnu/llvm/tools/lld/include/lld/Driver/Driver.h
    U src/gnu/llvm/tools/lld/ELF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/ELF/README.md
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.cpp
    U src/gnu/llvm/tools/lld/ELF/Thunks.h
    U src/gnu/llvm/tools/lld/ELF/InputFiles.cpp
    U src/gnu/llvm/tools/lld/ELF/Strings.h
    U src/gnu/llvm/tools/lld/ELF/Strings.cpp
    N src/gnu/llvm/tools/lld/ELF/SyntheticSections.h
    U src/gnu/llvm/tools/lld/ELF/LTO.h
    U src/gnu/llvm/tools/lld/ELF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/ELF/InputFiles.h
    N src/gnu/llvm/tools/lld/ELF/Memory.h
    U src/gnu/llvm/tools/lld/ELF/Target.cpp
    U src/gnu/llvm/tools/lld/ELF/InputSection.cpp
    U src/gnu/llvm/tools/lld/ELF/Relocations.h
    U src/gnu/llvm/tools/lld/ELF/SymbolTable.h
    U src/gnu/llvm/tools/lld/ELF/Writer.h
    U src/gnu/llvm/tools/lld/ELF/ICF.cpp
    U src/gnu/llvm/tools/lld/ELF/Thunks.cpp
    N src/gnu/llvm/tools/lld/ELF/GdbIndex.cpp
    U src/gnu/llvm/tools/lld/ELF/ICF.h
    U src/gnu/llvm/tools/lld/ELF/LinkerScript.h
    U src/gnu/llvm/tools/lld/ELF/Driver.cpp
    U src/gnu/llvm/tools/lld/ELF/Relocations.cpp
    U src/gnu/llvm/tools/lld/ELF/OutputSections.h
    N src/gnu/llvm/tools/lld/ELF/SyntheticSections.cpp
    U src/gnu/llvm/tools/lld/ELF/Driver.h
    U src/gnu/llvm/tools/lld/ELF/Error.cpp
    U src/gnu/llvm/tools/lld/ELF/LinkerScript.cpp
    U src/gnu/llvm/tools/lld/ELF/CMakeLists.txt
    N src/gnu/llvm/tools/lld/ELF/Threads.h
    U src/gnu/llvm/tools/lld/ELF/OutputSections.cpp
    N src/gnu/llvm/tools/lld/ELF/Mips.cpp
    U src/gnu/llvm/tools/lld/ELF/Options.td
    U src/gnu/llvm/tools/lld/ELF/EhFrame.cpp
    N src/gnu/llvm/tools/lld/ELF/GdbIndex.h
    U src/gnu/llvm/tools/lld/ELF/Symbols.cpp
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.h
    U src/gnu/llvm/tools/lld/ELF/Symbols.h
    U src/gnu/llvm/tools/lld/ELF/Target.h
    U src/gnu/llvm/tools/lld/ELF/LTO.cpp
    U src/gnu/llvm/tools/lld/ELF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/ELF/InputSection.h
    U src/gnu/llvm/tools/lld/ELF/Writer.cpp
    U src/gnu/llvm/tools/lld/ELF/Error.h
    U src/gnu/llvm/tools/lld/ELF/EhFrame.h
    U src/gnu/llvm/tools/lld/ELF/Config.h
    U src/gnu/llvm/tools/lld/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
    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/MachOTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
    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/CoreTests/ParallelTest.cpp
    U src/gnu/llvm/tools/lld/unittests/CoreTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/docs/index.rst
    U src/gnu/llvm/tools/lld/docs/README.txt
    U src/gnu/llvm/tools/lld/docs/make.bat
    U src/gnu/llvm/tools/lld/docs/NewLLD.rst
    U src/gnu/llvm/tools/lld/docs/hello.png
    U src/gnu/llvm/tools/lld/docs/C++11.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/sphinx_intro.rst
    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/conf.py
    U src/gnu/llvm/tools/lld/docs/open_projects.rst
    U src/gnu/llvm/tools/lld/docs/Driver.rst
    U src/gnu/llvm/tools/lld/docs/windows_support.rst
    U src/gnu/llvm/tools/lld/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/lld/docs/Readers.rst
    U src/gnu/llvm/tools/lld/docs/AtomLLD.rst
    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/navigation.png
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/llvm.css
    U src/gnu/llvm/tools/lld/docs/_static/favicon.ico
    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/lib/CMakeLists.txt
    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/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
    N src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOPasses.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
    U src/gnu/llvm/tools/lld/lib/Core/LinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/Core/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/lib/Core/DefinedAtom.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Resolver.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Error.cpp
    N src/gnu/llvm/tools/lld/lib/Core/Reproduce.cpp
    U src/gnu/llvm/tools/lld/lib/Core/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Core/File.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Reader.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Writer.cpp
    U src/gnu/llvm/tools/lld/lib/Config/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Config/Version.cpp
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdOptions.td
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
    U src/gnu/llvm/tools/lld/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/runtimes/CMakeLists.txt
    N src/gnu/llvm/runtimes/Components.cmake.in
    U src/gnu/llvm/resources/windows_version_resource.rc
    U src/gnu/llvm/bindings/README.txt
    U src/gnu/llvm/bindings/LLVMBuild.txt
    U src/gnu/llvm/bindings/python/README.txt
    U src/gnu/llvm/bindings/python/llvm/bit_reader.py
    U src/gnu/llvm/bindings/python/llvm/core.py
    U src/gnu/llvm/bindings/python/llvm/enumerations.py
    U src/gnu/llvm/bindings/python/llvm/__init__.py
    U src/gnu/llvm/bindings/python/llvm/object.py
    U src/gnu/llvm/bindings/python/llvm/disassembler.py
    U src/gnu/llvm/bindings/python/llvm/common.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/python/llvm/tests/test.bc
    U src/gnu/llvm/bindings/python/llvm/tests/test_core.py
    U src/gnu/llvm/bindings/python/llvm/tests/base.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_object.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_file
    U src/gnu/llvm/bindings/go/README.txt
    U src/gnu/llvm/bindings/go/build.sh
    U src/gnu/llvm/bindings/go/conftest.go
    U src/gnu/llvm/bindings/go/llvm/string.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/executionengine.go
    U src/gnu/llvm/bindings/go/llvm/transforms_scalar.go
    U src/gnu/llvm/bindings/go/llvm/ir_test.go
    U src/gnu/llvm/bindings/go/llvm/ir.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/bitwriter.go
    U src/gnu/llvm/bindings/go/llvm/transforms_pmbuilder.go
    U src/gnu/llvm/bindings/go/llvm/executionengine_test.go
    U src/gnu/llvm/bindings/go/llvm/support.go
    U src/gnu/llvm/bindings/go/llvm/string_test.go
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.h
    U src/gnu/llvm/bindings/go/llvm/transforms_ipo.go
    U src/gnu/llvm/bindings/go/llvm/analysis.go
    U src/gnu/llvm/bindings/go/llvm/dibuilder.go
    U src/gnu/llvm/bindings/go/llvm/linker.go
    U src/gnu/llvm/bindings/go/llvm/llvm_dep.go
    U src/gnu/llvm/bindings/go/llvm/DIBuilderBindings.h
    U src/gnu/llvm/bindings/go/llvm/llvm_config.go.in
    U src/gnu/llvm/bindings/go/llvm/version.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.h
    U src/gnu/llvm/bindings/go/llvm/bitreader.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.h
    U src/gnu/llvm/bindings/go/llvm/target.go
    U src/gnu/llvm/bindings/go/llvm/DIBuilderBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/transforms_instrumentation.go
    N src/gnu/llvm/bindings/ocaml/README.txt
    U src/gnu/llvm/bindings/ocaml/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.mli
    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.ml
    U src/gnu/llvm/bindings/ocaml/bitwriter/bitwriter_ocaml.c
    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/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/backends/backend_ocaml.c
    U src/gnu/llvm/bindings/ocaml/backends/META.llvm_backend.in
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.ml.in
    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/target/target_ocaml.c
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.ml
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.mli
    U src/gnu/llvm/bindings/ocaml/target/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.ml
    U src/gnu/llvm/bindings/ocaml/analysis/analysis_ocaml.c
    U src/gnu/llvm/bindings/ocaml/analysis/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.mli
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.mli
    U src/gnu/llvm/bindings/ocaml/all_backends/all_backends_ocaml.c
    U src/gnu/llvm/bindings/ocaml/all_backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.ml
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.mli
    U src/gnu/llvm/bindings/ocaml/llvm/META.llvm.in
    U src/gnu/llvm/bindings/ocaml/llvm/llvm_ocaml.c
    U src/gnu/llvm/bindings/ocaml/llvm/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.ml
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.mli
    U src/gnu/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
    U src/gnu/llvm/bindings/ocaml/executionengine/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.ml
    U src/gnu/llvm/bindings/ocaml/transforms/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.ml
    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/vectorize_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/ipo_ocaml.c
    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/ipo/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/utils/llvm_transform_utils.mli
    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/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/llvm_passmgr_builder.ml
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.ml
    U src/gnu/llvm/bindings/ocaml/bitreader/bitreader_ocaml.c
    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/linker/llvm_linker.ml
    U src/gnu/llvm/bindings/ocaml/linker/llvm_linker.mli
    U src/gnu/llvm/bindings/ocaml/linker/linker_ocaml.c
    U src/gnu/llvm/bindings/ocaml/linker/CMakeLists.txt
    U src/gnu/llvm/utils/llvm.grm
    U src/gnu/llvm/utils/llvmdo
    U src/gnu/llvm/utils/codegen-diff
    U src/gnu/llvm/utils/findoptdiff
    U src/gnu/llvm/utils/clang-parse-diagnostics-file
    U src/gnu/llvm/utils/create_ladder_graph.py
    U src/gnu/llvm/utils/shuffle_fuzz.py
    U src/gnu/llvm/utils/schedcover.py
    U src/gnu/llvm/utils/sort_includes.py
    U src/gnu/llvm/utils/llvmgrep
    U src/gnu/llvm/utils/llvm-native-gxx
    U src/gnu/llvm/utils/DSAclean.py
    U src/gnu/llvm/utils/countloc.sh
    U src/gnu/llvm/utils/llvm-compilers-check
    U src/gnu/llvm/utils/findsym.pl
    U src/gnu/llvm/utils/update_llc_test_checks.py
    U src/gnu/llvm/utils/prepare-code-coverage-artifact.py
    U src/gnu/llvm/utils/check-each-file
    U src/gnu/llvm/utils/test_debuginfo.pl
    U src/gnu/llvm/utils/DSAextract.py
    U src/gnu/llvm/utils/findmisopt
    U src/gnu/llvm/utils/update_test_checks.py
    U src/gnu/llvm/utils/UpdateCMakeLists.pl
    U src/gnu/llvm/utils/extract_symbols.py
    U src/gnu/llvm/utils/GetSourceVersion
    U src/gnu/llvm/utils/makellvm
    U src/gnu/llvm/utils/bisect
    U src/gnu/llvm/utils/lldbDataFormatters.py
    U src/gnu/llvm/utils/GenLibDeps.pl
    U src/gnu/llvm/utils/wciia.py
    U src/gnu/llvm/utils/getsrcs.sh
    U src/gnu/llvm/utils/GetRepositoryPath
    U src/gnu/llvm/utils/LLVMBuild.txt
    U src/gnu/llvm/utils/emacs/tablegen-mode.el
    U src/gnu/llvm/utils/emacs/llvm-mode.el
    U src/gnu/llvm/utils/emacs/README
    U src/gnu/llvm/utils/emacs/emacs.el
    U src/gnu/llvm/utils/FileCheck/FileCheck.cpp
    U src/gnu/llvm/utils/FileCheck/CMakeLists.txt
    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/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/vim/ftplugin/llvm.vim
    U src/gnu/llvm/utils/vim/ftplugin/tablegen.vim
    U src/gnu/llvm/utils/release/export.sh
    U src/gnu/llvm/utils/release/build_llvm_package.bat
    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/merge.sh
    U src/gnu/llvm/utils/release/tag.sh
    U src/gnu/llvm/utils/PerfectShuffle/CMakeLists.txt
    U src/gnu/llvm/utils/PerfectShuffle/PerfectShuffle.cpp
    U src/gnu/llvm/utils/Misc/zkill
    U src/gnu/llvm/utils/Target/ARM/analyze-match-table.py
    U src/gnu/llvm/utils/llvm-lit/llvm-lit.in
    U src/gnu/llvm/utils/llvm-lit/CMakeLists.txt
    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/main.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/__init__.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/componentinfo.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/configutil.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/remove_trailing_whitespace.sh
    U src/gnu/llvm/utils/lint/common_lint.py
    N 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/yaml-bench/YAMLBench.cpp
    U src/gnu/llvm/utils/yaml-bench/CMakeLists.txt
    U src/gnu/llvm/utils/not/CMakeLists.txt
    U src/gnu/llvm/utils/not/not.cpp
    N src/gnu/llvm/utils/opt-viewer/style.css
    N src/gnu/llvm/utils/opt-viewer/opt-viewer.py
    U src/gnu/llvm/utils/LLVMVisualizers/CMakeLists.txt
    U src/gnu/llvm/utils/LLVMVisualizers/llvm.natvis
    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/jedit/README
    U src/gnu/llvm/utils/jedit/tablegen.xml
    U src/gnu/llvm/utils/kate/README
    U src/gnu/llvm/utils/kate/llvm.xml
    U src/gnu/llvm/utils/count/count.c
    U src/gnu/llvm/utils/count/CMakeLists.txt
    U src/gnu/llvm/utils/KillTheDoctor/KillTheDoctor.cpp
    U src/gnu/llvm/utils/KillTheDoctor/CMakeLists.txt
    U src/gnu/llvm/utils/bugpoint/RemoteRunSafely.sh
    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/lit/setup.py
    U src/gnu/llvm/utils/lit/lit.py
    U src/gnu/llvm/utils/lit/README.txt
    U src/gnu/llvm/utils/lit/MANIFEST.in
    U src/gnu/llvm/utils/lit/tests/shtest-shell.py
    U src/gnu/llvm/utils/lit/tests/shtest-output-printing.py
    U src/gnu/llvm/utils/lit/tests/unittest-adaptor.py
    N src/gnu/llvm/utils/lit/tests/max-failures.py
    U src/gnu/llvm/utils/lit/tests/shtest-format.py
    U src/gnu/llvm/utils/lit/tests/lit.cfg
    U src/gnu/llvm/utils/lit/tests/.coveragerc
    U src/gnu/llvm/utils/lit/tests/googletest-upstream-format.py
    U src/gnu/llvm/utils/lit/tests/progress-bar.py
    U src/gnu/llvm/utils/lit/tests/googletest-timeout.py
    U src/gnu/llvm/utils/lit/tests/googletest-format.py
    U src/gnu/llvm/utils/lit/tests/discovery.py
    U src/gnu/llvm/utils/lit/tests/test-output.py
    U src/gnu/llvm/utils/lit/tests/shtest-encoding.py
    U src/gnu/llvm/utils/lit/tests/xunit-output.py
    U src/gnu/llvm/utils/lit/tests/test-data.py
    U src/gnu/llvm/utils/lit/tests/usage.py
    U src/gnu/llvm/utils/lit/tests/shtest-timeout.py
    U src/gnu/llvm/utils/lit/tests/shell-parsing.py
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-two.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/progress-bar/test-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg
    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/shtest-format/xpass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-feature.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-present.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/argv0.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/requires-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-target.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/no-test-line.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/fail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/pass.txt
    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/shtest-format/external_shell/lit.local.cfg
    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.sh
    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/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-in-tree/obj/lit.site.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest
    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
    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-timeout/slow.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/quick_then_slow.py
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-two.txt
    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/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/test-two.txt
    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/exec-discovery/lit.site.cfg
    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
    N src/gnu/llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/lit.cfg
    N src/gnu/llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/metrics.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/redirects.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.sh
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.sh
    N src/gnu/llvm/utils/lit/tests/unit/ShUtil.py
    N src/gnu/llvm/utils/lit/tests/unit/TestRunner.py
    U src/gnu/llvm/utils/lit/utils/check-sdist
    U src/gnu/llvm/utils/lit/utils/README.txt
    U src/gnu/llvm/utils/lit/utils/check-coverage
    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
    U src/gnu/llvm/utils/lit/lit/util.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/__init__.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/LitConfig.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/LitTestCase.py
    U src/gnu/llvm/utils/lit/lit/ShCommands.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/formats/__init__.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/base.py
    U src/gnu/llvm/utils/lit/lit/ExampleTests.ObjDir/lit.site.cfg
    U src/gnu/llvm/utils/fpcmp/fpcmp.cpp
    U src/gnu/llvm/utils/testgen/mc-bundling-x86-gen.py
    U src/gnu/llvm/utils/TableGen/CallingConvEmitter.cpp
    N src/gnu/llvm/utils/TableGen/GlobalISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CTagsEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenMapTable.cpp
    N src/gnu/llvm/utils/TableGen/Types.h
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.h
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.h
    U src/gnu/llvm/utils/TableGen/DAGISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SearchableTableEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.cpp
    N src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherGen.cpp
    U src/gnu/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
    N src/gnu/llvm/utils/TableGen/Types.cpp
    U src/gnu/llvm/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.cpp
    U src/gnu/llvm/utils/TableGen/FastISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.cpp
    U src/gnu/llvm/utils/TableGen/IntrinsicEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.h
    U src/gnu/llvm/utils/TableGen/AsmMatcherEmitter.cpp
    N src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.h
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
    U src/gnu/llvm/utils/TableGen/CodeEmitterGen.cpp
    U src/gnu/llvm/utils/TableGen/Attributes.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.h
    U src/gnu/llvm/utils/TableGen/CodeGenIntrinsics.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.cpp
    U src/gnu/llvm/utils/TableGen/tdtags
    U src/gnu/llvm/utils/TableGen/SequenceToOffsetTable.h
    U src/gnu/llvm/utils/TableGen/DisassemblerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
    U src/gnu/llvm/utils/TableGen/InstrInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.h
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.h
    U src/gnu/llvm/utils/TableGen/X86DisassemblerShared.h
    U src/gnu/llvm/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.h
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.h
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.h
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.cpp
    U src/gnu/llvm/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/utils/TableGen/OptParserEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/RegisterInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterEmitter.cpp
    U src/gnu/llvm/utils/TableGen/LLVMBuild.txt
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
    U src/gnu/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
    U src/gnu/llvm/utils/unittest/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/LLVMBuild.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/src/gtest-all.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-filepath.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-typed-test.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-port.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-internal-inl.h
    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-printers.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-test-part.cc
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-typed-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-message.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-death-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_pred_impl.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-spi.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-param-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-printers.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-test-part.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-death-test-internal.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-port-arch.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-port.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-type-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-linked_ptr.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest-printers.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest-port.h
    N src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest.h
    U src/gnu/llvm/utils/unittest/UnitTestMain/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/UnitTestMain/TestMain.cpp
    N src/gnu/llvm/utils/unittest/googlemock/LICENSE.txt
    N src/gnu/llvm/utils/unittest/googlemock/README.LLVM
    N src/gnu/llvm/utils/unittest/googlemock/src/gmock-all.cc
    N src/gnu/llvm/utils/unittest/googlemock/src/gmock-matchers.cc
    N src/gnu/llvm/utils/unittest/googlemock/src/gmock.cc
    N src/gnu/llvm/utils/unittest/googlemock/src/gmock-cardinalities.cc
    N src/gnu/llvm/utils/unittest/googlemock/src/gmock-spec-builders.cc
    N src/gnu/llvm/utils/unittest/googlemock/src/gmock-internal-utils.cc
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-more-actions.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-function-mockers.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-more-matchers.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-actions.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-spec-builders.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-cardinalities.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-actions.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-matchers.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-nice-strict.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-port.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-port.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h
    N src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-matchers.h
    U src/gnu/llvm/utils/git/find-rev
    U src/gnu/llvm/utils/abtest/mark_armfns.py
    U src/gnu/llvm/utils/abtest/mark_aarch64fns.py
    U src/gnu/llvm/utils/abtest/abtest.py
    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/gdb-scripts/prettyprinters.py
    U src/gnu/llvm/examples/CMakeLists.txt
    U src/gnu/llvm/examples/LLVMBuild.txt
    U src/gnu/llvm/examples/BrainF/BrainFDriver.cpp
    U src/gnu/llvm/examples/BrainF/BrainF.h
    U src/gnu/llvm/examples/BrainF/CMakeLists.txt
    U src/gnu/llvm/examples/BrainF/BrainF.cpp
    U src/gnu/llvm/examples/Fibonacci/fibonacci.cpp
    U src/gnu/llvm/examples/Fibonacci/CMakeLists.txt
    U src/gnu/llvm/examples/ExceptionDemo/ExceptionDemo.cpp
    U src/gnu/llvm/examples/ExceptionDemo/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/CMakeLists.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/MCJIT/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/toy.cpp
    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/cached/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
    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/lazy/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/README.txt
    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/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/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/BuildingAJIT/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/server.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/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/include/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/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/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/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/ParallelJIT/CMakeLists.txt
    U src/gnu/llvm/examples/ParallelJIT/ParallelJIT.cpp
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/_tags
    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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/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/Chapter3/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/_tags
    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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/codegen.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/Chapter4/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/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/Chapter5/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/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/Chapter6/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/codegen.ml
    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/HowToUseJIT/HowToUseJIT.cpp
    U src/gnu/llvm/examples/HowToUseJIT/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/cmake/nsis_icon.ico
    U src/gnu/llvm/cmake/config-ix.cmake
    U src/gnu/llvm/cmake/README
    U src/gnu/llvm/cmake/config.guess
    U src/gnu/llvm/cmake/dummy.cpp
    U src/gnu/llvm/cmake/nsis_logo.bmp
    U src/gnu/llvm/cmake/platforms/Android.cmake
    U src/gnu/llvm/cmake/platforms/iOS.cmake
    U src/gnu/llvm/cmake/modules/AddOCaml.cmake
    U src/gnu/llvm/cmake/modules/LLVM-Config.cmake
    U src/gnu/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
    U src/gnu/llvm/cmake/modules/FindSphinx.cmake
    U src/gnu/llvm/cmake/modules/CheckAtomic.cmake
    U src/gnu/llvm/cmake/modules/DetermineGCCCompatible.cmake
    U src/gnu/llvm/cmake/modules/FindOCaml.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMOptions.cmake
    U src/gnu/llvm/cmake/modules/GetHostTriple.cmake
    U src/gnu/llvm/cmake/modules/VersionFromVCS.cmake
    N src/gnu/llvm/cmake/modules/CheckLinkerFlag.cmake
    U src/gnu/llvm/cmake/modules/CMakeLists.txt
    U src/gnu/llvm/cmake/modules/AddSphinxTarget.cmake
    U src/gnu/llvm/cmake/modules/GenerateVersionFromCVS.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfig.cmake.in
    U src/gnu/llvm/cmake/modules/GetSVN.cmake
    U src/gnu/llvm/cmake/modules/ChooseMSVCCRT.cmake
    U src/gnu/llvm/cmake/modules/AddLLVMDefinitions.cmake
    U src/gnu/llvm/cmake/modules/LLVMInstallSymlink.cmake
    U src/gnu/llvm/cmake/modules/CrossCompile.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMStdlib.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfigVersion.cmake.in
    U src/gnu/llvm/cmake/modules/LLVMProcessSources.cmake
    U src/gnu/llvm/cmake/modules/CheckCompilerVersion.cmake
    U src/gnu/llvm/cmake/modules/AddLLVM.cmake
    U src/gnu/llvm/cmake/modules/TableGen.cmake
    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/lto.h
    U src/gnu/llvm/include/llvm-c/BitReader.h
    U src/gnu/llvm/include/llvm-c/Core.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/OrcBindings.h
    U src/gnu/llvm/include/llvm-c/module.modulemap
    U src/gnu/llvm/include/llvm-c/LinkTimeOptimizer.h
    U src/gnu/llvm/include/llvm-c/TargetMachine.h
    U src/gnu/llvm/include/llvm-c/ExecutionEngine.h
    U src/gnu/llvm/include/llvm-c/Analysis.h
    U src/gnu/llvm/include/llvm-c/BitWriter.h
    U src/gnu/llvm/include/llvm-c/Linker.h
    U src/gnu/llvm/include/llvm-c/Target.h
    U src/gnu/llvm/include/llvm-c/Initialization.h
    U src/gnu/llvm/include/llvm-c/Support.h
    U src/gnu/llvm/include/llvm-c/IRReader.h
    U src/gnu/llvm/include/llvm-c/Transforms/IPO.h
    U src/gnu/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm-c/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm-c/Transforms/Vectorize.h
    U src/gnu/llvm/include/llvm/LinkAllPasses.h
    U src/gnu/llvm/include/llvm/PassRegistry.h
    U src/gnu/llvm/include/llvm/module.modulemap.build
    U src/gnu/llvm/include/llvm/module.modulemap
    U src/gnu/llvm/include/llvm/PassInfo.h
    U src/gnu/llvm/include/llvm/CMakeLists.txt
    U src/gnu/llvm/include/llvm/Pass.h
    U src/gnu/llvm/include/llvm/PassAnalysisSupport.h
    U src/gnu/llvm/include/llvm/LinkAllIR.h
    U src/gnu/llvm/include/llvm/PassSupport.h
    U src/gnu/llvm/include/llvm/InitializePasses.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolution.h
    U src/gnu/llvm/include/llvm/Analysis/CFG.h
    U src/gnu/llvm/include/llvm/Analysis/InlineCost.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.def
    U src/gnu/llvm/include/llvm/Analysis/CFGPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/GlobalsModRef.h
    U src/gnu/llvm/include/llvm/Analysis/RegionIterator.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalIterator.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/DependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/PtrUseVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/CGSCCPassManager.h
    U src/gnu/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpander.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/PostDominators.h
    U src/gnu/llvm/include/llvm/Analysis/Loads.h
    U src/gnu/llvm/include/llvm/Analysis/LoopPass.h
    U src/gnu/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryBuiltins.h
    U src/gnu/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryLocation.h
    U src/gnu/llvm/include/llvm/Analysis/CaptureTracking.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/AliasSetTracker.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
    U src/gnu/llvm/include/llvm/Analysis/Lint.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/CallPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfoImpl.h
    N src/gnu/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
    N src/gnu/llvm/include/llvm/Analysis/LoopAnalysisManager.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalPartition.h
    U src/gnu/llvm/include/llvm/Analysis/Interval.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfo.h
    U src/gnu/llvm/include/llvm/Analysis/SparsePropagation.h
    U src/gnu/llvm/include/llvm/Analysis/AssumptionCache.h
    U src/gnu/llvm/include/llvm/Analysis/IVUsers.h
    U src/gnu/llvm/include/llvm/Analysis/DivergenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LoopIterator.h
    U src/gnu/llvm/include/llvm/Analysis/TypeMetadataUtils.h
    U src/gnu/llvm/include/llvm/Analysis/EHPersonalities.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/DemandedBits.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCInstKind.h
    U src/gnu/llvm/include/llvm/Analysis/PHITransAddr.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ConstantFolding.h
    U src/gnu/llvm/include/llvm/Analysis/TargetFolder.h
    U src/gnu/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraphSCCPass.h
    U src/gnu/llvm/include/llvm/Analysis/Passes.h
    U src/gnu/llvm/include/llvm/Analysis/OrderedBasicBlock.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/Trace.h
    U src/gnu/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
    U src/gnu/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
    U src/gnu/llvm/include/llvm/Analysis/LazyValueInfo.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPass.h
    U src/gnu/llvm/include/llvm/Analysis/LazyCallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/ValueTracking.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfo.h
    U src/gnu/llvm/include/llvm/Analysis/InstructionSimplify.h
    U src/gnu/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
    U src/gnu/llvm/include/llvm/Analysis/DomPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/VectorUtils.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
    U src/gnu/llvm/include/llvm/Bitcode/BitCodes.h
    N src/gnu/llvm/include/llvm/Bitcode/BitcodeReader.h
    U src/gnu/llvm/include/llvm/Bitcode/LLVMBitCodes.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamReader.h
    N src/gnu/llvm/include/llvm/Bitcode/BitcodeWriter.h
    U src/gnu/llvm/include/llvm/Transforms/PGOInstrumentation.h
    U src/gnu/llvm/include/llvm/Transforms/InstrProfiling.h
    U src/gnu/llvm/include/llvm/Transforms/GCOVProfiler.h
    U src/gnu/llvm/include/llvm/Transforms/SampleProfile.h
    U src/gnu/llvm/include/llvm/Transforms/ObjCARC.h
    U src/gnu/llvm/include/llvm/Transforms/IPO.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize.h
    N src/gnu/llvm/include/llvm/Transforms/Coroutines.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionImport.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PartialInlining.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/Inliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/Internalize.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Local.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LCSSA.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CtorUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Evaluator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/MemorySSA.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Cloning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SplitModule.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ValueMapper.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Reassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/BDCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Float2Int.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LICM.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Sink.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/NewGVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SROA.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ADCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.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/LoopIdiomRecognize.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
    U src/gnu/llvm/include/llvm/LibDriver/LibDriver.h
    U src/gnu/llvm/include/llvm/Target/CostTable.h
    U src/gnu/llvm/include/llvm/Target/TargetRegisterInfo.h
    U src/gnu/llvm/include/llvm/Target/Target.td
    U src/gnu/llvm/include/llvm/Target/TargetInstrInfo.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/TargetOpcodes.def
    U src/gnu/llvm/include/llvm/Target/TargetLowering.h
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.td
    N src/gnu/llvm/include/llvm/Target/TargetGlobalISel.td
    U src/gnu/llvm/include/llvm/Target/TargetMachine.h
    U src/gnu/llvm/include/llvm/Target/TargetSubtargetInfo.h
    U src/gnu/llvm/include/llvm/Target/GenericOpcodes.td
    U src/gnu/llvm/include/llvm/Target/TargetOpcodes.h
    U src/gnu/llvm/include/llvm/Target/TargetOptions.h
    U src/gnu/llvm/include/llvm/Target/TargetLoweringObjectFile.h
    U src/gnu/llvm/include/llvm/Target/TargetFrameLowering.h
    U src/gnu/llvm/include/llvm/Target/TargetSchedule.td
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.h
    U src/gnu/llvm/include/llvm/Target/TargetIntrinsicInfo.h
    N src/gnu/llvm/include/llvm/Demangle/Demangle.h
    U src/gnu/llvm/include/llvm/Object/ELF.h
    U src/gnu/llvm/include/llvm/Object/Binary.h
    N src/gnu/llvm/include/llvm/Object/Wasm.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/IRObjectFile.h
    U src/gnu/llvm/include/llvm/Object/SymbolSize.h
    U src/gnu/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
    U src/gnu/llvm/include/llvm/Object/Archive.h
    U src/gnu/llvm/include/llvm/Object/COFFImportFile.h
    U src/gnu/llvm/include/llvm/Object/SymbolicFile.h
    U src/gnu/llvm/include/llvm/Object/MachOUniversal.h
    U src/gnu/llvm/include/llvm/Object/RelocVisitor.h
    N src/gnu/llvm/include/llvm/Object/Decompressor.h
    U src/gnu/llvm/include/llvm/Object/StackMapParser.h
    U src/gnu/llvm/include/llvm/Object/MachO.h
    U src/gnu/llvm/include/llvm/Object/ELFObjectFile.h
    N src/gnu/llvm/include/llvm/Object/ModuleSymbolTable.h
    U src/gnu/llvm/include/llvm/Object/ELFTypes.h
    U src/gnu/llvm/include/llvm/Object/ArchiveWriter.h
    U src/gnu/llvm/include/llvm/Object/Error.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITEventListener.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/MCJIT.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectCache.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/JITSymbol.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/GenericValue.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Interpreter.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
    N 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/OrcABISupport.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.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/OrcRemoteTargetServer.h
    U src/gnu/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
    U src/gnu/llvm/include/llvm/IR/CFG.h
    U src/gnu/llvm/include/llvm/IR/Instruction.h
    U src/gnu/llvm/include/llvm/IR/ConstantRange.h
    U src/gnu/llvm/include/llvm/IR/GlobalObject.h
    U src/gnu/llvm/include/llvm/IR/PatternMatch.h
    U src/gnu/llvm/include/llvm/IR/ModuleSummaryIndex.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicInst.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsPowerPC.td
    U src/gnu/llvm/include/llvm/IR/Function.h
    U src/gnu/llvm/include/llvm/IR/GlobalIndirectSymbol.h
    U src/gnu/llvm/include/llvm/IR/ValueHandle.h
    U src/gnu/llvm/include/llvm/IR/IRPrintingPasses.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
    U src/gnu/llvm/include/llvm/IR/ConstantFolder.h
    U src/gnu/llvm/include/llvm/IR/OperandTraits.h
    U src/gnu/llvm/include/llvm/IR/ValueMap.h
    U src/gnu/llvm/include/llvm/IR/Metadata.h
    U src/gnu/llvm/include/llvm/IR/Type.h
    U src/gnu/llvm/include/llvm/IR/Statepoint.h
    U src/gnu/llvm/include/llvm/IR/SymbolTableListTraits.h
    U src/gnu/llvm/include/llvm/IR/DataLayout.h
    U src/gnu/llvm/include/llvm/IR/ModuleSlotTracker.h
    U src/gnu/llvm/include/llvm/IR/GlobalAlias.h
    U src/gnu/llvm/include/llvm/IR/Attributes.h
    U src/gnu/llvm/include/llvm/IR/DerivedTypes.h
    U src/gnu/llvm/include/llvm/IR/ValueSymbolTable.h
    U src/gnu/llvm/include/llvm/IR/Attributes.td
    U src/gnu/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticPrinter.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.td
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
    U src/gnu/llvm/include/llvm/IR/IntrinsicsXCore.td
    U src/gnu/llvm/include/llvm/IR/Module.h
    U src/gnu/llvm/include/llvm/IR/InlineAsm.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsX86.td
    U src/gnu/llvm/include/llvm/IR/GlobalValue.h
    U src/gnu/llvm/include/llvm/IR/DebugInfo.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsHexagon.td
    U src/gnu/llvm/include/llvm/IR/Constants.h
    U src/gnu/llvm/include/llvm/IR/TypeFinder.h
    U src/gnu/llvm/include/llvm/IR/MDBuilder.h
    U src/gnu/llvm/include/llvm/IR/InstVisitor.h
    U src/gnu/llvm/include/llvm/IR/DebugLoc.h
    U src/gnu/llvm/include/llvm/IR/DIBuilder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsARM.td
    U src/gnu/llvm/include/llvm/IR/LegacyPassManager.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/Operator.h
    U src/gnu/llvm/include/llvm/IR/InstrTypes.h
    N src/gnu/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
    U src/gnu/llvm/include/llvm/IR/Value.def
    U src/gnu/llvm/include/llvm/IR/Dominators.h
    U src/gnu/llvm/include/llvm/IR/Value.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassNameParser.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticInfo.h
    U src/gnu/llvm/include/llvm/IR/AutoUpgrade.h
    U src/gnu/llvm/include/llvm/IR/Use.h
    U src/gnu/llvm/include/llvm/IR/CallSite.h
    U src/gnu/llvm/include/llvm/IR/Argument.h
    U src/gnu/llvm/include/llvm/IR/PredIteratorCache.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/IntrinsicsAArch64.td
    U src/gnu/llvm/include/llvm/IR/CMakeLists.txt
    U src/gnu/llvm/include/llvm/IR/Verifier.h
    U src/gnu/llvm/include/llvm/IR/ProfileSummary.h
    U src/gnu/llvm/include/llvm/IR/OptBisect.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassManagers.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsMips.td
    U src/gnu/llvm/include/llvm/IR/InstIterator.h
    U src/gnu/llvm/include/llvm/IR/Mangler.h
    U src/gnu/llvm/include/llvm/IR/GVMaterializer.h
    U src/gnu/llvm/include/llvm/IR/UseListOrder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsSystemZ.td
    U src/gnu/llvm/include/llvm/IR/Constant.h
    U src/gnu/llvm/include/llvm/IR/User.h
    U src/gnu/llvm/include/llvm/IR/Instruction.def
    U src/gnu/llvm/include/llvm/IR/Instructions.h
    U src/gnu/llvm/include/llvm/IR/TrackingMDRef.h
    U src/gnu/llvm/include/llvm/IR/IRBuilder.h
    U src/gnu/llvm/include/llvm/IR/PassManager.h
    U src/gnu/llvm/include/llvm/IR/GlobalVariable.h
    U src/gnu/llvm/include/llvm/IR/Metadata.def
    U src/gnu/llvm/include/llvm/IR/LLVMContext.h
    U src/gnu/llvm/include/llvm/IR/NoFolder.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoFlags.def
    U src/gnu/llvm/include/llvm/IR/Comdat.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsBPF.td
    U src/gnu/llvm/include/llvm/IR/TypeBuilder.h
    U src/gnu/llvm/include/llvm/IR/CallingConv.h
    U src/gnu/llvm/include/llvm/IR/GlobalIFunc.h
    U src/gnu/llvm/include/llvm/DebugInfo/DIContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.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/PDBSymbolData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/GenericError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDB.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.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/DIAEnumDebugStreams.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/SymbolStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ModInfo.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/TpiHashing.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/GlobalsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ISectionContribVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/EnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawConstants.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameHashTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ModStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawError.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSerializer.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.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/TypeRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVTypeDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDatabase.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVDebugRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/Line.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDumperBase.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolTypes.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/SequencedItemStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamRef.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/ByteStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamReader.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamInterface.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFStreamLayout.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/IMSFFile.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamWriter.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFError.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
    N src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.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/Linker/IRMover.h
    U src/gnu/llvm/include/llvm/Linker/Linker.h
    U src/gnu/llvm/include/llvm/ObjectYAML/MachOYAML.h
    N src/gnu/llvm/include/llvm/ObjectYAML/DWARFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/YAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/ELFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/ObjectYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/COFFYAML.h
    U src/gnu/llvm/include/llvm/MC/MCWin64EH.h
    U src/gnu/llvm/include/llvm/MC/MCAsmLayout.h
    U src/gnu/llvm/include/llvm/MC/StringTableBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCRegisterInfo.h
    U src/gnu/llvm/include/llvm/MC/MCFixupKindInfo.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolELF.h
    U src/gnu/llvm/include/llvm/MC/MCStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
    U src/gnu/llvm/include/llvm/MC/MCInstrItineraries.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCSchedule.h
    U src/gnu/llvm/include/llvm/MC/MCObjectStreamer.h
    U src/gnu/llvm/include/llvm/MC/SectionKind.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCInstBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCSection.h
    U src/gnu/llvm/include/llvm/MC/MCSymbol.h
    U src/gnu/llvm/include/llvm/MC/MCContext.h
    U src/gnu/llvm/include/llvm/MC/MCInstrAnalysis.h
    U src/gnu/llvm/include/llvm/MC/MCMachObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCValue.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoDarwin.h
    U src/gnu/llvm/include/llvm/MC/MCSubtargetInfo.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCObjectFileInfo.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/MCTargetOptions.h
    U src/gnu/llvm/include/llvm/MC/MCCodeView.h
    U src/gnu/llvm/include/llvm/MC/MCAsmBackend.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolMachO.h
    U src/gnu/llvm/include/llvm/MC/MCExpr.h
    U src/gnu/llvm/include/llvm/MC/MCDirectives.h
    U src/gnu/llvm/include/llvm/MC/MCFixedLenDisassembler.h
    N src/gnu/llvm/include/llvm/MC/LaneBitmask.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfo.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h
    U src/gnu/llvm/include/llvm/MC/MCCodeEmitter.h
    U src/gnu/llvm/include/llvm/MC/MachineLocation.h
    U src/gnu/llvm/include/llvm/MC/MCSectionMachO.h
    U src/gnu/llvm/include/llvm/MC/MCFragment.h
    U src/gnu/llvm/include/llvm/MC/MCSectionCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCSectionELF.h
    U src/gnu/llvm/include/llvm/MC/MCInstrInfo.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoELF.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolCOFF.h
    U src/gnu/llvm/include/llvm/MC/SubtargetFeature.h
    U src/gnu/llvm/include/llvm/MC/MCAssembler.h
    U src/gnu/llvm/include/llvm/MC/MCInstPrinter.h
    U src/gnu/llvm/include/llvm/MC/MCInst.h
    U src/gnu/llvm/include/llvm/MC/MCLabel.h
    U src/gnu/llvm/include/llvm/MC/MCELFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCInstrDesc.h
    U src/gnu/llvm/include/llvm/MC/MCELFStreamer.h
    U src/gnu/llvm/include/llvm/MC/ConstantPools.h
    U src/gnu/llvm/include/llvm/MC/MCWinEH.h
    U src/gnu/llvm/include/llvm/MC/MCFixup.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmCond.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParser.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/MC/MCDisassembler/MCRelocationInfo.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
    U src/gnu/llvm/include/llvm/Support/Casting.h
    U src/gnu/llvm/include/llvm/Support/Format.h
    U src/gnu/llvm/include/llvm/Support/ELF.h
    U src/gnu/llvm/include/llvm/Support/SpecialCaseList.h
    U src/gnu/llvm/include/llvm/Support/Registry.h
    U src/gnu/llvm/include/llvm/Support/COM.h
    U src/gnu/llvm/include/llvm/Support/LICENSE.TXT
    U src/gnu/llvm/include/llvm/Support/TypeName.h
    U src/gnu/llvm/include/llvm/Support/StringSaver.h
    U src/gnu/llvm/include/llvm/Support/FormattedStream.h
    U src/gnu/llvm/include/llvm/Support/Compiler.h
    U src/gnu/llvm/include/llvm/Support/AtomicOrdering.h
    N src/gnu/llvm/include/llvm/Support/FormatCommon.h
    U src/gnu/llvm/include/llvm/Support/WindowsError.h
    N src/gnu/llvm/include/llvm/Support/Wasm.h
    U src/gnu/llvm/include/llvm/Support/RandomNumberGenerator.h
    U src/gnu/llvm/include/llvm/Support/CommandLine.h
    U src/gnu/llvm/include/llvm/Support/YAMLTraits.h
    N src/gnu/llvm/include/llvm/Support/TarWriter.h
    U src/gnu/llvm/include/llvm/Support/SwapByteOrder.h
    U src/gnu/llvm/include/llvm/Support/ARMEHABI.h
    U src/gnu/llvm/include/llvm/Support/Dwarf.def
    U src/gnu/llvm/include/llvm/Support/AlignOf.h
    N src/gnu/llvm/include/llvm/Support/Chrono.h
    U src/gnu/llvm/include/llvm/Support/AArch64TargetParser.def
    U src/gnu/llvm/include/llvm/Support/Options.h
    U src/gnu/llvm/include/llvm/Support/Memory.h
    U src/gnu/llvm/include/llvm/Support/Program.h
    U src/gnu/llvm/include/llvm/Support/Regex.h
    U src/gnu/llvm/include/llvm/Support/Valgrind.h
    U src/gnu/llvm/include/llvm/Support/Path.h
    U src/gnu/llvm/include/llvm/Support/Unicode.h
    U src/gnu/llvm/include/llvm/Support/UnicodeCharRanges.h
    U src/gnu/llvm/include/llvm/Support/COFF.h
    U src/gnu/llvm/include/llvm/Support/Printable.h
    U src/gnu/llvm/include/llvm/Support/Locale.h
    U src/gnu/llvm/include/llvm/Support/LineIterator.h
    U src/gnu/llvm/include/llvm/Support/Host.h
    U src/gnu/llvm/include/llvm/Support/ArrayRecycler.h
    U src/gnu/llvm/include/llvm/Support/ThreadLocal.h
    U src/gnu/llvm/include/llvm/Support/StringPool.h
    U src/gnu/llvm/include/llvm/Support/Capacity.h
    U src/gnu/llvm/include/llvm/Support/ErrorHandling.h
    U src/gnu/llvm/include/llvm/Support/ARMTargetParser.def
    U src/gnu/llvm/include/llvm/Support/Watchdog.h
    N src/gnu/llvm/include/llvm/Support/NativeFormatting.h
    U src/gnu/llvm/include/llvm/Support/raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/CodeGenCWrappers.h
    U src/gnu/llvm/include/llvm/Support/ToolOutputFile.h
    N src/gnu/llvm/include/llvm/Support/GlobPattern.h
    U src/gnu/llvm/include/llvm/Support/YAMLParser.h
    U src/gnu/llvm/include/llvm/Support/BlockFrequency.h
    U src/gnu/llvm/include/llvm/Support/SHA1.h
    U src/gnu/llvm/include/llvm/Support/DOTGraphTraits.h
    U src/gnu/llvm/include/llvm/Support/Win64EH.h
    U src/gnu/llvm/include/llvm/Support/UniqueLock.h
    U src/gnu/llvm/include/llvm/Support/ScaledNumber.h
    U src/gnu/llvm/include/llvm/Support/circular_raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/Signals.h
    U src/gnu/llvm/include/llvm/Support/TrailingObjects.h
    U src/gnu/llvm/include/llvm/Support/TargetRegistry.h
    U src/gnu/llvm/include/llvm/Support/type_traits.h
    N src/gnu/llvm/include/llvm/Support/FormatVariadicDetails.h
    U src/gnu/llvm/include/llvm/Support/ConvertUTF.h
    U src/gnu/llvm/include/llvm/Support/BranchProbability.h
    U src/gnu/llvm/include/llvm/Support/JamCRC.h
    U src/gnu/llvm/include/llvm/Support/DataExtractor.h
    U src/gnu/llvm/include/llvm/Support/PointerLikeTypeTraits.h
    U src/gnu/llvm/include/llvm/Support/MachO.h
    U src/gnu/llvm/include/llvm/Support/PrettyStackTrace.h
    U src/gnu/llvm/include/llvm/Support/Solaris.h
    U src/gnu/llvm/include/llvm/Support/raw_sha1_ostream.h
    U src/gnu/llvm/include/llvm/Support/Threading.h
    U src/gnu/llvm/include/llvm/Support/Recycler.h
    U src/gnu/llvm/include/llvm/Support/Compression.h
    U src/gnu/llvm/include/llvm/Support/SMLoc.h
    U src/gnu/llvm/include/llvm/Support/raw_os_ostream.h
    U src/gnu/llvm/include/llvm/Support/ARMWinEH.h
    U src/gnu/llvm/include/llvm/Support/thread.h
    U src/gnu/llvm/include/llvm/Support/Atomic.h
    U src/gnu/llvm/include/llvm/Support/CodeGen.h
    N src/gnu/llvm/include/llvm/Support/TrigramIndex.h
    U src/gnu/llvm/include/llvm/Support/FileOutputBuffer.h
    U src/gnu/llvm/include/llvm/Support/ARMBuildAttributes.h
    U src/gnu/llvm/include/llvm/Support/EndianStream.h
    U src/gnu/llvm/include/llvm/Support/Allocator.h
    U src/gnu/llvm/include/llvm/Support/DataTypes.h.cmake
    U src/gnu/llvm/include/llvm/Support/MD5.h
    U src/gnu/llvm/include/llvm/Support/FileSystem.h
    U src/gnu/llvm/include/llvm/Support/SaveAndRestore.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTree.h
    U src/gnu/llvm/include/llvm/Support/Errc.h
    U src/gnu/llvm/include/llvm/Support/OnDiskHashTable.h
    U src/gnu/llvm/include/llvm/Support/RecyclingAllocator.h
    U src/gnu/llvm/include/llvm/Support/MathExtras.h
    U src/gnu/llvm/include/llvm/Support/Debug.h
    U src/gnu/llvm/include/llvm/Support/CBindingWrapping.h
    U src/gnu/llvm/include/llvm/Support/SourceMgr.h
    U src/gnu/llvm/include/llvm/Support/MachO.def
    U src/gnu/llvm/include/llvm/Support/Process.h
    U src/gnu/llvm/include/llvm/Support/Dwarf.h
    U src/gnu/llvm/include/llvm/Support/ScopedPrinter.h
    U src/gnu/llvm/include/llvm/Support/CrashRecoveryContext.h
    U src/gnu/llvm/include/llvm/Support/Errno.h
    U src/gnu/llvm/include/llvm/Support/Endian.h
    N src/gnu/llvm/include/llvm/Support/xxhash.h
    U src/gnu/llvm/include/llvm/Support/GCOV.h
    U src/gnu/llvm/include/llvm/Support/MemoryBuffer.h
    U src/gnu/llvm/include/llvm/Support/TargetSelect.h
    U src/gnu/llvm/include/llvm/Support/RWMutex.h
    U src/gnu/llvm/include/llvm/Support/CachePruning.h
    U src/gnu/llvm/include/llvm/Support/ManagedStatic.h
    U src/gnu/llvm/include/llvm/Support/GraphWriter.h
    U src/gnu/llvm/include/llvm/Support/TargetParser.h
    U src/gnu/llvm/include/llvm/Support/PluginLoader.h
    U src/gnu/llvm/include/llvm/Support/MipsABIFlags.h
    U src/gnu/llvm/include/llvm/Support/ErrorOr.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTreeConstruction.h
    N src/gnu/llvm/include/llvm/Support/FormatAdapters.h
    N src/gnu/llvm/include/llvm/Support/FormatVariadic.h
    U src/gnu/llvm/include/llvm/Support/Timer.h
    U src/gnu/llvm/include/llvm/Support/SystemUtils.h
    U src/gnu/llvm/include/llvm/Support/ThreadPool.h
    U src/gnu/llvm/include/llvm/Support/FileUtilities.h
    U src/gnu/llvm/include/llvm/Support/Error.h
    U src/gnu/llvm/include/llvm/Support/LockFileManager.h
    U src/gnu/llvm/include/llvm/Support/Mutex.h
    U src/gnu/llvm/include/llvm/Support/DynamicLibrary.h
    N src/gnu/llvm/include/llvm/Support/FormatProviders.h
    U src/gnu/llvm/include/llvm/Support/MutexGuard.h
    U src/gnu/llvm/include/llvm/Support/LEB128.h
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AArch64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AVR.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Lanai.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Hexagon.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Mips.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/WebAssembly.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/SystemZ.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Sparc.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AMDGPU.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/ARM.def
    N src/gnu/llvm/include/llvm/Support/ELFRelocs/RISCV.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/BPF.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/i386.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/x86_64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC.def
    U src/gnu/llvm/include/llvm/ProfileData/ProfileCommon.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfData.inc
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProf.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProf.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/include/llvm/LineEditor/LineEditor.h
    U src/gnu/llvm/include/llvm/IRReader/IRReader.h
    U src/gnu/llvm/include/llvm/Passes/PassBuilder.h
    N src/gnu/llvm/include/llvm/LTO/LTOBackend.h
    U src/gnu/llvm/include/llvm/LTO/LTO.h
    N src/gnu/llvm/include/llvm/LTO/Caching.h
    N src/gnu/llvm/include/llvm/LTO/Config.h
    U src/gnu/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.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/LTOModule.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/TableGen/SearchableTable.td
    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/TableGenBackend.h
    U src/gnu/llvm/include/llvm/TableGen/StringToOffsetTable.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/Error.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionPass.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePostDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/SlotIndexes.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDFS.h
    U src/gnu/llvm/include/llvm/CodeGen/StackMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBasicBlock.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
    U src/gnu/llvm/include/llvm/CodeGen/DIE.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadata.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundle.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
    U src/gnu/llvm/include/llvm/CodeGen/DFAPacketizer.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
    U src/gnu/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
    U src/gnu/llvm/include/llvm/CodeGen/DIEValue.def
    U src/gnu/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
    U src/gnu/llvm/include/llvm/CodeGen/GCs.h
    U src/gnu/llvm/include/llvm/CodeGen/BasicTTIImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/EdgeBundles.h
    U src/gnu/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/AsmPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveInterval.h
    U src/gnu/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h
    U src/gnu/llvm/include/llvm/CodeGen/CallingConvLower.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/FastISel.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetPassConfig.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineValueType.h
    U src/gnu/llvm/include/llvm/CodeGen/SchedulerRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineMemOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/PseudoSourceValue.h
    U src/gnu/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstr.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/VirtRegMap.h
    U src/gnu/llvm/include/llvm/CodeGen/TailDuplicator.h
    U src/gnu/llvm/include/llvm/CodeGen/LexicalScopes.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/FaultMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/CalcSpillWeights.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterClassInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineScheduler.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.h
    U src/gnu/llvm/include/llvm/CodeGen/IntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/ISDOpcodes.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/RegAllocPBQP.h
    U src/gnu/llvm/include/llvm/CodeGen/LivePhysRegs.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetSchedule.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunction.h
    N src/gnu/llvm/include/llvm/CodeGen/LowLevelType.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRangeEdit.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineLoopInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterPressure.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
    U src/gnu/llvm/include/llvm/CodeGen/MachORelocation.h
    U src/gnu/llvm/include/llvm/CodeGen/CommandFlags.h
    U src/gnu/llvm/include/llvm/CodeGen/ParallelCG.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/Passes.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePassRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.td
    U src/gnu/llvm/include/llvm/CodeGen/MIRYamlMapping.h
    U src/gnu/llvm/include/llvm/CodeGen/Analysis.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegionInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveVariables.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFrameInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveStackAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/StackProtector.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterScavenging.h
    U src/gnu/llvm/include/llvm/CodeGen/GCStrategy.h
    U src/gnu/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRegMatrix.h
    U src/gnu/llvm/include/llvm/CodeGen/DAGCombine.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGISel.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Math.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/Solution.h
    N 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/MachineIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Types.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/GISelAccessor.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
    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/Arg.h
    U src/gnu/llvm/include/llvm/Option/OptParser.td
    U src/gnu/llvm/include/llvm/Option/ArgList.h
    U src/gnu/llvm/include/llvm/Option/Option.h
    U src/gnu/llvm/include/llvm/Config/llvm-config.h.cmake
    U src/gnu/llvm/include/llvm/Config/Targets.def.in
    U src/gnu/llvm/include/llvm/Config/AsmParsers.def.in
    U src/gnu/llvm/include/llvm/Config/Disassemblers.def.in
    N src/gnu/llvm/include/llvm/Config/abi-breaking.h.cmake
    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/ADT/ImmutableList.h
    U src/gnu/llvm/include/llvm/ADT/SetVector.h
    N src/gnu/llvm/include/llvm/ADT/ilist_base.h
    U src/gnu/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
    U src/gnu/llvm/include/llvm/ADT/APSInt.h
    U src/gnu/llvm/include/llvm/ADT/UniqueVector.h
    N src/gnu/llvm/include/llvm/ADT/AllocatorList.h
    U src/gnu/llvm/include/llvm/ADT/ScopedHashTable.h
    U src/gnu/llvm/include/llvm/ADT/DepthFirstIterator.h
    U src/gnu/llvm/include/llvm/ADT/Hashing.h
    U src/gnu/llvm/include/llvm/ADT/PackedVector.h
    U src/gnu/llvm/include/llvm/ADT/TinyPtrVector.h
    U src/gnu/llvm/include/llvm/ADT/edit_distance.h
    U src/gnu/llvm/include/llvm/ADT/VariadicFunction.h
    U src/gnu/llvm/include/llvm/ADT/StringSet.h
    U src/gnu/llvm/include/llvm/ADT/SmallPtrSet.h
    U src/gnu/llvm/include/llvm/ADT/iterator.h
    U src/gnu/llvm/include/llvm/ADT/APFloat.h
    U src/gnu/llvm/include/llvm/ADT/Optional.h
    U src/gnu/llvm/include/llvm/ADT/SCCIterator.h
    U src/gnu/llvm/include/llvm/ADT/STLExtras.h
    N src/gnu/llvm/include/llvm/ADT/CachedHashString.h
    U src/gnu/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
    N src/gnu/llvm/include/llvm/ADT/ScopeExit.h
    U src/gnu/llvm/include/llvm/ADT/FoldingSet.h
    U src/gnu/llvm/include/llvm/ADT/SmallSet.h
    U src/gnu/llvm/include/llvm/ADT/Triple.h
    U src/gnu/llvm/include/llvm/ADT/IndexedMap.h
    U src/gnu/llvm/include/llvm/ADT/Statistic.h
    N src/gnu/llvm/include/llvm/ADT/ilist_iterator.h
    U src/gnu/llvm/include/llvm/ADT/DenseSet.h
    U src/gnu/llvm/include/llvm/ADT/EpochTracker.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node.h
    U src/gnu/llvm/include/llvm/ADT/SmallVector.h
    U src/gnu/llvm/include/llvm/ADT/GraphTraits.h
    U src/gnu/llvm/include/llvm/ADT/Twine.h
    U src/gnu/llvm/include/llvm/ADT/None.h
    U src/gnu/llvm/include/llvm/ADT/SmallString.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/ImmutableMap.h
    U src/gnu/llvm/include/llvm/ADT/PointerEmbeddedInt.h
    U src/gnu/llvm/include/llvm/ADT/ilist.h
    U src/gnu/llvm/include/llvm/ADT/IntervalMap.h
    U src/gnu/llvm/include/llvm/ADT/StringSwitch.h
    U src/gnu/llvm/include/llvm/ADT/StringRef.h
    U src/gnu/llvm/include/llvm/ADT/PriorityWorklist.h
    U src/gnu/llvm/include/llvm/ADT/Sequence.h
    U src/gnu/llvm/include/llvm/ADT/DenseMapInfo.h
    U src/gnu/llvm/include/llvm/ADT/iterator_range.h
    U src/gnu/llvm/include/llvm/ADT/SmallBitVector.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableSet.h
    N src/gnu/llvm/include/llvm/ADT/ilist_node_options.h
    U src/gnu/llvm/include/llvm/ADT/BitmaskEnum.h
    U src/gnu/llvm/include/llvm/ADT/SetOperations.h
    U src/gnu/llvm/include/llvm/ADT/PointerSumType.h
    U src/gnu/llvm/include/llvm/ADT/SparseSet.h
    U src/gnu/llvm/include/llvm/ADT/StringMap.h
    U src/gnu/llvm/include/llvm/ADT/PriorityQueue.h
    N src/gnu/llvm/include/llvm/ADT/ilist_node_base.h
    N src/gnu/llvm/include/llvm/ADT/simple_ilist.h
    U src/gnu/llvm/include/llvm/ADT/MapVector.h
    U src/gnu/llvm/include/llvm/ADT/PointerIntPair.h
    U src/gnu/llvm/include/llvm/ADT/DenseMap.h
    U src/gnu/llvm/include/llvm/ADT/PostOrderIterator.h
    U src/gnu/llvm/include/llvm/ADT/EquivalenceClasses.h
    U src/gnu/llvm/include/llvm/ADT/StringExtras.h
    U src/gnu/llvm/include/llvm/ADT/BitVector.h
    U src/gnu/llvm/include/llvm/ADT/SparseBitVector.h
    U src/gnu/llvm/include/llvm/ADT/SparseMultiSet.h
    U src/gnu/llvm/include/llvm/ADT/IntEqClasses.h
    U src/gnu/llvm/include/llvm/ADT/PointerUnion.h
    U src/gnu/llvm/include/llvm/ADT/DeltaAlgorithm.h
    N src/gnu/llvm/include/llvm/XRay/XRayRecord.h
    N src/gnu/llvm/include/llvm/XRay/YAMLXRayRecord.h
    N src/gnu/llvm/include/llvm/XRay/Trace.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/Analysis/CGSCCPassManagerTest.cpp
    N src/gnu/llvm/unittests/Analysis/BranchProbabilityInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/UnrollAnalyzer.cpp
    U src/gnu/llvm/unittests/Analysis/CFGTest.cpp
    N src/gnu/llvm/unittests/Analysis/MemoryBuiltinsTest.cpp
    U src/gnu/llvm/unittests/Analysis/CMakeLists.txt
    U src/gnu/llvm/unittests/Analysis/CallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
    U src/gnu/llvm/unittests/Analysis/ValueTrackingTest.cpp
    U src/gnu/llvm/unittests/Analysis/LazyCallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/AliasAnalysisTest.cpp
    N src/gnu/llvm/unittests/Analysis/TBAATest.cpp
    U src/gnu/llvm/unittests/Analysis/BlockFrequencyInfoTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/CMakeLists.txt
    U src/gnu/llvm/unittests/Bitcode/BitstreamReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitstreamWriterTest.cpp
    U src/gnu/llvm/unittests/Transforms/CMakeLists.txt
    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/Cloning.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ASanStackFrameLayoutTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/MemorySSA.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/Local.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/CMakeLists.txt
    N src/gnu/llvm/unittests/Transforms/Utils/FunctionComparator.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp
    N src/gnu/llvm/unittests/Transforms/Scalar/CMakeLists.txt
    N src/gnu/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp
    N src/gnu/llvm/unittests/Target/CMakeLists.txt
    N src/gnu/llvm/unittests/Target/AArch64/InstSizes.cpp
    N src/gnu/llvm/unittests/Target/AArch64/CMakeLists.txt
    N src/gnu/llvm/unittests/Object/CMakeLists.txt
    N 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/MCJITMemoryManagerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTests.def
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectTransformLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/GlobalMappingLayerTest.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/OrcCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectLinkingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CompileOnDemandLayerTest.cpp
    U src/gnu/llvm/unittests/IR/UserTest.cpp
    U src/gnu/llvm/unittests/IR/InstructionsTest.cpp
    U src/gnu/llvm/unittests/IR/DebugTypeODRUniquingTest.cpp
    U src/gnu/llvm/unittests/IR/WaymarkTest.cpp
    U src/gnu/llvm/unittests/IR/IRBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantRangeTest.cpp
    U src/gnu/llvm/unittests/IR/IntrinsicsTest.cpp
    U src/gnu/llvm/unittests/IR/ValueMapTest.cpp
    U src/gnu/llvm/unittests/IR/TypeBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/MDBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/ValueTest.cpp
    U src/gnu/llvm/unittests/IR/AsmWriterTest.cpp
    U src/gnu/llvm/unittests/IR/MetadataTest.cpp
    U src/gnu/llvm/unittests/IR/PassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/UseTest.cpp
    U src/gnu/llvm/unittests/IR/FunctionTest.cpp
    U src/gnu/llvm/unittests/IR/DominatorTreeTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantsTest.cpp
    U src/gnu/llvm/unittests/IR/DebugInfoTest.cpp
    U src/gnu/llvm/unittests/IR/LegacyPassManagerTest.cpp
    N src/gnu/llvm/unittests/IR/ModuleTest.cpp
    U src/gnu/llvm/unittests/IR/VerifierTest.cpp
    U src/gnu/llvm/unittests/IR/CMakeLists.txt
    U src/gnu/llvm/unittests/IR/AttributesTest.cpp
    U src/gnu/llvm/unittests/IR/PatternMatch.cpp
    U src/gnu/llvm/unittests/IR/TypesTest.cpp
    U src/gnu/llvm/unittests/IR/ValueHandleTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CMakeLists.txt
    N src/gnu/llvm/unittests/DebugInfo/PDB/MSFBuilderTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/ErrorChecking.h
    U src/gnu/llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
    N src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp
    N src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.h
    U src/gnu/llvm/unittests/DebugInfo/DWARF/CMakeLists.txt
    N src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp
    U src/gnu/llvm/unittests/Linker/LinkModulesTest.cpp
    U src/gnu/llvm/unittests/Linker/CMakeLists.txt
    U src/gnu/llvm/unittests/ObjectYAML/YAMLTest.cpp
    U src/gnu/llvm/unittests/ObjectYAML/CMakeLists.txt
    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
    N src/gnu/llvm/unittests/Support/GlobPatternTest.cpp
    N src/gnu/llvm/unittests/Support/TrigramIndexTest.cpp
    N src/gnu/llvm/unittests/Support/Host.cpp
    U src/gnu/llvm/unittests/Support/raw_sha1_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/ReplaceFileTest.cpp
    U src/gnu/llvm/unittests/Support/StringPool.cpp
    N src/gnu/llvm/unittests/Support/Chrono.cpp
    U src/gnu/llvm/unittests/Support/AlignOfTest.cpp
    U src/gnu/llvm/unittests/Support/SpecialCaseListTest.cpp
    U src/gnu/llvm/unittests/Support/ProcessTest.cpp
    U src/gnu/llvm/unittests/Support/BranchProbabilityTest.cpp
    U src/gnu/llvm/unittests/Support/DataExtractorTest.cpp
    U src/gnu/llvm/unittests/Support/UnicodeTest.cpp
    U src/gnu/llvm/unittests/Support/Path.cpp
    U src/gnu/llvm/unittests/Support/MemoryBufferTest.cpp
    U src/gnu/llvm/unittests/Support/ErrorTest.cpp
    U src/gnu/llvm/unittests/Support/TypeNameTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLIOTest.cpp
    U src/gnu/llvm/unittests/Support/FileOutputBufferTest.cpp
    N src/gnu/llvm/unittests/Support/TarWriterTest.cpp
    U src/gnu/llvm/unittests/Support/ArrayRecyclerTest.cpp
    U src/gnu/llvm/unittests/Support/AllocatorTest.cpp
    U src/gnu/llvm/unittests/Support/ErrorOrTest.cpp
    U src/gnu/llvm/unittests/Support/CompressionTest.cpp
    U src/gnu/llvm/unittests/Support/raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/MD5Test.cpp
    U src/gnu/llvm/unittests/Support/TimerTest.cpp
    U src/gnu/llvm/unittests/Support/RegexTest.cpp
    U src/gnu/llvm/unittests/Support/MathExtrasTest.cpp
    N src/gnu/llvm/unittests/Support/DebugTest.cpp
    N src/gnu/llvm/unittests/Support/xxhashTest.cpp
    U src/gnu/llvm/unittests/Support/CMakeLists.txt
    U src/gnu/llvm/unittests/Support/Casting.cpp
    U src/gnu/llvm/unittests/Support/TrailingObjectsTest.cpp
    N src/gnu/llvm/unittests/Support/NativeFormatTests.cpp
    U src/gnu/llvm/unittests/Support/raw_pwrite_stream_test.cpp
    U src/gnu/llvm/unittests/Support/BlockFrequencyTest.cpp
    U src/gnu/llvm/unittests/Support/ConvertUTFTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadLocalTest.cpp
    U src/gnu/llvm/unittests/Support/LineIteratorTest.cpp
    N src/gnu/llvm/unittests/Support/FormatVariadicTest.cpp
    U src/gnu/llvm/unittests/Support/SwapByteOrderTest.cpp
    U src/gnu/llvm/unittests/Support/CommandLineTest.cpp
    U src/gnu/llvm/unittests/Support/formatted_raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/SourceMgrTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLParserTest.cpp
    U src/gnu/llvm/unittests/Support/ManagedStatic.cpp
    U src/gnu/llvm/unittests/Support/LockFileManagerTest.cpp
    U src/gnu/llvm/unittests/Support/TargetParserTest.cpp
    U src/gnu/llvm/unittests/Support/MemoryTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadPool.cpp
    U src/gnu/llvm/unittests/Support/DwarfTest.cpp
    U src/gnu/llvm/unittests/Support/LEB128Test.cpp
    U src/gnu/llvm/unittests/Support/EndianTest.cpp
    N src/gnu/llvm/unittests/Support/Threading.cpp
    U src/gnu/llvm/unittests/Support/ProgramTest.cpp
    U src/gnu/llvm/unittests/Support/EndianStreamTest.cpp
    U src/gnu/llvm/unittests/Support/ScaledNumberTest.cpp
    U src/gnu/llvm/unittests/ProfileData/SampleProfTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CoverageMappingTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CMakeLists.txt
    U src/gnu/llvm/unittests/ProfileData/InstrProfTest.cpp
    U src/gnu/llvm/unittests/LineEditor/LineEditor.cpp
    U src/gnu/llvm/unittests/LineEditor/CMakeLists.txt
    U src/gnu/llvm/unittests/AsmParser/AsmParserTest.cpp
    U src/gnu/llvm/unittests/AsmParser/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/CMakeLists.txt
    N src/gnu/llvm/unittests/CodeGen/LowLevelTypeTest.cpp
    N src/gnu/llvm/unittests/CodeGen/MachineInstrBundleIteratorTest.cpp
    U src/gnu/llvm/unittests/CodeGen/DIEHashTest.cpp
    N src/gnu/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp
    N src/gnu/llvm/unittests/CodeGen/GlobalISel/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
    U src/gnu/llvm/unittests/MI/CMakeLists.txt
    U src/gnu/llvm/unittests/MI/LiveIntervalTest.cpp
    U src/gnu/llvm/unittests/ADT/TwineTest.cpp
    N src/gnu/llvm/unittests/ADT/IListBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/PackedVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableSetTest.cpp
    U src/gnu/llvm/unittests/ADT/OptionalTest.cpp
    N src/gnu/llvm/unittests/ADT/TestGraph.h
    U src/gnu/llvm/unittests/ADT/FoldingSet.cpp
    U src/gnu/llvm/unittests/ADT/PointerUnionTest.cpp
    U src/gnu/llvm/unittests/ADT/HashingTest.cpp
    U src/gnu/llvm/unittests/ADT/APSIntTest.cpp
    N src/gnu/llvm/unittests/ADT/STLExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/IntervalMapTest.cpp
    U src/gnu/llvm/unittests/ADT/BitmaskEnumTest.cpp
    U src/gnu/llvm/unittests/ADT/PostOrderIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/RangeAdapterTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallPtrSetTest.cpp
    U src/gnu/llvm/unittests/ADT/MakeUniqueTest.cpp
    U src/gnu/llvm/unittests/ADT/APFloatTest.cpp
    U src/gnu/llvm/unittests/ADT/PriorityWorklistTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallStringTest.cpp
    N src/gnu/llvm/unittests/ADT/IListTest.cpp
    N src/gnu/llvm/unittests/ADT/ScopeExitTest.cpp
    N src/gnu/llvm/unittests/ADT/IListSentinelTest.cpp
    U src/gnu/llvm/unittests/ADT/SCCIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerEmbeddedIntTest.cpp
    U src/gnu/llvm/unittests/ADT/TripleTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseMultiSetTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseSetTest.cpp
    N src/gnu/llvm/unittests/ADT/StringSwitchTest.cpp
    U src/gnu/llvm/unittests/ADT/StringMapTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerSumTypeTest.cpp
    N src/gnu/llvm/unittests/ADT/SimpleIListTest.cpp
    U src/gnu/llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp
    N src/gnu/llvm/unittests/ADT/IListNodeTest.cpp
    N src/gnu/llvm/unittests/ADT/IListNodeBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/SequenceTest.cpp
    N src/gnu/llvm/unittests/ADT/IListIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerIntPairTest.cpp
    U src/gnu/llvm/unittests/ADT/FunctionRefTest.cpp
    U src/gnu/llvm/unittests/ADT/IntEqClassesTest.cpp
    U src/gnu/llvm/unittests/ADT/TinyPtrVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SetVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/StringRefTest.cpp
    U src/gnu/llvm/unittests/ADT/CMakeLists.txt
    U src/gnu/llvm/unittests/ADT/ArrayRefTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseMapTest.cpp
    U src/gnu/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseBitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseSetTest.cpp
    N src/gnu/llvm/unittests/ADT/ReverseIterationTest.cpp
    U src/gnu/llvm/unittests/ADT/APIntTest.cpp
    U src/gnu/llvm/unittests/ADT/MapVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallVectorTest.cpp
    N src/gnu/llvm/unittests/ADT/BumpPtrListTest.cpp
    N src/gnu/llvm/unittests/ADT/DepthFirstIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/VariadicFunctionTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableMapTest.cpp
    U src/gnu/llvm/unittests/ADT/DeltaAlgorithmTest.cpp
    N src/gnu/llvm/unittests/ADT/IteratorTest.cpp
    N src/gnu/llvm/unittests/ADT/StringExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/BitVectorTest.cpp
    U src/gnu/llvm/docs/ARM-BE-ld1.png
    U src/gnu/llvm/docs/Passes.rst
    U src/gnu/llvm/docs/Statepoints.rst
    U src/gnu/llvm/docs/ExceptionHandling.rst
    U src/gnu/llvm/docs/Projects.rst
    U src/gnu/llvm/docs/SphinxQuickstartTemplate.rst
    U src/gnu/llvm/docs/CodeOfConduct.rst
    U src/gnu/llvm/docs/ARM-BE-ldr.png
    U src/gnu/llvm/docs/MCJIT-resolve-relocations.png
    U src/gnu/llvm/docs/linpack-pc.png
    U src/gnu/llvm/docs/ExtendingLLVM.rst
    U src/gnu/llvm/docs/index.rst
    U src/gnu/llvm/docs/README.txt
    U src/gnu/llvm/docs/AdvancedBuilds.rst
    U src/gnu/llvm/docs/SystemLibrary.rst
    U src/gnu/llvm/docs/CoverageMappingFormat.rst
    U src/gnu/llvm/docs/ProgrammersManual.rst
    U src/gnu/llvm/docs/make.bat
    U src/gnu/llvm/docs/doxygen-mainpage.dox
    U src/gnu/llvm/docs/MergeFunctions.rst
    U src/gnu/llvm/docs/HowToUseAttributes.rst
    U src/gnu/llvm/docs/HowToReleaseLLVM.rst
    U src/gnu/llvm/docs/WritingAnLLVMPass.rst
    U src/gnu/llvm/docs/FAQ.rst
    U src/gnu/llvm/docs/InAlloca.rst
    U src/gnu/llvm/docs/TypeMetadata.rst
    U src/gnu/llvm/docs/ReportingGuide.rst
    U src/gnu/llvm/docs/BlockFrequencyTerminology.rst
    U src/gnu/llvm/docs/HowToBuildOnARM.rst
    U src/gnu/llvm/docs/BitCodeFormat.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastfail.png
    U src/gnu/llvm/docs/DeveloperPolicy.rst
    U src/gnu/llvm/docs/Packaging.rst
    U src/gnu/llvm/docs/AliasAnalysis.rst
    U src/gnu/llvm/docs/MCJITDesignAndImplementation.rst
    U src/gnu/llvm/docs/ReleaseProcess.rst
    N src/gnu/llvm/docs/OptBisect.rst
    U src/gnu/llvm/docs/CodingStandards.rst
    U src/gnu/llvm/docs/Lexicon.rst
    U src/gnu/llvm/docs/re_format.7
    U src/gnu/llvm/docs/gcc-loops.png
    U src/gnu/llvm/docs/Makefile.sphinx
    U src/gnu/llvm/docs/LibFuzzer.rst
    U src/gnu/llvm/docs/TableGenFundamentals.rst
    U src/gnu/llvm/docs/MCJIT-creation.png
    U src/gnu/llvm/docs/GarbageCollection.rst
    U src/gnu/llvm/docs/SegmentedStacks.rst
    U src/gnu/llvm/docs/NVPTXUsage.rst
    U src/gnu/llvm/docs/SourceLevelDebugging.rst
    U src/gnu/llvm/docs/MCJIT-dyld-load.png
    U src/gnu/llvm/docs/MarkedUpDisassembly.rst
    U src/gnu/llvm/docs/ScudoHardenedAllocator.rst
    U src/gnu/llvm/docs/Extensions.rst
    U src/gnu/llvm/docs/HowToAddABuilder.rst
    U src/gnu/llvm/docs/GoldPlugin.rst
    U src/gnu/llvm/docs/MIRLangRef.rst
    N src/gnu/llvm/docs/XRay.rst
    U src/gnu/llvm/docs/MCJIT-load.png
    U src/gnu/llvm/docs/CMakePrimer.rst
    U src/gnu/llvm/docs/HowToSubmitABug.rst
    U src/gnu/llvm/docs/DebuggingJITedCode.rst
    U src/gnu/llvm/docs/Phabricator.rst
    U src/gnu/llvm/docs/FaultMaps.rst
    U src/gnu/llvm/docs/LLVMBuild.rst
    U src/gnu/llvm/docs/CompileCudaWithLLVM.rst
    U src/gnu/llvm/docs/CompilerWriterInfo.rst
    U src/gnu/llvm/docs/yaml2obj.rst
    N src/gnu/llvm/docs/GlobalISel.rst
    U src/gnu/llvm/docs/YamlIO.rst
    U src/gnu/llvm/docs/TestingGuide.rst
    U src/gnu/llvm/docs/GetElementPtr.rst
    U src/gnu/llvm/docs/StackMaps.rst
    U src/gnu/llvm/docs/TestSuiteMakefileGuide.rst
    N src/gnu/llvm/docs/MemorySSA.rst
    U src/gnu/llvm/docs/MCJIT-load-object.png
    U src/gnu/llvm/docs/BigEndianNEON.rst
    U src/gnu/llvm/docs/CMake.rst
    U src/gnu/llvm/docs/Dummy.html
    U src/gnu/llvm/docs/CMakeLists.txt
    U src/gnu/llvm/docs/ExtendedIntegerResults.txt
    U src/gnu/llvm/docs/conf.py
    U src/gnu/llvm/docs/WritingAnLLVMBackend.rst
    U src/gnu/llvm/docs/doxygen.cfg.in
    U src/gnu/llvm/docs/Bugpoint.rst
    U src/gnu/llvm/docs/AMDGPUUsage.rst
    U src/gnu/llvm/docs/CodeGenerator.rst
    U src/gnu/llvm/docs/CommandLine.rst
    U src/gnu/llvm/docs/LangRef.rst
    U src/gnu/llvm/docs/LinkTimeOptimization.rst
    U src/gnu/llvm/docs/MCJIT-engine-builder.png
    U src/gnu/llvm/docs/HowToCrossCompileLLVM.rst
    U src/gnu/llvm/docs/ReleaseNotes.rst
    U src/gnu/llvm/docs/BranchWeightMetadata.rst
    U src/gnu/llvm/docs/Atomics.rst
    U src/gnu/llvm/docs/HowToSetUpLLVMStyleRTTI.rst
    U src/gnu/llvm/docs/Vectorizers.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastsuccess.png
    U src/gnu/llvm/docs/LLVMBuild.txt
    N src/gnu/llvm/docs/Coroutines.rst
    U src/gnu/llvm/docs/HowToUseInstrMappings.rst
    U src/gnu/llvm/docs/GettingStartedVS.rst
    U src/gnu/llvm/docs/GettingStarted.rst
    N src/gnu/llvm/docs/PDB/TpiStream.rst
    N src/gnu/llvm/docs/PDB/CodeViewTypes.rst
    N src/gnu/llvm/docs/PDB/index.rst
    N src/gnu/llvm/docs/PDB/PdbStream.rst
    N src/gnu/llvm/docs/PDB/HashStream.rst
    N src/gnu/llvm/docs/PDB/MsfFile.rst
    N src/gnu/llvm/docs/PDB/DbiStream.rst
    N src/gnu/llvm/docs/PDB/GlobalStream.rst
    N src/gnu/llvm/docs/PDB/ModiStream.rst
    N src/gnu/llvm/docs/PDB/CodeViewSymbols.rst
    N src/gnu/llvm/docs/PDB/PublicStream.rst
    U src/gnu/llvm/docs/_ocamldoc/style.css
    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
    N src/gnu/llvm/docs/Proposals/GitHubMove.rst
    U src/gnu/llvm/docs/Frontend/PerformanceTips.rst
    U src/gnu/llvm/docs/CommandGuide/FileCheck.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
    U src/gnu/llvm/docs/CommandGuide/index.rst
    U src/gnu/llvm/docs/CommandGuide/llc.rst
    U src/gnu/llvm/docs/CommandGuide/lit.rst
    U src/gnu/llvm/docs/CommandGuide/tblgen.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dwarfdump.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dis.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-symbolizer.rst
    U src/gnu/llvm/docs/CommandGuide/lli.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-extract.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-config.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/opt.rst
    U src/gnu/llvm/docs/CommandGuide/bugpoint.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-diff.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-ar.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-link.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-bcanalyzer.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-lib.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-nm.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-stress.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-as.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-profdata.rst
    U src/gnu/llvm/docs/_static/lines.gif
    U src/gnu/llvm/docs/_static/llvm.css
    U src/gnu/llvm/docs/tutorial/BuildingAJIT1.rst
    U src/gnu/llvm/docs/tutorial/LangImpl07.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05-cfg.png
    U src/gnu/llvm/docs/tutorial/index.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05.rst
    U src/gnu/llvm/docs/tutorial/LangImpl03.rst
    U src/gnu/llvm/docs/tutorial/LangImpl10.rst
    U src/gnu/llvm/docs/tutorial/LangImpl01.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT5.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl3.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT4.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl2.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl8.rst
    U src/gnu/llvm/docs/tutorial/LangImpl04.rst
    U src/gnu/llvm/docs/tutorial/LangImpl02.rst
    U src/gnu/llvm/docs/tutorial/LangImpl09.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl6.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl7.rst
    U src/gnu/llvm/docs/tutorial/LangImpl08.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl4.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT2.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl5.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT3.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl1.rst
    U src/gnu/llvm/docs/tutorial/LangImpl06.rst
    U src/gnu/llvm/docs/_templates/layout.html
    U src/gnu/llvm/docs/_templates/indexsidebar.html
    U src/gnu/llvm/docs/TableGen/index.rst
    U src/gnu/llvm/docs/TableGen/LangIntro.rst
    U src/gnu/llvm/docs/TableGen/Deficiencies.rst
    U src/gnu/llvm/docs/TableGen/LangRef.rst
    U src/gnu/llvm/docs/TableGen/BackEnds.rst
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-25-Reoptimizer1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-26-Reoptimizer2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-MeetingSummary.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-04-16-DynamicCompilation.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-05-12-InstListChange.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-01-31-UniversalIRIdea.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/2001-05-19-ExceptionResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-20-.NET-Differences.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-EncodingIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp4.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebate.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-07-06-LoweringIRForCodeGen.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveCommentsResponse.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-02-09-AdveComments.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-Memory.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-01-23-CygwinNotes.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeasResp.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-MemoryResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations.txt
    U src/gnu/llvm/lib/CMakeLists.txt
    U src/gnu/llvm/lib/LLVMBuild.txt
    N src/gnu/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/GlobalsModRef.cpp
    U src/gnu/llvm/lib/Analysis/Loads.cpp
    U src/gnu/llvm/lib/Analysis/LoopAccessAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/VectorUtils.cpp
    U src/gnu/llvm/lib/Analysis/EHPersonalities.cpp
    U src/gnu/llvm/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/lib/Analysis/CFG.cpp
    U src/gnu/llvm/lib/Analysis/IntervalPartition.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolution.cpp
    U src/gnu/llvm/lib/Analysis/DominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/ScopedNoAliasAA.cpp
    U src/gnu/llvm/lib/Analysis/README.txt
    N src/gnu/llvm/lib/Analysis/LoopAnalysisManager.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ValueTracking.cpp
    U src/gnu/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
    U src/gnu/llvm/lib/Analysis/CallPrinter.cpp
    U src/gnu/llvm/lib/Analysis/Interval.cpp
    U src/gnu/llvm/lib/Analysis/BranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/CGSCCPassManager.cpp
    U src/gnu/llvm/lib/Analysis/CostModel.cpp
    U src/gnu/llvm/lib/Analysis/RegionInfo.cpp
    U src/gnu/llvm/lib/Analysis/Trace.cpp
    U src/gnu/llvm/lib/Analysis/MemDepPrinter.cpp
    U src/gnu/llvm/lib/Analysis/RegionPass.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
    U src/gnu/llvm/lib/Analysis/LoopPass.cpp
    U src/gnu/llvm/lib/Analysis/TypeMetadataUtils.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCInstKind.cpp
    U src/gnu/llvm/lib/Analysis/LoopInfo.cpp
    U src/gnu/llvm/lib/Analysis/DivergenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
    U src/gnu/llvm/lib/Analysis/LazyCallGraph.cpp
    U src/gnu/llvm/lib/Analysis/OrderedBasicBlock.cpp
    U src/gnu/llvm/lib/Analysis/PostDominators.cpp
    U src/gnu/llvm/lib/Analysis/Delinearization.cpp
    U src/gnu/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/RegionPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ProfileSummaryInfo.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
    U src/gnu/llvm/lib/Analysis/SparsePropagation.cpp
    U src/gnu/llvm/lib/Analysis/MemoryBuiltins.cpp
    U src/gnu/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/StratifiedSets.h
    U src/gnu/llvm/lib/Analysis/Lint.cpp
    U src/gnu/llvm/lib/Analysis/BasicAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/DependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/Analysis.cpp
    U src/gnu/llvm/lib/Analysis/TargetLibraryInfo.cpp
    U src/gnu/llvm/lib/Analysis/MemDerefPrinter.cpp
    U src/gnu/llvm/lib/Analysis/PtrUseVisitor.cpp
    U src/gnu/llvm/lib/Analysis/DemandedBits.cpp
    U src/gnu/llvm/lib/Analysis/AssumptionCache.cpp
    U src/gnu/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.h
    U src/gnu/llvm/lib/Analysis/TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Analysis/PHITransAddr.cpp
    U src/gnu/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/IVUsers.cpp
    U src/gnu/llvm/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/CFGPrinter.cpp
    U src/gnu/llvm/lib/Analysis/InstCount.cpp
    U src/gnu/llvm/lib/Analysis/InstructionSimplify.cpp
    U src/gnu/llvm/lib/Analysis/LazyValueInfo.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.cpp
    U src/gnu/llvm/lib/Analysis/CodeMetrics.cpp
    U src/gnu/llvm/lib/Analysis/DomPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
    U src/gnu/llvm/lib/Analysis/InlineCost.cpp
    U src/gnu/llvm/lib/Analysis/ConstantFolding.cpp
    U src/gnu/llvm/lib/Analysis/AliasSetTracker.cpp
    U src/gnu/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
    U src/gnu/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CFLGraph.h
    U src/gnu/llvm/lib/Analysis/MemoryLocation.cpp
    U src/gnu/llvm/lib/Analysis/CaptureTracking.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/LLVMBuild.txt
    U src/gnu/llvm/lib/Analysis/CallGraphSCCPass.cpp
    U src/gnu/llvm/lib/Bitcode/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
    N src/gnu/llvm/lib/Bitcode/Reader/MetadataLoader.h
    U src/gnu/llvm/lib/Bitcode/Reader/BitReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/CMakeLists.txt
    N src/gnu/llvm/lib/Bitcode/Reader/ValueList.h
    N src/gnu/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/LLVMBuild.txt
    N src/gnu/llvm/lib/Bitcode/Reader/ValueList.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.h
    U src/gnu/llvm/lib/Bitcode/Writer/BitWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/IPO/InlineSimple.cpp
    U src/gnu/llvm/lib/Transforms/IPO/MergeFunctions.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SampleProfile.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Internalize.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalOpt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LoopExtractor.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripSymbols.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/FunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPO.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalDCE.cpp
    U src/gnu/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
    N src/gnu/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/IPO/Inliner.cpp
    N src/gnu/llvm/lib/Transforms/IPO/GlobalSplit.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
    N src/gnu/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
    U src/gnu/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
    U src/gnu/llvm/lib/Transforms/IPO/FunctionImport.cpp
    U src/gnu/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ConstantMerge.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ExtractGV.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
    U src/gnu/llvm/lib/Transforms/Instrumentation/CFGMST.h
    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/EfficiencySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    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/InstCombineSimplifyDemanded.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    U src/gnu/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
    N src/gnu/llvm/lib/Transforms/Coroutines/CoroInternal.h
    N src/gnu/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
    N src/gnu/llvm/lib/Transforms/Coroutines/CoroInstr.h
    N src/gnu/llvm/lib/Transforms/Coroutines/CoroElide.cpp
    N src/gnu/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
    N src/gnu/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
    N src/gnu/llvm/lib/Transforms/Coroutines/CMakeLists.txt
    N src/gnu/llvm/lib/Transforms/Coroutines/Coroutines.cpp
    N src/gnu/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
    N src/gnu/llvm/lib/Transforms/Coroutines/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SplitModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerInvoke.cpp
    N src/gnu/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ModuleUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LCSSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneFunction.cpp
    U src/gnu/llvm/lib/Transforms/Utils/MemorySSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopVersioning.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnroll.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Mem2Reg.cpp
    U src/gnu/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Evaluator.cpp
    N src/gnu/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SSAUpdater.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Local.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
    U src/gnu/llvm/lib/Transforms/Utils/MetaRenamer.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SanitizerStats.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
    U src/gnu/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Utils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/GlobalStatus.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerSwitch.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
    N src/gnu/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Utils/InstructionNamer.cpp
    N src/gnu/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CodeExtractor.cpp
    N src/gnu/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CtorUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUtils.cpp
    N src/gnu/llvm/lib/Transforms/Utils/FunctionComparator.cpp
    N src/gnu/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FlattenCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ValueMapper.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Utils/InlineFunction.cpp
    U src/gnu/llvm/lib/Transforms/Hello/Hello.exports
    U src/gnu/llvm/lib/Transforms/Hello/Hello.cpp
    U src/gnu/llvm/lib/Transforms/Hello/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/Vectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
    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/ProvenanceAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Scalar/Reassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Float2Int.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantProp.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/NewGVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GuardWidening.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRotation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/BDCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalar.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SCCP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalarizer.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Sink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ADCE.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/LoadCombine.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SROA.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/JumpThreading.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/LoopSink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Scalar/GVNHoist.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
    U src/gnu/llvm/lib/LibDriver/LibDriver.cpp
    U src/gnu/llvm/lib/LibDriver/CMakeLists.txt
    U src/gnu/llvm/lib/LibDriver/Options.td
    U src/gnu/llvm/lib/LibDriver/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/README.txt
    U src/gnu/llvm/lib/Target/Target.cpp
    U src/gnu/llvm/lib/Target/TargetMachineC.cpp
    U src/gnu/llvm/lib/Target/TargetIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/TargetLoweringObjectFile.cpp
    U src/gnu/llvm/lib/Target/CMakeLists.txt
    U src/gnu/llvm/lib/Target/TargetMachine.cpp
    U src/gnu/llvm/lib/Target/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.h
    N src/gnu/llvm/lib/Target/AVR/README.md
    N src/gnu/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.h
    N src/gnu/llvm/lib/Target/AVR/AVRDevices.td
    N src/gnu/llvm/lib/Target/AVR/AVRISelLowering.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.cpp
    N src/gnu/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.h
    N src/gnu/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVR.h
    U src/gnu/llvm/lib/Target/AVR/AVRCallingConv.td
    N src/gnu/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRISelLowering.h
    N src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.h
    U src/gnu/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.h
    U src/gnu/llvm/lib/Target/AVR/TODO.md
    U src/gnu/llvm/lib/Target/AVR/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrFormats.td
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.td
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
    N src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AVR/AVR.td
    U src/gnu/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.td
    U src/gnu/llvm/lib/Target/AVR/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/InstPrinter/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.h
    N src/gnu/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.cpp
    N src/gnu/llvm/lib/Target/AVR/InstPrinter/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
    N src/gnu/llvm/lib/Target/AVR/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.h
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
    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/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h
    N 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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG3.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
    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/PPCInstrVSX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrSPE.td
    U src/gnu/llvm/lib/Target/PowerPC/README_ALTIVEC.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPC.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
    U src/gnu/llvm/lib/Target/PowerPC/README_P9.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCFastISel.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.h
    N src/gnu/llvm/lib/Target/PowerPC/P9InstrResources.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
    U src/gnu/llvm/lib/Target/PowerPC/PPC.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrQPX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrFormats.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.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/PPCRegisterInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG5.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
    U src/gnu/llvm/lib/Target/PowerPC/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/p9-instrs.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrHTM.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP9.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule440.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP7.td
    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/PPCTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleA2.td
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.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/TargetInfo/PowerPCTargetInfo.cpp
    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/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
    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/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/PowerPC/MCTargetDesc/PPCPredicates.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.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/PPCMCAsmInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOperands.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrAlias.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonPatterns.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.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/HexagonCFGOptimizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSystemInst.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCallingConv.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSchedule.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIsetDx.td
    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/RDFCopy.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrEnc.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRDFOpt.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/TargetInfo/HexagonTargetInfo.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/AsmParser/HexagonAsmParser.cpp
    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/MCTargetDesc/HexagonInstPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
    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/HexagonMCCompound.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.h
    U src/gnu/llvm/lib/Target/ARM/LICENSE.TXT
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/ARM/README.txt
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARM.td
    N src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMInstructionSelector.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrVFP.td
    U src/gnu/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleV6.td
    N src/gnu/llvm/lib/Target/ARM/ARMScheduleR52.td
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA8.td
    U src/gnu/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleSwift.td
    U src/gnu/llvm/lib/Target/ARM/ARMPerfectShuffle.h
    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/ARMConstantPoolValue.h
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.cpp
    U src/gnu/llvm/lib/Target/ARM/README-Thumb.txt
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFeatures.h
    U src/gnu/llvm/lib/Target/ARM/README-Thumb2.txt
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.h
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrNEON.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb2.td
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.h
    N src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
    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/ARMSubtarget.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMCallLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.h
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/ARMSubtarget.h
    U src/gnu/llvm/lib/Target/ARM/A15SDOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrFormats.td
    N src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.td
    N src/gnu/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.h
    U src/gnu/llvm/lib/Target/ARM/ARM.h
    U src/gnu/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMSchedule.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
    N src/gnu/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMCInstLower.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFastISel.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA9.td
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/ARM/ARMCallLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb.td
    U src/gnu/llvm/lib/Target/ARM/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.h
    U src/gnu/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.h
    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/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/InstPrinter/ARMInstPrinter.h
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.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/ARM/MCTargetDesc/ARMAsmBackend.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.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/ARMMCExpr.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/X86/X86InstrTablesInfo.h
    U src/gnu/llvm/lib/Target/X86/X86Schedule.td
    U src/gnu/llvm/lib/Target/X86/X86Instr3DNow.td
    U src/gnu/llvm/lib/Target/X86/X86ScheduleAtom.td
    U src/gnu/llvm/lib/Target/X86/README-UNIMPLEMENTED.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrExtension.td
    U src/gnu/llvm/lib/Target/X86/X86InstrShiftRotate.td
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.h
    U src/gnu/llvm/lib/Target/X86/X86WinEHState.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.h
    U src/gnu/llvm/lib/Target/X86/X86FastISel.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFormats.td
    U src/gnu/llvm/lib/Target/X86/X86InstrTSX.td
    N src/gnu/llvm/lib/Target/X86/X86CallingConv.cpp
    U src/gnu/llvm/lib/Target/X86/README.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86FloatingPoint.cpp
    N src/gnu/llvm/lib/Target/X86/X86CallLowering.h
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrMMX.td
    U src/gnu/llvm/lib/Target/X86/X86InstrMPX.td
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA.td
    U src/gnu/llvm/lib/Target/X86/X86FixupSetCC.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.td
    U src/gnu/llvm/lib/Target/X86/X86.h
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrControl.td
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.h
    U src/gnu/llvm/lib/Target/X86/X86InstrSVM.td
    N src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrVMX.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.td
    U src/gnu/llvm/lib/Target/X86/X86VZeroUpper.cpp
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.h
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.cpp
    U src/gnu/llvm/lib/Target/X86/README-FPStack.txt
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrAVX512.td
    U src/gnu/llvm/lib/Target/X86/README-X86-64.txt
    N src/gnu/llvm/lib/Target/X86/X86EvexToVex.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSSE.td
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.h
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.cpp
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86FixupLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrXOP.td
    N src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.h
    U src/gnu/llvm/lib/Target/X86/X86InstrFPStack.td
    U src/gnu/llvm/lib/Target/X86/X86PadShortFunction.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.td
    N src/gnu/llvm/lib/Target/X86/X86InterleavedAccess.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedHaswell.td
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSGX.td
    U src/gnu/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrCompiler.td
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/X86/X86.td
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.h
    U src/gnu/llvm/lib/Target/X86/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrBuilder.h
    U src/gnu/llvm/lib/Target/X86/X86ExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.h
    N src/gnu/llvm/lib/Target/X86/X86CallLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86FixupBWInsts.cpp
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.h
    U src/gnu/llvm/lib/Target/X86/X86ScheduleBtVer2.td
    U src/gnu/llvm/lib/Target/X86/README-MMX.txt
    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/X86ScheduleSLM.td
    U src/gnu/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedSandyBridge.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSystem.td
    U src/gnu/llvm/lib/Target/X86/X86IntrinsicsInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrCMovSetCC.td
    U src/gnu/llvm/lib/Target/X86/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/README-SSE.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrArithmetic.td
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
    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/X86Disassembler.cpp
    U src/gnu/llvm/lib/Target/X86/Disassembler/LLVMBuild.txt
    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/InstPrinter/X86InstComments.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
    U 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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Utils/CMakeLists.txt
    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/AsmParser/X86AsmInstrumentation.cpp
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86Operand.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
    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/X86MCAsmInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.cpp
    N src/gnu/llvm/lib/Target/Mips/MipsScheduleGeneric.td
    U src/gnu/llvm/lib/Target/Mips/MipsOptionRecord.h
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.h
    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/MipsEVAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFPU.td
    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/Mips16FrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.h
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.h
    U src/gnu/llvm/lib/Target/Mips/MipsOs16.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
    U src/gnu/llvm/lib/Target/Mips/MSA.txt
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsCallingConv.td
    U src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.h
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.h
    U src/gnu/llvm/lib/Target/Mips/Mips64InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.h
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSchedule.td
    U src/gnu/llvm/lib/Target/Mips/MipsCondMov.td
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsFastISel.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsLongBranch.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetStreamer.h
    U src/gnu/llvm/lib/Target/Mips/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleP5600.td
    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/TargetInfo/MipsTargetInfo.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/InstPrinter/MipsInstPrinter.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/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/Mips/MCTargetDesc/MipsOptionRecord.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.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/MipsELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
    U 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/MipsMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt
    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/MipsMCNaCl.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/README.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    U src/gnu/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.h
    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/WebAssemblyISD.def
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
    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/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/InstPrinter/WebAssemblyInstPrinter.h
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/CMakeLists.txt
    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/MCTargetDesc/WebAssemblyTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
    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/WebAssemblyMCTargetDesc.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.h
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrVIS.td
    U src/gnu/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/README.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/Sparc.td
    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/SparcSubtarget.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrAliases.td
    U src/gnu/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Sparc/Sparc.h
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/LeonFeatures.td
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.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/SparcRegisterInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.h
    U src/gnu/llvm/lib/Target/Sparc/SparcInstr64Bit.td
    U src/gnu/llvm/lib/Target/Sparc/SparcSchedule.td
    U src/gnu/llvm/lib/Target/Sparc/LeonPasses.h
    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/SparcInstrInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrFormats.td
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetStreamer.h
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.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/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/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/InstPrinter/SparcInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
    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/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/Sparc/MCTargetDesc/SparcAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
    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/MSP430/MSP430MachineFunctionInfo.h
    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/README.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrFormats.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.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/MSP430RegisterInfo.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
    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/MSP430.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430CallingConv.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.h
    U src/gnu/llvm/lib/Target/MSP430/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.h
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.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/InstPrinter/MSP430InstPrinter.h
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
    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/MCTargetDesc/MSP430MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.h
    N src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
    N src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.td
    N src/gnu/llvm/lib/Target/RISCV/RISCVInstrFormats.td
    N src/gnu/llvm/lib/Target/RISCV/CMakeLists.txt
    N src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
    N src/gnu/llvm/lib/Target/RISCV/RISCV.td
    N src/gnu/llvm/lib/Target/RISCV/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
    N src/gnu/llvm/lib/Target/RISCV/TargetInfo/CMakeLists.txt
    N src/gnu/llvm/lib/Target/RISCV/TargetInfo/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/CMakeLists.txt
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.h
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.h
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA53.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64FastISel.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
    C src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64VectorByElementOpt.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64InstructionSelector.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
    C src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    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/AArch64SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedM1.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AArch64/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64Schedule.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.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/AArch64RegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrFormats.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SystemOperands.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
    U src/gnu/llvm/lib/Target/AArch64/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
    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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/LLVMBuild.txt
    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/AArch64AsmBackend.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.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/AArch64FixupKinds.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt
    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/AArch64MCTargetDesc.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperands.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLDCleanup.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/SystemZMCInstLower.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrVector.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperators.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZSchedule.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFP.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZProcessors.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
    U src/gnu/llvm/lib/Target/SystemZ/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTDC.cpp
    N src/gnu/llvm/lib/Target/SystemZ/SystemZFeatures.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
    N src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
    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/SystemZ.td
    N src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.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/InstPrinter/SystemZInstPrinter.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/AsmParser/CMakeLists.txt
    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/MCTargetDesc/SystemZMCTargetDesc.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
    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/MCTargetDesc/SystemZMCCodeEmitter.cpp
    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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreLowerThreadLocal.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/XCoreRegisterInfo.td
    U src/gnu/llvm/lib/Target/XCore/README.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.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/XCoreMCInstLower.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCore.h
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreCallingConv.td
    U src/gnu/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrFormats.td
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.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/XCoreInstrInfo.h
    U src/gnu/llvm/lib/Target/XCore/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
    U src/gnu/llvm/lib/Target/XCore/XCore.td
    U src/gnu/llvm/lib/Target/XCore/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.h
    U src/gnu/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
    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/TargetInfo/XCoreTargetInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/LLVMBuild.txt
    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/XCoreInstPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/LLVMBuild.txt
    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/XCoreMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiCondCode.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Lanai/Lanai.td
    U src/gnu/llvm/lib/Target/Lanai/Lanai.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.h
    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/LanaiAluCode.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSchedule.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiCallingConv.td
    U src/gnu/llvm/lib/Target/Lanai/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.h
    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/LanaiInstrFormats.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.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/LanaiDisassembler.h
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.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/InstPrinter/LanaiInstPrinter.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/CMakeLists.txt
    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/MCTargetDesc/LanaiMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiBaseInfo.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
    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/LanaiFixupKinds.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.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/LanaiMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LLVMBuild.txt
    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/BPFRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BPF.h
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.h
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.h
    U src/gnu/llvm/lib/Target/BPF/BPFCallingConv.td
    U src/gnu/llvm/lib/Target/BPF/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.h
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.cpp
    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/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/BPF/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
    N src/gnu/llvm/lib/Target/BPF/Disassembler/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/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
    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/BPF/InstPrinter/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/BPFMCTargetDesc.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
    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/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.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/NVPTXISelLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/ManagedStringPool.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSection.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXVector.td
    U src/gnu/llvm/lib/Target/NVPTX/NVVMReflect.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
    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/NVPTXLowerAggrCopies.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
    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/NVPTXMCExpr.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/cl_common_defines.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
    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/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
    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/NVPTX/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
    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/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/VOP1Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/SOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600Intrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
    N src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.h
    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/R600RegisterInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/SMInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Schedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/VOP3Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixControlFlowLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/VOP2Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Defines.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIDefines.h
    N src/gnu/llvm/lib/Target/AMDGPU/DSInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R700Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SISchedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/CaymanInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600Packetizer.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/AMDGPURegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
    N src/gnu/llvm/lib/Target/AMDGPU/BUFInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/FLATInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/VOPCInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/MIMGInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/CIInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Processors.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/VOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
    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/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
    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/AMDGPU/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
    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/AMDGPUAsmUtils.cpp
    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/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
    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/AMDGPUFixupKinds.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Demangle/ItaniumDemangle.cpp
    N src/gnu/llvm/lib/Demangle/CMakeLists.txt
    N src/gnu/llvm/lib/Demangle/LLVMBuild.txt
    U src/gnu/llvm/lib/Object/IRObjectFile.cpp
    N src/gnu/llvm/lib/Object/ModuleSymbolTable.cpp
    U src/gnu/llvm/lib/Object/ELFObjectFile.cpp
    U src/gnu/llvm/lib/Object/ObjectFile.cpp
    U src/gnu/llvm/lib/Object/MachOUniversal.cpp
    U src/gnu/llvm/lib/Object/Archive.cpp
    U src/gnu/llvm/lib/Object/SymbolSize.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.h
    U src/gnu/llvm/lib/Object/COFFObjectFile.cpp
    U src/gnu/llvm/lib/Object/Binary.cpp
    U src/gnu/llvm/lib/Object/ELF.cpp
    U src/gnu/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp
    U src/gnu/llvm/lib/Object/MachOObjectFile.cpp
    U src/gnu/llvm/lib/Object/Error.cpp
    N src/gnu/llvm/lib/Object/WasmObjectFile.cpp
    U src/gnu/llvm/lib/Object/CMakeLists.txt
    U src/gnu/llvm/lib/Object/SymbolicFile.cpp
    U src/gnu/llvm/lib/Object/Object.cpp
    N src/gnu/llvm/lib/Object/Decompressor.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.cpp
    U src/gnu/llvm/lib/Object/ArchiveWriter.cpp
    U src/gnu/llvm/lib/Object/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
    U src/gnu/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/TargetSelect.cpp
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
    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/ittnotify_config.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/LLVMBuild.txt
    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/RuntimeDyldELF.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
    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/RuntimeDyld.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.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/RTDyldMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.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/RuntimeDyldMachOARM.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
    N src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
    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/Execution.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/LLVMBuild.txt
    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/OrcMCJITReplacement.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.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/OrcCBindingsStack.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerUtilDarwin.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerUtilPosix.cpp
    U src/gnu/llvm/lib/Fuzzer/README.txt
    U src/gnu/llvm/lib/Fuzzer/FuzzerDriver.cpp
    N src/gnu/llvm/lib/Fuzzer/build.sh
    U src/gnu/llvm/lib/Fuzzer/FuzzerCrossOver.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerOptions.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerTracePC.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerMutate.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerTraceState.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctions.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsWeak.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerUtil.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerUtilWindows.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerMerge.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerMutate.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerMain.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerRandom.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerIOPosix.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctions.def
    N src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsWeakAlias.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerIOWindows.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerInternal.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerUtilLinux.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerLoop.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerSHA1.cpp
    U src/gnu/llvm/lib/Fuzzer/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtil.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerInterface.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsDlsym.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerFlags.def
    N src/gnu/llvm/lib/Fuzzer/FuzzerMerge.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerIO.cpp
    N src/gnu/llvm/lib/Fuzzer/FuzzerCorpus.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerValueBitMap.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerTracePC.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerIO.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerSHA1.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerDefs.h
    N src/gnu/llvm/lib/Fuzzer/FuzzerDictionary.h
    U src/gnu/llvm/lib/Fuzzer/cxx.dict
    N src/gnu/llvm/lib/Fuzzer/standalone/StandaloneFuzzTargetMain.c
    U src/gnu/llvm/lib/Fuzzer/afl/afl_driver.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-ubsan.test
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-strcmp.test
    U src/gnu/llvm/lib/Fuzzer/test/FullCoverageSetTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/caller-callee.test
    N src/gnu/llvm/lib/Fuzzer/test/trace-malloc.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-leak.test
    N src/gnu/llvm/lib/Fuzzer/test/DSOTestExtra.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-seed.test
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-strncmp.test
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-set.test
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp.test
    U src/gnu/llvm/lib/Fuzzer/test/OutOfMemoryTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/RepeatedBytesTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/DSO2.cpp
    N src/gnu/llvm/lib/Fuzzer/test/SingleStrncmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/DSO1.cpp
    N src/gnu/llvm/lib/Fuzzer/test/fuzzer-jobs.test
    N src/gnu/llvm/lib/Fuzzer/test/SingleStrcmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-custommutator.test
    N src/gnu/llvm/lib/Fuzzer/test/shrink.test
    U src/gnu/llvm/lib/Fuzzer/test/AFLDriverTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/Switch2Test.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SwitchTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrncmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/DSOTestMain.cpp
    U src/gnu/llvm/lib/Fuzzer/test/afl-driver-stderr.test
    N src/gnu/llvm/lib/Fuzzer/test/ShrinkValueProfileTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/DivTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/InitializeTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-mem.test
    U src/gnu/llvm/lib/Fuzzer/test/RepeatedMemcmp.cpp
    U src/gnu/llvm/lib/Fuzzer/test/CallerCalleeTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp2.test
    U src/gnu/llvm/lib/Fuzzer/test/lit.cfg
    U src/gnu/llvm/lib/Fuzzer/test/ThreadedLeakTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleThreadedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrstrTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-load.test
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-div.test
    U src/gnu/llvm/lib/Fuzzer/test/merge.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-runs.test
    U src/gnu/llvm/lib/Fuzzer/test/dict1.txt
    N src/gnu/llvm/lib/Fuzzer/test/TraceMallocTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/NthRunCrashTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/NullDerefTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/ShrinkControlFlowTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/EmptyTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp4.test
    N src/gnu/llvm/lib/Fuzzer/test/ulimit.test
    U src/gnu/llvm/lib/Fuzzer/test/ThreadedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-flags.test
    N src/gnu/llvm/lib/Fuzzer/test/simple-cmp.test
    U src/gnu/llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-oom-with-profile.test
    U src/gnu/llvm/lib/Fuzzer/test/OneHugeAllocTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/lit.site.cfg.in
    U src/gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/afl-driver-extra-stats.test
    U src/gnu/llvm/lib/Fuzzer/test/CustomCrossOverTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/OutOfMemorySingleLargeMallocTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/standalone.test
    U src/gnu/llvm/lib/Fuzzer/test/TimeoutTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-dict.test
    U src/gnu/llvm/lib/Fuzzer/test/BufferOverflowOnInput.cpp
    N src/gnu/llvm/lib/Fuzzer/test/dump_coverage.test
    N src/gnu/llvm/lib/Fuzzer/test/swap-cmp.test
    N src/gnu/llvm/lib/Fuzzer/test/repeated-bytes.test
    U src/gnu/llvm/lib/Fuzzer/test/SimpleHashTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer.test
    U src/gnu/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-threaded.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-finalstats.test
    U src/gnu/llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/minimize_crash.test
    N src/gnu/llvm/lib/Fuzzer/test/coverage.test
    N src/gnu/llvm/lib/Fuzzer/test/SingleMemcmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/StrncmpOOBTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-customcrossover.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-fdmask.test
    U src/gnu/llvm/lib/Fuzzer/test/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/CustomMutatorTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleCmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-oom.test
    N src/gnu/llvm/lib/Fuzzer/test/LoadTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrcmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-switch.test
    U src/gnu/llvm/lib/Fuzzer/test/LeakTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/hi.txt
    U src/gnu/llvm/lib/Fuzzer/test/NullDerefOnEmptyTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/MemcmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/CounterTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/UninstrumentedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-segv.test
    N src/gnu/llvm/lib/Fuzzer/test/SwapCmpTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/TimeoutEmptyTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/AbsNegAndConstantTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-singleinputs.test
    N src/gnu/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SpamyTest.cpp
    N src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp3.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-timeout.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-dirs.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-traces-hooks.test
    U src/gnu/llvm/lib/Fuzzer/test/ubsan/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/uninstrumented/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/no-coverage/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/unit/lit.cfg
    U src/gnu/llvm/lib/Fuzzer/test/unit/lit.site.cfg.in
    U src/gnu/llvm/lib/IR/AsmWriter.cpp
    U src/gnu/llvm/lib/IR/Core.cpp
    U src/gnu/llvm/lib/IR/ValueSymbolTable.cpp
    U src/gnu/llvm/lib/IR/ConstantsContext.h
    U src/gnu/llvm/lib/IR/Value.cpp
    U src/gnu/llvm/lib/IR/Comdat.cpp
    U src/gnu/llvm/lib/IR/Use.cpp
    U src/gnu/llvm/lib/IR/AttributeSetNode.h
    U src/gnu/llvm/lib/IR/PassManager.cpp
    U src/gnu/llvm/lib/IR/DebugInfoMetadata.cpp
    U src/gnu/llvm/lib/IR/DebugInfo.cpp
    U src/gnu/llvm/lib/IR/DataLayout.cpp
    U src/gnu/llvm/lib/IR/Mangler.cpp
    U src/gnu/llvm/lib/IR/Module.cpp
    U src/gnu/llvm/lib/IR/BasicBlock.cpp
    U src/gnu/llvm/lib/IR/LLVMContext.cpp
    U src/gnu/llvm/lib/IR/Dominators.cpp
    U src/gnu/llvm/lib/IR/Operator.cpp
    U src/gnu/llvm/lib/IR/ModuleSummaryIndex.cpp
    U src/gnu/llvm/lib/IR/ConstantFold.h
    U src/gnu/llvm/lib/IR/Instructions.cpp
    U src/gnu/llvm/lib/IR/IRPrintingPasses.cpp
    U src/gnu/llvm/lib/IR/Instruction.cpp
    U src/gnu/llvm/lib/IR/Type.cpp
    U src/gnu/llvm/lib/IR/AttributesCompatFunc.td
    U src/gnu/llvm/lib/IR/IntrinsicInst.cpp
    U src/gnu/llvm/lib/IR/Attributes.cpp
    U src/gnu/llvm/lib/IR/PassRegistry.cpp
    U src/gnu/llvm/lib/IR/Verifier.cpp
    U src/gnu/llvm/lib/IR/User.cpp
    U src/gnu/llvm/lib/IR/Metadata.cpp
    U src/gnu/llvm/lib/IR/DiagnosticInfo.cpp
    U src/gnu/llvm/lib/IR/LLVMContextImpl.h
    U src/gnu/llvm/lib/IR/InlineAsm.cpp
    U src/gnu/llvm/lib/IR/IRBuilder.cpp
    U src/gnu/llvm/lib/IR/DiagnosticPrinter.cpp
    U src/gnu/llvm/lib/IR/DIBuilder.cpp
    U src/gnu/llvm/lib/IR/SymbolTableListTraitsImpl.h
    U src/gnu/llvm/lib/IR/Statepoint.cpp
    U src/gnu/llvm/lib/IR/LegacyPassManager.cpp
    U src/gnu/llvm/lib/IR/ConstantRange.cpp
    U src/gnu/llvm/lib/IR/AttributeImpl.h
    U src/gnu/llvm/lib/IR/OptBisect.cpp
    U src/gnu/llvm/lib/IR/CMakeLists.txt
    U src/gnu/llvm/lib/IR/ConstantFold.cpp
    U src/gnu/llvm/lib/IR/AutoUpgrade.cpp
    U src/gnu/llvm/lib/IR/GVMaterializer.cpp
    U src/gnu/llvm/lib/IR/Function.cpp
    U src/gnu/llvm/lib/IR/ValueTypes.cpp
    U src/gnu/llvm/lib/IR/TypeFinder.cpp
    U src/gnu/llvm/lib/IR/Pass.cpp
    U src/gnu/llvm/lib/IR/DebugLoc.cpp
    U src/gnu/llvm/lib/IR/MDBuilder.cpp
    U src/gnu/llvm/lib/IR/Globals.cpp
    U src/gnu/llvm/lib/IR/ProfileSummary.cpp
    U src/gnu/llvm/lib/IR/MetadataImpl.h
    U src/gnu/llvm/lib/IR/Constants.cpp
    U src/gnu/llvm/lib/IR/GCOV.cpp
    U src/gnu/llvm/lib/IR/LLVMBuild.txt
    U src/gnu/llvm/lib/IR/LLVMContextImpl.cpp
    U src/gnu/llvm/lib/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.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/PDBSymbolTypePointer.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.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/IPDBSourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.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/PDBContext.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/PDBSymbolUsingNamespace.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.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/PDBSymbolTypeUDT.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDB.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAError.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/DIALineNumber.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameMap.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/DbiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/TpiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/GSI.h
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/SymbolStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/PDBFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/RawSession.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/RawError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/EnumTables.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/GSI.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/GlobalsStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/ModStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/PublicsStream.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Raw/TpiHashing.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/Line.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeDatabase.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeSerializer.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/CVTypeDumper.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
    N src/gnu/llvm/lib/DebugInfo/MSF/MSFCommon.cpp
    N src/gnu/llvm/lib/DebugInfo/MSF/StreamWriter.cpp
    N src/gnu/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
    N src/gnu/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/MSF/StreamReader.cpp
    N src/gnu/llvm/lib/DebugInfo/MSF/CMakeLists.txt
    N src/gnu/llvm/lib/DebugInfo/MSF/MSFError.cpp
    N src/gnu/llvm/lib/DebugInfo/MSF/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
    N src/gnu/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.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/Symbolize/SymbolizableObjectFile.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/DIPrinter.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/Symbolize.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/LLVMBuild.txt
    U src/gnu/llvm/lib/Linker/LinkDiagnosticInfo.h
    U src/gnu/llvm/lib/Linker/IRMover.cpp
    U src/gnu/llvm/lib/Linker/CMakeLists.txt
    U src/gnu/llvm/lib/Linker/LinkModules.cpp
    U src/gnu/llvm/lib/Linker/LLVMBuild.txt
    U src/gnu/llvm/lib/ObjectYAML/ObjectYAML.cpp
    N src/gnu/llvm/lib/ObjectYAML/DWARFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/ELFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/COFFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/CMakeLists.txt
    U src/gnu/llvm/lib/ObjectYAML/YAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/MachOYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCObjectFileInfo.cpp
    U src/gnu/llvm/lib/MC/MCSectionCOFF.cpp
    U src/gnu/llvm/lib/MC/MCELFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoCOFF.cpp
    U src/gnu/llvm/lib/MC/MCObjectStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmBackend.cpp
    U src/gnu/llvm/lib/MC/MCWin64EH.cpp
    U src/gnu/llvm/lib/MC/MCSymbolELF.cpp
    U src/gnu/llvm/lib/MC/MachObjectWriter.cpp
    U src/gnu/llvm/lib/MC/WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCDwarf.cpp
    U src/gnu/llvm/lib/MC/MCMachOStreamer.cpp
    U src/gnu/llvm/lib/MC/MCLabel.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfo.cpp
    U src/gnu/llvm/lib/MC/MCStreamer.cpp
    U src/gnu/llvm/lib/MC/MCInst.cpp
    U src/gnu/llvm/lib/MC/MCLinkerOptimizationHint.cpp
    U src/gnu/llvm/lib/MC/MCNullStreamer.cpp
    U src/gnu/llvm/lib/MC/MCInstPrinter.cpp
    U src/gnu/llvm/lib/MC/MCSchedule.cpp
    U src/gnu/llvm/lib/MC/MCContext.cpp
    U src/gnu/llvm/lib/MC/ELFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCWinEH.cpp
    U src/gnu/llvm/lib/MC/MCMachObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/SubtargetFeature.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoELF.cpp
    U src/gnu/llvm/lib/MC/MCInstrDesc.cpp
    U src/gnu/llvm/lib/MC/MCObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCFragment.cpp
    U src/gnu/llvm/lib/MC/MCSectionMachO.cpp
    U src/gnu/llvm/lib/MC/MCSection.cpp
    U src/gnu/llvm/lib/MC/MCSectionELF.cpp
    U src/gnu/llvm/lib/MC/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCAsmInfoDarwin.cpp
    U src/gnu/llvm/lib/MC/MCExpr.cpp
    U src/gnu/llvm/lib/MC/MCRegisterInfo.cpp
    U src/gnu/llvm/lib/MC/MCValue.cpp
    U src/gnu/llvm/lib/MC/MCSymbol.cpp
    U src/gnu/llvm/lib/MC/WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCELFObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/ConstantPools.cpp
    U src/gnu/llvm/lib/MC/MCInstrAnalysis.cpp
    U src/gnu/llvm/lib/MC/MCSubtargetInfo.cpp
    U src/gnu/llvm/lib/MC/StringTableBuilder.cpp
    U src/gnu/llvm/lib/MC/MCAsmStreamer.cpp
    U src/gnu/llvm/lib/MC/MCCodeEmitter.cpp
    U src/gnu/llvm/lib/MC/MCTargetOptions.cpp
    U src/gnu/llvm/lib/MC/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCAssembler.cpp
    U src/gnu/llvm/lib/MC/MCCodeView.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/AsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/ELFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/COFFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCParser/AsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.h
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
    N src/gnu/llvm/lib/Support/TarWriter.cpp
    U src/gnu/llvm/lib/Support/Debug.cpp
    U src/gnu/llvm/lib/Support/regexec.c
    U src/gnu/llvm/lib/Support/Host.cpp
    U src/gnu/llvm/lib/Support/Errno.cpp
    U src/gnu/llvm/lib/Support/regcname.h
    U src/gnu/llvm/lib/Support/regfree.c
    U src/gnu/llvm/lib/Support/Dwarf.cpp
    U src/gnu/llvm/lib/Support/BlockFrequency.cpp
    U src/gnu/llvm/lib/Support/ErrorHandling.cpp
    U src/gnu/llvm/lib/Support/TargetRegistry.cpp
    U src/gnu/llvm/lib/Support/StringPool.cpp
    U src/gnu/llvm/lib/Support/SystemUtils.cpp
    U src/gnu/llvm/lib/Support/FileOutputBuffer.cpp
    U src/gnu/llvm/lib/Support/README.txt.system
    U src/gnu/llvm/lib/Support/FoldingSet.cpp
    U src/gnu/llvm/lib/Support/RWMutex.cpp
    U src/gnu/llvm/lib/Support/circular_raw_ostream.cpp
    U src/gnu/llvm/lib/Support/DynamicLibrary.cpp
    N src/gnu/llvm/lib/Support/Chrono.cpp
    U src/gnu/llvm/lib/Support/LockFileManager.cpp
    N src/gnu/llvm/lib/Support/NativeFormatting.cpp
    U src/gnu/llvm/lib/Support/PrettyStackTrace.cpp
    N src/gnu/llvm/lib/Support/xxhash.cpp
    U src/gnu/llvm/lib/Support/Memory.cpp
    U src/gnu/llvm/lib/Support/ScaledNumber.cpp
    U src/gnu/llvm/lib/Support/Program.cpp
    U src/gnu/llvm/lib/Support/GraphWriter.cpp
    U src/gnu/llvm/lib/Support/IntEqClasses.cpp
    U src/gnu/llvm/lib/Support/raw_os_ostream.cpp
    U src/gnu/llvm/lib/Support/regerror.c
    U src/gnu/llvm/lib/Support/Valgrind.cpp
    U src/gnu/llvm/lib/Support/COPYRIGHT.regex
    U src/gnu/llvm/lib/Support/MemoryBuffer.cpp
    U src/gnu/llvm/lib/Support/CachePruning.cpp
    U src/gnu/llvm/lib/Support/YAMLParser.cpp
    N src/gnu/llvm/lib/Support/TrigramIndex.cpp
    U src/gnu/llvm/lib/Support/CommandLine.cpp
    U src/gnu/llvm/lib/Support/Allocator.cpp
    U src/gnu/llvm/lib/Support/Path.cpp
    U src/gnu/llvm/lib/Support/StringRef.cpp
    U src/gnu/llvm/lib/Support/ThreadLocal.cpp
    U src/gnu/llvm/lib/Support/regengine.inc
    U src/gnu/llvm/lib/Support/Locale.cpp
    U src/gnu/llvm/lib/Support/SpecialCaseList.cpp
    U src/gnu/llvm/lib/Support/Regex.cpp
    U src/gnu/llvm/lib/Support/LEB128.cpp
    N src/gnu/llvm/lib/Support/GlobPattern.cpp
    U src/gnu/llvm/lib/Support/SHA1.cpp
    U src/gnu/llvm/lib/Support/SmallVector.cpp
    U src/gnu/llvm/lib/Support/FileUtilities.cpp
    U src/gnu/llvm/lib/Support/APSInt.cpp
    U src/gnu/llvm/lib/Support/JamCRC.cpp
    U src/gnu/llvm/lib/Support/Timer.cpp
    U src/gnu/llvm/lib/Support/MD5.cpp
    U src/gnu/llvm/lib/Support/DeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/APFloat.cpp
    U src/gnu/llvm/lib/Support/Signals.cpp
    U src/gnu/llvm/lib/Support/SourceMgr.cpp
    U src/gnu/llvm/lib/Support/DataExtractor.cpp
    U src/gnu/llvm/lib/Support/Watchdog.cpp
    U src/gnu/llvm/lib/Support/APInt.cpp
    U src/gnu/llvm/lib/Support/ToolOutputFile.cpp
    U src/gnu/llvm/lib/Support/StringExtras.cpp
    U src/gnu/llvm/lib/Support/Triple.cpp
    U src/gnu/llvm/lib/Support/Process.cpp
    U src/gnu/llvm/lib/Support/Error.cpp
    U src/gnu/llvm/lib/Support/LineIterator.cpp
    U src/gnu/llvm/lib/Support/Options.cpp
    U src/gnu/llvm/lib/Support/Statistic.cpp
    U src/gnu/llvm/lib/Support/ConvertUTFWrapper.cpp
    U src/gnu/llvm/lib/Support/SmallPtrSet.cpp
    U src/gnu/llvm/lib/Support/regstrlcpy.c
    U src/gnu/llvm/lib/Support/MathExtras.cpp
    U src/gnu/llvm/lib/Support/PluginLoader.cpp
    U src/gnu/llvm/lib/Support/regcclass.h
    U src/gnu/llvm/lib/Support/CMakeLists.txt
    U src/gnu/llvm/lib/Support/ARMWinEH.cpp
    U src/gnu/llvm/lib/Support/RandomNumberGenerator.cpp
    U src/gnu/llvm/lib/Support/TargetParser.cpp
    U src/gnu/llvm/lib/Support/raw_ostream.cpp
    U src/gnu/llvm/lib/Support/BranchProbability.cpp
    U src/gnu/llvm/lib/Support/COM.cpp
    U src/gnu/llvm/lib/Support/IntervalMap.cpp
    U src/gnu/llvm/lib/Support/regex2.h
    U src/gnu/llvm/lib/Support/Atomic.cpp
    U src/gnu/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp
    U src/gnu/llvm/lib/Support/regutils.h
    U src/gnu/llvm/lib/Support/Hashing.cpp
    U src/gnu/llvm/lib/Support/DAGDeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/Unicode.cpp
    U src/gnu/llvm/lib/Support/CrashRecoveryContext.cpp
    U src/gnu/llvm/lib/Support/Compression.cpp
    N src/gnu/llvm/lib/Support/ConvertUTF.cpp
    U src/gnu/llvm/lib/Support/ManagedStatic.cpp
    U src/gnu/llvm/lib/Support/Mutex.cpp
    N src/gnu/llvm/lib/Support/FormatVariadic.cpp
    U src/gnu/llvm/lib/Support/ThreadPool.cpp
    U src/gnu/llvm/lib/Support/StringMap.cpp
    U src/gnu/llvm/lib/Support/StringSaver.cpp
    U src/gnu/llvm/lib/Support/regcomp.c
    U src/gnu/llvm/lib/Support/YAMLTraits.cpp
    U src/gnu/llvm/lib/Support/ARMBuildAttrs.cpp
    U src/gnu/llvm/lib/Support/LLVMBuild.txt
    U src/gnu/llvm/lib/Support/ScopedPrinter.cpp
    U src/gnu/llvm/lib/Support/regex_impl.h
    U src/gnu/llvm/lib/Support/Threading.cpp
    U src/gnu/llvm/lib/Support/Twine.cpp
    U src/gnu/llvm/lib/Support/FormattedStream.cpp
    U src/gnu/llvm/lib/Support/Unix/Memory.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/Unix.h
    U src/gnu/llvm/lib/Support/Unix/COM.inc
    U src/gnu/llvm/lib/Support/Unix/RWMutex.inc
    U src/gnu/llvm/lib/Support/Unix/Program.inc
    U src/gnu/llvm/lib/Support/Unix/ThreadLocal.inc
    U src/gnu/llvm/lib/Support/Unix/Signals.inc
    U src/gnu/llvm/lib/Support/Unix/Mutex.inc
    U src/gnu/llvm/lib/Support/Unix/Host.inc
    U src/gnu/llvm/lib/Support/Unix/Path.inc
    U src/gnu/llvm/lib/Support/Unix/Process.inc
    U src/gnu/llvm/lib/Support/Windows/Memory.inc
    U src/gnu/llvm/lib/Support/Windows/explicit_symbols.inc
    U src/gnu/llvm/lib/Support/Windows/Watchdog.inc
    U src/gnu/llvm/lib/Support/Windows/COM.inc
    U src/gnu/llvm/lib/Support/Windows/RWMutex.inc
    U src/gnu/llvm/lib/Support/Windows/Program.inc
    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/Signals.inc
    U src/gnu/llvm/lib/Support/Windows/Mutex.inc
    U src/gnu/llvm/lib/Support/Windows/Host.inc
    U src/gnu/llvm/lib/Support/Windows/WindowsSupport.h
    U src/gnu/llvm/lib/Support/Windows/Path.inc
    U src/gnu/llvm/lib/Support/Windows/Process.inc
    U src/gnu/llvm/lib/ProfileData/SampleProf.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProf.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
    U src/gnu/llvm/lib/ProfileData/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/InstrProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/Coverage/LLVMBuild.txt
    U src/gnu/llvm/lib/LineEditor/LineEditor.cpp
    U src/gnu/llvm/lib/LineEditor/CMakeLists.txt
    U src/gnu/llvm/lib/LineEditor/LLVMBuild.txt
    U src/gnu/llvm/lib/IRReader/IRReader.cpp
    U src/gnu/llvm/lib/IRReader/CMakeLists.txt
    U src/gnu/llvm/lib/IRReader/LLVMBuild.txt
    U src/gnu/llvm/lib/Passes/PassRegistry.def
    U src/gnu/llvm/lib/Passes/PassBuilder.cpp
    U src/gnu/llvm/lib/Passes/CMakeLists.txt
    U src/gnu/llvm/lib/Passes/LLVMBuild.txt
    U src/gnu/llvm/lib/AsmParser/LLToken.h
    U src/gnu/llvm/lib/AsmParser/LLParser.cpp
    U src/gnu/llvm/lib/AsmParser/LLLexer.h
    U src/gnu/llvm/lib/AsmParser/Parser.cpp
    U src/gnu/llvm/lib/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/AsmParser/LLParser.h
    U src/gnu/llvm/lib/AsmParser/LLLexer.cpp
    U src/gnu/llvm/lib/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/TableGen/TGLexer.h
    U src/gnu/llvm/lib/TableGen/TableGenBackend.cpp
    U src/gnu/llvm/lib/TableGen/SetTheory.cpp
    U src/gnu/llvm/lib/TableGen/TGParser.h
    U src/gnu/llvm/lib/TableGen/Main.cpp
    U src/gnu/llvm/lib/TableGen/Record.cpp
    U src/gnu/llvm/lib/TableGen/TGLexer.cpp
    U src/gnu/llvm/lib/TableGen/Error.cpp
    U src/gnu/llvm/lib/TableGen/CMakeLists.txt
    U src/gnu/llvm/lib/TableGen/TGParser.cpp
    U src/gnu/llvm/lib/TableGen/StringMatcher.cpp
    U src/gnu/llvm/lib/TableGen/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/SlotIndexes.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.h
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.cpp
    U src/gnu/llvm/lib/CodeGen/LowerEmuTLS.cpp
    U src/gnu/llvm/lib/CodeGen/WinEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalMerge.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.cpp
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
    U src/gnu/llvm/lib/CodeGen/XRayInstrumentation.cpp
    U src/gnu/llvm/lib/CodeGen/IfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/FaultMaps.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.cpp
    U src/gnu/llvm/lib/CodeGen/MachineScheduler.cpp
    U src/gnu/llvm/lib/CodeGen/LiveVariables.cpp
    U src/gnu/llvm/lib/CodeGen/UnreachableBlockElim.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePassRegistry.cpp
    U src/gnu/llvm/lib/CodeGen/ExecutionDepsFix.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPass.cpp
    U src/gnu/llvm/lib/CodeGen/README.txt
    U src/gnu/llvm/lib/CodeGen/LiveInterval.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.cpp
    U src/gnu/llvm/lib/CodeGen/ImplicitNullChecks.cpp
    U src/gnu/llvm/lib/CodeGen/MachineTraceMetrics.cpp
    U src/gnu/llvm/lib/CodeGen/MachineVerifier.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSchedule.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalUnion.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCSE.cpp
    U src/gnu/llvm/lib/CodeGen/PHIElimination.cpp
    U src/gnu/llvm/lib/CodeGen/SjLjEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.h
    U src/gnu/llvm/lib/CodeGen/CodeGenPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.h
    U src/gnu/llvm/lib/CodeGen/ExpandISelPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/EdgeBundles.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadataPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/InlineSpiller.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominators.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegionInfo.cpp
    U src/gnu/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/AntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.h
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocPBQP.cpp
    U src/gnu/llvm/lib/CodeGen/StackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRegMatrix.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstrBundle.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.cpp
    U src/gnu/llvm/lib/CodeGen/InterleavedAccessPass.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.h
    U src/gnu/llvm/lib/CodeGen/FuncletLayout.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.h
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/LLVMTargetMachine.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocFast.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.h
    U src/gnu/llvm/lib/CodeGen/PatchableFunction.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocGreedy.cpp
    U src/gnu/llvm/lib/CodeGen/PseudoSourceValue.cpp
    U src/gnu/llvm/lib/CodeGen/Spiller.h
    U src/gnu/llvm/lib/CodeGen/CallingConvLower.cpp
    U src/gnu/llvm/lib/CodeGen/CalcSpillWeights.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCopyPropagation.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/LiveRangeEdit.cpp
    U src/gnu/llvm/lib/CodeGen/ParallelCG.cpp
    U src/gnu/llvm/lib/CodeGen/PeepholeOptimizer.cpp
    U src/gnu/llvm/lib/CodeGen/TargetPassConfig.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/TargetOptionsImpl.cpp
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.h
    U src/gnu/llvm/lib/CodeGen/RegisterUsageInfo.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrintingPass.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.h
    U src/gnu/llvm/lib/CodeGen/MachineBasicBlock.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.h
    U src/gnu/llvm/lib/CodeGen/LiveRangeUtils.h
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/Analysis.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLICM.cpp
    U src/gnu/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.h
    U src/gnu/llvm/lib/CodeGen/TargetRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBasic.cpp
    U src/gnu/llvm/lib/CodeGen/LivePhysRegs.cpp
    U src/gnu/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterScavenging.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplicator.cpp
    U src/gnu/llvm/lib/CodeGen/PostRASchedulerList.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
    N src/gnu/llvm/lib/CodeGen/MachinePipeliner.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstr.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplication.cpp
    N src/gnu/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GCStrategy.cpp
    U src/gnu/llvm/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/MachinePostDominators.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugValues.cpp
    N src/gnu/llvm/lib/CodeGen/CountingFunctionInserter.cpp
    U src/gnu/llvm/lib/CodeGen/ShrinkWrap.cpp
    U src/gnu/llvm/lib/CodeGen/GCRootLowering.cpp
    U src/gnu/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStack.cpp
    N src/gnu/llvm/lib/CodeGen/BranchRelaxation.cpp
    U src/gnu/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterPressure.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/LiveStackAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/MachineSink.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.h
    U src/gnu/llvm/lib/CodeGen/DFAPacketizer.cpp
    U src/gnu/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
    U src/gnu/llvm/lib/CodeGen/StackMaps.cpp
    U src/gnu/llvm/lib/CodeGen/TargetInstrInfo.cpp
    U src/gnu/llvm/lib/CodeGen/StackSlotColoring.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/DetectDeadLanes.cpp
    U src/gnu/llvm/lib/CodeGen/MachineSSAUpdater.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGen.cpp
    C src/gnu/llvm/lib/CodeGen/TargetLoweringBase.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunction.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLoopInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterClassInfo.cpp
    U src/gnu/llvm/lib/CodeGen/IntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.cpp
    U src/gnu/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
    U src/gnu/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadata.cpp
    U src/gnu/llvm/lib/CodeGen/PrologEpilogInserter.cpp
    U src/gnu/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.h
    U src/gnu/llvm/lib/CodeGen/AtomicExpandPass.cpp
    N src/gnu/llvm/lib/CodeGen/LowLevelType.cpp
    U src/gnu/llvm/lib/CodeGen/BuiltinGCs.cpp
    U src/gnu/llvm/lib/CodeGen/DwarfEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAG.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/CodeGen/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/LexicalScopes.cpp
    N src/gnu/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
    C src/gnu/llvm/lib/CodeGen/StackProtector.cpp
    U src/gnu/llvm/lib/CodeGen/EarlyIfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/VirtRegMap.cpp
    U src/gnu/llvm/lib/CodeGen/OptimizePHIs.cpp
    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/EHStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
    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/DwarfStringPool.h
    N src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/Utils.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.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/LegalizeTypes.h
    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/TargetLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FastISel.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/ScheduleDAGSDNodes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.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/MIParser.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.h
    U src/gnu/llvm/lib/CodeGen/MIRParser/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/MIRParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Option/Option.cpp
    U src/gnu/llvm/lib/Option/Arg.cpp
    U src/gnu/llvm/lib/Option/OptTable.cpp
    U src/gnu/llvm/lib/Option/ArgList.cpp
    U src/gnu/llvm/lib/Option/CMakeLists.txt
    U src/gnu/llvm/lib/Option/LLVMBuild.txt
    U src/gnu/llvm/lib/LTO/LTOCodeGenerator.cpp
    U src/gnu/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
    N src/gnu/llvm/lib/LTO/Caching.cpp
    U src/gnu/llvm/lib/LTO/LTOModule.cpp
    U src/gnu/llvm/lib/LTO/CMakeLists.txt
    N src/gnu/llvm/lib/LTO/LTOBackend.cpp
    U src/gnu/llvm/lib/LTO/LTO.cpp
    U src/gnu/llvm/lib/LTO/UpdateCompilerUsed.cpp
    U src/gnu/llvm/lib/LTO/LLVMBuild.txt
    N src/gnu/llvm/lib/XRay/Trace.cpp
    N src/gnu/llvm/lib/XRay/CMakeLists.txt
    
    11 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	2017/01/24 01:39:08

Modified files:
	gnu/llvm/lib/CodeGen: StackProtector.cpp TargetLoweringBase.cpp 
	gnu/llvm/lib/Target/AArch64: AArch64ISelLowering.cpp 
	                             AArch64Subtarget.h 
	gnu/llvm/tools/clang/include/clang/Driver: Options.td 
	gnu/llvm/tools/clang/lib/Basic: Targets.cpp 
	gnu/llvm/tools/clang/lib/Driver: ToolChains.cpp ToolChains.h 
	                                 Tools.cpp 
	gnu/llvm/tools/clang/lib/Frontend: InitHeaderSearch.cpp 
	gnu/llvm/tools/lld/tools/lld: lld.cpp 
Removed files:
	gnu/llvm/include/llvm/Analysis: LoopPassManager.h 
	gnu/llvm/include/llvm/Bitcode: ReaderWriter.h 
	gnu/llvm/include/llvm/CodeGen: MachineFunctionAnalysis.h 
	gnu/llvm/include/llvm/DebugInfo/CodeView: ByteStream.h 
	                                          CodeViewOStream.h 
	                                          FieldListRecordBuilder.h 
	                                          ListRecordBuilder.h 
	                                          MemoryTypeTableBuilder.h 
	                                          MethodListRecordBuilder.h 
	                                          StreamArray.h 
	                                          StreamInterface.h 
	                                          StreamReader.h 
	                                          StreamRef.h 
	                                          StreamWriter.h 
	                                          TypeDumper.h 
	gnu/llvm/include/llvm/DebugInfo/PDB/Raw: DirectoryStreamData.h 
	                                         IPDBFile.h 
	                                         IPDBStreamData.h 
	                                         IndexedStreamData.h 
	                                         MappedBlockStream.h 
	                                         MsfBuilder.h 
	                                         MsfCommon.h 
	gnu/llvm/include/llvm/ExecutionEngine: JITSymbolFlags.h 
	gnu/llvm/include/llvm/ExecutionEngine/Orc: JITSymbol.h 
	                                           LogicalDylib.h 
	                                           RPCChannel.h 
	gnu/llvm/include/llvm/Support: DataStream.h MemoryObject.h 
	                               StreamingMemoryObject.h 
	                               TimeValue.h 
	gnu/llvm/include/llvm/Target: TargetRecip.h 
	gnu/llvm/include/llvm/Transforms/IPO: InlinerPass.h 
	gnu/llvm/lib/Analysis: LoopPassManager.cpp 
	gnu/llvm/lib/CodeGen: MachineFunctionAnalysis.cpp 
	gnu/llvm/lib/DebugInfo/CodeView: ByteStream.cpp 
	                                 FieldListRecordBuilder.cpp 
	                                 ListRecordBuilder.cpp 
	                                 MemoryTypeTableBuilder.cpp 
	                                 MethodListRecordBuilder.cpp 
	                                 StreamReader.cpp 
	                                 StreamWriter.cpp TypeDumper.cpp 
	                                 TypeRecordBuilder.cpp 
	                                 TypeTableBuilder.cpp 
	gnu/llvm/lib/DebugInfo/PDB/Raw: IndexedStreamData.cpp 
	                                MappedBlockStream.cpp 
	                                MsfBuilder.cpp MsfCommon.cpp 
	gnu/llvm/lib/ExecutionEngine/Orc: OrcRemoteTargetRPCAPI.cpp 
	gnu/llvm/lib/Fuzzer: FuzzerDFSan.h FuzzerFnAdapter.h 
	gnu/llvm/lib/Fuzzer/test: FuzzerFnAdapterUnittest.cpp 
	                          SimpleFnAdapterTest.cpp 
	                          fuzzer-dfsan.test fuzzer-drill.test 
	                          fuzzer-fn-adapter.test 
	                          fuzzer-prunecorpus.test 
	                          fuzzer-trace-pc.test 
	                          fuzzer-traces.test fuzzer-trunc.test 
	gnu/llvm/lib/Fuzzer/test/dfsan: CMakeLists.txt 
	gnu/llvm/lib/Fuzzer/test/trace-bb: CMakeLists.txt 
	gnu/llvm/lib/Fuzzer/test/trace-pc: CMakeLists.txt 
	gnu/llvm/lib/Support: ConvertUTF.c DataStream.cpp 
	                      IntrusiveRefCntPtr.cpp MemoryObject.cpp 
	                      StreamingMemoryObject.cpp TimeValue.cpp 
	gnu/llvm/lib/Support/Unix: TimeValue.inc 
	gnu/llvm/lib/Support/Windows: TimeValue.inc 
	gnu/llvm/lib/Target: TargetRecip.cpp TargetSubtargetInfo.cpp 
	gnu/llvm/lib/Target/AArch64: AArch64BranchRelaxation.cpp 
	gnu/llvm/lib/Target/Hexagon: HexagonRDF.cpp HexagonRDF.h 
	                             HexagonSelectCCInfo.td 
	gnu/llvm/lib/Target/NVPTX: NVPTXFavorNonGenericAddrSpaces.cpp 
	                           NVPTXLowerKernelArgs.cpp 
	gnu/llvm/lib/Transforms/IPO: InlineAlways.cpp 
	gnu/llvm/lib/Transforms/Utils: NameAnonFunctions.cpp 
	gnu/llvm/tools/clang/lib/Headers: cuda_builtin_vars.h 
	gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker: 
	                                                              MPIFunctionClassifier.h 
	gnu/llvm/tools/clang/utils: clang-completion-mode.el 
	gnu/llvm/tools/lld/ELF: SymbolListFile.cpp SymbolListFile.h 
	gnu/llvm/tools/llvm-pdbdump: BuiltinDumper.cpp BuiltinDumper.h 
	                             ClassDefinitionDumper.cpp 
	                             ClassDefinitionDumper.h 
	                             CompilandDumper.cpp 
	                             CompilandDumper.h EnumDumper.cpp 
	                             EnumDumper.h 
	                             ExternalSymbolDumper.cpp 
	                             ExternalSymbolDumper.h 
	                             FunctionDumper.cpp FunctionDumper.h 
	                             TypeDumper.cpp TypeDumper.h 
	                             TypedefDumper.cpp TypedefDumper.h 
	                             VariableDumper.cpp VariableDumper.h 
	gnu/llvm/unittests/ADT: ilistTest.cpp 
	gnu/llvm/unittests/Analysis: LoopPassManagerTest.cpp 
	                             MixedTBAATest.cpp 
	gnu/llvm/unittests/DebugInfo/PDB: MsfBuilderTest.cpp 
	gnu/llvm/unittests/Support: IteratorTest.cpp 
	                            StreamingMemoryObjectTest.cpp 
	                            TimeValueTest.cpp 
	gnu/llvm/utils/lit: TODO 

Log message:
Merge LLVM 4.0.0 rc1


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 01:41:53

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Correct bounds checks used when generating the EC curves extension.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 01:42:41

src/gnu/usr.bin/clang/libLLVMCoroutines

Update of /cvs/src/gnu/usr.bin/clang/libLLVMCoroutines
In directory cvs.openbsd.org:/tmp/cvs-serv33970/libLLVMCoroutines

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMCoroutines added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 01:42:41

src/gnu/usr.bin/clang/libLLVMDebugInfoDWARF

Update of /cvs/src/gnu/usr.bin/clang/libLLVMDebugInfoDWARF
In directory cvs.openbsd.org:/tmp/cvs-serv33970/libLLVMDebugInfoDWARF

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMDebugInfoDWARF added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 01:42:41

src/gnu/usr.bin/clang/libLLVMDebugInfoMSF

Update of /cvs/src/gnu/usr.bin/clang/libLLVMDebugInfoMSF
In directory cvs.openbsd.org:/tmp/cvs-serv33970/libLLVMDebugInfoMSF

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMDebugInfoMSF added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 01:42:41

src/gnu/usr.bin/clang/libLLVMDemangle

Update of /cvs/src/gnu/usr.bin/clang/libLLVMDemangle
In directory cvs.openbsd.org:/tmp/cvs-serv33970/libLLVMDemangle

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMDemangle added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 01:44:47

Modified files:
	gnu/usr.bin/clang: Makefile 
	gnu/usr.bin/clang/clang: 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/Config: Version.inc 
	gnu/usr.bin/clang/include/llvm/Config: config.h llvm-config.h 
	gnu/usr.bin/clang/include/llvm/IR: Makefile 
	gnu/usr.bin/clang/libLLVMAArch64CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMARMCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMAnalysis: Makefile 
	gnu/usr.bin/clang/libLLVMBitReader: Makefile 
	gnu/usr.bin/clang/libLLVMCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMDebugInfoCodeView: Makefile 
	gnu/usr.bin/clang/libLLVMLTO: Makefile 
	gnu/usr.bin/clang/libLLVMObject: Makefile 
	gnu/usr.bin/clang/libLLVMScalarOpts: Makefile 
	gnu/usr.bin/clang/libLLVMSupport: Makefile 
	gnu/usr.bin/clang/libLLVMTarget: Makefile 
	gnu/usr.bin/clang/libLLVMTransformUtils: Makefile 
	gnu/usr.bin/clang/libLLVMX86CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMipo: Makefile 
	gnu/usr.bin/clang/libclangAnalysis: Makefile 
	gnu/usr.bin/clang/libclangCodeGen: Makefile 
	gnu/usr.bin/clang/libclangDriver: Makefile 
	gnu/usr.bin/clang/liblldCore: Makefile 
	gnu/usr.bin/clang/liblldELF: Makefile 
	gnu/usr.bin/clang/lld: Makefile 
	gnu/usr.bin/clang/llvm-tblgen: Makefile 
Added files:
	gnu/usr.bin/clang/include/llvm/Config: abi-breaking.h 
	gnu/usr.bin/clang/libLLVMCoroutines: Makefile 
	gnu/usr.bin/clang/libLLVMDebugInfoDWARF: Makefile 
	gnu/usr.bin/clang/libLLVMDebugInfoMSF: Makefile 
	gnu/usr.bin/clang/libLLVMDemangle: Makefile 

Log message:
Update clang build infrastructure for LLVM 4.0.0

Discussed with kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 01:49:02

src/usr.sbin/ocspcheck

Update of /cvs/src/usr.sbin/ocspcheck
In directory cvs.openbsd.org:/tmp/cvs-serv5174/ocspcheck

Log Message:
Directory /cvs/src/usr.sbin/ocspcheck added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 01:50:57

Added files:
	usr.sbin/ocspcheck: Makefile http.c http.h ocspcheck.8 
	                    ocspcheck.c 

Log message:
New ocspcheck utility to validate a certificate against its ocsp responder
and save the reply for stapling

ok deraadt@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2017/01/24 01:52:18

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
mark start -m as optional; reorder start synopsis to match vmctl usage
ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 01:54:23

Modified files:
	usr.sbin/ocspcheck: ocspcheck.8 

Log message:
s/exit/exist/ typo


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/24 02:02:33

Modified files:
	sys/arch/amd64/include: specialreg.h 

Log message:
SVM: missing msr defintion for host save area physaddr


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/24 02:03:05

Modified files:
	sys/arch/i386/include: specialreg.h 

Log message:
SVM: matching i386 commit (missing host save area pa msr)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 02:03:21

Modified files:
	lib/libssl     : Symbols.list s3_lib.c ssl.h ssl_lib.c 
	                 ssl_locl.h ssl_sess.c t1_lib.c 

Log message:
Add support for setting the supported EC curves via
SSL{_CTX}_set1_groups{_list}() - also provide defines for the previous
SSL{_CTX}_set1_curves{_list} names.

This also changes the default list of EC curves to be X25519, P-256 and
P-384. If you want others (such a brainpool) you need to configure this
yourself.

Inspired by parts of BoringSSL and OpenSSL.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 02:06:00

Modified files:
	regress/lib/libssl/client: clienttest.c 

Log message:
Update client tests for changes in default EC formats/curves.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 02:07:40

Modified files:
	usr.bin/openssl: s_client.c 

Log message:
Add a -groups option to openssl s_client, which allows supported EC curves
to be specified as a colon separated list.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 02:25:27

Modified files:
	usr.sbin/ocspcheck: Makefile 

Log message:
slight cleanups


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 02:29:14

Modified files:
	lib/libssl     : shlib_version 
	lib/libtls     : shlib_version 

Log message:
Bump libssl and libtls minors due to symbol additions.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/24 02:39:43

Modified files:
	usr.sbin/ocspcheck: ocspcheck.8 ocspcheck.c 

Log message:
various cleanup;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/24 02:45:45

Modified files:
	devel/py-path.py: Makefile distinfo 
	devel/py-path.py/pkg: PLIST 

Log message:
Update to py-path.py


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/24 02:50:54

Modified files:
	sys/arch/i386/include: vmmvar.h 
	sys/arch/amd64/include: vmmvar.h 

Log message:
SVM: misspelled field name in vmcb struct (renamed to match SVM code I'm
merging)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/24 02:54:41

Modified files:
	sys/kern       : subr_pool.c 

Log message:
Force a context switch for every pool_get(9) with the PR_WAITOK flag
if pool_debug is equal to 2, just like we do for malloc(9).

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/24 02:57:29

Modified files:
	usr.sbin/unbound: Makefile.bsd-wrapper 

Log message:
Add a workaround for the fact that 'install -d' without explicit mode
defaults to 755, which is incompatible with WOBJUMASK. Make sure that
obj/util has permissions :wobj 770, as all other directories in obj/.
Issue also found by jmc, actual reason tracked down by ajacoutot.

ok ajacoutot


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/01/24 02:58:00

Modified files:
	usr.sbin/vmd   : vmm.c 

Log message:
SVM: vmd(8) support for SVM


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 02:59:45

Modified files:
	usr.sbin/ocspcheck: http.c ocspcheck.c 

Log message:
Just don't bother with OpenSSL error strings, they are mostly
irrelevant and look gross here anyway.. we don't need them


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 03:02:11

Modified files:
	usr.sbin/ocspcheck: http.c 

Log message:
revert accidental commit of theo diff


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/24 03:06:21

Modified files:
	distrib/miniroot: install.sub 

Log message:
Don't allow any control and space characters in the answer to the
"System hostname" question.

OK tb@ krw@
'sure' deraadt@
positive feedback on the idea halex@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/01/24 03:08:30

Modified files:
	sys/net        : art.c bfd.c bpf.c bpfdesc.h bridgestp.c 
	                 ethertypes.h if.c if.h if_arp.h if_bridge.c 
	                 if_dl.h if_ethersubr.c if_gre.c if_gre.h 
	                 if_loop.c if_media.c if_media.h if_mpe.c 
	                 if_mpw.c if_pflog.c if_pflow.c if_pflow.h 
	                 if_pppvar.h if_pppx.c if_sppp.h if_spppsubr.c 
	                 if_tun.c if_vlan.c if_vlan_var.h ifq.h pf_if.c 
	                 pf_ioctl.c pf_table.c pfkey.c pfkeyv2.c 
	                 pfkeyv2.h pfkeyv2_convert.c 
	                 pfkeyv2_parsemessage.c pfvar.h pipex.c pipex.h 
	                 pipex_local.h ppp_tty.c radix.c raw_cb.c 
	                 route.c rtable.c slcompress.h trunklacp.c 

Log message:
A space here, a space there. Soon we're talking real whitespace
rectification.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/24 03:14:14

Modified files:
	distrib/miniroot: install.sub 

Log message:
ftplist.cgi provides the http server from previous installs as the
first line of its output. In contrast to the rest of the list of
mirror servers, this first line does not have any location info.

Only use this first line as default answer, if it has no location
info.

OK krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/24 03:17:56

Modified files:
	gnu/llvm/tools/lld/ELF: DriverUtils.cpp 

Log message:
Handle the OpenBSD-style major/minor shared library version scheme.

Don't try to upstream this; we are considering moving to a more standard
way that uses symbolic links to point the linker at the right version of
shared libraries.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 03:18:15

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
knf


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/24 03:20:27

Modified files:
	gnu/llvm/tools/lld/ELF: Config.h Driver.cpp Options.td 
	                        Symbols.cpp SyntheticSections.cpp 

Log message:
Avoid allocating space for commons with ld -r.  Already pushed upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/24 03:21:53

Modified files:
	gnu/llvm/tools/lld/ELF: Driver.cpp 

Log message:
PIE-by-default.  Probably not suitable for upsttreaming in its current form.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 03:23:11

Modified files:
	sys/arch/arm64/arm64: support.S trap.c 

Log message:
Remove the [fs]u{byte,word,swintr} fetch(9) functions that have
been removed years ago.

From miod


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 03:33:16

Modified files:
	usr.sbin/ocspcheck: http.c 

Log message:
Yes the "if (const == val" idiom provides some safety, but it grates on
us too much.
ok beck jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/01/24 03:34:23

Modified files:
	gnu/gcc/gcc/config/m88k: m88k.c openbsdelf.h 
	gnu/usr.bin/gcc/gcc/config/m88k: m88k.c openbsdelf.h 

Log message:
Prevent too much reordering in the instruction prologue, in order to fulfill
the expectations of the DWARF code... and in order to get correct information.

Tested by aoyama@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/01/24 03:35:10

Modified files:
	devel/py-test  : Makefile distinfo 

Log message:
Update to py-test 3.0.6


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 03:46:37

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
use warn, I have errno here. noticed by theo


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 03:46:53

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/24 03:49:14

Modified files:
	usr.sbin/relayd: pfe.c pfe_filter.c relayd.c relayd.h 

Log message:
move the opening of /dev/pf from the parent process to the pfe process
where it is used.
Currently pf is opened on every reload, that will no longer be
possible in the future with pledged programms that do ioctls.
This prepares relayd for that change.

ok deraadt@, meinetwegen reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/24 03:52:33

Modified files:
	libexec/ld.so/m88k: rtld_machine.c 

Log message:
To format r_addr, use %p and cast to 'void *'.  From comparison with
other archs


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 03:54:48

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
Actually load the cafile when providede, and error message cleanup


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 03:57:48

Modified files:
	usr.sbin/ocspcheck: http.c http.h 

Log message:
string terminator is called a NUL


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/24 03:59:10

Modified files:
	libexec/ld.so/powerpc: rtld_machine.c 

Log message:
For consistentcy, use 'void *' with %p instead of 'char *'


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/24 04:04:07

ports/devel/py-parsedatetime/patches

Update of /cvs/ports/devel/py-parsedatetime/patches
In directory cvs.openbsd.org:/tmp/cvs-serv40571/patches

Log Message:
Directory /cvs/ports/devel/py-parsedatetime/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/24 04:06:07

Modified files:
	devel/py-parsedatetime: Makefile 
	devel/py-parsedatetime/pkg: PLIST 
Added files:
	devel/py-parsedatetime/patches: patch-setup_py 

Log message:
fix py-parsedatetime deps; needs devel/py-test-runner at build (it fetched it
silently, so not spotted before), and some other programs failing at runtime
when setuptools checked deps.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/24 04:29:30

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
sort previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/24 04:46:35

Modified files:
	net/isc-bind   : Makefile 
Added files:
	net/isc-bind/patches: patch-bin_dig_dig_c patch-bin_dig_host_c 
	                      patch-bin_dig_nslookup_c 
	                      patch-lib_isc_unix_net_c 
	                      patch-lib_isc_unix_socket_c 

Log message:
add pledges for dig/host/nslookup in the ports version of BIND. initial
pledge is "stdio rpath inet unix dns", dropping to "stdio inet dns"
after argument parsing.

access to resolv.conf is required late; the dns pledge is used for this
rather than requiring full rpath; however contrary to the version in
base, inet is allowed as well, so that it can be used as a debug tool
for servers on alternate ports.

works fine for me; no feedback after posting yet so committing to get
real-world testing. please report any issues.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 04:58:51

Modified files:
	usr.sbin/ocspcheck: ocspcheck.8 

Log message:
Break run-on sentence into two.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/24 04:59:41

Modified files:
	sys/conf       : newvers.sh 

Log message:
logname(1) uses getlogin(2) to determine the user associated with the
current session. This way kernels built during 'make release' should
again have names such as deraadt@... bluhm@... instead of build@... in
most environments.

Issue reported by bluhm on icb eons ago.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 05:00:19

Modified files:
	usr.sbin/ocspcheck: ocspcheck.8 

Log message:
s/returns/exits/


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 05:05:14

Modified files:
	usr.sbin/acme-client: acctproc.c base64.c certproc.c chngproc.c 
	                      dnsproc.c fileproc.c http.c json.c main.c 
	                      netproc.c revokeproc.c rsa.c util.c 

Log message:
Replace comparisons between a constant or enum and an expression, with
a comparison between the expression and the constant or enum. This
significantly improves readability.

Transformed with coccinelle.

Requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 05:08:35

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
Say no to two line error messages on failure


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 05:14:44

Modified files:
	usr.sbin       : Makefile 

Log message:
hook ocspcheck into the build


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 05:22:23

Modified files:
	lib/libssl     : s3_srvr.c 

Log message:
Remove unused cert variable.

Found by bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 05:24:07

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
#if 0 the ecformats_list and eccurves_list - these are currently unused but
will be revisited at some point in the near future.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 05:30:35

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
fix mode on open() and ftruncate(), noticed by
bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 05:37:00

Modified files:
	usr.sbin/httpd : httpd.conf.5 

Log message:
add ocspcheck to see also


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 05:38:41

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
errx() does not need extra newline


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/24 05:43:00

Modified files:
	share/man/man5 : resolv.conf.5 
	lib/libc/net   : resolver.3 

Log message:
in resolver(3), document that _EDNS0 and _DNSSEC are no ops;
diff from kirill miazine

while here, bump all the no op texts to one standard blurb;
help/ok jca


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 05:44:40

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
correct usage format; ok beck claudio benno


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 05:53:52

Modified files:
	usr.sbin/acme-client: chngproc.c dnsproc.c fileproc.c http.c 
	                      json.c keyproc.c main.c parse.y 
	                      revokeproc.c util.c 

Log message:
Complete jsing's coccinelle cleanup... by hand
ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/24 06:13:41

Modified files:
	usr.sbin/acme-client: base64.c 

Log message:
nuke extra brackets. discussed with jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 06:28:33

Modified files:
	usr.bin/tmux   : paste.c window.c 

Log message:
Shorten a long line, and don't leak buffer in paste_add if size is zero.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/24 06:28:47

Modified files:
	usr.sbin/httpd : httpd.conf.5 

Log message:
sort SEE ALSO;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 06:32:55

Modified files:
	usr.sbin/acme-client: acctproc.c base64.c certproc.c chngproc.c 
	                      dnsproc.c fileproc.c http.c json.c main.c 
	                      netproc.c revokeproc.c rsa.c util.c 

Log message:
Make returns consistent and remove parentheses per style(9).

Transformed with coccinelle.

Requested by and ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/24 06:33:06

Modified files:
	sys/arch/armv7/include: vmparam.h 

Log message:
Use the same stack size as on i386

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 06:34:26

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
Within libssl a SSL_CTX * is referred to as a ctx - fix this for
SSL_CTX_free().


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 06:51:26

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/01/24 07:07:41

Modified files:
	usr.sbin/traceroute: traceroute.c 

Log message:
Tell traceroute6 to choose source address based on correct routing
table.
From dhill, tweeks by me.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/24 07:08:53

Modified files:
	share/man/man8 : release.8 

Log message:
Remove some superfluous words and convert Ar VERSION into Va VERSION.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/01/24 07:14:51

Modified files:
	sys/net        : switchofp.c 

Log message:
Kill some unused variables found by clang.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/24 07:20:27

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-2.2.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 07:57:31

Modified files:
	lib/libssl     : s3_clnt.c s3_lib.c s3_srvr.c ssl_cert.c 
	                 ssl_lib.c ssl_rsa.c t1_lib.c 

Log message:
sk_pop_free() checks for NULL so do not bother doing it from the callers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 08:04:12

Modified files:
	lib/libssl     : d1_srtp.c s3_clnt.c ssl_cert.c ssl_lib.c 

Log message:
sk_free() checks for NULL so do not bother doing it from the callers.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 08:11:55

Modified files:
	lib/libssl     : s3_clnt.c ssl_lib.c 

Log message:
BUF_MEM_free(), X509_STORE_free() and X509_VERIFY_PARAM_free() all check
for NULL, as does lh_free() - do not do the same from the caller.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/24 08:32:20

Modified files:
	regress/lib/libc/malloc/malloc_general: Makefile 

Log message:
use ${.OBJDIR}


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/24 08:38:38

Modified files:
	net/wireshark  : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
update wireshark in -stable to 2.0.10


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/24 08:54:53

Modified files:
	regress/lib/libc/malloc/malloc_general: malloc_general.c 

Log message:
make sure realloc preserves data


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/24 09:03:28

Modified files:
	regress/lib/libc/malloc/malloc_general: Makefile 
	                                        malloc_general.c 

Log message:
fix make clean and warnings


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 12:11:46

Modified files:
	usr.bin/tmux   : cmd-set-option.c cmd-show-options.c options.c 
	                 tmux.h 

Log message:
If given an array option without an index either show or set all items,
and support -a for array options. Allow the separator for set to be
specified in the options table (will be used for backwards compatibility
later).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 12:53:37

Modified files:
	usr.bin/tmux   : client.c cmd-string.c cmd.c key-bindings.c 
	                 options-table.c pty.c tmux.1 tmux.h 

Log message:
Add support for custom command aliases, this is an array option which
contains items of the form "alias=command". This is consulted when an
unknown command is parsed.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 12:59:19

Modified files:
	usr.bin/tmux   : cmd-show-messages.c cmd.c options-table.c 

Log message:
server-info can become an alias rather than a command.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 13:01:34

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Remove some lies about terminal-overrides from tmux.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 13:05:15

Modified files:
	usr.bin/tmux   : options-table.c tmux.1 tty-term.c 

Log message:
Convert terminal-overrides to an array option.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 13:15:32

Modified files:
	usr.bin/tmux   : cmd-attach-session.c cmd-new-session.c 
	                 cmd-switch-client.c environ.c options-table.c 
	                 tmux.1 tmux.h 

Log message:
Make update-environment an array as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 13:24:54

Modified files:
	usr.bin/tmux   : cmd-set-option.c 

Log message:
Fix set -u on array options.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/24 13:40:07

Modified files:
	games/jbrickshooter: Makefile 
	sysutils/rundeck: Makefile 

Log message:
don't fail to build if the directory already exists.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/24 14:25:14

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Bump dependencies to devel/nspr>=4.13.1 and security/nss>=3.28, the
latter is a hard requirement for upcoming gecko 51. Bumps to follow.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/24 14:27:28

Modified files:
	www/seamonkey  : Makefile 
	devel/xulrunner/24: Makefile 
	mail/mozilla-thunderbird: Makefile 
	www/tor-browser/browser: Makefile 

Log message:
Bump REVISION for ports that depend on nss and/or nspr via mozilla.port.mk


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/24 14:33:09

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/patches: patch-browser_installer_Makefile_in 
	                             patch-storage_mozStorageConnection_cpp 
	www/mozilla-firefox/pkg: PLIST 
	www/firefox-i18n: Makefile Makefile.inc distinfo 
Removed files:
	www/mozilla-firefox/patches: 
	                             patch-netwerk_protocol_http_Http2Session_cpp 

Log message:
Update to firefox 51.0.

See https://www.mozilla.org/en-US/firefox/51.0/releasenotes/ and MFSA
2017-01 (https://www.mozilla.org/en-US/security/advisories/mfsa2017-01/)

Remove patch-netwerk_protocol_http_Http2Session_cpp (#1290037)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/24 14:35:09

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox-esr 45.7.0.

See https://www.mozilla.org/en-US/firefox/45.7.0/releasenotes/ and MFSA
2017-02 (https://www.mozilla.org/en-US/security/advisories/mfsa2017-02/)

Remove patch-netwerk_protocol_http_Http2Session_cpp (#1290037)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/24 14:35:59

Removed files:
	www/firefox-esr/patches: 
	                         patch-netwerk_protocol_http_Http2Session_cpp 

Log message:
Remove, i said.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/24 14:50:23

Modified files:
	usr.bin/tmux   : Makefile cmd-bind-key.c cmd-list-keys.c 
	                 cmd-unbind-key.c server.c tmux.1 tmux.h 
	                 window-choose.c 
Removed files:
	usr.bin/tmux   : mode-key.c 

Log message:
Fixed keys for choose mode, and remove the last mode keys bits.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/01/24 15:22:20

Modified files:
	sys/sys        : atomic.h 

Log message:
add explicit casts for going from volatile void * to void * volatile *.

guenther says void * is less special in c++, and atomic.h now leaks into
c++ ports.

reported by naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 15:40:09

Modified files:
	bin/ps         : keyword.c nlist.c 
	usr.sbin/tcpdump: print-pflog.c 

Log message:
do not need sys/proc.h


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/24 15:40:55

Modified files:
	sys/net        : bpf.c 

Log message:
splsoftnet() to  NET_LOCK() in bpfwrite().

ok dlg@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/01/24 16:37:10

Modified files:
	libexec/ld.so  : dl_printf.c 

Log message:
make ldso[] const; OK guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/24 16:38:12

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_decide.c rde_rib.c 

Log message:
Save some space in struct rib_entry so it is back to 64bytes (on 64bit archs).
Doing this by folding the lock flag into a pointer and providing an accessor
function for the rib pointer. This is an acceptable middle path for this
important structure.
OK benno@ on an earlier version


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/24 16:41:44

Modified files:
	sbin/mount     : mount.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/01/24 16:47:00

Modified files:
	net/gajim      : Makefile distinfo 
	net/gajim/patches: patch-scripts_gajim_in 
	                   patch-src_common_helpers_py 
	net/gajim/pkg  : PLIST 

Log message:
Update gajim to 0.16.6, from Rafael Sadowski.  Thanks!

OK czarkoff@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 16:47:34

Modified files:
	usr.bin/ftp    : ftp.1 main.c 

Log message:
Add -S noverifytime to ftp to permit an unvalidated TLS connection when
you don't knwo what time it is


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/24 17:11:07

Modified files:
	usr.sbin/bgpd  : bgpd.h parse.y 

Log message:
Flag the Loc-RIB with F_RIB_LOCAL so we can remove one ugly hack somewhere else


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/24 17:15:38

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_decide.c rde_rib.c 

Log message:
Switch rde_generate_update and rde_send_kroute to accept a struct rib instead
of the id. For this we move the rtableid into struct rib. Also move the update
code in rib.c up to where the kroute code is. Makes more senses like that.


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/01/24 17:48:36

Modified files:
	sys/conf       : GENERIC 

Log message:
enable BFD

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/24 19:14:41

Modified files:
	usr.bin/mandoc : cgi.c html.c mdoc_html.c 

Log message:
Improve HTML formatting of .Bl -tag.

In particular, when using the style sheet, put the body on the same
line as the head for short heads, or on the next line for long
heads, in a way that preserves both correct indentation and correct
vertical spacing with and without -compact, and with one or more
heads per body (hi, Zaphod) - eight use cases so far - and with and
without -tag, and with and without -offset, 32 use cases grand total.

Using many ideas from zhuk@, from <David dot Dahlberg at fkie dot
fraunhofer dot de>, and from Benny Lofgren <bl dash lists at lofgren
dot biz>, and a few of my own.

This is an excellent demonstration that CSS is an extremely hostile
language, much more trapful and much harder to use than, say, C.
When matthew@ reported this in July 2014 (!), it was already a known
issue, and i no longer remember for how long.  My first serious
attempt at fixing it (in November 2015) failed miserably.  I'd love
to see simplifications of both the generated HTML code and of the
style sheet, but without breaking any of the 32 use cases, please.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 19:28:22

src/distrib/notes/arm64

Update of /cvs/src/distrib/notes/arm64
In directory cvs.openbsd.org:/tmp/cvs-serv82909/arm64

Log Message:
Directory /cvs/src/distrib/notes/arm64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 19:29:25

Added files:
	distrib/notes/arm64: contents features hardware install prep 
	                     upgrade whatis xfer 

Log message:
Copy install notes for arm64 from armv7.  These still need to be
modified to make sense for arm64.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/24 19:33:25

Modified files:
	sbin/mount     : mount.c 

Log message:
Some simple cleanup:

* check strdup for malloc failure
* remove obvious /* NOTREACHED */
* return instead of exit from main
* err(1, NULL) instead of err(1, "malloc")
* mark usage as __dead

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 19:45:28

Modified files:
	distrib/sets/lists/base: md.arm64 
	distrib/sets/lists/comp: md.arm64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/24 19:54:53

Modified files:
	usr.bin/mandoc : Makefile 
Added files:
	usr.bin/mandoc : mandoc.css 

Log message:
Add the style sheet used on man.openbsd.org to the source tree.

It is NOT used during "make build" and NOT installed, but it is
helpful for people trying to read and understand html.c and mdoc_html.c,
and maybe even for users of mandoc -Thtml.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 20:10:06

Modified files:
	distrib/notes/arm64: contents features hardware prep whatis 

Log message:
Updates to OpenBSD/arm64 install notes.

with jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 20:10:40

Modified files:
	distrib/notes  : Makefile 

Log message:
Add arm64 to the allarchs target.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 20:18:06

Modified files:
	sys/kern       : Makefile 

Log message:
+arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 20:18:58

Modified files:
	distrib        : Makefile 

Log message:
enter arm64


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/24 20:19:26

Modified files:
	sysutils/consolekit: Makefile 
	sysutils/consolekit/patches: patch-src_ck-manager_c 
Added files:
	sysutils/consolekit/patches: 
	                             patch-tools_ck-get-x11-display-device_c 

Log message:
Fix for OpenBSD VT device naming scheme.
Tweak the display manager users list.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/24 20:19:56

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
+arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 20:20:27

Modified files:
	lib/libssl     : ssl.h 

Log message:
Provide defines for SSL_CTRL_SET_CURVES/SSL_CTRL_SET_CURVES_LIST for things
that are conditioning on these.

From BoringSSL.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/01/24 20:21:55

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_rib.c 

Log message:
Hopefully the last of the struct rib rototilling. Peer just points to a
struct rib and not rib_desc since the full descriptor is almost never needed.
This should now allow the update code to be changed.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 20:24:52

Modified files:
	etc            : Makefile 

Log message:
+arm64


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/24 20:37:26

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/24 20:37:42

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.42.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/24 20:48:11

Modified files:
	sys/arch/arm64/conf: Makefile.arm64 

Log message:
Silence warnings caused by LLVM upgrade.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/24 20:48:47

Modified files:
	share/man/man7 : mdoc.7 

Log message:
add "arm64" as a valid .Dt arch argument;
inspired by deraadt@'s commit to usr.bin/mandoc/cgi.c


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/24 20:51:29

Modified files:
	x11/agar/agar  : Makefile 

Log message:
Add a missed dependency on portaudio-svn.

Build failure noticed by naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	patrick@cvs.openbsd.org	2017/01/24 21:20:14

Added files:
	.              : arm64.html 

Log message:
Initial stab at a page for OpenBSD/arm64.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 23:13:02

Modified files:
	lib/libssl     : d1_pkt.c s3_pkt.c ssl_locl.h 

Log message:
Provide ssl3_packet_read() and ssl3_packet_extend() functions that improve
the awkward API provided by ssl3_read_n(). Call these when we need to
read or extend a packet.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 23:15:44

Modified files:
	lib/libcrypto/bn: bn.h bn_gcd.c bn_lcl.h bn_x931p.c 
	lib/libcrypto/rsa: rsa_chk.c rsa_gen.c 

Log message:
Construct a BN_gcd_nonct, based on BN_mod_inverse_no_branch, as suggested
by Alejandro Cabrera <aldaya@gmail.com> to avoid the possibility of a
sidechannel timing attack during RSA private key generation.

Modify BN_gcd to become not visible under LIBRESSL_INTERNAL and force
the use of the _ct or _nonct versions of the function only within
the library.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/24 23:15:51

Modified files:
	sys/kern       : sched_bsd.c uipc_socket.c uipc_socket2.c 
	                 uipc_syscalls.c uipc_usrreq.c 
	sys/net        : if.c if_pflow.c pf.c 
	sys/sys        : filedesc.h systm.h 
	sys/uvm        : uvm_vnode.c 

Log message:
Enable the NET_LOCK(), take 2.

Recursions are currently known and marked a XXXSMP.

Please report any assert to bugs@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/24 23:38:01

Modified files:
	lib/libssl     : d1_lib.c ssl_locl.h 

Log message:
Change the SSL_IS_DTLS() macro to check the version, rather than using a
flag in the encryption methods. We can do this since there is currently
only one DTLS version. This makes upcoming changes easier.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 23:43:13

src/regress/lib/libcrypto/rsa

Update of /cvs/src/regress/lib/libcrypto/rsa
In directory cvs.openbsd.org:/tmp/cvs-serv46357/rsa

Log Message:
Directory /cvs/src/regress/lib/libcrypto/rsa added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 23:44:04

Added files:
	regress/lib/libcrypto/rsa: Makefile rsa_test.c 

Log message:
Add rsa test from openssl, since it has a license now


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/24 23:44:22

Modified files:
	regress/lib/libcrypto: Makefile 

Log message:
link in rsa test


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/25 00:21:18

Modified files:
	usr.bin/ftp    : ftp.1 

Log message:
cetificate -> certificate;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/25 00:24:34

Modified files:
	regress/usr.bin/mdoclint: mdoclint 

Log message:
+arm64;


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 00:29:30

Modified files:
	gnu/usr.bin/clang: Makefile Makefile.arch 

Log message:
Descend into the arch specific subdirectory for every arch on
make obj.  This will enable us to add clang to the build.

"if it works" kettenis@
ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/25 00:35:04

Modified files:
	sys/kern       : sys_process.c 

Log message:
deSCARGize sys_ptrace()

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/01/25 00:35:31

Modified files:
	sys/kern       : uipc_syscalls.c 

Log message:
Allocate and connect sockets first, then upon success create file
descriptors so that the NET_LOCK is satisfied.
ok mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2017/01/25 01:23:50

Modified files:
	sys/arch/amd64/isa: clock.c 
	sys/arch/i386/isa: clock.c 

Log message:
tedu some code that has not been executed since time_t became 64 bits

guenther@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 01:29:29

Log message:
    Import py-bokeh-0.12.4.
    
    Bokeh is a Python interactive visualization library that targets modern web
    browsers for presentation. Its goal is to provide elegant, concise construction
    of novel graphics in the style of D3.js, and to extend this capability with
    high-performance interactivity over very large or streaming datasets. Bokeh can
    help anyone who would like to quickly and easily create interactive plots,
    dashboards, and data application.
    
    req. by and ok mpi@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20170125
    
    N ports/www/py-bokeh/Makefile
    N ports/www/py-bokeh/distinfo
    N ports/www/py-bokeh/pkg/DESCR
    N ports/www/py-bokeh/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 01:30:12

Modified files:
	www            : Makefile 

Log message:
+py-boke.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 01:32:15

Modified files:
	www            : Makefile 

Log message:
It's py-bokeh!


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/25 01:56:08

Modified files:
	gnu/usr.bin/binutils-2.17: Makefile.bsd-wrapper 
	gnu/usr.bin/binutils-2.17/bfd: Makefile.am Makefile.in 
	                               archures.c bfd-in2.h config.bfd 
	                               configure targets.c 
	gnu/usr.bin/binutils-2.17/include/elf: common.h 
	gnu/usr.bin/binutils-2.17/opcodes: configure configure.in 
Added files:
	gnu/usr.bin/binutils-2.17/bfd: cpu-aarch64.c elf64-aarch64.c 

Log message:
Stub out aarch64 support and avoid building gas and ld on this architecture.

ok mpi@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/25 02:23:08

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
In amsdu_decap() check the actual length of the data in the remaining mbuf
chain. Else this function will sometimes signal end of AMSDU frame too early.
Patch by Imre Vadasz.
ok mpi@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/25 02:41:45

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
Clear the reference of the original mbuf chain after m_split()'ing
a mbuf and properly intialize m_len.

From FreeBSD via Imre Vadasz.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 02:43:50

Modified files:
	sys/arch/arm64/arm64: support.S 

Log message:
Add assembly helpers for calling the hypervisor and secure monitor.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/01/25 02:58:03

Added files:
	games/dustrac/patches: patch-CMakeLists_txt 

Log message:
drop -O3 from compiler flags.
OK landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/25 03:14:40

Modified files:
	sys/dev/fdt    : files.fdt 
	sys/arch/armv7/conf: files.armv7 
Added files:
	sys/dev/fdt    : plrtc.c psci.c 
Removed files:
	sys/arch/armv7/dev: psci.c plrtc.c 

Log message:
Move psci(4) and plrtc(4) so arm64 can use them.
Tested by and ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/25 03:19:15

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
enable plrtc(4) and psci(4)
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 03:23:17

Modified files:
	sys/arch/arm64/arm64: support.S 

Log message:
Setjmp should return zero, while longjmp should return nonzero in
kernel.  Since those are only used by ddb, guard them with DDB.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 03:24:13

Modified files:
	sys/arch/arm64/include: _types.h 

Log message:
Setjmp and longjmp save/restore 13 registers in a label_t struct,
not only 11 registers.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/25 03:28:41

src/regress/lib/libcrypto/CA

Update of /cvs/src/regress/lib/libcrypto/CA
In directory cvs.openbsd.org:/tmp/cvs-serv88117/CA

Log Message:
Directory /cvs/src/regress/lib/libcrypto/CA added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/25 03:29:34

Added files:
	regress/lib/libcrypto/CA: Makefile doit.sh index.txt 
	                          intermediate.cnf root.cnf 

Log message:
Add start of a regress for cert gen and validation. not clean, won't
hook it up yet


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 03:43:37

Modified files:
	lib/libc/arch/aarch64/sys: cerror.S 

Log message:
__errno() returns a 32-bit pointer, so make sure we write a 32-bit
value to and not overwrite other bits by writing a 64-bit value.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 03:54:23

Modified files:
	lib/libssl     : s23_clnt.c ssl_lib.c ssl_locl.h 

Log message:
Limit enabled version range by the versions configured on the SSL_CTX/SSL,
provide an ssl_supported_versions_range() function which also limits the
versions to those supported by the current method.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 04:11:21

Modified files:
	regress/lib/libssl/unit: ssl_versions.c 

Log message:
Update ssl versions regress to handle min/max configured versions and
the cover the ssl_supported_version_range() function.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/01/25 04:15:07

Modified files:
	sys/arch/amd64/conf: Makefile.amd64 
	sys/arch/arm64/conf: Makefile.arm64 
	sys/arch/armv7/conf: Makefile.armv7 

Log message:
Build amd64 kernels with -ffreestanding.  Synchronize the arm64 and armv7
kernel makefiles, that are using -ffreestanding already, with the amd64 one.
Other architectures will follow later.

ok jca@, visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/01/25 04:16:17

Modified files:
	lang/racket-minimal: Makefile distinfo 

Log message:
Update to Racket 6.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/25 04:55:47

Modified files:
	x11/kde/libs3  : Makefile 

Log message:
Mark KDE3 as broken until build issues (after recent LibreSSL changes)
are resolved.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/01/25 05:16:44

Modified files:
	net/tor        : Makefile distinfo 

Log message:
Update to tor 0.2.9.9.  Fixes a denial of service (TROVE-2017-001).


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/01/25 06:14:44

Modified files:
	devel/p5-Variable-Magic: Makefile distinfo 

Log message:
Update to p5-Variable-Magic-0.61.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/25 06:31:02

Modified files:
	usr.sbin/ocspcheck: http.c 

Log message:
bring changes from acme-client over here.
ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2017/01/25 06:52:53

Modified files:
	usr.sbin/acme-client: http.h 
	usr.sbin/ocspcheck: http.h 

Log message:
remove __BEGIN_DECLS and __END_DECLS from http.h
sync with ocspcheck and acme-client
ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/01/25 07:07:36

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 

Log message:
some run environnement do not properly reset signals (e.g., python) and
as a result pkg_add + signify fails with weird error messages, as it relies
on default SIGPIPE behavior.

Finally fix the problem, sanitize our running environment before forking.

Problem reported by various people.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/01/25 07:10:46

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgInfo.pm 

Log message:
In some cases, pkg_info -e spec would display the spec instead of the
actual pkg name as intended.

(forgot who reported that one, sorry)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/01/25 07:12:33

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgDelete.pm 

Log message:
if the fs got badly damaged, display a decent error message instead of
erroring out when we can't read a plist.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/01/25 07:13:50

Modified files:
	infrastructure/bin: dpb-replay 

Log message:
let dpb-replay work again after changing the interface completely.

(noticed before rpe@ reported it, but this should please him)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/01/25 07:16:46

Modified files:
	infrastructure/bin: check-lib-depends 
	infrastructure/mk: pkgpath.mk 

Log message:
improve the speed of lib-depends-check for multi-packages and bulk runs
drastically.

- make sure the recursive targets is marked as using the cache
- do not run env -i thus forgetting the cache. Do a proper manual run
which is just as complicated
- add an extra cache for each packing-list so that it goes really faster

okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/01/25 07:17:45

Modified files:
	usr.bin/make   : varmodifiers.c 

Log message:
off-by-one, leading to segfaults.  Trivial fix.

reported by jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/25 07:22:46

Modified files:
	net/nfsen      : Makefile distinfo 
Removed files:
	net/nfsen/patches: patch-libexec_NfSenRRD_pm 

Log message:
update to NfSen 1.3.8, fixing a shell escaping problem


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/25 07:23:29

Modified files:
	net/nfsen      : Tag: OPENBSD_6_0 Makefile distinfo 
Removed files:
	net/nfsen/patches: Tag: OPENBSD_6_0 patch-libexec_NfSenRRD_pm 

Log message:
MFC update to NfSen 1.3.8, fixing a shell escaping problem


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/25 07:24:54

Modified files:
	usr.bin/tmux   : input-keys.c tmux.1 tmux.h xterm-keys.c 

Log message:
If xterm-keys is on, use xterm(1) style keys for Home and End as well as
modified keys.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/25 07:27:12

Modified files:
	www/nghttp2    : Makefile distinfo 
	www/nghttp2/patches: patch-Makefile_in 

Log message:
update to nghttp2-1.19.0


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/25 07:36:09

Modified files:
	usr.bin/tmux   : input-keys.c tmux.h xterm-keys.c 

Log message:
Revert previous for now, it will break TERM=screen.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/25 07:48:21

Modified files:
	share/termtypes: termtypes.master 

Log message:
Add xterm+edit to tmux so that we get the old Home and End sequences
(only the modified ones are needed from xterm+pcfkeys).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/25 08:22:57

Modified files:
	libexec/ld.so/mips64: rtld_machine.c 

Log message:
Fix build on mips64.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/25 09:12:45

Modified files:
	lib/libcrypto/man: BN_bn2bin.3 

Log message:
document BN_asc2bn(3);
jsing@ confirmed that it is a public function worth documenting


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/25 09:45:50

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
As NET_LOCK() is a read/write lock, it can sleep in sotask().  So
the TASKQ_CANTSLEEP flag is no longer valid for the splicing thread.
OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2017/01/25 09:53:21

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
Fix array initialization syntax for ocspcheck.c
Conformance to C99, and avoiding build break on VisualStudio and HP-UX.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/25 10:34:31

Modified files:
	sys/net        : if_etherip.c if_etherip.h if_gif.c if_gif.h 
	                 if_pfsync.c if_pfsync.h 
	sys/netinet    : igmp.c igmp_var.h ip_carp.c ip_carp.h 
	                 ip_divert.c ip_divert.h ip_ether.c ip_ether.h 
	                 ip_gre.c ip_gre.h ip_icmp.c ip_icmp.h 
	                 ip_input.c ip_ipip.c ip_ipsp.h ip_var.h 
	                 ipsec_input.c raw_ip.c tcp_input.c tcp_var.h 
	                 udp_usrreq.c udp_var.h 
	sys/sys        : protosw.h 

Log message:
Since raw_input() and route_input() are gone from pr_input, we can
make the variable parameters of the protocol input functions fixed.
Also add the proto to make it similar to IPv6.
OK mpi@ guenther@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:22:43

src/gnu/usr.bin/clang/libLLVMMipsAsmParser

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMipsAsmParser
In directory cvs.openbsd.org:/tmp/cvs-serv21133/libLLVMMipsAsmParser

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMipsAsmParser added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:22:43

src/gnu/usr.bin/clang/libLLVMMipsAsmPrinter

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMipsAsmPrinter
In directory cvs.openbsd.org:/tmp/cvs-serv21133/libLLVMMipsAsmPrinter

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMipsAsmPrinter added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:22:43

src/gnu/usr.bin/clang/libLLVMMipsCodeGen

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMipsCodeGen
In directory cvs.openbsd.org:/tmp/cvs-serv21133/libLLVMMipsCodeGen

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMipsCodeGen added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:22:43

src/gnu/usr.bin/clang/libLLVMMipsDesc

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMipsDesc
In directory cvs.openbsd.org:/tmp/cvs-serv21133/libLLVMMipsDesc

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMipsDesc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:22:43

src/gnu/usr.bin/clang/libLLVMMipsDisassembler

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMipsDisassembler
In directory cvs.openbsd.org:/tmp/cvs-serv21133/libLLVMMipsDisassembler

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMipsDisassembler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:22:44

src/gnu/usr.bin/clang/libLLVMMipsInfo

Update of /cvs/src/gnu/usr.bin/clang/libLLVMMipsInfo
In directory cvs.openbsd.org:/tmp/cvs-serv21133/libLLVMMipsInfo

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/libLLVMMipsInfo added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:22:44

src/gnu/usr.bin/clang/include/llvm/Mips

Update of /cvs/src/gnu/usr.bin/clang/include/llvm/Mips
In directory cvs.openbsd.org:/tmp/cvs-serv21133/include/llvm/Mips

Log Message:
Directory /cvs/src/gnu/usr.bin/clang/include/llvm/Mips added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/25 12:24:33

Modified files:
	gnu/usr.bin/clang: Makefile.arch 
Added files:
	gnu/usr.bin/clang/include/llvm/Mips: Makefile 
	gnu/usr.bin/clang/libLLVMMipsAsmParser: Makefile 
	gnu/usr.bin/clang/libLLVMMipsAsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMMipsCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMMipsDesc: Makefile 
	gnu/usr.bin/clang/libLLVMMipsDisassembler: Makefile 
	gnu/usr.bin/clang/libLLVMMipsInfo: Makefile 

Log message:
Add infrastructure to build LLVM for mips64.

"check with visa@" kettenis@
"go ahead" visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/25 13:31:52

Modified files:
	www/nghttp2    : Makefile 

Log message:
add ref to Bernard Spil's libressl-related PR; don't actually patch it here
as we're not building tools.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/25 14:00:53

Modified files:
	shells/bash    : Makefile distinfo 

Log message:
update to 4.4 patchlevel 11


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/25 14:59:41

Modified files:
	sys/kern       : kern_synch.c sys_socket.c 
	sys/net        : if.c 

Log message:
Introduce a hack to remove false-positives when looking for memory
allocation that can sleep while holding the NET_LOCK().

To be removed once we're confident the remaining code paths are safe.

Discussed with deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/25 15:58:57

Modified files:
	regress/sys/arch/m88k: Makefile 

Log message:
Do not try to execute this test on !m88k archs.

Logic taken from the sparc64 regress, to avoid false negative on bluhm@'s
regression test infrastructure.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/01/25 16:25:51

Modified files:
	textproc/fzy   : Makefile distinfo 
	textproc/fzy/patches: patch-Makefile 

Log message:
Update fzy to 0.8.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/25 16:48:10

src/lib/libtls/man

Update of /cvs/src/lib/libtls/man
In directory cvs.openbsd.org:/tmp/cvs-serv90849/man

Log Message:
Directory /cvs/src/lib/libtls/man added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/25 16:50:51

Modified files:
	usr.bin/tmux   : cmd-set-option.c 

Log message:
Clear option before adding to array if no -a, reported by Michael
Nickerson.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/25 16:53:18

Modified files:
	lib/libtls     : Makefile 
Added files:
	lib/libtls/man : Makefile tls_accept_socket.3 tls_client.3 
	                 tls_config_ocsp_require_stapling.3 
	                 tls_config_set_protocols.3 
	                 tls_config_set_session_id.3 tls_config_verify.3 
	                 tls_conn_version.3 tls_connect.3 tls_init.3 
	                 tls_load_file.3 tls_ocsp_process_response.3 
	                 tls_read.3 
Removed files:
	lib/libtls     : tls_init.3 

Log message:
split the tls_init(3) that had grown fat to allow healthy future growth;
suggested by jsing@; "i would just chuck it in" jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/25 17:08:50

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
Do not hold the netlock while pool_get() may sleep.  It is not
necessary to lock code that initializes a new socket structure
before it has been linked to any global list.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 17:29:04

Modified files:
	lib/libssl     : ssl.h 

Log message:
Remove a sess_cert reference from a comment in the public header.

Noted by zhuk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 17:42:44

Modified files:
	lib/libssl     : ssl_lib.c ssl_locl.h t1_clnt.c t1_meth.c 
	                 t1_srvr.c 

Log message:
Remove ssl3_undef_enc_method - if we have internal bugs we want to segfault
so that we can debug it, rather than adding a "should not be called" error
to the stack.

Discussed with beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/25 17:52:22

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
Fix the structure initialzation to compile. bad inioguchi and millert :)
ok jsing@ rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/25 17:53:52

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
style


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 17:56:55

Modified files:
	print/cups     : Makefile 
Added files:
	print/cups/patches: patch-conf_cupsd_conf_in 

Log message:
Remove kerberos policy from the default configuration file to prevent cups
from failing to start. Initial breakage reported by Anthony Campbell.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/25 17:58:32

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
Use numeric exit codes consistently rather than a mix
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/25 18:19:17

Modified files:
	share/man/man4 : virtio.4 

Log message:
add fdt config line to synopsis


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 18:40:28

Modified files:
	x11/libfm      : Makefile.inc 
	x11/libfm/core : distinfo 
	x11/libfm/core/patches: patch-docs_reference_libfm_Makefile_in 
	x11/libfm/extra: Makefile distinfo 
Removed files:
	x11/libfm/patches: patch-docs_reference_libfm_Makefile_in 

Log message:
Update to libfm-1.2.5 and libfm-extra-1.2.5.
Take maintainer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 18:41:22

Removed files:
	x11/libfm/pkg  : DESCR PLIST 

Log message:
Remove, unused.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 18:41:55

Modified files:
	x11/menu-cache : Makefile distinfo 
	x11/menu-cache/patches: 
	                        patch-docs_reference_libmenu-cache_Makefile_in 

Log message:
Update to menu-cache-1.0.2.
Take maintainer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 18:42:27

Modified files:
	x11/pcmanfm    : Makefile distinfo 
	x11/pcmanfm/patches: patch-src_Makefile_in 

Log message:
Update to pcmanfm-1.2.5.
Take maintainer.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/25 18:46:19

Modified files:
	sys/arch/arm64/conf: files.arm64 
	sys/dev/fdt    : files.fdt 
	sys/arch/armv7/vexpress: files.vexpress 
Added files:
	sys/dev/fdt    : virtio_mmio.c 
Removed files:
	sys/arch/arm64/dev: virtio_mmio.c 
	sys/arch/armv7/vexpress: virtio_mmio.c 

Log message:
The only difference between armv7 and arm64 fdt virtio attachments is an
uneeded include.  Remove the include and move to MI fdt directory.


CVSROOT:	/cvs
Module name:	src
Changes by:	dhill@cvs.openbsd.org	2017/01/25 18:58:00

Modified files:
	sys/kern       : uipc_syscalls.c 

Log message:
Allocate the mbuf before the netlock.  While here, move the setting of
nflag closer to where its value is used.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2017/01/25 19:06:37

Modified files:
	regress/usr.sbin/ldapd: Makefile 

Log message:
Each entry in REGRESS_TARGETS is run in a separate make process, so the
.END target will kill ldapd after each one.  To compensate, make each test
target depend on bootstrap to ensure ldapd is running.  In .END, remove the
pid file after killing ldapd so reduce noise.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 20:16:57

Modified files:
	multimedia/x264: Makefile distinfo 
	multimedia/x264/patches: patch-common_osdep_h patch-configure 

Log message:
Update to x264-20170125.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 20:44:17

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-141.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 20:45:13

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/25 20:45:33

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.43.

ok rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/25 20:55:25

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Spacing and use arithmetic test

OK aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/25 21:08:50

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
No need to escape '.' in shell patterns - it has no special meaning.

OK aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/25 21:34:51

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Move setting _OSrev to immediately after verifying _KERNV and exit
early if _OSrev is empty.

OK aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/25 21:37:08

Modified files:
	lib/libcrypto/man: ERR_load_crypto_strings.3 

Log message:
Document ERR_load_BN_strings(3).
jsing@ confirmed that this function is public and worth documenting.

This page needs much more work, it is outrageously incomplete and
unclear.  For example, it remains unexplained what error strings
are, what "registering" means and what the benefit for the application
is, what happens if it is not done, or what happens if an error
occurs after calling ERR_free_strings(3).  I tried to read the code,
but it is so contorted that i postponed that work.  For example,
it looks like there are hooks for applications to replace the
functions used for registering strings by other, application-supplied
functions, and, of course, there are many levels of macro and
function wrappers.

For now, i only documented the most obvious BUGS.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/25 21:38:27

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Remove unused _REL variable

OK aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/25 21:45:46

Modified files:
	regress/sys/kern/unfdpass: Makefile unfdpass.c 

Log message:
enable compiler warnings and fix them.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/25 21:56:18

src/regress/sys/kern/pledge/ioctl

Update of /cvs/src/regress/sys/kern/pledge/ioctl
In directory cvs.openbsd.org:/tmp/cvs-serv54526/ioctl

Log Message:
Directory /cvs/src/regress/sys/kern/pledge/ioctl added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/25 21:58:08

Added files:
	regress/sys/kern/pledge/ioctl: Makefile expected pfioctl1.c 
	                               pfioctl2.c unfdpass.c 

Log message:
add check for pledge(pf), and pledge(pf) + fd passing


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/25 21:59:01

Modified files:
	regress/sys/kern/pledge: Makefile 

Log message:
deactivate the existing pledge regress tests, they need
some changes to work again.
activate new ioctl subdirectory.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 22:31:25

Modified files:
	lib/libssl     : Makefile d1_clnt.c d1_srvr.c s3_both.c 
	                 s3_clnt.c s3_pkt.c s3_srvr.c ssl_locl.h 
	                 t1_clnt.c t1_meth.c t1_srvr.c 
Added files:
	lib/libssl     : ssl_packet.c 
Removed files:
	lib/libssl     : s23_clnt.c s23_lib.c s23_pkt.c s23_srvr.c 

Log message:
Merge the client/server version negotiation into the existing (currently
fixed version) client/server code.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 22:51:54

Modified files:
	lib/libssl     : Makefile 
Added files:
	lib/libssl     : ssl_both.c ssl_clnt.c ssl_pkt.c ssl_srvr.c 
Removed files:
	lib/libssl     : s3_both.c s3_clnt.c s3_pkt.c s3_srvr.c 

Log message:
Rename s3_{both,clnt,pkt_srvr}.c to have an ssl_ prefix since they are no
longer SSLv3 code.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 23:01:44

Modified files:
	lib/libssl     : Makefile ssl_lib.c 
Added files:
	lib/libssl     : ssl_versions.c 

Log message:
Move relatively new version range code from ssl_lib.c into a separate
ssl_versions.c file.

ok beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/25 23:19:58

Modified files:
	x11/kde/libs3  : Makefile 
Added files:
	x11/kde/libs3/patches: patch-kio_kssl_kssl_cc 

Log message:
Unbreak after recent LibreSSL changes. Please keep LibreSSL devs out!

(I hope beck@ have a good ophthalmologist, because medical maintenance
is required after looking in that code)

prodded by aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/25 23:32:58

Modified files:
	lib/libssl     : d1_clnt.c d1_lib.c d1_pkt.c d1_srvr.c 
	                 ssl_both.c ssl_clnt.c ssl_lib.c ssl_locl.h 
	                 ssl_pkt.c ssl_srvr.c t1_lib.c 

Log message:
Remove most of SSL3_ENC_METHOD - we can just inline the function calls
and defines since they are the same everywhere.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/25 23:39:08

Modified files:
	lib/libssl     : ssl_pkt.c 

Log message:
Refactor the code to generate a WANT_READ into a function, as we are
using it more and more to avoid spins.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/26 00:20:57

Modified files:
	lib/libssl     : ssl.h ssl_err.c ssl_locl.h ssl_pkt.c 

Log message:
Limit the number of sequential empty records that we will process
before yielding, and fail if we exceed a maximum. loosely based
on what boring and openssl are doing
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/26 01:19:43

Modified files:
	lib/libssl     : ssl_pkt.c 

Log message:
english is hard.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/26 01:24:34

Modified files:
	sbin/pfctl     : pfctl.8 pfctl.c 

Log message:
Select the routing domain to be used for kill states by host or by
label, by adding a -V <rdomain> option.
written by Bertrand Provost, provost DOT bertrand AT gmail DOT com, thanks.
ok florian@, with feedback from florian and jmc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/26 01:42:00

Modified files:
	mail/mozilla-thunderbird: Makefile distinfo 
	mail/thunderbird-i18n: Makefile.inc distinfo 
Removed files:
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_netwerk_protocol_http_Http2Session_cpp 

Log message:
Update to thunderbird 45.7.0.

See https://www.mozilla.org/en-US/thunderbird/45.7.0/releasenotes/

Remove patch-mozilla_netwerk_protocol_http_Http2Session_cpp as it was
merged in the 45esr branch.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/26 02:16:01

Modified files:
	lib/libssl     : Makefile ssl_err.c 
Removed files:
	lib/libssl     : ssl_err2.c 

Log message:
Merge the single two line function from ssl_err2.c into ssl_err.c.

ok beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/26 02:38:57

Modified files:
	graphics/img2pdf: Makefile distinfo 

Log message:
Update to img2pdf 0.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/26 02:47:44

Modified files:
	devel/py-certifi: Makefile distinfo 

Log message:
Update to py-certifi 2017.1.23


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/26 03:40:21

Modified files:
	lib/libssl     : d1_both.c d1_clnt.c d1_lib.c d1_pkt.c d1_srtp.c 
	                 d1_srvr.c s3_lib.c ssl_asn1.c ssl_both.c 
	                 ssl_cert.c ssl_ciph.c ssl_clnt.c ssl_err.c 
	                 ssl_lib.c ssl_locl.h ssl_packet.c ssl_pkt.c 
	                 ssl_rsa.c ssl_sess.c ssl_srvr.c ssl_txt.c 
	                 t1_enc.c t1_lib.c t1_reneg.c 

Log message:
Send the error function codes to rot in the depths of hell where they belong
We leave a single funciton code (0xFFF) to say "SSL_internal" so the public
API will not break, and we replace all internal use of the two argument
SSL_err() with the internal only SSL_error() that only takes a reason code.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/26 03:57:37

Modified files:
	sys/dev/ic     : rtwn.c 

Log message:
Fix rtwn(4) IQ calibration code (affects PCI devices only).
Some bits which probably should have been cleared were never cleared.
Inspired by parts of FreeBSD's giant r307529 commit.
Tested by myself on 8188CE PCI and jca@ on RTL8188RU USB.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/01/26 04:52:07

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/26 05:07:06

Modified files:
	lib/libcrypto/err: err.h 

Log message:
Hide SSLerr() under #ifndef LIBRESSL_INTERNAL since we shouldn't be
using it anymore
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/26 05:16:13

Modified files:
	lib/libssl     : d1_both.c d1_clnt.c d1_srtp.c d1_srvr.c 
	                 s3_lib.c ssl_both.c ssl_cert.c ssl_ciph.c 
	                 ssl_clnt.c ssl_lib.c ssl_packet.c ssl_pkt.c 
	                 ssl_rsa.c ssl_sess.c ssl_srvr.c t1_enc.c 
	                 t1_lib.c t1_reneg.c 

Log message:
Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the ugly
line wraps that resulted


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/26 05:18:56

Modified files:
	sys/arch/sparc64/conf: GENERIC 

Log message:
Disable pgt(4) and acx(4) on sparc64. The kernel has grown too large.
Unbreaks the build and allows GENERIC.MP to boot again on T5220.
I am quite sure the zero users of these old wireless cards on sparc64
will be much happier with a ral(4) or athn(4) card instead.
ok otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/26 05:26:20

Modified files:
	usr.sbin/ldomctl: ldomctl.8 

Log message:
Document the ldomctl(8) 'select' command previously not mentioned in the
manual page. Also, replace an alternative fact given for the 'dump' command
with an actual fact: it does not accept an argument.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/26 05:28:00

Modified files:
	lib/libssl     : ssl_srvr.c 

Log message:
Convert ssl3_get_client_hello() to CBS.

ok beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/26 05:30:02

Modified files:
	shells/nsh     : Makefile 
Added files:
	shells/nsh/patches: patch-conf_c patch-if_c patch-pfsync_c 

Log message:
fix build after recent network changes


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/26 05:44:52

Modified files:
	lib/libssl     : bio_ssl.c 

Log message:
knf


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/26 05:52:45

Modified files:
	lib/libtls     : shlib_version 

Log message:
Bump libtls minor due to symbol additions earlier this week.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/26 05:53:17

Modified files:
	lib/libtls     : tls.h 

Log message:
Bump TLS_API due to new features being added earlier this week.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/26 05:56:37

Modified files:
	lib/libtls     : tls.c tls_client.c tls_internal.h tls_server.c 

Log message:
Use a flag to track when we need to call SSL_shutdown(). This avoids an
issue where by calling tls_close() on a TLS context that has not attempted
a handshake, results in an unexpected failure.

Reported by Vinay Sajip.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/26 06:03:47

Modified files:
	sys/netinet    : ip_icmp.c ip_ipsp.h ipsec_input.c tcp_subr.c 
	                 tcp_var.h udp_usrreq.c udp_var.h 
	sys/netinet6   : ip6protosw.h 
	sys/sys        : protosw.h 

Log message:
Reduce the difference between struct protosw and ip6protosw.  The
IPv4 pr_ctlinput functions did return a void pointer that was always
NULL and never used.  Make all functions void like in the IPv6 case.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/26 07:40:04

Modified files:
	security/openssl: Makefile distinfo 
	security/openssl/patches: patch-Configure patch-Makefile_org 

Log message:
update to openssl-1.0.2k


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/26 08:44:46

Modified files:
	sysutils/moreutils: Makefile 
	sysutils/moreutils/pkg: DESCR 

Log message:
add a short description of chronic(1) in moreutils' DESCR


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/26 10:08:26

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-BUILD_gn 
	                      patch-ash_display_mirror_window_controller_cc 
	                      patch-ash_shell_cc patch-base_BUILD_gn 
	                      patch-base_debug_debugger_posix_cc 
	                      patch-base_debug_stack_trace_h 
	                      patch-base_process_process_posix_cc 
	                      patch-base_threading_platform_thread_linux_cc 
	                      patch-base_trace_event_malloc_dump_provider_cc 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_features_gni 
	                      patch-cc_BUILD_gn 
	                      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_mash_mash_runner_cc 
	                      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_download_chrome_download_manager_delegate_cc 
	                      patch-chrome_browser_download_download_status_updater_cc 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_browser_context_keyed_service_factories_cc 
	                      patch-chrome_browser_interstitials_chrome_controller_client_cc 
	                      patch-chrome_browser_media_galleries_media_file_system_registry_cc 
	                      patch-chrome_browser_memory_details_cc 
	                      patch-chrome_browser_process_singleton_posix_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_safe_browsing_incident_reporting_incident_reporting_service_cc 
	                      patch-chrome_browser_safe_browsing_permission_reporter_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_view_prefs_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_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_message_center_message_center_frame_view_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_strip_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_options_browser_options_handler_cc 
	                      patch-chrome_browser_ui_webui_options_browser_options_handler_h 
	                      patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                      patch-chrome_common_BUILD_gn 
	                      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_extensions_chrome_extensions_client_cc 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-chrome_common_url_constants_cc 
	                      patch-chrome_common_url_constants_h 
	                      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_filesystem_file_system_app_cc 
	                      patch-components_neterror_resources_neterror_js 
	                      patch-components_omnibox_browser_omnibox_field_trial_cc 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-content_app_content_main_runner_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_accessibility_browser_accessibility_h 
	                      patch-content_browser_accessibility_browser_accessibility_manager_h 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_child_process_launcher_cc 
	                      patch-content_browser_gpu_gpu_data_manager_impl_private_cc 
	                      patch-content_browser_media_media_internals_cc 
	                      patch-content_browser_ppapi_plugin_process_host_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_utility_process_host_impl_cc 
	                      patch-content_common_BUILD_gn 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_shell_browser_shell_browser_context_cc 
	                      patch-dbus_property_cc 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-device_gamepad_gamepad_provider_cc 
	                      patch-device_serial_BUILD_gn 
	                      patch-ipc_ipc_message_utils_cc 
	                      patch-media_BUILD_gn 
	                      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_video_capture_device_client_cc 
	                      patch-net_BUILD_gn 
	                      patch-net_http_http_network_session_cc 
	                      patch-net_proxy_proxy_service_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-services_ui_surfaces_surfaces_context_provider_cc 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_h 
	                      patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_h 
	                      patch-third_party_WebKit_Source_platform_fonts_SimpleFontData_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_h 
	                      patch-third_party_WebKit_Source_wtf_BUILD_gn 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_ffmpeg_BUILD_gn 
	                      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_sqlite_BUILD_gn 
	                      patch-third_party_webrtc_base_BUILD_gn 
	                      patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                      patch-tools_gn_args_cc 
	                      patch-tools_gn_bootstrap_bootstrap_py 
	                      patch-tools_variations_fieldtrial_to_struct_py 
	                      patch-ui_base_ime_input_method_factory_cc 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_gl_sync_control_vsync_provider_cc 
	                      patch-ui_gl_sync_control_vsync_provider_h 
	                      patch-ui_message_center_views_message_center_button_bar_h 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_mus_aura_init_cc 
	                      patch-ui_views_mus_aura_init_h 
	                      patch-ui_views_style_platform_style_cc 
	                      patch-ui_views_views_delegate_cc 
	                      patch-v8_BUILD_gn patch-v8_src_globals_h 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: 
	                      patch-base_debug_thread_heap_usage_tracker_cc 
	                      patch-base_threading_platform_thread_h 
	                      patch-build_compiler_version_py 
	                      patch-chrome_browser_ui_libgtkui_print_dialog_gtk_cc 
	                      patch-content_browser_memory_memory_monitor_cc 
	                      patch-content_child_child_process_cc 
	                      patch-content_child_child_process_h 
	                      patch-content_child_child_thread_impl_cc 
	                      patch-content_child_child_thread_impl_h 
	                      patch-content_common_child_process_messages_h 
	                      patch-content_public_common_renderer_preferences_h 
	                      patch-content_renderer_pepper_pepper_media_device_manager_cc 
	                      patch-content_renderer_webscrollbarbehavior_impl_aura_cc 
	                      patch-media_capture_video_linux_v4l2_capture_delegate_cc 
	                      patch-net_socket_udp_socket_posix_cc 
	                      patch-services_service_manager_runner_host_BUILD_gn 
	                      patch-ui_views_controls_label_cc 
	                      patch-ui_views_selection_controller_cc 
Removed files:
	www/chromium/patches: 
	                      patch-base_debug_scoped_thread_heap_usage_cc 
	                      patch-chrome_browser_ui_libgtk2ui_print_dialog_gtk2_cc 
	                      patch-content_browser_power_usage_monitor_impl_cc 
	                      patch-content_renderer_devtools_v8_sampling_profiler_cc 
	                      patch-content_renderer_webscrollbarbehavior_impl_gtkoraura_cc 
	                      patch-device_serial_serial_service_impl_cc 
	                      patch-native_client_build_compiler_version_py 
	                      patch-net_udp_udp_socket_posix_cc 
	                      patch-services_shell_runner_host_BUILD_gn 

Log message:
update to 56.0.2924.76


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/26 11:28:05

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c 
	regress/usr.bin/mandoc/char/space: zerowidth.out_html 
	regress/usr.bin/mandoc/char/unicode: ascii.out_html 
	                                     latin1.out_html 
	                                     latin1diff.out_html 
	                                     named.out_html 
	                                     namediff.out_html 
	                                     nogroff.out_html 

Log message:
Fix -man -Thtml formatting after .nf (which has nothing to do
with "literal", by the way, it means "no fill"):

* Use <pre> such that whitespace is preserved.
* Preserve lines breaks.
* For font alternating macros, avoid node recursion which required
scary juggling with the fill state.  Instead, simply print the text
children directly.

Missing feature first noticed by kristaps@ in 2011,
the again reported by afresh1@ in 2016,
and finally reported here: https://github.com/Debian/debiman/issues/21 ,
which i only found because of Shane Kerr's comment here:
https://plus.google.com/110314300533310775053/posts/H1eaw9Yskoc


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/26 11:45:12

Modified files:
	sbin/pfctl     : pfctl.8 

Log message:
one more fix i requested for previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/26 13:42:07

Modified files:
	lib/libtls/man : tls_conn_version.3 

Log message:
fix Dt;


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/01/26 15:52:20

Modified files:
	sysutils/duplicity/patches: 
	                            patch-testing_functional_test_restart_py 

Log message:
Upstream committed a fix based on this diff


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/26 15:59:55

Modified files:
	usr.bin/nc     : nc.1 
	usr.sbin/ocspcheck: ocspcheck.8 ocspcheck.c 

Log message:
oscp -> ocsp;
from holger mikolon, plus one more in nc;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/26 16:04:16

Modified files:
	lang/php       : Makefile.inc 
	lang/php/5.5   : Makefile 
	lang/php/5.6   : Makefile 
	lang/php/7.0   : Makefile 
Removed files:
	lang/php/7.0/patches: patch-ext_pcre_php_pcre_c 

Log message:
disable pcre jit in php/7.0 with a CONFIGURE_ARGS, move the BROKEN-alpha out
from Makefile.inc to 5.5 / 5.6 / 5.7, allowing 7.0 a chance to build there.
ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/26 17:55:49

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
Always register names taken from file names in the names ohash.
Bug found by makewhatis -p crashing in mlink_check().


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/26 18:04:13

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
fix base directory detection for makewhatis -t


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/26 18:09:02

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
If parsing a page reveals that it is neither mdoc(7) nor man(7),
fall back to treating it as preformatted rather than treating
it as man(7) anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/26 18:14:34

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
Parse the section number from the content of preformatted pages
and warn if it doesn't match the directory where the file was found.


CVSROOT:	/cvs
Module name:	src
Changes by:	dhill@cvs.openbsd.org	2017/01/26 19:55:36

Modified files:
	sys/netinet6   : ip6_output.c 

Log message:
copypktopts is only called by ip6_setpktopts using M_NOWAIT.  Drop
canwait as it is unneeded.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2017/01/27 00:03:27

Modified files:
	lib/libtls     : tls_ocsp.c 
	usr.sbin/httpd : parse.y 
	regress/usr.bin/openssl: appstest.sh 

Log message:
More s/OSCP/OCSP/ typos

ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/27 01:32:14

Log message:
    Import sunscreen-1.0.
    
    Step back into the '70s with this disco-inspired display face. Groovy, baby!
    
    ok landry@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20170127
    
    N ports/fonts/sunscreen/Makefile
    N ports/fonts/sunscreen/distinfo
    N ports/fonts/sunscreen/pkg/PLIST
    N ports/fonts/sunscreen/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/27 01:33:00

Modified files:
	fonts          : Makefile 

Log message:
+sunscreen


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/27 01:34:57

Log message:
    Import sile-0.9.4.
    
    SILE is a typesetting system. Its job is to produce beautiful printed
    documents.
    
    SILE takes some textual instructions and turns them into PDF output. It has
    features inspired by TeX and InDesign, but seeks to be more flexible,
    extensible and programmable than them. It's useful both for typesetting
    documents written in the SILE language, and as a processing system for
    styling and outputting structured data.
    
    ok landry@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20170127
    
    N ports/print/sile/Makefile
    N ports/print/sile/distinfo
    N ports/print/sile/pkg/PLIST
    N ports/print/sile/pkg/DESCR
    N ports/print/sile/patches/patch-core_font_lua
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/27 01:35:36

Modified files:
	print          : Makefile 

Log message:
+sile


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/27 03:20:17

Modified files:
	net/monitoring-plugins: Makefile 
Added files:
	net/monitoring-plugins/patches: 
	                                patch-plugins-scripts_check_ircd_pl 

Log message:
Replace handrolled pack with pack_sockaddr_in to fix check_ircd on systems
where sockaddr_storage includes a length. Diff from Alf Schlichting with one
minor tweak by me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/27 04:01:14

Modified files:
	security/sslscan: Makefile distinfo 
	security/sslscan/patches: patch-Makefile 
Added files:
	security/sslscan/patches: patch-sslscan_c 

Log message:
update to sslscan-1.11.8, convert to GH_* variables, use the SSL_get_state()
accessor rather than digging in the struct directly which no longer works in
libressl (state was moved to internal).


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/01/27 04:06:57

Modified files:
	distrib/sets/lists/base: mi 

Log message:
quick partial sync: libtls.so to unbreak snaps - there may be others to do


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/27 04:10:38

Added files:
	security/sslsplit/patches: patch-ssl_c 

Log message:
use the accessor instead of ssl->state
still broken, it also wants ssl->type


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/27 04:23:21

Modified files:
	www/links      : Makefile 
Added files:
	www/links/patches: patch-connect_c patch-links_h 

Log message:
remove fallback that disables TLS if a connection fails; has been useless for
some time but now build fails because options was moved to internal-only in
libressl


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/27 04:33:08

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
warn about missing one-line description;
missing feature found in the TODO file


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/27 06:30:39

Modified files:
	include        : Makefile 

Log message:
install libcxxabi and libcxx headers when COMPILER_VERSION is clang
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/27 06:35:14

Modified files:
	regress/sys/ffs/ffs: Makefile 
	regress/sys/ffs/nfs: Makefile 

Log message:
Make sure that the fstest program has been build when running in
the ffs and nfs subdirs.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/27 06:38:40

Modified files:
	.              : Makefile.cross 

Log message:
We can now build parts of binutils on aarch64 so enable cross-binutils
again.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/27 06:47:17

Modified files:
	usr.bin/mandoc : main.c manconf.h manpath.c 

Log message:
warn about invalid output options
and error out if they occur on the command line;
missing feature found in the TODO file


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/27 07:34:24

Modified files:
	textproc/p5-PDF-API2: Makefile distinfo 
	textproc/p5-PDF-API2/pkg: PLIST 

Log message:
update to p5-PDF-API2 2.031


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/27 08:27:59

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.044


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/27 08:47:47

Modified files:
	lib/libpthread/man: pthread_exit.3 pthread_setspecific.3 

Log message:
new sentence, new line


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/27 08:53:50

Modified files:
	usr.sbin/crunchgen: crunchgen.8 

Log message:
Copyright notices don't belong in the displayed text of manual pages,
so delete it.  Of course, the notice is still present as a comment
in the source code of the page, at the place where it belongs.
Found because it also violated "new sentence, new line".


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/27 09:13:08

Modified files:
	x11/qt5/qtbase : Makefile 
	x11/qt5/qtbase/patches: 
	                        patch-src_network_ssl_qsslcontext_openssl_cpp 
Added files:
	x11/qt5/qtbase/patches: 
	                        patch-src_network_ssl_qsslsocket_openssl_symbols_cpp 
	                        patch-src_network_ssl_qsslsocket_openssl_symbols_p_h 

Log message:
Fix after recent LibreSSL changes.

Nowadays we have fake SSL_CTRL_SET_CURVES macro, and SSL_CTX_set1_curves
defined as synonym to SSL_CTX_set1_groups. So use the latter instead
of the former.

The patch should be tweaked furthermore before proposing it upstream,
but for now we can at least build things again.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/01/27 10:59:09

Modified files:
	distrib/alpha  : Makefile 
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/alpha/inst-common: Makefile.inc 
	distrib/luna88k/ramdisk: Makefile 
	distrib/sparc64: Makefile 
	distrib/sparc64/bsd.rd: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
Switch alpha, luna88k and sparc64 ramdisks to makefs.
ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/27 11:52:26

Removed files:
	graphics/glfw/patches: patch-src-glx_context-c 
	graphics/opencv/patches: patch-apps_haartraining_CMakeLists_txt 
	                         patch-modules_core_include_opencv2_core_version_hpp 
	net/samba/patches: patch-lib_replace_wscript 
	x11/tellico-kde4/patches: patch-src_fetch_allocinefetcher_cpp 
	                          patch-src_fetch_discogsfetcher_cpp 
	                          patch-src_fetch_moviemeterfetcher_cpp 
	                          patch-src_fetch_themoviedbfetcher_cpp 
	                          patch-src_fetch_vndbfetcher_cpp 
	                          patch-src_tests_discogsfetchertest_cpp 

Log message:
zap zero-byte files, list from rsadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/27 13:19:51

Modified files:
	lib/libtls/man : tls_accept_socket.3 
	                 tls_config_ocsp_require_stapling.3 
	                 tls_config_set_protocols.3 
	                 tls_config_set_session_id.3 tls_config_verify.3 
	                 tls_conn_version.3 tls_connect.3 tls_init.3 
	                 tls_load_file.3 tls_ocsp_process_response.3 
	                 tls_read.3 

Log message:
Fix Copyright notices; ok beck@ jsing@ tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/27 13:31:42

Modified files:
	sys/kern       : uipc_socket.c uipc_usrreq.c 
	sys/sys        : unpcb.h 

Log message:
In sosend() the size of the control message for file descriptor
passing is checked.  As the data type has changed in unp_internalize(),
the calculation has to be adapted in sosend().
Found by relayd regress test on i386.
OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2017/01/27 15:14:33

Modified files:
	devel/p5-Test-Most: Makefile distinfo 

Log message:
Update devel/p5-Test-Most to 0.35

OK bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/27 15:19:20

Removed files:
	sysutils/rancid/files: fnlogin.in 
	audio/jack/files: Makefile.am sndio_driver.c sndio_driver.h 
	textproc/ocaml-xmlm/pkg: PFRAG.no-native 

Log message:
zap more zero-byte files, found by rsadowski, who also tested builds
without them present.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/27 15:47:29

Modified files:
	print/sile     : Makefile 

Log message:
Configure fails without the runtime dependencies.

No build, no bump.

Failure pointed out by kili@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/27 17:59:36

Modified files:
	lib/libtls/man : tls_accept_socket.3 tls_client.3 
	                 tls_config_ocsp_require_stapling.3 
	                 tls_config_set_protocols.3 
	                 tls_config_set_session_id.3 tls_config_verify.3 
	                 tls_conn_version.3 tls_connect.3 tls_init.3 
	                 tls_load_file.3 tls_ocsp_process_response.3 
	                 tls_read.3 

Log message:
add HISTORY and AUTHORS


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/28 01:08:07

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/28 01:08:33

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.44.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/28 03:18:52

Modified files:
	mail/rspamd    : Makefile distinfo 
Added files:
	mail/rspamd/patches: patch-contrib_t1ha_t1ha_h 

Log message:
update to rspamd-1.4.3, from Brad.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/28 04:57:19

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
Introduce ieee80211_mira_probe_done() helper which resets probing state,
cancels timeouts, and resets driver stats. Call it when probing has
finished instead of manually resetting only probing state.
Right now this is only called once but an upcoming change will reuse it.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/28 05:38:42

Modified files:
	usr.sbin/unbound: Makefile.bsd-wrapper 

Log message:
Back out make(obj) hack: it doesn't solve the problem entirely and may
interfere with read-only src tree setups.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/28 09:01:36

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
Make mira cope with out-of-range single frame error rate (SFER) values.
These are either due to driver bugs or rounding errors in fixed point math
but can be dealt with gracefully and don't occur often (only one instance
of this problem has been reported in the wild so far).

Turn related panics into debug printfs.
With 'ifconfig athn0 debug' the kernel now prints notifications about
out-of-range SFER values in dmesg. Compile a kernel with 'option MIRA_DEBUG'
to get a dump of driver stats in dmesg as well.

This change should prevent an undesirable panic reported by Peter Kay,
though it does not actually address the root cause of the problem.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/28 09:11:27

Modified files:
	usr.bin/tmux   : cmd-attach-session.c cmd-new-session.c 
	                 cmd-switch-client.c 

Log message:
Do not clear the key table when changing session on a client, so that
switch-client and friends work with bind -n.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/28 10:53:17

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
- -N got changed to -D
- there is no Challenges section

reported by michael reed


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/28 11:42:10

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
.Bl -column with zero columns is legal, so don't segfalt on it.
Bug introduced in rev. 1.123 triggered for example in gssapi(3),
analyzed and reported by Michael <Stapelberg at debian dot org>.
Simplify the code a bit more while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/01/28 13:25:27

Modified files:
	shells/bash    : Makefile distinfo 

Log message:
update to 4.4 patchlevel 12


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/28 14:30:00

Modified files:
	mail/neomutt   : Makefile distinfo 
	mail/neomutt/patches: patch-main_c 

Log message:
update to neomutt-20170128


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/01/28 14:38:15

Modified files:
	devel/gdb      : Makefile distinfo 

Log message:
update to gdb 7.12.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/01/28 14:54:34

Modified files:
	shells/osh     : Makefile distinfo 
	shells/osh/pkg : PLIST 
Added files:
	shells/osh/patches: patch-Makefile 

Log message:
Update to osh 4.3.0; enable regression tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/01/28 15:31:39

Modified files:
	print/sile     : Makefile 

Log message:
Fix WANTLIB.

From sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/28 15:36:17

Modified files:
	usr.bin/mandoc : html.c mdoc_html.c 

Log message:
Simplify usage of print_otag() even more:
accept NULL to skip the attribute or format.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/28 16:26:56

Modified files:
	usr.bin/mandoc : mandoc.1 mandoc.h mdoc.c read.c 

Log message:
Add a warning "new sentence, new line".
This does not attempt to pinpoint each and every offender, but
instead tries very hard to avoid false positives: Currently, there
are only two false positives in the whole OpenBSD base system.
Only do this in mdoc(7), not in man(7), because manuals written
in man(7) typically have much worse problems than this.
OK jmc@ on a previous version of the patch


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/28 20:48:08

Modified files:
	gnu/usr.bin    : Makefile 

Log message:
descend into clang when building obj or when COMPILER_VERSION is clang
ok patrick@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/01/28 23:08:51

Modified files:
	mail/s-nail    : Makefile distinfo 

Log message:
Update to s-nail 14.8.16


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/29 02:41:36

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmreg.h 

Log message:
In iwm(4), remove old deprecated scan API definitions which have been
unused since the upgrade to version 16 firmware.

Also, matching the iwlwifi code, use IWM_DEFAULT_SCAN_CHANNELS (== 40)
instead of IWM_MAX_NUM_SCAN_CHANNELS (== 36) as default value for
sc->sc_capa_n_scan_channels.

Mostly matches the header-file changes in Linux iwlwifi git
commit 1f9403863c080478ad78247c89b018e95bdfb027.

Patch by Imre Vadasz.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/29 02:43:50

Modified files:
	sys/dev/pci    : if_iwmreg.h 

Log message:
Remove a couple of definitions from if_iwmreg.h which were never
used and which were removed from iwlwifi in Linux git commit
76f8c0e17edc6eba43f84952e5a87c7f50f69370.

Patch by Imre Vadasz.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/29 02:44:25

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
The iwm_get_active_dwell() and iwm_get_passive_dwell() functions are
unused, and where removed in Linux iwlwifi git commit
9437e9941025bc83d3dd43f2927019149029f667.

Patch by Imre Vadasz.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 03:00:22

Modified files:
	lang/elixir    : Makefile distinfo 

Log message:
update to elixir-1.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/01/29 03:03:09

Modified files:
	regress/usr.bin/make: Makefile 
Added files:
	regress/usr.bin/make: mk42 

Log message:
ouch, smallest regress ever. Can't believe no-one got bitten by this


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/01/29 03:04:13

Modified files:
	usr.bin/make   : engine.c 

Log message:
obvious protection against null pointer, because it's quite possible for cgn
to not have a parent...


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 04:02:05

Modified files:
	geo/geoclue2   : Makefile distinfo 

Log message:
update to geoclue2-2.4.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 04:51:50

Modified files:
	www/qutebrowser: Makefile distinfo 

Log message:
update to qutebrowser-0.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 04:54:30

Modified files:
	productivity/projectlibre: Makefile distinfo 

Log message:
update to projectlibre-1.7.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 04:54:45

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 
	devel/ruby-rspec/specinfra/pkg: PLIST 

Log message:
update to specinfra-2.66.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 04:54:55

Modified files:
	devel/ruby-rspec/serverspec: Makefile distinfo 

Log message:
update to serverspec-2.38.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 04:59:28

Modified files:
	sysutils/ruby-puppet-lint: Makefile distinfo 
	sysutils/ruby-puppet-lint/pkg: PLIST 

Log message:
update to puppet-lint-2.1.0 and drop maintainership


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/29 07:02:19

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c mdoc_html.c 

Log message:
eliminate one useless struct and one level of indirection;
no functional change


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/29 07:38:00

Modified files:
	www/nginx      : Makefile 

Log message:
add no_lua pseudo-flavour to disable building the nginx lua module.
use it by default for now, ngx_http_lua_ssl_ocsp.c cannot be built following
libressl changes (it sets tlsext_status_expected which moved to the internal
struct).  ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/29 07:38:43

Modified files:
	www/nginx      : Makefile 

Log message:
add a comment next to FLAVOR?= explaining why


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/29 08:12:42

Modified files:
	x11/i3status   : Makefile distinfo 
	x11/i3status/patches: patch-i3status_conf 
	                      patch-src_print_wireless_info_c 

Log message:
update to i3status-2.11


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/29 08:16:14

Modified files:
	usr.sbin/tcpdump: print-802_11.c 

Log message:
Fix tcpdump(8) display of duration values provided in 802.11 control frames.
These values are in microseconds, not milliseconds.
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/29 08:20:18

Modified files:
	lib/libssl     : ssl_both.c 

Log message:
Avoid clearing the mac_packet flag in the wrong place.

In many cases we got away with this, however if a server sends multiple
handshake messages in the same record only the first message would be added
to the MAC.

Should fix breakage reported by various people.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/29 08:31:15

Modified files:
	lib/libssl     : ssl_pkt.c 

Log message:
Put comment back in the right place.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2017/01/29 09:07:52

Modified files:
	net/tor        : Makefile 
Added files:
	net/tor/patches: patch-src_test_test_tortls_c 

Log message:
Disable tests that attempt to construct their own SSL data structures. This
requires all structs to be fully visible and completely understood by the
application, which is no longer the case with LibreSSL.

ok naddy@ pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/29 09:29:52

Modified files:
	libexec/ld.so/mips64: rtld_machine.c 

Log message:
Previous commit broke build on loongson. Refix by adding
an explicit type cast.

Reported and tested by matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/29 09:44:11

Modified files:
	sys/dev/usb/dwc2: dwc2_core.c 

Log message:
In dwctwo(4), fix an off-by-one in frame interval calculation.
Fix stolen from Linux commit 9ed04d976146cf10dfa4c71171434af7c0348747
ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/01/29 10:06:56

Modified files:
	.              : Makefile 

Log message:
Ensure the build user can write to the GLOBAL_AUTOCONF_CACHE file by
creating or truncating it with the proper ownership and permissions.

OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/29 10:49:23

Modified files:
	lib/libcrypto  : cryptlib.c ex_data.c 
	lib/libcrypto/asn1: a_bitstr.c a_bool.c a_bytes.c a_d2i_fp.c 
	                    a_dup.c a_enum.c a_i2d_fp.c a_int.c 
	                    a_mbstr.c a_object.c a_set.c a_sign.c 
	                    a_strnid.c a_time_tm.c a_verify.c asn1_err.c 
	                    asn1_gen.c asn1_lib.c asn_mime.c asn_moid.c 
	                    asn_pack.c bio_ndef.c d2i_pr.c d2i_pu.c 
	                    evp_asn1.c f_enum.c f_int.c f_string.c 
	                    i2d_pr.c i2d_pu.c n_pkey.c p5_pbe.c 
	                    p5_pbev2.c t_crl.c t_req.c t_x509.c 
	                    tasn_dec.c tasn_new.c tasn_prn.c tasn_utl.c 
	                    x_crl.c x_info.c x_long.c x_name.c x_pkey.c 
	                    x_pubkey.c 
	lib/libcrypto/bio: b_sock.c bf_buff.c bf_lbuf.c bio_err.c 
	                   bio_lib.c bss_acpt.c bss_bio.c bss_conn.c 
	                   bss_file.c bss_mem.c 
	lib/libcrypto/bn: bn_add.c bn_blind.c bn_ctx.c bn_div.c bn_err.c 
	                  bn_exp.c bn_exp2.c bn_gcd.c bn_gf2m.c bn_lib.c 
	                  bn_mod.c bn_mpi.c bn_prime.c bn_print.c 
	                  bn_rand.c bn_recp.c bn_sqrt.c 
	lib/libcrypto/buffer: buf_err.c buf_str.c buffer.c 
	lib/libcrypto/comp: c_zlib.c comp_err.c 
	lib/libcrypto/conf: conf_def.c conf_err.c conf_lib.c conf_mod.c 
	lib/libcrypto/dh: dh_ameth.c dh_err.c dh_gen.c dh_key.c dh_lib.c 
	                  dh_pmeth.c dh_prn.c 
	lib/libcrypto/dsa: dsa_ameth.c dsa_asn1.c dsa_err.c dsa_lib.c 
	                   dsa_ossl.c dsa_pmeth.c dsa_prn.c 
	lib/libcrypto/dso: dso_dlfcn.c dso_err.c dso_lib.c 
	lib/libcrypto/ec: ec2_mult.c ec2_oct.c ec2_smpl.c ec_ameth.c 
	                  ec_asn1.c ec_check.c ec_curve.c ec_err.c 
	                  ec_key.c ec_lib.c ec_mult.c ec_oct.c 
	                  ec_pmeth.c eck_prn.c ecp_mont.c ecp_nist.c 
	                  ecp_nistp224.c ecp_nistp256.c ecp_nistp521.c 
	                  ecp_nistz256.c ecp_oct.c ecp_smpl.c 
	lib/libcrypto/ecdh: ech_err.c ech_key.c ech_lib.c 
	lib/libcrypto/ecdsa: ecs_err.c ecs_lib.c ecs_ossl.c 
	lib/libcrypto/engine: eng_aesni.c eng_cnf.c eng_ctrl.c eng_err.c 
	                      eng_fat.c eng_init.c eng_lib.c eng_list.c 
	                      eng_pkey.c eng_table.c tb_asnmth.c 
	                      tb_cipher.c tb_digest.c tb_pkmeth.c 
	lib/libcrypto/err: err.c err.h 
	lib/libcrypto/evp: digest.c e_aes.c e_camellia.c 
	                   e_chacha20poly1305.c e_gost2814789.c e_rc2.c 
	                   evp_aead.c evp_enc.c evp_err.c evp_key.c 
	                   evp_lib.c evp_pbe.c evp_pkey.c m_sigver.c 
	                   p5_crpt.c p5_crpt2.c p_dec.c p_enc.c p_lib.c 
	                   p_open.c p_sign.c p_verify.c pmeth_fn.c 
	                   pmeth_gn.c pmeth_lib.c 
	lib/libcrypto/gost: gost89imit_pmeth.c gost_err.c gostr341001.c 
	                    gostr341001_ameth.c gostr341001_key.c 
	                    gostr341001_pmeth.c 
	lib/libcrypto/hmac: hmac.c 
	lib/libcrypto/objects: o_names.c obj_dat.c obj_err.c obj_lib.c 
	lib/libcrypto/ocsp: ocsp_cl.c ocsp_err.c ocsp_ht.c ocsp_lib.c 
	                    ocsp_srv.c ocsp_vfy.c 
	lib/libcrypto/pem: pem_err.c pem_info.c pem_lib.c pem_oth.c 
	                   pem_pk8.c pem_pkey.c pem_seal.c pem_sign.c 
	                   pvkfmt.c 
	lib/libcrypto/pkcs12: p12_add.c p12_crpt.c p12_crt.c p12_decr.c 
	                      p12_init.c p12_key.c p12_kiss.c p12_mutl.c 
	                      p12_npas.c p12_p8e.c 
	lib/libcrypto/pkcs7: pk7_attr.c pk7_doit.c pk7_lib.c pk7_smime.c 
	lib/libcrypto/rand: rand_err.c 
	lib/libcrypto/rsa: rsa_ameth.c rsa_chk.c rsa_crpt.c rsa_eay.c 
	                   rsa_err.c rsa_gen.c rsa_lib.c rsa_none.c 
	                   rsa_oaep.c rsa_pk1.c rsa_pmeth.c rsa_prn.c 
	                   rsa_pss.c rsa_saos.c rsa_sign.c rsa_ssl.c 
	                   rsa_x931.c 
	lib/libcrypto/ts: ts_asn1.c ts_conf.c ts_err.c ts_req_utils.c 
	                  ts_rsp_sign.c ts_rsp_utils.c ts_rsp_verify.c 
	                  ts_verify_ctx.c 
	lib/libcrypto/ui: ui_err.c ui_lib.c 
	lib/libcrypto/x509: by_dir.c by_file.c by_mem.c x509_att.c 
	                    x509_cmp.c x509_err.c x509_lu.c x509_obj.c 
	                    x509_r2x.c x509_req.c x509_trs.c x509_v3.c 
	                    x509_vfy.c x509name.c x509spki.c 
	lib/libcrypto/x509v3: v3_akey.c v3_alt.c v3_bcons.c v3_bitst.c 
	                      v3_conf.c v3_cpols.c v3_crld.c v3_extku.c 
	                      v3_ia5.c v3_info.c v3_lib.c v3_ncons.c 
	                      v3_ocsp.c v3_pci.c v3_pcons.c v3_pmaps.c 
	                      v3_purp.c v3_skey.c v3_sxnet.c v3_utl.c 
	lib/libssl     : bio_ssl.c ssl_cert.c 

Log message:
Send the function codes from the error functions to the bit bucket,
as was done earlier in libssl. Thanks inoguchi@ for noticing
libssl had more reacharounds into this.
ok jsing@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/29 10:52:11

Modified files:
	lib/libtls     : tls_config.c tls_internal.h tls_ocsp.c 

Log message:
Move the ocsp staple to being part of the keypair structure internally,
so that it does not send back bogus staples when SNI is in use.
(Further change is required to be able to use staples on all keypairs
and not just the main one)
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/29 11:00:21

Modified files:
	lib/libtls/man : tls_ocsp_process_response.3 

Log message:
Marko Kreen contributed significantly to the ocsp stuff for libtls


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/29 11:03:12

Modified files:
	lib/libc/sys   : pledge.2 

Log message:
return the sio_open notes to the audio section; from michael reed


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/29 12:58:47

Modified files:
	sys/net        : if_etherip.c if_etherip.h if_gif.c if_gif.h 
	                 if_pfsync.c if_pfsync.h 
	sys/netinet    : igmp.c igmp_var.h in_proto.c ip_carp.c 
	                 ip_carp.h ip_divert.c ip_ether.c ip_ether.h 
	                 ip_gre.c ip_gre.h ip_icmp.c ip_icmp.h 
	                 ip_input.c ip_ipip.c ip_ipsp.h ip_var.h 
	                 ipsec_input.c raw_ip.c tcp_input.c tcp_var.h 
	                 udp_usrreq.c udp_var.h 
	sys/netinet6   : in6_proto.c ip6_divert.c ip6_input.c 
	                 ip6protosw.h 
	sys/sys        : protosw.h 

Log message:
Change the IPv4 pr_input function to the way IPv6 is implemented,
to get rid of struct ip6protosw and some wrapper functions.  It is
more consistent to have less different structures.  The divert_input
functions cannot be called anyway, so remove them.
OK visa@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/01/29 13:02:42

Modified files:
	mail/offlineimap: Makefile distinfo 
	mail/offlineimap/patches: patch-offlineimap_conf 

Log message:
Update to offlineimap-7.0.13

From Remi Locherer (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/29 13:43:31

Modified files:
	www/squid      : Makefile distinfo 

Log message:
update to squid-3.5.24


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2017/01/29 13:53:21

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
Document restrictions that apply to COMMENT

better wording from jmc@, ok jmc@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/01/29 14:35:23

Modified files:
	usr.bin/ssh    : clientloop.c 

Log message:
Fix typo in ~C error message for bad port forward cancellation.
bz#2672, from Brad Marshall via Colin Watson and Ubuntu's bugtracker.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/29 14:37:17

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
remove pesky blank line: sorry for not spotting this in previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/29 15:10:55

Modified files:
	usr.bin/tmux   : cmd-break-pane.c cmd-source-file.c tmux.1 

Log message:
Add -n to break-pane.


CVSROOT:	/cvs
Module name:	src
Changes by:	chl@cvs.openbsd.org	2017/01/29 15:31:09

Modified files:
	lib/csu        : boot.h 

Log message:
remove unused variables

ok krw@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/29 16:41:49

Modified files:
	lib/libcrypto/man: BN_mod_mul_montgomery.3 
	                   BN_mod_mul_reciprocal.3 BN_new.3 

Log message:
Seriously warn against calling BN_init(3), BN_MONT_CTX_init(3),
and BN_RECP_CTX_init(3).  They are not only deprecated but so
dangerous that they are almost unusable.  I found these scary
traps while reading the code in order to document BN_set_flags(3).
While here, delete ERR_get_error(3) from SEE ALSO.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/29 17:32:03

Modified files:
	usr.bin/ssh    : sshconnect2.c 

Log message:
don't dereference authctxt before testing != NULL, it causes compilers
to make assumptions; from Karsten Weiss


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/29 17:32:28

Modified files:
	usr.bin/ssh    : sshconnect2.c 

Log message:
misplaced braces in test; from Karsten Weiss


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/29 17:34:01

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
some explicit NULL tests when dumping configured forwardings;
from Karsten Weiss


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/29 17:38:50

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
small cleanup post SSHv1 removal:

remove SSHv1-isms in commented examples

reorder token table to group deprecated and compile-time conditional tokens
better

fix config dumping code for some compile-time conditional options that
weren't being correctly skipped (SSHv1 and PKCS#11)


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/29 18:03:00

Modified files:
	usr.bin/ssh    : auth2-pubkey.c 

Log message:
revise keys/principals command hang fix (bz#2655) to consume entire
output, avoiding sending SIGPIPE to subprocesses early; ok dtucker@


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/01/29 18:16:54

Modified files:
	.              : security.html 

Log message:
Remove mention about security-announce, it was removed two years ago
from mail.html


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/29 18:29:31

Modified files:
	lib/libcrypto/man: BN_add.3 BN_copy.3 BN_mod_inverse.3 BN_new.3 
	                   Makefile 
Added files:
	lib/libcrypto/man: BN_set_flags.3 

Log message:
Document BN_set_flags(3) and BN_get_flags(3).
jsing@ confirmed that these macros are public and worth documenting.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/29 21:54:07

Modified files:
	regress/usr.bin/ssh: forwarding.sh 

Log message:
partially unbreak: was not specifying hostname on some $SSH invocations


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/01/29 22:00:31

Modified files:
	sys/sys        : exec_elf.h 
	libexec/ld.so/mips64: rtld_machine.c 

Log message:
Fix ELF64_R_TYPE(reloc->r_info) to have the same type on mips64le
as on other LP64 archs, __uint64_t, so that printf-like functions
don't require extra casting...then eliminate the extra cast in
ld.so/mips64/rtld_machine.c

discussed with miod
ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/01/29 22:22:14

Modified files:
	regress/usr.bin/ssh: forwarding.sh 

Log message:
fully unbreak: some $SSH invocations did not have -F specified and
could pick up the ~/.ssh/config of the user running the tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/29 22:57:52

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.5.

prodded by jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/29 22:58:14

Modified files:
	sysutils/consul: Makefile distinfo 

Log message:
Update to consul-0.7.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/29 23:46:13

Modified files:
	usr.sbin/mkuboot: Makefile 

Log message:
build mkuboot on arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/29 23:57:43

Modified files:
	distrib/sets/lists/base: md.arm64 
	distrib/sets/lists/comp: md.arm64 

Log message:
Sync md sets for arm64, continuing to omit the parts that need to move
out of mi for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/30 00:51:27

Modified files:
	lib/libcrypto/man: BN_mod_mul_montgomery.3 
	                   BN_mod_mul_reciprocal.3 BN_new.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/01/30 01:53:17

Modified files:
	net/powerdns   : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/powerdns/patches: Tag: OPENBSD_6_0 patch-pdns_dnsparser_cc 
	                      patch-pdns_dnsparser_hh patch-pdns_misc_cc 

Log message:
apply patches from upstream for CVE-2016-5426, CVE-2016-5427


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/30 02:42:14

Modified files:
	sys/dev/ic     : ar5008.c ar9003.c 

Log message:
Prevent athn(4) from using RTS for non-data frames.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/30 02:54:41

Modified files:
	usr.sbin/httpd : server_file.c 

Log message:
Fix error path of range requests, found while reviewing byte range support.

OK jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/30 03:06:56

Modified files:
	www/elinks     : Makefile 
Added files:
	www/elinks/patches: patch-src_network_ssl_socket_c 

Log message:
Unbreak after libressl change, remove direct access to field now private.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/30 03:57:00

Modified files:
	sys/dev/ic     : ar5008.c 

Log message:
Stop athn(4) 11n hostap from applying HT protection to non-11n clients.
The driver was checking the wrong flag by mistake.
ok phessler@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/30 04:28:54

Modified files:
	security/py-openssl: Makefile distinfo 
	security/py-openssl/pkg: PLIST 
Added files:
	security/py-openssl/patches: patch-tests_memdbg_py 
Removed files:
	security/py-openssl/patches: patch-OpenSSL_crypto_py 
	                             patch-OpenSSL_test_test_ssl_py 

Log message:
update to py-openssl-16.2.0, tested by me (certbot) and phessler (gajim)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/30 04:29:45

Modified files:
	www/composer   : Makefile distinfo 

Log message:
update to composer-1.3.2, from Frank Groeneveld


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/30 04:34:15

Modified files:
	net/isc-dhcp   : Makefile 
Added files:
	net/isc-dhcp/patches: patch-common_socket_c 

Log message:
Unbreak dhcpd in v6 mode.

Upstream tries to use only IPV6_PKTINFO to specify the outgoing
interface index, but our kernel doesn't support this.  This lead
upstream to add a workaround for "bogus BSDs", namely set sin6_scope_id
in dhclient mode. But dhcpd/dhcrelay are affected by the same problem,
so always set sin6_scope_id.

Issue reported & initial diff proposed by Marc Peters, maintainer
timeout.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/01/30 08:27:18

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 08:36:20

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Drop empty line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/30 08:42:04

Modified files:
	mail/sendmail  : Makefile 
	mail/sendmail/files: site.OS.m4 

Log message:
Enable ECC support and more granular control of TLS options.
From Kyle Amon; OK ajacoutot@; discussed with jca@, Claus Assmann


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/30 09:25:50

Modified files:
	sys/dev/ic     : rtwn.c 

Log message:
Fix size passed to free(9)

ok tb@ stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/30 09:39:22

Modified files:
	databases/sqlports: Makefile 

Log message:
add RDEP on sqlite3, ok espie@


CVSROOT:	/cvs
Module name:	www
Changes by:	mikeb@cvs.openbsd.org	2017/01/30 09:48:43

Modified files:
	faq            : current.html 

Log message:
Add a note regarding changes in DH group selection in iked

Issue reported by henning@, the current.html entry suggested by reyk@.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 09:58:31

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Mention MODGO_LDFLAGS.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 09:58:40

Modified files:
	lang/go        : go.port.mk 

Log message:
Split -ldflags="-s -w" from MODGO_FLAGS and instead:
- create a new MODGO_LDFLAGS variable
- set MODGO_LDFLAGS to "-s -w" by default (no DEBUG)
- add -ldflags="${MODGO_LDFLAGS}" to the build and test CMDs if
MODGO_LDFLAGS is defined

ok czarkoff@ jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 09:59:07

Modified files:
	sysutils/consul: Makefile 

Log message:
Properly return the version number instead of 'Unknown'.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 10:00:12

Log message:
    Import ecs-cli-0.4.6.
    
    The Amazon ECS Command Line Interface (CLI) is a command line interface for
    Amazon EC2 Container Service (Amazon ECS) that provides high-level commands to
    simplify creating, updating, and monitoring clusters and tasks from a local
    development environment.
    <...>
    
    ok robert@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20170130
    
    N ports/sysutils/amazon-ecs-cli/Makefile
    N ports/sysutils/amazon-ecs-cli/distinfo
    N ports/sysutils/amazon-ecs-cli/pkg/DESCR
    N ports/sysutils/amazon-ecs-cli/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 10:00:45

Modified files:
	sysutils       : Makefile 

Log message:
+amazon-ecs-cli


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/30 10:32:41

Modified files:
	faq            : current.html 

Log message:
tweak previous: make the text a bit more concise, add some commas and begin
new sentences on new lines.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/30 10:41:34

Modified files:
	sys/net        : pf.c pf_ioctl.c pf_norm.c pfvar.h 

Log message:
removes the pf_consistency_lock and protects the users with
NET_LOCK().  pfioctl() will need the NET_LOCK() anyway. So better keep
things simple until we're going to redesign PF for a MP world.
fixes the crash reported by Kaya Saman.
ok mpi@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/30 10:48:26

Modified files:
	sys/dev/ic     : rtwn.c 

Log message:
Make rtwn(4) and urtwn(4) tell the hardware about short preamble and
short slot time settings.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/30 10:52:24

Modified files:
	sys/net        : pf.c 

Log message:
whitespace, from bluhm@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/30 10:53:18

Modified files:
	faq            : current.html 

Log message:
smooth some rough edges


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/30 11:19:53

Modified files:
	regress/usr.sbin/httpd/tests: Makefile 

Log message:
unbreak httpd regress tests after wobj change

Previously, the tests used the obj dir as the httpd chroot/root.  But
the www user cannot access any files since we switched obj to 0750.
The fix is to create another 0755 subdirectory obj/htdocs as the root.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/30 11:21:13

Modified files:
	sys/net80211   : ieee80211_output.c ieee80211_var.h 

Log message:
Enable ieee80211_edca_table, which was under #if 0. This table can be used
by drivers to pass default EDCA parameters to firmware instead of passing
local hardcoded values.
ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/30 11:25:11

Modified files:
	regress/usr.sbin/httpd/tests: Makefile 

Log message:
Adjust CLEANFILES for new httpd root


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/30 13:23:07

Modified files:
	usr.bin/mandoc : man_html.c 

Log message:
Rework fill mode handling for -man -Thtml.

Basically, open <pre> whenever printing text in no-fill mode and it is
not already open, and close it whenever printing something that cannot
be inside <pre>.

This fixes a crash reported by Michael <Stapelberg at debian dot org>
in the French Linux chroot(2) manual and also improves rendering
for OpenBSD pages like DPMSGetTimeouts(3) and GLwDrawingArea(3).

These changes also permitted retiring struct mhtml.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/30 13:32:12

Modified files:
	net/monitoring-plugins/patches: 
	                                patch-plugins-scripts_check_ircd_pl 

Log message:
add pull request url


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/01/30 13:36:54

Modified files:
	x11/qt4        : Makefile 

Log message:
Fix previous, correctly register estdc++ in per-subpackage WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/30 13:53:55

ports/devel/autoconf-archive/patches

Update of /cvs/ports/devel/autoconf-archive/patches
In directory cvs.openbsd.org:/tmp/cvs-serv49556/patches

Log Message:
Directory /cvs/ports/devel/autoconf-archive/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/30 13:55:50

Modified files:
	devel/autoconf-archive: Makefile 
Added files:
	devel/autoconf-archive/patches: 
	                                patch-m4_ax_compiler_flags_cflags_m4 
	                                patch-m4_ax_compiler_flags_cxxflags_m4 

Log message:
Check if the compiler supports -Wno-suggest-attribute=format instead of
blindly using it.

from attila@stalphonsos.com who also submitted this upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/30 14:18:24

Modified files:
	regress/usr.sbin/httpd/tests: Httpd.pm Makefile 

Log message:
Fix TLS tests.  Keys and log files are now in obj, not in obj/htdocs


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/01/30 14:41:17

Modified files:
	usr.bin/tmux   : cmd-show-options.c format.c options.c tmux.h 

Log message:
When a flag option is used in a format, it should use the number form
not string.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tobias@cvs.openbsd.org	2017/01/30 14:45:27

Modified files:
	app/xenodm/xenodm: session.c 

Log message:
Reset SIGCHLD signal handler to previous value in error path, too.

ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/30 14:54:30

Modified files:
	sys/dev/ic     : rtwn.c rtwnvar.h 
	sys/dev/usb    : if_urtwn.c 

Log message:
Make urtwn(4) run slot time updates from a USB task.
Fixes 'usbd_do_request: not in process context' warnings introduced recently.
Fix reported and confirmed by Mikhail aka mp39590 aka misha


CVSROOT:	/cvs
Module name:	ports
Changes by:	tim@cvs.openbsd.org	2017/01/30 15:21:01

Modified files:
	mail/getmail   : Makefile distinfo 

Log message:
Update to getmail 4.53.0


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/01/30 16:27:39

Modified files:
	usr.bin/ssh    : sshd.8 

Log message:
Small correction to the known_hosts section on when it is updated.
Patch from lkppo at free.fr some time ago, pointed out by smallm at sdf.org


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/01/30 18:50:15

Modified files:
	www/kcgi       : Makefile distinfo 

Log message:
Update kcgi to 0.9.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 20:29:46

Modified files:
	sysutils/salt  : Makefile distinfo 
	sysutils/salt/pkg: PLIST 

Log message:
Update to salt-2016.11.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 20:34:02

Modified files:
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/core: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 
	multimedia/gstreamer1/plugins-base: Makefile distinfo 
	multimedia/gstreamer1/plugins-good: Makefile distinfo 
	multimedia/gstreamer1/plugins-libav: distinfo 
	multimedia/gstreamer1/plugins-ugly: distinfo 
	multimedia/gstreamer1/py-gstreamer: Makefile distinfo 

Log message:
Bump to 1.10.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/30 22:19:52

Modified files:
	net/bro        : Makefile 

Log message:
The bundled sqlite seems to pick up ICU4C if present and will error out if
it gets junked during the build; I could not find a proper way to disable
it...
So just BDEP on textproc/icu4c for now and hope this will workaround the
issue.

breakage reported by naddy@ a couple of times


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/30 22:40:26

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: get_rfc3526_prime_8192.3 

Log message:
Document functions returning standard moduli for DH key exchange.
jsing@ confirmed that these are public and worth documenting.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/30 22:53:08

Modified files:
	usr.sbin/switchctl: switchctl.c 

Log message:
Use the sizeof operator on a struct not a pointer to one.
ok rzalamena@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/31 00:02:44

Modified files:
	www            : Makefile 
	productivity   : Makefile 
Removed files:
	www/py-webkitgtk: Makefile distinfo 
	www/py-webkitgtk/pkg: DESCR PLIST 
	productivity/rednotebook: Makefile distinfo 
	productivity/rednotebook/pkg: DESCR PLIST 

Log message:
WebKitGTK+ 2.4 is full of security holes and not maintained upstream anymore.
So stop coping with the insanity and let's remove py-webkitgtk (people should be
using the newer WebKit introspection libs) and rednotebook which depends on it
and hasn't been updated in years.

prodded by a mail from Davide Gerhard
ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/31 00:03:04

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register removal of py-webkitgtk and rednotebook.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/31 00:05:08

Modified files:
	www/py-urllib3 : Makefile distinfo 
	www/py-urllib3/pkg: PLIST 

Log message:
simple update to 1.20 tested with elasticsearch-curator


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/31 00:15:23

Modified files:
	devel/ruby-gettext-setup: Makefile distinfo 

Log message:
simple update to 0.13


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/31 00:16:24

Modified files:
	devel/ruby-puppet_forge: Makefile distinfo 
	devel/ruby-puppet_forge/pkg: PLIST 

Log message:
simple update to 2.2.3, now requiring the just updated ruby-gettext-setup


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/01/31 00:44:55

Modified files:
	sys/sys        : proc.h 

Log message:
Protect <sys/atomic.h> with #ifdef _KERNEL. This unbreaks userland
build on m88k, where the compiler has no notion of atomic built-ins.

Suggested by miod@
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/31 01:46:50

Modified files:
	audio/gmpc-plugins: Makefile 
Added files:
	audio/gmpc-plugins/pkg: DESCR PLIST 
Removed files:
	audio/gmpc-plugins/pkg: DESCR-main DESCR-wikipedia PLIST-main 
	                        PLIST-wikipedia 

Log message:
Remove the -wikipedia subpackage; it depends on WebKitGTK+ 2.4 which is
known to have many security vulnerabilities that will NOT be fixed.

ok landry@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/31 01:57:14

Modified files:
	www/webkit     : Makefile 
Added files:
	www/webkit/pkg : MESSAGE 

Log message:
Add MESSAGE:
!!! WARNING: WebKitGTK+ 2.4 is known to have many security vulnerabilities that
!!! will NOT be fixed. Avoid browsing with it.

We will hopefully be able to get rid of this port sooner than later...

from Davide Gerhard
no objection landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/31 02:21:46

Modified files:
	sys/dev/ic     : r92creg.h rtwn.c 

Log message:
Clean up code in rtwn(4)/urtwn(4) which handles EDCA parameters:

Get EDCA params from net80211 instead of hardcoding them.

Enable hardware management of EDCA AC queues.

Handling of frame collisions with EDCA involves random backoffs.
I found a register that looks like a seed for the pseudo-RNG involved in
computing backoffs. Feed it with arc4random() during initialization.

Add a comment to hint at the meaning of numbers written to SIFS registers,
and rename some SIFS registers to better names found in Linux.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/31 02:39:27

Modified files:
	sys/net80211   : ieee80211_output.c 

Log message:
When telling clients which EDCA parameters to use, copy these parameters
from the client parameter set, rather than from the AP parameter set.
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/31 02:50:06

Modified files:
	mail/geary     : Makefile 

Log message:
add comment with link to webkit2 wip


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/01/31 02:53:07

Modified files:
	gnu/llvm/tools/lld/ELF: DriverUtils.cpp 

Log message:
Fix creation of the library name, as assigning a string to a StringRef
seems to cause bad behaviour.  Instead call toStringRef() and use its
return value.

ok tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 02:55:05

Modified files:
	multimedia/libquicktime: Makefile 
	multimedia/libquicktime/pkg: PLIST 

Log message:
disable doxygen, from rsadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 02:57:44

Modified files:
	graphics/darktable: Makefile distinfo 

Log message:
update to darktable-2.2.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 02:58:35

Modified files:
	graphics/lensfun: Makefile distinfo 
	graphics/lensfun/patches: patch-docs_CMakeLists_txt 
	graphics/lensfun/pkg: PLIST 
Added files:
	graphics/lensfun/patches: patch-cmake_modules_FindGLIB2_cmake 
Removed files:
	graphics/lensfun/patches: patch-CMakeLists_txt 
	                          patch-build_CMakeModules_FindGLIB2_cmake 
	                          patch-libs_auxfun_image_cpp 

Log message:
update to lensfun-0.3.2, disable doxygen. from rsadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 02:59:57

Modified files:
	net/ortp       : Makefile 
	net/ortp/pkg   : PLIST 

Log message:
don't use doxygen, from rsadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 03:01:50

Modified files:
	devel/libmtp   : Makefile 
	devel/libmtp/pkg: PLIST 

Log message:
don't use doxygen, from rsadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/31 03:17:50

Modified files:
	sys/dev/pci    : if_iwmreg.h 

Log message:
Update the struct iwm_scan_results_notif to FW Api version 3, and remove
the unused enum iwm_scan_complete_status status codes.

This corresponds to parts of the Linux iwlwifi commits
1083fd7391e989be52022f0f338e9dadc048b063 and
75118fdb63496e4611ab50380499ddd62b9de69f.
No functional change, since struct iwm_scan_results_notif isn't accessed
in iwm at the moment.

Patch by Imre Vadasz.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 03:17:59

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/pkg: PLIST-main 

Log message:
update to vim-8.0.0273, based on an .0257 update diff from frantisek holop


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/31 03:24:41

Modified files:
	sys/net        : rtsock.c 
	sys/netinet    : igmp.c ip_input.c udp_usrreq.c 

Log message:
Use CTASSERT instead of KASSERT for a few sysctl that use the counters API

ok dlg@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/31 04:06:15

Modified files:
	sys/net80211   : ieee80211_output.c 

Log message:
In a comment inside ieee80211_up_to_ac(), update a reference section
number from the 802.11-2007 standard to the 802.11-2012 standard.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/31 04:06:35

Modified files:
	faq            : faq6.html 

Log message:
adjust the hostap hostname.if example to the one given by stsp on
http://undeadly.org/cgi?action=article&sid=20170109213803&pid=3


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/01/31 05:16:20

Modified files:
	sys/kern       : kern_synch.c sys_socket.c 
	sys/net        : if.c 

Log message:
Remove the inifioctl hack, checking for an unheld NET_LOCK() in
tsleep(9) & friends seem to only produce false positives and cannot
be easily disabled.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/01/31 05:17:20

Modified files:
	sys/dev/pv     : xen.c 

Log message:
Issue a pause instruction in the busy-wait loop on SP kernels as well


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/31 05:20:05

Modified files:
	usr.sbin/httpd : server.c 

Log message:
Do not set EVBUFFER_EOF on read/write errors and handle EOF correctly.

Either libevent or the TLS callback can trigger an EOF when the
connection is closed.

OK sunil@ jung@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/31 05:21:27

Modified files:
	usr.sbin/httpd : httpd.h server_http.c 

Log message:
The variable clt_done is used in too many places.

Introduce a new variable clt_headersdone in the async HTTP parser.

OK sunil@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/01/31 05:45:55

Modified files:
	devel/kf5/kitemmodels: Makefile 

Log message:
Add missing dependencies, noticed by naddy@.

The FindPythonModuleGeneration.cmake case to be dealt with later:
it has some weird logic, and need more tweaks to allow stable builds.


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/01/31 05:52:03

Modified files:
	opensmtpd/faq  : example1.html 

Log message:
Add -m flag to useradd so we can avoid a warning and get rid of two
other commands that do the same thing

ok gilles@ tb@ jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2017/01/31 06:17:21

Modified files:
	lib/libcrypto/evp: e_aes.c e_rc4_hmac_md5.c 

Log message:
LibreSSL : Truncated packet could crash via OOB read

This patch is originally from master branch of OpenSSL.
- 2198b3a crypto/evp: harden AEAD ciphers.
- 8e20499 crypto/evp: harden RC4_MD5 cipher.

ok tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2017/01/31 06:19:05

Modified files:
	regress/lib/libcrypto/bn/general: bntest.c 

Log message:
LibreSSL : regress for carry bug in mulx4x_mont and sqr8x_mont

This regress bntest.c patch is originally from master branch of OpenSSL.
- dca2e0e test/bntest.c: regression test for CVE-2016-7055.
- 3e7a496 test/bntest.c: regression test for carry bug in bn_sqr8x_internal.

These tests were added for these commit.
- 2fac86d bn/asm/x86_64-mont.pl: fix for CVE-2016-7055 (Low severity).
- 3f4bcf5 bn/asm/x86_64-mont5.pl: fix carry bug in bn_sqr8x_internal.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/01/31 06:42:15

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Fix links to USB audio specs.

From Michael Reed


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/01/31 06:48:18

Modified files:
	www/tor-browser: Makefile.inc 
	www/tor-browser/browser: Makefile distinfo 
	www/tor-browser/browser/patches: 
	                                 patch-js_src_jit_ExecutableAllocator_cpp 
	www/tor-browser/https-everywhere: Makefile distinfo 
	www/tor-browser/https-everywhere/pkg: PLIST 
	www/tor-browser/noscript: Makefile distinfo 
	www/tor-browser/noscript/pkg: PLIST 
	www/tor-browser/tor-launcher: Makefile distinfo 
	www/tor-browser/tor-launcher/pkg: PLIST 
	www/tor-browser/torbutton: Makefile distinfo 
	www/tor-browser/torbutton/patches: 
	                                   patch-src_chrome_content_popup_xul 
	                                   patch-src_defaults_preferences_preferences_js 
	www/tor-browser/torbutton/pkg: PLIST 
	meta/tor-browser: Makefile 

Log message:
Update to Tor Browser 6.5, from MAINTAINER.

includes:
- tor-browser 6.5.0 based on firefox esr 45.7.0
- depends on tor 0.2.9.9
- https-everywhere 5.2.9
- noscript 2.9.5.3
- tor-launcher 0.2.10.3
- torbutton 1.9.6.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 07:27:28

Modified files:
	security/py-passlib: Makefile distinfo 
	security/py-passlib/patches: patch-passlib_hosts_py 
	security/py-passlib/pkg: PLIST 

Log message:
update to py-passlib 1.7.1


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/01/31 07:39:47

Modified files:
	usr.sbin/httpd : httpd.h server_file.c server_http.c 

Log message:
Reimplement httpd's support for byte ranges.

The previous implementation loaded all the output into a single output
buffer and used its size to determine the Content-Length of the body.

The new implementation calculates the body length first and writes the
individual ranges in an async way using the bufferevent mechanism.

This prevents httpd from using too much memory and applies the
watermark and throttling mechanisms to range requests.

Problem reported by Pierre Kim (pierre.kim.sec at gmail.com)

OK benno@ sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/01/31 08:15:13

Modified files:
	sys/dev/ic     : rtwn.c 

Log message:
Configure rtwn's ACMHWCTRL register correctly. Bits in this register
correspond to the flag stored in our stack as ac->ac_acm.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/31 08:35:46

Modified files:
	lib/libssl     : ssl.h ssl_pkt.c 

Log message:
Provide an SSL_OP_NO_CLIENT_RENEGOTIATION option that disallows
client-initiated renegotiation. The current default behaviour remains
unchanged.

ok beck@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/01/31 08:57:44

Modified files:
	lib/libtls     : tls_server.c 

Log message:
Disable client-initiated renegotiation for libtls servers.

ok beck@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/31 09:18:57

Modified files:
	usr.sbin/httpd : server.c 
	lib/libtls     : Symbols.list shlib_version tls.h tls_config.c 
	lib/libtls/man : tls_config_ocsp_require_stapling.3 
	                 tls_load_file.3 

Log message:
Add tls_config_[add|set]keypair_ocsp functions so that ocsp staples may be
added associated to a keypair used for SNI, and are usable for more than
just the "main" certificate. Modify httpd to use this.
Bump libtls minor.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/31 09:35:57

Modified files:
	regress/usr.sbin/syslogd: args-client-tls-fake.pl 
	                          args-client-tls-tcp.pl 
	                          args-server-tls-client-fake.pl 
	                          args-server-tls-tcp.pl 
	                          args-tls-cipher-null.pl 

Log message:
The libssl and libcrypto error messages have changed.  Adapt the
regex for the expected output in the log files.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 09:36:21

Modified files:
	www/nginx      : Makefile 

Log message:
Disable lua in nginx differently; whilst FLAVOR?=no_lua was working for manual
builds it was unsuccessful in DPB (at least without changing ../Makefile to
add the pseudo-flavour).

While there, overwrite RUN_DEPENDS-main to avoid adding a run dependency on
lua to the main package (existing problem).


CVSROOT:	/cvs
Module name:	src
Changes by:	dhill@cvs.openbsd.org	2017/01/31 10:08:51

Modified files:
	sys/uvm        : uvm_amap.c uvm_aobj.c 

Log message:
Sprinkle some free sizes in uvm/

ok stefan@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/31 10:25:05

Modified files:
	usr.sbin/httpd : server.c 

Log message:
Correct mistake I made when converting this to new funciton


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/01/31 11:02:54

Modified files:
	regress/usr.sbin/relayd: Server.pm 
	regress/usr.sbin/syslogd: Server.pm 

Log message:
Mark the IO::Socket::SSL server socket with SSL_server to avoid
OCSP error messages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/01/31 11:46:58

Modified files:
	sysutils/ruby-puppet/4: Makefile distinfo 

Log message:
small bugfix update to 4.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/31 11:47:56

Modified files:
	x11/i3status   : Makefile 
	x11/i3status/patches: patch-i3status_conf 
Added files:
	x11/i3status/patches: patch-src_first_network_device_c 

Log message:
implement support for finding the first wireless/ethernet device.
one can now use the '_first_' identifier on OpenBSD too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/01/31 12:01:41

Modified files:
	x11/i3status/patches: patch-src_first_network_device_c 
	                      patch-src_print_wireless_info_c 

Log message:
submitted upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/01/31 12:32:44

Modified files:
	devel/p5-Exporter-Tiny: Makefile distinfo 
	devel/p5-Exporter-Tiny/pkg: PLIST 

Log message:
update p5-Exporter-Tiny to 0.044


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/01/31 12:43:23

Modified files:
	usr.bin/mandoc : apropos.1 man.1 mandoc.1 

Log message:
add missing HISTORY information


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/01/31 13:08:13

Modified files:
	usr.sbin/httpd : server.c 

Log message:
remove extra call setting OCSP staple now that it is done above
using keypair_ocsp..
ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/01/31 13:53:51

Modified files:
	lib/libtls/man : tls_config_ocsp_require_stapling.3 
	                 tls_load_file.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/31 14:07:05

Modified files:
	usr.sbin/httpd : Tag: OPENBSD_6_0 server_file.c 

Log message:
A bug in the processing of range headers in httpd can lead to memory
exhaustion and possibly crash httpd.

This patch disables range header processing.

The problem is fixed in future versions of httpd (OpenBSD 6.1)
by changing the way the file size is determined.

found by Pierre Kim (pierre.kim.sec at gmail.com), thanks.
fix by sunil@

ok reyk@ sunil@ and beck@ danj@ tb@ and tj@ on the errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/01/31 14:07:28

Modified files:
	usr.sbin/httpd : Tag: OPENBSD_5_9 server_file.c 

Log message:
A bug in the processing of range headers in httpd can lead to memory
exhaustion and possibly crash httpd.

This patch disables range header processing.

The problem is fixed in future versions of httpd (OpenBSD 6.1)
by changing the way the file size is determined.

found by Pierre Kim (pierre.kim.sec at gmail.com), thanks.
fix by sunil@

ok reyk@ sunil@ and beck@ danj@ tb@ and tj@ on the errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/01/31 14:31:04

Modified files:
	usr.sbin/snmpd : mib.c 

Log message:
Don't include a literal "%" in the value for humidity sensorValue in
OPENBSD-SENSORS-MIB, % is the unit for this value and is already present
in sensorUnits, and it's harder for NMS to parse "100.00%" as a number.
From Joel Knight.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/01/31 14:35:07

Modified files:
	usr.sbin/ikectl: ikeca.c ikeca.cnf 

Log message:
Teach ikectl to include extensions in the CSR, rather than just adding them
when signing the certificates by the local CA. This can make things easier if
you want to take a CSR from ikectl to another CA for signing, they often copy
extensions from the request.  ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/01/31 14:52:16

Modified files:
	www            : Makefile 

Log message:
Xombrero is gone.

https://github.com/conformal/xombrero/issues/142

OK sthen@ jca@ edd@ and others.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/01/31 14:53:07

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Unhook xombrero/xxxterm


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/01/31 14:58:31

Removed files:
	www/xombrero   : Makefile distinfo 
	www/xombrero/pkg: DESCR PLIST 

Log message:
Bye Xombrero


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 15:01:26

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
update to youtube-dl 2017.01.31, unbreaking youtube support.
earlier version ok jca@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/01/31 15:43:30

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-config_php_default patch-daily_sh 
	                      patch-html_install_php 
	                      patch-html_pages_about_inc_php 
	                      patch-includes_common_php 
	                      patch-includes_defaults_inc_php 
	                      patch-includes_functions_php 
	                      patch-lib_influxdb-php_requirements_sh 
	                      patch-librenms_nonroot_cron 
	                      patch-poller-wrapper_py patch-validate_php 
	net/librenms/pkg: PLIST 
Removed files:
	net/librenms/patches: patch-includes_polling_core_inc_php 
	                      patch-scripts_cron-hourly_sh 
	                      patch-scripts_cron-minute_sh 
	                      patch-scripts_cron_sh 

Log message:
update to librenms-1.24

reluctantly add a run dep on bash, it's getting to be a bit of a maintenance
problem to keep patching daily.sh to work with ksh.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/01/31 15:50:50

Modified files:
	lang/lua/5.3   : Makefile distinfo 

Log message:
update to lua-5.3.4


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/01/31 17:40:35

Modified files:
	.              : books.html 

Log message:
remove wrong link, pointed out by foo74 on misc. instead, add isbn
and fix the title, while there.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/31 18:05:01

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/31 18:25:19

Modified files:
	sys/net        : if.c 

Log message:
Switch from splsoftnet to taking the netlock in if_attachhead().
The same change was made to if_attach() in rev 1.467.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/01/31 19:02:01

Modified files:
	sys/net        : if.c 

Log message:
Take if_attach_common() out from under netlock as it does a bunch
of sleeping mallocs to initialise a new ifp.  The ifp is later
added to the global list with the lock held.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/01/31 19:59:09

Modified files:
	usr.bin/ssh    : channels.c channels.h serverloop.c 

Log message:
Return true reason for port forwarding failures where feasible rather
than always "administratively prohibited".  bz#2674, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/01/31 23:17:42

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
Let realloc handle and produce moved pointers for allocations between
half a page and a page. ok jmatthew@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/01/31 23:52:46

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.25.4.


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2017/02/01 00:06:00

Modified files:
	libressl       : index.html releases.html 

Log message:
updates for 2.5.1, 2.4.5, 2.3.10, mention nc(1)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/01 00:45:06

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchanges rates;


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/02/01 01:52:36

Modified files:
	www/phpmyadmin : Makefile distinfo 
	www/phpmyadmin/pkg: PLIST 

Log message:
bugfix update to 4.6.6


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/01 02:55:07

Modified files:
	usr.bin/tmux   : format.c input-keys.c input.c key-string.c 
	                 server-client.c tmux.1 tmux.h tty.c 

Log message:
Implement "all event" (1003) mouse mode but in a way that works. The
main issue is that if we have two panes, A with 1002 and B with 1003, we
need to set 1003 outside tmux in order to get all the mouse events, but
then we need to suppress the ones that pane A doesn't want. This is easy
in SGR mouse mode, because buttons == 3 is only used for movement events
(for other events the trailing m/M marks a release instead), but in
normal mouse mode we can't tell so easily. So for that, look at the
previous event instead - if it is drag+release as well, then the current
event is a movement event.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/02/01 03:09:58

Modified files:
	graphics/xfig  : Makefile distinfo 
	graphics/xfig/patches: patch-e_chop_c patch-fig_h 
	                       patch-u_error_c patch-w_intersect_c 
	                       patch-w_keyboard_c patch-w_snap_c 
	graphics/xfig/pkg: DESCR PLIST 
Removed files:
	graphics/xfig/patches: patch-Imakefile 

Log message:
Update to xfig-3.2.6.
- upstream switched from imake to autotools
- update HOMEPAGE
- remove trailing whitespace in DESCR

OK naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/01 03:26:06

Modified files:
	regress/usr.sbin/httpd/tests: funcs.pl 
Added files:
	regress/usr.sbin/httpd/tests: args-get-range-512.pl 
	                              args-get-range-multipart.pl 
	                              args-tls-get-range-512.pl 
	                              args-tls-get-range-multipart.pl 

Log message:
Add Range and multipart tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/01 03:44:13

Modified files:
	regress/usr.sbin/httpd/tests: README 

Log message:
SUDO is doas


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/01 04:43:23

Modified files:
	x11/freerdp    : Makefile 
Added files:
	x11/freerdp/patches: patch-libfreerdp_crypto_tls_c 

Log message:
Switch xfreerdp from comparing handshake_func against tls->ssl->method
members to using SSL_in_(connect|accept)_init to fix following visibility
changes in libressl. While there, switch from TLSv1.0-only TLSv1_client_method
to SSLv23_client_method allowing newer TLS versions. Diff from jsing.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/02/01 05:45:56

Modified files:
	sys/dev/ic     : ar5008.c 

Log message:
In athn(4), if multi-rate retry is disabled due to RTS being used, then do
not tell rate scaling algos about failed retries. All attempts use the same
rate anyway, so checking whether the frame succeeded or failed is good enough.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/02/01 05:46:40

Modified files:
	sys/dev/ic     : r92creg.h rtwn.c 
	sys/dev/pci    : if_rtwn.c 

Log message:
Add AMRR support to rtwn(4). Based on code from FreeBSD.
Works much better than firmware-based rate scaling in my testing.
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/01 06:56:12

Modified files:
	x11/qt4        : Makefile 

Log message:
Record the dependency on libssl/libcrypto in WANTLIB-main. This would
have been missed previously listed because Qt likes to dlopen() things
so check-lib-depends can't find it, which would stop qt4 getting updated
when ssl/crypto libs are updated.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/01 07:07:30

Modified files:
	x11/qt5/qtbase : Makefile 

Log message:
Record the dependency on libssl/libcrypto in WANTLIB-main. This would
have been missed previously listed because Qt likes to dlopen() things
so check-lib-depends can't find it, which would stop qt5base getting
updated correctly by pkg_add -u when ssl/crypto libs are updated.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/01 07:25:43

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/py-acme: distinfo 

Log message:
update to certbot/py-acme 0.10.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/01 07:26:26

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
update to wtf-20170131


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/01 08:49:34

Modified files:
	net/haproxy    : Makefile 
Added files:
	net/haproxy/patches: patch-src_ssl_sock_c 

Log message:
Unbreak after libressl change: remove direct access to field now private.
Similar to upstream changes for OpenSSL 1.1.0.  Not tested at run time.
ok danj@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2017/02/01 09:21:12

Modified files:
	usr.bin/tail   : read.c 

Log message:
Don't allocate the buffer for the -n flag in one call.
Fixes an ENOMEM with an extremely large -n value and a small input.
Issue reported by Soner Tari

OK stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/01 09:46:57

Modified files:
	sys/dev/ic     : cy.c 

Log message:
Fix format strings in cy(4), allows to compile with CY_DEBUG.
From Jan Klemkow


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/02/01 11:54:37

Modified files:
	usr.sbin/ocspcheck: http.c ocspcheck.c 

Log message:
netinet/in.h should be included, and freebsd and some others
don't have EAI_NODATA, so make this easier for people
from bernard spill


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/01 13:21:19

Modified files:
	usr.bin/tail   : read.c 

Log message:
Add a missing sizeof(*lines) factor to previous commit to ensure we zero
out enough of the lines array.  Problem found with malloc's 'J' option.

ok martijn


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2017/02/01 13:34:40

Modified files:
	devel/libf2c   : Makefile 

Log message:
Since bsd.obj.mk no longer chowns without checking, the WOJBDIR workaround
to fix the build in dpb setups can be removed again.

ok naddy


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/01 13:47:02

Modified files:
	graphics       : Makefile 
Removed files:
	graphics/ebook-viewer: Makefile distinfo 
	graphics/ebook-viewer/pkg: DESCR PLIST 

Log message:
Remove; it's using the old and insecure www/webkit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/01 13:59:41

Modified files:
	x11/mplayer    : Makefile 

Log message:
As spotted by jmc@ and someone else who I forgot, mplayer has a hidden dep
on libbs2b; add it as a proper dependency to avoid periodic package breakage.
ok Brad.


CVSROOT:	/cvs
Module name:	src
Changes by:	dhill@cvs.openbsd.org	2017/02/01 13:59:47

Modified files:
	sys/kern       : uipc_socket.c 
	sys/net        : rtsock.c 
	sys/netinet    : ip_mroute.c ip_mroute.h ip_output.c ip_var.h 
	                 raw_ip.c tcp_usrreq.c tcp_var.h 
	sys/netinet6   : icmp6.c ip6_mroute.c ip6_mroute.h ip6_output.c 
	                 ip6_var.h raw_ip6.c 
	sys/sys        : protosw.h 

Log message:
In sogetopt, preallocate an mbuf to avoid using sleeping mallocs with
the netlock held.  This also changes the prototypes of the *ctloutput
functions to take an mbuf instead of an mbuf pointer.

help, guidance from bluhm@ and mpi@
ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/02/01 15:00:12

Modified files:
	www/hiawatha   : Makefile distinfo 
Added files:
	www/hiawatha/patches: patch-src_tls_c 

Log message:
Update to hiawatha 10.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tim@cvs.openbsd.org	2017/02/01 15:06:14

Modified files:
	audio/wavpack  : Makefile distinfo 
	audio/wavpack/pkg: PLIST 

Log message:
Update to wavpack 5.1.0; input and OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	chl@cvs.openbsd.org	2017/02/01 16:08:27

Modified files:
	gnu/gcc/gcc    : gcc.c 

Log message:
fix format string

ok krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/01 16:14:46

Modified files:
	lang/sbcl      : Makefile 

Log message:
Fix the threads FLAVOR (wrong configure arg, silently ignored)

Spotted by Timo Myyra, input from sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/02/01 19:31:07

Modified files:
	x11/smplayer   : Makefile distinfo 

Log message:
Update for SMPlayer to 17.1.0

Test as always from Josh.

Thanks!

OK danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/02/01 20:41:12

Modified files:
	shells/zsh     : Makefile distinfo 
	shells/zsh/patches: patch-Doc_zsh_texi 
	shells/zsh/pkg : PLIST 
Removed files:
	shells/zsh/patches: patch-Completion_Unix_Command__elfdump 
	                    patch-Completion_Unix_Command__nm 
	                    patch-Completion_Unix_Command__objdump 
	                    patch-Completion_Unix_Command__readelf 
	                    patch-Completion_Unix_Type__object_files 

Log message:
From Matthew Martin. Tested by pea@ and me. OK pea@ (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/01 20:47:41

Modified files:
	sys/dev/ic     : mfi.c 

Log message:
copy the mbox into the dcmd struct, not the pointer to the mbox.

makes bioctl work on mfi(4) again.

while here memset a few mboxes before using them.

bioctl breakage reported by jason george


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/01 22:50:39

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-142.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/01 22:55:42

Modified files:
	www/owncloud   : Makefile distinfo 
	www/owncloud/patches: patch-version_php 
	www/owncloud/pkg: PLIST 

Log message:
Update to owncloud-9.1.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/01 23:01:56

Modified files:
	www/owncloud   : Tag: OPENBSD_6_0 Makefile distinfo 
	www/owncloud/patches: Tag: OPENBSD_6_0 patch-version_php 
	www/owncloud/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
Maintenance update to owncloud-9.0.8; keeping up-to-date on the previous
release to ease upgrade to 9.1.X for 6.1.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/01 23:08:48

Modified files:
	.              : errata59.html errata60.html 

Log message:
release httpd errata. patches by benno, looked over by many


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/01 23:23:59

Modified files:
	sys/uvm        : uvm_unix.c 

Log message:
When dumping core, skip pages marked as unreadable instead of aborting
the dump.

tracked down with help from semarie@
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/02 00:37:41

Modified files:
	databases/sqlite3: Makefile distinfo 

Log message:
Update to sqlite3 3.16.2.

Will be required by gecko 52, went into a pair of amd64 bulk builds
without fallout.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2017/02/02 01:00:43

Modified files:
	x11/i3status   : Makefile 
Added files:
	x11/i3status/patches: patch-src_print_battery_info_c 

Log message:
Suppress printing :00 seconds of remaining battery lifetime, as apm(4)'s
estimate only has a granularity of minutes.

ok jasper


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/02 01:02:50

Modified files:
	lang/rust      : Makefile 
Added files:
	lang/rust/patches: patch-src_llvm_cmake_modules_AddLLVM_cmake 
	                   patch-src_llvm_include_llvm_Support_Threading_h 
	                   patch-src_llvm_lib_CodeGen_TargetLoweringBase_cpp 
	                   patch-src_llvm_lib_Support_Unix_Signals_inc 

Log message:
Temporarly switch rust to build with embedded llvm.

rust doesnt build yet with llvm 4.0, which should be soon updated in the
portstree. Upstream rust support for llvm 4.0 is in the pipe.

From semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/02 01:24:16

Modified files:
	usr.sbin/relayd: relay.c relayd.conf.5 relayd.h 

Log message:
Disable client-initiated TLS renegotiation by default.

It is rarely needed and imposes a light DoS risk.  LibreSSL's libssl
allows to turn it off with a simple SSL_OP_NO_CLIENT_RENEGOTIATION
option instead of the complicated implementation that was used before.
It now turns it off completely instead of allowing one initial
client-initiated renegotiation.

It can still be enabled with "tls client-renegotiation".

ok benno@ beck@ jsing@


CVSROOT:	/cvs
Module name:	www
Changes by:	mpi@cvs.openbsd.org	2017/02/02 01:47:22

Modified files:
	build          : support.dat 

Log message:
I'm offering on-demand development and consulting on/related to OpenBSD.

inputs and ok tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	mpi@cvs.openbsd.org	2017/02/02 01:47:45

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/02/02 03:35:34

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
fix a comment and rm some dead code as a result of the previous diff


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/02 03:47:36

Modified files:
	.              : books.html 

Log message:
zap more instances of spaces in 4.4BSD


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/02 03:51:01

Modified files:
	build          : support.skel 

Log message:
the DO NOT EDIT is better visible if preceded by a blank line.
won't help much, but worth a try.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/02 03:51:16

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/02 03:54:25

Modified files:
	usr.bin/ssh    : utf8.c 

Log message:
In vasnmprintf() return an error if malloc fails and don't set
a function argument to the address of free'd memory.

ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/02 04:18:36

Modified files:
	regress/usr.sbin/httpd/tests: README 

Log message:
sudo -> SUDO and some other minor tweaks


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/02/02 04:30:10

Modified files:
	infrastructure/templates: network.conf.template 

Log message:
MASTER_SITE_OPENBSD http -> https. OK bentley@ phessler@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/02 05:04:43

Modified files:
	mail/claws-mail/patches: patch-configure_ac 

Log message:
Regen patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/02 05:48:37

Modified files:
	www/midori     : Makefile 
	www/midori/pkg : PLIST 
Removed files:
	www/midori/pkg : PFRAG.no-gtk3 

Log message:
Remove gtk3 flavor and build by default against gtk3 and webkitgtk4,
even if the latter was touted upstream as 'HALF_BRO_INCOM_WEBKIT2' it
somewhat works, and allows us to stop depending on www/webkit. Upstream
isn't very much alive sadly..

based on a diff from Davide Gerhard.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/02 05:49:14

Modified files:
	www            : Makefile 

Log message:
remove midori,gtk3 - it's now the default


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 05:57:13

Modified files:
	graphics/digikam-kde4/patches: 
	                               patch-extra_libkgeomap_CMakeLists_txt 
	                               patch-extra_kipi-plugins_CMakeLists_txt 

Log message:
regen patches


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 05:57:28

Modified files:
	graphics/digikam-kde4: Makefile 
Added files:
	graphics/digikam-kde4/patches: 
	                               patch-core_libs_dimg_filters_lens_lensfuniface_h 

Log message:
backport upstream patch to fix digikam-kde4 with newer lensfun.
diff from rsadowski with minor tweak in patch comment by me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 05:58:33

Modified files:
	graphics       : Makefile 

Log message:
Link digikam-kde4 to the build properly. It was already pulled in via
meta/kde4/Makefile but that's not enough to get listed in INDEX.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 06:55:58

Modified files:
	graphics/darktable: Makefile distinfo 

Log message:
update to darktable-2.2.3.

Disable OpenCL tests as they cause clang to be picked up during configure,
causing problems if DPB junks it (found by naddy).

(darktable needs to be built with ports gcc for TLS emulation, otherwise
I'd just switch it to clang instead..)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 06:58:09

Modified files:
	www/composer   : Makefile 
	www/composer/files: composer 

Log message:
Set memory_limit=-1 in the wrapper script for composer CLI.
Requested by Leo Unglaub.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 07:04:07

Modified files:
	telephony/asterisk: Makefile 
Added files:
	telephony/asterisk/patches: patch-main_audiohook_c 

Log message:
Patch to raise level of Asterisk's "Read factory %p and write factory %p
both fail to provide %zu samples" debug message which is triggering very
frequently, so that it's possible to get debug level 5 messages without
flattening the box.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/02/02 07:31:49

Modified files:
	build          : mirrors.dat 

Log message:
add new mirror openbsd.mirror.netelligent.ca,
thanks for mirroring.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2017/02/02 07:32:11

Modified files:
	.              : ftp.html ftplist httpslist 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/02/02 09:47:53

Modified files:
	sys/net80211   : ieee80211_input.c ieee80211_node.c 
	                 ieee80211_node.h ieee80211_output.c 
	                 ieee80211_pae_input.c ieee80211_proto.c 
	                 ieee80211_var.h 

Log message:
Remove global counters from struct ieee80211com which track the number of
associated nodes with particular properties: 11b-only ("non-ERP") nodes,
nodes requiring long slot time, nodes using WPA, nodes not supporting 11n,
nodes currently dozing in powersave state, and nodes with a pending group
key update confirmation.

These counters weren't properly maintained.
There are bugs in the stack where these counters and actual node properties
got out of sync. This is exposed by panics which are supposed to help us
catch such bugs. But these panics don't provide real clues.

Instead of maintaining global counters forcing us to hunt refcounting bugs,
count nodes with the property in question on demand, by iterating over all
nodes and checking their state.
This is cheap since we'll never have more than 100 nodes cached, and none of
the cases where we need such information is in a performance critical path.

Prevents panics in hostap mode reported by Lauri Tirkkonen on bugs@ last
year (https://marc.info/?l=openbsd-bugs&m=147513817930489&w=2) and also
encountered by my 11n APs ("panic: bogus non-HT station count 0").

tested by Lauri, tb@, and myself
ok mpi@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	feinerer@cvs.openbsd.org	2017/02/02 11:04:41

Modified files:
	sys/sys        : videoio.h 

Log message:
Sync with Linux kernel version 4.10-rc6.

The licence of v4l2-common.h was changed to both GPLv2 and BSD
(https://git.linuxtv.org/media_tree.git/commit/?id=80100fd9ebb9f2414892a1178d26a4253e6c0bcf),
so it can be inlined. I.e., videoio.h now corresponds to v4l2-common.h,
v4l2-controls.h, and videodev2.h of the Linux kernel.

Bulk build by naddy@; ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	feinerer@cvs.openbsd.org	2017/02/02 11:38:26

Modified files:
	share/man/man4 : video.4 

Log message:
Document recent videoio.h changes and fix typo.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/02 13:01:38

Modified files:
	sbin/dhclient  : dhclient.8 

Log message:
grammar fix; from tinker


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/02 14:32:53

Modified files:
	www/sope       : Makefile distinfo 

Log message:
Minor update to 2.3.19, also works for Davide Gerhard rainbow at irh it


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/02 14:34:34

Modified files:
	www/sogo       : Makefile distinfo 
	www/sogo/pkg   : PLIST 

Log message:
Minor update to 2.3.19, also works for Davide Gerhard rainbow at irh it
Tighten version dependency to www/sope, as proposed by and discussed by Davide


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/02 14:35:05

Modified files:
	etc            : Makefile 

Log message:
Use a single chown user:group instead of separate chown and chgrp.

OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 14:36:18

Modified files:
	net/icinga/core2: Makefile distinfo 
	net/icinga/core2/patches: patch-CMakeLists_txt 
	                          patch-config_h_cmake 
	                          patch-lib_base_CMakeLists_txt 
	net/icinga/core2/pkg: PLIST-main PLIST-mysql PLIST-pgsql 
	                      README-main 
Added files:
	net/icinga/core2/patches: patch-lib_base_loader_cpp 

Log message:
update to icinga2-2.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 14:36:33

Modified files:
	net/icinga/web2: Makefile distinfo 
	net/icinga/web2/pkg: PLIST 

Log message:
update to icingaweb2-2.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 14:38:08

Modified files:
	net/icinga/web2-module-director: Makefile distinfo 
	net/icinga/web2-module-director/pkg: PLIST 

Log message:
update to icingaweb2-module-director-1.3.0


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/02 15:19:59

Modified files:
	usr.sbin/httpd : httpd.h server.c server_file.c server_http.c 

Log message:
Fix support for HTTP pipelining by handling all requests in the buffer.

Tested & OK jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	chl@cvs.openbsd.org	2017/02/02 15:31:05

Modified files:
	sys/dev/usb    : uhci.c 

Log message:
Remove dead assignments and now unused variables.

Found by LLVM/Clang Static Analyzer.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/02 16:01:30

Modified files:
	net/icinga/web2: Makefile 

Log message:
Adjust icingaweb2 dependencies; don't force pecl-imagick, it's only needed
for exporting graphs to PDF.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/02/02 19:56:00

Modified files:
	usr.bin/ssh    : packet.c packet.h sshconnect2.c sshd.c 

Log message:
Make ssh_packet_set_rekey_limits take u32 for the number of seconds
until rekeying (negative values are rejected at config parse time).
This allows the removal of some casts and a signed vs unsigned
comparison warning.

rekey_time is cast to int64 for the comparison which is a no-op
on OpenBSD, but should also do the right thing in -portable on
anything still using 32bit time_t (until the system time actually
wraps, anyway).

some early guidance deraadt@, ok djm@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/02 21:29:26

Modified files:
	driver         : Makefile 

Log message:
build wsudl on arm64


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/02 21:34:10

Added files:
	distrib/notes  : README.arm64 

Log message:
Initial notes for arm64.  To be updated when xserver is tested.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/02 21:43:07

Added files:
	distrib/sets/lists/xbase: md.arm64 
	distrib/sets/lists/xetc: md.arm64 
	distrib/sets/lists/xfont: md.arm64 
	distrib/sets/lists/xserv: md.arm64 
	distrib/sets/lists/xshare: md.arm64 

Log message:
initial sets for arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/02 22:05:56

Modified files:
	usr.bin/ssh    : readconf.c servconf.c 

Log message:
allow form-feed characters at EOL; bz#2431 ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/03 01:08:15

Modified files:
	usr.sbin/ocspcheck: http.c 
	usr.sbin/acme-client: http.c 

Log message:
Don't use <sys/param.h> from userland without cause.  Sort <sys/*>
before other includes per style(9) while we're here.

ok florian@ bcook@ jsing@ beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/03 01:23:01

Modified files:
	sys/dev/pv     : vmt.c 

Log message:
yasuoka@ reported that a "guest shutdown" resulted in a reboot instead
of a shutdown.  Correct a mistake in rev 1.11 to make this trigger a
shutdown again.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/03 01:23:46

Modified files:
	sbin/iked      : iked.h 
	sbin/isakmpd   : app.c attribute.c cookie.c field.c key.c 
	usr.sbin/httpd : httpd.h 
	usr.sbin/smtpd : smtpd.h 
	usr.sbin/ypldap: aldap.c 

Log message:
Stop assuming that in_{addr,port}_t are typedefed in <sys/types.h> and
instead pull in <netinet/in.h> or <arpa/inet.h> when those are needed.

ok florian@ beck@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/03 01:43:14

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.6.8.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 01:48:40

Modified files:
	sys/arch/arm64/stand/efiboot: efiboot.c 

Log message:
Explicitly ask EFI to allocate the page we picked out to lay our
kernel in, and not just use some memory address that we found in
the table.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/02/03 02:32:26

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
Fix 11b clients sending bogus ratesets in association requests. The common
rateset with the AP is calculated only after the association response was
received, which is too late. Fix rates when an AP is selected after a scan.
ok mpi@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/03 02:36:06

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-Makefile 

Log message:
Update to git-2.11.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 02:45:05

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Don't use PTE_RPGN to mask away the lower page bits from a virtual
address.  PTE_RPGN only returns the physical bits that can be used,
thus truncating virtual addresses, specifically in kernel address
space.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/02/03 02:47:16

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 56.0.2924.87


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 02:47:26

Modified files:
	sys/arch/arm64/include: pte.h 

Log message:
ARM64 has an 48-bit physical address space, so bump PTE_RPGN to reflect
it.  Otherwise we might truncate physical addresses.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 03:20:42

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
Cleanup pagetable creation code in preparation for adding another level
of pagetables to bootstrap machines with physical memory mapped outside
of a 39 bits address space.

From FreeBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 03:34:21

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
Use PAGE_SHIFT instead of encoding the number.

From FreeBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 03:46:19

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
Set the context id and counter offset to a known value.  Enable access
to the physical timers at EL1.

From FreeBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/03 04:57:28

Modified files:
	usr.bin/tmux   : cfg.c cmd-attach-session.c cmd-break-pane.c 
	                 cmd-display-message.c cmd-if-shell.c 
	                 cmd-list-buffers.c cmd-list-clients.c 
	                 cmd-list-keys.c cmd-list-panes.c 
	                 cmd-list-sessions.c cmd-list-windows.c 
	                 cmd-new-session.c cmd-new-window.c 
	                 cmd-pipe-pane.c cmd-queue.c cmd-run-shell.c 
	                 cmd-split-window.c control-notify.c format.c 
	                 names.c screen-redraw.c server-client.c 
	                 status.c tmux.h window-choose.c window-copy.c 

Log message:
Add a window or pane id "tag" to each format tree and use it to separate
jobs, this means that if the same job is used for different windows or
panes (for example in pane-border-format), it will be run separately for
each pane.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 06:06:20

Modified files:
	sys/arch/arm64/stand/efiboot: exec.c 

Log message:
whitespace fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/03 06:39:49

Modified files:
	sys/arch/arm64/arm64: locore.S 

Log message:
Implement a helper that creates an L0 pagetable entry pointing to
a L1 pagetable.  Needed for machines that need 4 level pagetables
on bootup.

From FreeBSD


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/03 08:00:33

Log message:
    Import ripgrep-0.4.0 from semarie, tweaks by landry@ and me, ok landry@
    
    Line oriented search tool using Rust's regex library. Combines the raw
    performance of grep with the usability of the silver searcher.
    
    Status:
    
    Vendor Tag:	danj
    Release Tags:	danj_20170203
    
    N ports/textproc/ripgrep/Makefile
    N ports/textproc/ripgrep/distinfo
    N ports/textproc/ripgrep/patches/patch-Cargo_toml
    N ports/textproc/ripgrep/pkg/PLIST
    N ports/textproc/ripgrep/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/03 08:03:36

Modified files:
	textproc       : Makefile 

Log message:
+ ripgrep


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/03 08:26:12

Added files:
	lang/mono/patches: patch-mono_metadata_mono-route_h 

Log message:
pull in <netinet/in.h> for in_addr_t


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/03 09:21:10

Modified files:
	net/trickle    : Makefile 
Added files:
	net/trickle/patches: patch-configure_in 

Log message:
Remove an instance of a deprecated and dangerous autoconf idiom
that checks for a type that isn't used anywhere in the source and
breaks the inclusion of <netinet/in.h>.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/03 10:55:37

Modified files:
	usr.bin/mandoc : read.c 

Log message:
If an application parses multiple files with mparse_readfd(3) but
without using mparse_open(3) to open the files, and if one of the
files includes a gzip'ed file with .so, then the gzip flag remains
set and the next main file will be expected to be gzip'ed.
Fix this by clearing the gzip flag in mparse_reset(3).

Bug found and patch provided by Michael <Stapelberg at debian dot org>.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/03 11:18:08

Modified files:
	usr.bin/mandoc : read.c 

Log message:
Minor cleanup, no functional change:
We always have a roff parser, so mparse_free() does not need to check
for existence before freeing it.
Also arrange code in struct mparse, mparse_reset(), and mparse_free()
in the same order for readability.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/03 12:34:35

Modified files:
	mail/claws-mail: Makefile 

Log message:
fix WANTLIB-main


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/03 12:36:04

Modified files:
	mail/claws-mail: Makefile 
Removed files:
	mail/claws-mail/pkg: DESCR-htmlviewer PLIST-htmlviewer 

Log message:
Remove claws-mail-htmlviewer, it uses an old and insecure webkit

ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/03 12:39:07

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register claws-mail-htmlviewer removal

ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/03 13:53:03

Modified files:
	usr.bin/tmux   : grid.c 

Log message:
Expand lines more aggressively to reduce rate of allocations.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/03 14:01:02

Modified files:
	usr.bin/tmux   : cmd-set-option.c resize.c session.c status.c 
	                 tmux.h 

Log message:
Cache status line position to reduce option lookups during output.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/03 16:01:19

Modified files:
	usr.bin/ssh    : compat.c kex.c match.c match.h readconf.c 
	                 servconf.c ssh_config.5 sshd_config.5 

Log message:
support =- for removing methods from algorithms lists, e.g.
Ciphers=-*cbc; suggested by Cristian Ionescu-Idbohrn in bz#2671
"I like it" markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/03 16:01:42

Modified files:
	regress/usr.bin/ssh/unittests/match: tests.c 

Log message:
unit test for match_filter_list() function; still want a better
name for this...


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/03 16:03:33

Modified files:
	usr.bin/ssh    : packet.c packet.h 

Log message:
add ssh_packet_set_log_preamble() to allow inclusion of a preamble
string in disconnect messages; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/03 16:05:57

Modified files:
	usr.bin/ssh    : auth2.c monitor.c 

Log message:
use ssh_packet_set_log_preamble() to include connection username
in packet log messages, e.g.

Connection closed by invalid user foo 10.1.1.1 port 44056 [preauth]

ok markus@ bz#113


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/03 19:35:01

Modified files:
	app/xlockmore/modes/glx: i_figureeight.cc i_sphere.cc 
	                         i_threejetvec.cc i_twojetvec.cc 

Log message:
Bring in some changes from xlock 5.50 to prevent clang from erroring
out on ambiguous overloaded operators.

ok matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/03 19:37:52

Modified files:
	.              : 3RDPARTY 

Log message:
Note that xlock upstream moved, though we are unlikely to do a full
import in future.

ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/03 19:54:33

Modified files:
	sys/sys        : types.h 
	sys/netinet    : in.h 
	include/arpa   : inet.h 

Log message:
Move the typedefs for in_{addr,port}_t from <sys/types.h> to
<netinet/in.h> and <arpa/inet.h>

ok and ports test naddy@ (thanks!)
ok krw@ beck@ millert@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/02/03 21:14:07

Modified files:
	images/hackathons: a2k17-s.gif a2k17.gif 

Log message:
high quality versions of images


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/03 21:17:43

Modified files:
	sys/arch/arm64/include: atomic.h 

Log message:
Implement atomic_{set,clear}bits_int and membars for arm64.
With feedback from Dale Rahn, ok patrick@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/03 23:16:45

Log message:
    import mdp, a command-line based markdown presentation tool.
    inputs and ok danj@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170204
    
    N ports/textproc/mdp/Makefile
    N ports/textproc/mdp/distinfo
    N ports/textproc/mdp/pkg/PLIST
    N ports/textproc/mdp/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/03 23:18:06

Modified files:
	textproc       : Makefile 

Log message:
+     SUBDIR += mdp


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/04 00:23:25

Modified files:
	usr.sbin/vmd   : loadfile_elf.c 

Log message:
missing function prototype


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/04 00:42:52

Modified files:
	sys/kern       : kern_proc.c 

Log message:
Update usage for ps/w to match previous commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/04 01:43:29

Log message:
    import libevt: a library to access the Windows Event Log (EVT) format.
    inputs and ok sthen@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170204
    
    N ports/sysutils/libevt/Makefile
    N ports/sysutils/libevt/distinfo
    N ports/sysutils/libevt/pkg/PLIST
    N ports/sysutils/libevt/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/04 01:44:18

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libevt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/04 04:56:48

Modified files:
	usr.bin/mandoc : man_term.c mdoc_term.c 

Log message:
Do not fix the default indent for all subsequent files; some may use
a different macro language and hence require a different indent.
You can see the effect with "man -a 1 host hostname".


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/04 05:40:43

Log message:
    Import devel/libmpack. Needed for neovim.
    
    ---8<---
    libmpack is a small binary serialization/RPC library that implements both the
    msgpack and msgpack-rpc specifications.
    --->8---
    
    OK jca@ and with input from sthen@. Many thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20170204
    
    N ports/devel/libmpack/Makefile
    N ports/devel/libmpack/Makefile.inc
    N ports/devel/libmpack/lua/Makefile
    N ports/devel/libmpack/lua/distinfo
    N ports/devel/libmpack/lua/files/test.lua
    N ports/devel/libmpack/lua/patches/patch-_config_release_mk
    N ports/devel/libmpack/lua/patches/patch-binding_lua_Makefile
    N ports/devel/libmpack/lua/pkg/DESCR
    N ports/devel/libmpack/lua/pkg/PLIST
    N ports/devel/libmpack/main/Makefile
    N ports/devel/libmpack/main/distinfo
    N ports/devel/libmpack/main/patches/patch-Makefile
    N ports/devel/libmpack/main/patches/patch-_config_release_mk
    N ports/devel/libmpack/main/pkg/DESCR
    N ports/devel/libmpack/main/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/04 05:42:13

Modified files:
	devel          : Makefile 

Log message:
Link devel/libmpack.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/04 06:17:08

Modified files:
	usr.bin/netstat: mbuf.c 

Log message:
Include netinet/in.h for in_addr_t now it has moved out of sys/types.h.
gcc warned about this, clang fatally errored.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/04 07:03:41

Modified files:
	www/clearsilver: Makefile 

Log message:
preemptive fix for perl update


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2017/02/04 08:02:46

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Prevent netlock related deadlock with the X server during iwm(4) scans.

The issue appears at least with 7265 and 8260 chips as confirmed by
stsp@, tb@ and myself.

Fixed by unlocking NET_LOCK() at the beginning of iwmioctl() and
relocking it at the end.

Guidance and ok mpi@, ok stsp@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/02/04 08:23:04

Modified files:
	lang/fpc       : Makefile 
	lang/fpc/patches: patch-fpcsrc_compiler_systems_t_bsd_pas 

Log message:
Do not attempt to link to /usr/libexec/ld.so as a shared library if -XAfoo is
passed as an option.  Fixes games/hedgewars at runtime.  With help from awolk@
and unC0Rr from upstream, who provided helpful test cases.

ok awolk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/02/04 08:23:57

Modified files:
	games/hedgewars: Makefile 

Log message:
Bump and force using fpc>=3.0.0p2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/04 11:27:18

Modified files:
	sysutils/py-elasticsearch-curator: Makefile distinfo 

Log message:
simple update to 4.2.6, with tighter dependency to updated py-certifi

works for me since a couple of days without issues


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/04 12:12:54

Modified files:
	sys/arch/arm64/arm64: pmap.c machdep.c 

Log message:
Remove gdb waitcount debug code and dummy print.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/04 12:16:25

Modified files:
	include/arpa   : inet.h 

Log message:
The macro versions of htonl et al don't require them, but POSIX says
<arpa/inet.h> needs to provide uint16_t and uint32_t.

ok millert@ krw@ naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/04 12:20:59

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Prefer <sys/endian.h> to <machine/endian.h>

ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/04 12:22:42

Modified files:
	sys/dev/usb/dwc2: dwc2.c 

Log message:
Prefer <sys/endian.h> to <machine/endian.h>

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/04 12:25:24

Modified files:
	usr.sbin/smtpd : rfc2822.c 

Log message:
Cast char to unsigned char for isspace()

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/04 12:49:18

Modified files:
	sys/arch/arm64/arm64: machdep.c 

Log message:
A bit of code and comment cleanup.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/04 13:12:44

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Read the data cache size instead of hardcoding some value.  We might
want to start caching that value somewhere though.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/04 15:09:44

Modified files:
	mail/postfix/snapshot: Makefile 
	mail/postfix/snapshot/patches: patch-src_tls_tls_dh_c 

Log message:
Enable EC curve selection in Postfix, from Brad.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/04 15:21:58

Modified files:
	usr.sbin/dhcpd : dhcpd.conf.5 

Log message:
Appropriately replace "domain name" with "hostname"; less misleading

tb@ was initially concerned about next-server but there were more
similar occurrences.  Simple solution - "hostname" - proposed by jmc@
ok from both


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/04 15:43:46

Modified files:
	sys/arch/arm64/stand/efiboot: efiboot.c 

Log message:
In reality our kernel does not need to be aligned at a 256M boundary,
but simply at 2M boundary.  This might have been a requirement from
armv7, but it's not true for arm64.  This also helps reduce memory
holes below the kernel.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/04 16:42:53

Modified files:
	usr.bin/tmux   : log.c 

Log message:
Missing va_end, from Anton Lindqvist.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/04 16:50:28

Modified files:
	x11/ede/lib    : Makefile 
	x11/ede/lib/pkg: PLIST 

Log message:
Remove doxygen docs.

Tweaked diff from Rafael Sadowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/04 17:29:30

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Add option PCIVERBOSE.

Prompted by jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/amigaos4

Update of /cvs/src/gnu/usr.bin/perl/amigaos4
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/amigaos4

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/amigaos4 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Plugin

Update of /cvs/src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Plugin
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Plugin

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Plugin added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/History

Update of /cvs/src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/History
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/History

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/History added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/load-warning

Update of /cvs/src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/load-warning
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/load-warning

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/load-warning added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus

Update of /cvs/src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math

Update of /cvs/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math/BigInt

Update of /cvs/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math/BigInt
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math/BigInt

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math/BigInt added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus

Update of /cvs/src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus/BOMTest

Update of /cvs/src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus/BOMTest
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus/BOMTest

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Module-Metadata/corpus/BOMTest added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/corpus

Update of /cvs/src/gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/corpus
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/corpus

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/corpus added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/Sub

Update of /cvs/src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/Sub
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/Sub

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/Sub added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib/Term

Update of /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib/Term
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib/Term

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/lib/Term added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test

Update of /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test/RRA

Update of /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test/RRA
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test/RRA

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test/RRA added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/module

Update of /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/module
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/module

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/module added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/taint

Update of /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/taint
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/taint

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/taint added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Tester

Update of /cvs/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Tester
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Tester

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Tester added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/use

Update of /cvs/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/use
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/use

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/use added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:30:59

src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time

Update of /cvs/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time/Piece

Update of /cvs/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time/Piece
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time/Piece

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time/Piece added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/Win32API-File/inc

Update of /cvs/src/gnu/usr.bin/perl/cpan/Win32API-File/inc
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Win32API-File/inc

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Win32API-File/inc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/Win32API-File/inc/ExtUtils

Update of /cvs/src/gnu/usr.bin/perl/cpan/Win32API-File/inc/ExtUtils
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/Win32API-File/inc/ExtUtils

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/Win32API-File/inc/ExtUtils added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/autodie/lib/autodie/Scope

Update of /cvs/src/gnu/usr.bin/perl/cpan/autodie/lib/autodie/Scope
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/autodie/lib/autodie/Scope

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/autodie/lib/autodie/Scope added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/libnet/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/libnet/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/libnet/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/libnet/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/libnet/lib/Net

Update of /cvs/src/gnu/usr.bin/perl/cpan/libnet/lib/Net
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/libnet/lib/Net

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/libnet/lib/Net added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/libnet/lib/Net/FTP

Update of /cvs/src/gnu/usr.bin/perl/cpan/libnet/lib/Net/FTP
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/libnet/lib/Net/FTP

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/libnet/lib/Net/FTP added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/data

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/data

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/docs

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/docs
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/docs

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/docs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/general

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/general
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/general

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/general added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test/RRA

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test/RRA
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test/RRA

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test/RRA added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/man

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/man
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/man

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/man added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/parselink

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/parselink
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/parselink

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/parselink added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/style

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/style
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/style

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/style added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/podlators/t/text

Update of /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/text
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/podlators/t/text

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/podlators/t/text added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib/ExtUtils

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib/ExtUtils
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib/ExtUtils

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/lib/ExtUtils added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup

Update of /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/encoding-warnings

Update of /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/encoding-warnings

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/encoding-warnings/lib

Update of /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/encoding-warnings/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/encoding-warnings/lib/encoding

Update of /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings/lib/encoding
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/encoding-warnings/lib/encoding

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings/lib/encoding added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/encoding-warnings/t

Update of /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings/t
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/encoding-warnings/t

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/encoding-warnings/t added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/Test

Update of /cvs/src/gnu/usr.bin/perl/dist/Test
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/Test

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/Test added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/Test/lib

Update of /cvs/src/gnu/usr.bin/perl/dist/Test/lib
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/Test/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/Test/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/Test/t

Update of /cvs/src/gnu/usr.bin/perl/dist/Test/t
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/Test/t

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/Test/t added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:00

src/gnu/usr.bin/perl/dist/Time-HiRes

Update of /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/Time-HiRes

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:01

src/gnu/usr.bin/perl/dist/Time-HiRes/fallback

Update of /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes/fallback
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/Time-HiRes/fallback

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes/fallback added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:01

src/gnu/usr.bin/perl/dist/Time-HiRes/hints

Update of /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes/hints
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/Time-HiRes/hints

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes/hints added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:01

src/gnu/usr.bin/perl/dist/Time-HiRes/t

Update of /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes/t
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/dist/Time-HiRes/t

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/dist/Time-HiRes/t added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:01

src/gnu/usr.bin/perl/ext/Amiga-ARexx

Update of /cvs/src/gnu/usr.bin/perl/ext/Amiga-ARexx
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/ext/Amiga-ARexx

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/ext/Amiga-ARexx added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:01

src/gnu/usr.bin/perl/ext/Amiga-ARexx/__examples

Update of /cvs/src/gnu/usr.bin/perl/ext/Amiga-ARexx/__examples
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/ext/Amiga-ARexx/__examples

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/ext/Amiga-ARexx/__examples added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:01

src/gnu/usr.bin/perl/ext/Amiga-Exec

Update of /cvs/src/gnu/usr.bin/perl/ext/Amiga-Exec
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/ext/Amiga-Exec

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/ext/Amiga-Exec added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:31:01

src/gnu/usr.bin/perl/ext/Amiga-Exec/__examples

Update of /cvs/src/gnu/usr.bin/perl/ext/Amiga-Exec/__examples
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/ext/Amiga-Exec/__examples

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/ext/Amiga-Exec/__examples added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:32:22

Modified files:
	gnu/usr.bin/perl: AUTHORS Configure EXTERN.h INSTALL INTERN.h 
	                  MANIFEST META.json META.yml Makefile.SH 
	                  Makefile.micro README README.aix README.amiga 
	                  README.android README.bs2000 README.ce 
	                  README.cygwin README.haiku README.hpux 
	                  README.hurd README.irix README.macosx 
	                  README.netware README.os2 README.os390 
	                  README.os400 README.solaris README.symbian 
	                  README.synology README.tru64 README.vms 
	                  README.win32 TestInit.pm XSUB.h autodoc.pl 
	                  av.c av.h caretx.c cflags.SH 
	                  charclass_invlists.h config_h.SH configpm 
	                  configure.com cop.h cv.h deb.c doio.c doop.c 
	                  dosish.h dump.c embed.fnc embed.h embedvar.h 
	                  fakesdio.h feature.h generate_uudmap.c 
	                  globals.c globvar.sym gv.c gv.h handy.h hv.c 
	                  hv.h hv_func.h inline.h install_lib.pl 
	                  installhtml installman installperl intrpvar.h 
	                  iperlsys.h keywords.c keywords.h 
	                  l1_char_class_tab.h locale.c make_ext.pl 
	                  make_patchnum.pl makedef.pl makedepend.SH 
	                  malloc.c mathoms.c metaconfig.SH metaconfig.h 
	                  mg.c mg.h mg_raw.h mg_vtable.h miniperlmain.c 
	                  mkppport mkppport.lst myconfig.SH mydtrace.h 
	                  nostdio.h numeric.c op.c op.h op_reg_common.h 
	                  opcode.h opnames.h overload.h pad.c pad.h 
	                  parser.h patchlevel.h perl.c perl.h perlapi.h 
	                  perldtrace.d perlio.c perlio.h perliol.h 
	                  perlsdio.h perlvars.h perly.act perly.c 
	                  perly.h perly.tab perly.y pp.c pp.h pp_ctl.c 
	                  pp_hot.c pp_pack.c pp_proto.h pp_sort.c 
	                  pp_sys.c proto.h reentr.c regcharclass.h 
	                  regcomp.c regcomp.h regcomp.sym regen_perly.pl 
	                  regexec.c regexp.h regnodes.h run.c 
	                  runtests.SH scope.c scope.h sv.c sv.h taint.c 
	                  thread.h time64.c time64.h toke.c uconfig.h 
	                  uconfig.sh uconfig64.sh unicode_constants.h 
	                  universal.c unixish.h utf8.c utf8.h 
	                  utfebcdic.h util.c util.h utils.lst vutil.c 
	                  vutil.h vxs.inc warnings.h 
	                  write_buildcustomize.pl 
	gnu/usr.bin/perl/Cross: Makefile-cross-SH cflags-cross-arm 
	                        config.sh-arm-linux 
	                        config.sh-arm-linux-n770 
	gnu/usr.bin/perl/NetWare: Makefile config.wc config_H.wc 
	gnu/usr.bin/perl/Porting: Glossary Maintainers.pl README.pod 
	                          add-package.pl bisect-runner.pl 
	                          bisect.pl bump-perl-version 
	                          checkAUTHORS.pl checkcfgvar.pl 
	                          cmpVERSION.pl config.sh config_H 
	                          core-cpan-diff corelist-perldelta.pl 
	                          corelist.pl epigraphs.pod exec-bit.txt 
	                          expand-macro.pl 
	                          how_to_write_a_perldelta.pod makemeta 
	                          makerel new-perldelta.pl 
	                          perldelta_template.pod 
	                          perlhist_calculate.pl pod_lib.pl 
	                          pod_rules.pl pumpkin.pod 
	                          release_announcement_template.txt 
	                          release_managers_guide.pod 
	                          release_schedule.pod sync-with-cpan 
	                          todo.pod 
	gnu/usr.bin/perl/cpan/Archive-Tar/bin: ptardiff ptargrep 
	gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive: Tar.pm 
	gnu/usr.bin/perl/cpan/Archive-Tar/lib/Archive/Tar: Constant.pm 
	                                                   File.pm 
	gnu/usr.bin/perl/cpan/B-Debug: Debug.pm 
	gnu/usr.bin/perl/cpan/B-Debug/t: debug.t 
	gnu/usr.bin/perl/cpan/CPAN/lib: CPAN.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/App: Cpan.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN: Author.pm Bundle.pm 
	                                     CacheMgr.pm Complete.pm 
	                                     Debug.pm DeferredCode.pm 
	                                     Distribution.pm 
	                                     Distroprefs.pm 
	                                     Distrostatus.pm FTP.pm 
	                                     FirstTime.pm 
	                                     HandleConfig.pm Index.pm 
	                                     InfoObj.pm Kwalify.pm 
	                                     Mirrors.pm Module.pm Nox.pm 
	                                     Prompt.pm Queue.pm Shell.pm 
	                                     Tarzip.pm URL.pm Version.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Exception: 
	                                               RecursiveDependency.pm 
	                                               blocked_urllist.pm 
	                                               yaml_not_installed.pm 
	                                               yaml_process_error.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/FTP: netrc.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/HTTP: Client.pm 
	                                          Credentials.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/LWP: UserAgent.pm 
	gnu/usr.bin/perl/cpan/CPAN/scripts: cpan 
	gnu/usr.bin/perl/cpan/CPAN/t: 03pkgs.t 
	gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN: Meta.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta: Converter.pm 
	                                               Feature.pm 
	                                               History.pm 
	                                               Prereqs.pm 
	                                               Spec.pm 
	                                               Validator.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta/t: converter-bad.t 
	                                   converter-fail.t converter.t 
	                                   load-bad.t meta-obj.t 
	                                   no-index.t prereqs-finalize.t 
	                                   prereqs-merge.t prereqs.t 
	                                   repository.t save-load.t 
	                                   validator.t 
	gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/lib/CPAN/Meta: 
	                                                            Requirements.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t: accepts.t 
	                                                bad_version_hook.t 
	                                                basic.t 
	                                                finalize.t 
	                                                from-hash.t 
	                                                merge.t 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/lib/CPAN/Meta: YAML.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t: 01_api.t 01_compile.t 
	                                        10_read.t 
	                                        11_read_string.t 
	                                        12_write.t 
	                                        13_write_string.t 
	                                        20_subclass.t 
	                                        21_yamlpm_compat.t 
	                                        30_yaml_spec_tml.t 
	                                        31_local_tml.t 
	                                        32_world_tml.t README.md 
	                                        tml 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/lib: TestBridge.pm 
	                                            TestUtils.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/lib/TestML: Tiny.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip: 
	                                                                 collection.tml 
	                                                                 quoting.tml 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-world: 
	                                                  YAML-Tiny-META.tml 
	gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2: Bzip2.xs 
	gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/bzip2-src: blocksort.c 
	                                                    bzlib.c 
	                                                    bzlib_private.h 
	                                                    compress.c 
	                                                    crctable.c 
	                                                    randtable.c 
	gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/lib/Compress/Raw: 
	                                                           Bzip2.pm 
	gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/private: MakeUtil.pm 
	gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/t: 000prereq.t 
	gnu/usr.bin/perl/cpan/Compress-Raw-Zlib: Zlib.xs 
	gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/lib/Compress/Raw: 
	                                                          Zlib.pm 
	gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/private: MakeUtil.pm 
	gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/t: 07bufsize.t 
	gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src: deflate.c 
	                                                  deflate.h 
	                                                  inflate.c 
	                                                  trees.c 
	gnu/usr.bin/perl/cpan/Config-Perl-V: V.pm 
	gnu/usr.bin/perl/cpan/Config-Perl-V/t: 10_base.t 20_plv56.t 
	                                       21_plv58.t 22_plv510.t 
	                                       23_plv512.t 24_plv514.t 
	                                       25_plv516.t 25_plv5162.t 
	                                       26_plv518.t 26_plv5182.t 
	                                       27_plv5200.t 
	gnu/usr.bin/perl/cpan/DB_File: DB_File.pm DB_File.xs Makefile.PL 
	gnu/usr.bin/perl/cpan/Devel-PPPort: HACKERS Makefile.PL 
	                                    PPPort_pm.PL soak typemap 
	gnu/usr.bin/perl/cpan/Devel-PPPort/devel: mktodo regenerate 
	gnu/usr.bin/perl/cpan/Devel-PPPort/parts: apicheck.pl apidoc.fnc 
	                                          embed.fnc ppptools.pl 
	gnu/usr.bin/perl/cpan/Devel-PPPort/parts/base: 5004000 5004050 
	                                               5005000 5006000 
	                                               5007001 5010000 
	                                               5010001 5013004 
	                                               5013011 5014000 
	                                               5015006 5015009 
	                                               5017011 5018000 
	                                               5019002 5019003 
	gnu/usr.bin/perl/cpan/Devel-PPPort/parts/inc: SvPV call cop grok 
	                                              magic misc ppphdoc 
	                                              ppphtest pv_tools 
	                                              variables 
	gnu/usr.bin/perl/cpan/Devel-PPPort/parts/todo: 5004000 5004050 
	                                               5005000 5006000 
	                                               5007001 5008000 
	                                               5009005 5010000 
	                                               5010001 5013004 
	                                               5013005 5013008 
	                                               5013011 5014000 
	                                               5015006 5015009 
	                                               5017011 5018000 
	                                               5019003 
	gnu/usr.bin/perl/cpan/Devel-PPPort/t: cop.t magic.t misc.t 
	                                      ppphtest.t 
	gnu/usr.bin/perl/cpan/Digest/Digest: base.pm file.pm 
	gnu/usr.bin/perl/cpan/Digest-MD5: MD5.pm MD5.xs Makefile.PL 
	gnu/usr.bin/perl/cpan/Digest-MD5/t: files.t threads.t 
	gnu/usr.bin/perl/cpan/Digest-SHA: Makefile.PL SHA.xs shasum 
	                                  typemap 
	gnu/usr.bin/perl/cpan/Digest-SHA/lib/Digest: SHA.pm 
	gnu/usr.bin/perl/cpan/Digest-SHA/src: sha.c sha.h sha64bit.c 
	                                      sha64bit.h 
	gnu/usr.bin/perl/cpan/Digest-SHA/t: methods.t woodbury.t 
	gnu/usr.bin/perl/cpan/Encode: Encode.pm Encode.xs Makefile.PL 
	                              encengine.c encoding.pm 
	gnu/usr.bin/perl/cpan/Encode/Byte: Makefile.PL 
	gnu/usr.bin/perl/cpan/Encode/CN: Makefile.PL 
	gnu/usr.bin/perl/cpan/Encode/EBCDIC: Makefile.PL 
	gnu/usr.bin/perl/cpan/Encode/Encode: _PM.e2x 
	gnu/usr.bin/perl/cpan/Encode/JP: Makefile.PL 
	gnu/usr.bin/perl/cpan/Encode/KR: Makefile.PL 
	gnu/usr.bin/perl/cpan/Encode/Symbol: Makefile.PL 
	gnu/usr.bin/perl/cpan/Encode/TW: Makefile.PL 
	gnu/usr.bin/perl/cpan/Encode/Unicode: Unicode.pm Unicode.xs 
	gnu/usr.bin/perl/cpan/Encode/bin: enc2xs piconv 
	gnu/usr.bin/perl/cpan/Encode/lib/Encode: Alias.pm Supported.pod 
	gnu/usr.bin/perl/cpan/Encode/lib/Encode/MIME: Header.pm 
	gnu/usr.bin/perl/cpan/Encode/t: Aliases.t encoding.t 
	                                mime-header.t taint.t 
	gnu/usr.bin/perl/cpan/Encode/ucm: koi8-u.ucm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils: 
	                                                       Liblist.pm 
	                                                       MM.pm 
	                                                       MM_AIX.pm 
	                                                       MM_Any.pm 
	                                                       MM_BeOS.pm 
	                                                       MM_Cygwin.pm 
	                                                       MM_DOS.pm 
	                                                       MM_Darwin.pm 
	                                                       MM_MacOS.pm 
	                                                       MM_NW5.pm 
	                                                       MM_OS2.pm 
	                                                       MM_QNX.pm 
	                                                       MM_UWIN.pm 
	                                                       MM_Unix.pm 
	                                                       MM_VMS.pm 
	                                                       MM_VOS.pm 
	                                                       MM_Win32.pm 
	                                                       MM_Win95.pm 
	                                                       MY.pm 
	                                                       MakeMaker.pm 
	                                                       Mkbootstrap.pm 
	                                                       Mksymlists.pm 
	                                                       testlib.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command: 
	                                                               MM.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist: 
	                                                               Kid.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker: 
	                                                                 Config.pm 
	                                                                 FAQ.pod 
	                                                                 Tutorial.pod 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t: FIRST_MAKEFILE.t 
	                                            INSTALL_BASE.t 
	                                            MM_Unix.t 
	                                            MakeMaker_Parameters.t 
	                                            PL_FILES.t basic.t 
	                                            cd.t echo.t 
	                                            meta_convert.t 
	                                            min_perl_version.t 
	                                            miniperl.t 
	                                            oneliner.t 
	                                            parse_version.t 
	                                            pm_to_blib.t 
	                                            postamble.t prereq.t 
	                                            recurs.t 
	                                            several_authors.t 
	                                            writemakefile_args.t 
	                                            xs.t 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test: 
	                                                               NoXS.pm 
	                                                               Utils.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup: 
	                                                                     XS.pm 
	gnu/usr.bin/perl/cpan/File-Path/lib/File: Path.pm 
	gnu/usr.bin/perl/cpan/File-Path/t: Path.t 
	gnu/usr.bin/perl/cpan/Filter-Util-Call: Call.pm Call.xs 
	                                        filter-util.pl 
	gnu/usr.bin/perl/cpan/Filter-Util-Call/t: call.t 
	gnu/usr.bin/perl/cpan/Getopt-Long/lib/Getopt: Long.pm 
	gnu/usr.bin/perl/cpan/Getopt-Long/t: gol-linkage.t 
	gnu/usr.bin/perl/cpan/HTTP-Tiny/lib/HTTP: Tiny.pm 
	gnu/usr.bin/perl/cpan/HTTP-Tiny/t: 001_api.t 002_croakage.t 
	                                   020_headers.t 100_get.t 
	                                   101_head.t 102_put.t 
	                                   103_delete.t 104_post.t 
	                                   110_mirror.t 130_redirect.t 
	                                   140_proxy.t 150_post_form.t 
	                                   160_cookies.t 
	                                   161_basic_auth.t 
	                                   162_proxy_auth.t 
	                                   170_keepalive.t Util.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/bin: zipdetails 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/Compress: Zlib.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/File: GlobMapper.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress: Base.pm 
	                                                   Bzip2.pm 
	                                                   Deflate.pm 
	                                                   FAQ.pod 
	                                                   Gzip.pm 
	                                                   RawDeflate.pm 
	                                                   Zip.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Adapter: 
	                                                           Bzip2.pm 
	                                                           Deflate.pm 
	                                                           Identity.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Base: 
	                                                        Common.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Gzip: 
	                                                        Constants.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Zip: 
	                                                       Constants.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Zlib: 
	                                                        Constants.pm 
	                                                        Extra.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress: 
	                                                     AnyInflate.pm 
	                                                     AnyUncompress.pm 
	                                                     Base.pm 
	                                                     Bunzip2.pm 
	                                                     Gunzip.pm 
	                                                     Inflate.pm 
	                                                     RawInflate.pm 
	                                                     Unzip.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Uncompress/Adapter: 
	                                                             Bunzip2.pm 
	                                                             Identity.pm 
	                                                             Inflate.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/private: MakeUtil.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/t: 000prereq.t 020isize.t 
	                                     101truncate-bzip2.t 
	                                     101truncate-deflate.t 
	                                     101truncate-gzip.t 
	                                     101truncate-rawdeflate.t 
	                                     101truncate-zip.t 
	                                     105oneshot-zip-store-only.t 
	gnu/usr.bin/perl/cpan/IO-Compress/t/compress: oneshot.pl 
	                                              prime.pl 
	gnu/usr.bin/perl/cpan/IO-Socket-IP/lib/IO/Socket: IP.pm 
	gnu/usr.bin/perl/cpan/IO-Socket-IP/t: 01local-client-v4.t 
	                                      02local-server-v4.t 
	                                      03local-cross-v4.t 
	                                      05local-server-v6.t 
	                                      06local-cross-v6.t 
	                                      15io-socket.t 16v6only.t 
	gnu/usr.bin/perl/cpan/IPC-SysV: SysV.xs 
	gnu/usr.bin/perl/cpan/IPC-SysV/lib/IPC: Msg.pm Semaphore.pm 
	                                        SharedMem.pm SysV.pm 
	gnu/usr.bin/perl/cpan/IPC-SysV/t: ipcsysv.t 
	gnu/usr.bin/perl/cpan/JSON-PP/bin: json_pp 
	gnu/usr.bin/perl/cpan/JSON-PP/lib/JSON: PP.pm 
	gnu/usr.bin/perl/cpan/Locale-Codes/lib/Locale: Codes.pm 
	                                               Codes.pod 
	                                               Country.pm 
	                                               Country.pod 
	                                               Currency.pm 
	                                               Currency.pod 
	                                               Language.pm 
	                                               Language.pod 
	                                               Script.pm 
	                                               Script.pod 
	gnu/usr.bin/perl/cpan/Locale-Codes/lib/Locale/Codes: API.pod 
	                                                     Changes.pod 
	                                                     Constants.pm 
	                                                     Country.pm 
	                                                     Country.pod 
	                                                     Country_Codes.pm 
	                                                     Country_Retired.pm 
	                                                     Currency.pm 
	                                                     Currency.pod 
	                                                     Currency_Codes.pm 
	                                                     Currency_Retired.pm 
	                                                     LangExt.pm 
	                                                     LangExt.pod 
	                                                     LangExt_Codes.pm 
	                                                     LangExt_Retired.pm 
	                                                     LangFam.pm 
	                                                     LangFam.pod 
	                                                     LangFam_Codes.pm 
	                                                     LangFam_Retired.pm 
	                                                     LangVar.pm 
	                                                     LangVar.pod 
	                                                     LangVar_Codes.pm 
	                                                     LangVar_Retired.pm 
	                                                     Language.pm 
	                                                     Language.pod 
	                                                     Language_Codes.pm 
	                                                     Language_Retired.pm 
	                                                     Script.pm 
	                                                     Script.pod 
	                                                     Script_Codes.pm 
	                                                     Script_Retired.pm 
	gnu/usr.bin/perl/cpan/Locale-Codes/t: code2country.t 
	                                      code2country_old.t 
	                                      country.t country_old.t 
	                                      testfunc.pl 
	gnu/usr.bin/perl/cpan/MIME-Base64: Base64.pm Base64.xs 
	gnu/usr.bin/perl/cpan/Memoize/Memoize: AnyDBM_File.pm Expire.pm 
	                                       ExpireFile.pm 
	                                       ExpireTest.pm 
	                                       NDBM_File.pm SDBM_File.pm 
	                                       Storable.pm 
	gnu/usr.bin/perl/cpan/Module-Load-Conditional/lib/Module/Load: 
	                                                               Conditional.pm 
	gnu/usr.bin/perl/cpan/Module-Metadata/lib/Module: Metadata.pm 
	gnu/usr.bin/perl/cpan/Module-Metadata/t: contains_pod.t 
	                                         encoding.t endpod.t 
	                                         metadata.t taint.t 
	                                         version.t 
	gnu/usr.bin/perl/cpan/Module-Metadata/t/lib: ENDPOD.pm 
	gnu/usr.bin/perl/cpan/NEXT/lib: NEXT.pm 
	gnu/usr.bin/perl/cpan/NEXT/t: actual.t 
	gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/lib/Parse/CPAN: Meta.pm 
	gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/t: 02_api.t 
	gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/t/lib/Parse/CPAN/Meta: 
	                                                             Test.pm 
	gnu/usr.bin/perl/cpan/Perl-OSType/lib/Perl: OSType.pm 
	gnu/usr.bin/perl/cpan/PerlIO-via-QuotedPrint/lib/PerlIO/via: 
	                                                             QuotedPrint.pm 
	gnu/usr.bin/perl/cpan/Pod-Escapes/lib/Pod: Escapes.pm 
	gnu/usr.bin/perl/cpan/Pod-Parser/lib/Pod: Find.pm 
	                                          InputObjects.pm 
	                                          ParseUtils.pm 
	                                          Parser.pm PlainText.pm 
	                                          Select.pm 
	gnu/usr.bin/perl/cpan/Pod-Parser/t/pod: find.t 
	gnu/usr.bin/perl/cpan/Pod-Perldoc: Makefile.PL 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod: Perldoc.pm 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: BaseTo.pm 
	                                                   GetOptsOO.pm 
	                                                   ToANSI.pm 
	                                                   ToChecker.pm 
	                                                   ToMan.pm 
	                                                   ToNroff.pm 
	                                                   ToPod.pm 
	                                                   ToRtf.pm 
	                                                   ToTerm.pm 
	                                                   ToText.pm 
	                                                   ToTk.pm 
	                                                   ToXml.pm 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/t/man: _get_columns.t 
	gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod: Simple.pm Simple.pod 
	gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple: BlackBox.pm 
	                                                 Checker.pm 
	                                                 Debug.pm 
	                                                 DumpAsText.pm 
	                                                 DumpAsXML.pm 
	                                                 HTML.pm 
	                                                 HTMLBatch.pm 
	                                                 LinkSection.pm 
	                                                 Methody.pm 
	                                                 Progress.pm 
	                                                 PullParser.pm 
	                                                 PullParserEndToken.pm 
	                                                 PullParserStartToken.pm 
	                                                 PullParserTextToken.pm 
	                                                 PullParserToken.pm 
	                                                 RTF.pm 
	                                                 Search.pm 
	                                                 SimpleTree.pm 
	                                                 Subclassing.pod 
	                                                 Text.pm 
	                                                 TextContent.pm 
	                                                 TiedOutFH.pm 
	                                                 Transcode.pm 
	                                                 TranscodeDumb.pm 
	                                                 TranscodeSmart.pm 
	                                                 XHTML.pm 
	                                                 XMLOutStream.pm 
	gnu/usr.bin/perl/cpan/Pod-Simple/t: basic.t corpus.t enc-chars.t 
	                                    encod04.t html01.t render.t 
	                                    search10.t search12.t 
	                                    search20.t search22.t 
	                                    search26.t search28.t 
	                                    search50.t whine.t xhtml01.t 
	gnu/usr.bin/perl/cpan/Pod-Simple/t/corpus: encwarn01.xml 
	                                           lat1frim.xml 
	gnu/usr.bin/perl/cpan/Pod-Usage/lib/Pod: Usage.pm 
	gnu/usr.bin/perl/cpan/Pod-Usage/scripts: pod2usage.PL 
	gnu/usr.bin/perl/cpan/Pod-Usage/t/pod: p2u_data.pl pod2usage.t 
	                                       pod2usage.xr pod2usage2.t 
	                                       testcmp.pl testp2pt.pl 
	                                       usage.pod usage2.pod 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils: ListUtil.xs 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/List: Util.pm 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/List/Util: XS.pm 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/Scalar: Util.pm 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils/t: 00version.t any-all.t 
	                                           blessed.t dualvar.t 
	                                           first.t 
	                                           getmagic-once.t 
	                                           isvstring.t lln.t 
	                                           max.t maxstr.t min.t 
	                                           minstr.t openhan.t 
	                                           pair.t product.t 
	                                           readonly.t reduce.t 
	                                           refaddr.t reftype.t 
	                                           shuffle.t 
	                                           stack-corruption.t 
	                                           sum.t sum0.t 
	                                           tainted.t weak.t 
	gnu/usr.bin/perl/cpan/Socket: Makefile.PL Socket.pm Socket.xs 
	gnu/usr.bin/perl/cpan/Socket/t: getaddrinfo.t getnameinfo.t 
	                                socketpair.t 
	gnu/usr.bin/perl/cpan/Sys-Syslog: Makefile.PL 
	gnu/usr.bin/perl/cpan/Term-Cap: Cap.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/bin: prove 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App: Prove.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove: State.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/State: 
	                                                        Result.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/State/Result: 
	                                                               Test.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP: Base.pm Harness.pm 
	                                            Object.pm Parser.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter: Base.pm 
	                                                      Color.pm 
	                                                      Console.pm 
	                                                      File.pm 
	                                                      Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/Console: 
	                                                              ParallelSession.pm 
	                                                              Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/File: 
	                                                           Session.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Harness: Beyond.pod 
	                                                    Env.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser: Aggregator.pm 
	                                                   Grammar.pm 
	                                                   Iterator.pm 
	                                                   IteratorFactory.pm 
	                                                   Multiplexer.pm 
	                                                   Result.pm 
	                                                   ResultFactory.pm 
	                                                   Scheduler.pm 
	                                                   Source.pm 
	                                                   SourceHandler.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Iterator: 
	                                                            Array.pm 
	                                                            Process.pm 
	                                                            Stream.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Result: 
	                                                          Bailout.pm 
	                                                          Comment.pm 
	                                                          Plan.pm 
	                                                          Pragma.pm 
	                                                          Test.pm 
	                                                          Unknown.pm 
	                                                          Version.pm 
	                                                          YAML.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Scheduler: 
	                                                             Job.pm 
	                                                             Spinner.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/SourceHandler: 
	                                                                 Executable.pm 
	                                                                 File.pm 
	                                                                 Handle.pm 
	                                                                 Perl.pm 
	                                                                 RawTAP.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/YAMLish: 
	                                                           Reader.pm 
	                                                           Writer.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/lib/Test: Harness.pm 
	gnu/usr.bin/perl/cpan/Test-Harness/t: grammar.t prove.t 
	                                      proveversion.t taint.t 
	                                      yamlish.t 
	gnu/usr.bin/perl/cpan/Test-Simple/lib/Test: Builder.pm More.pm 
	                                            Simple.pm 
	                                            Tutorial.pod 
	gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Builder: Module.pm 
	                                                    Tester.pm 
	gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Builder/Tester: 
	                                                           Color.pm 
	gnu/usr.bin/perl/cpan/Test-Simple/t: 
	                                     dont_overwrite_die_handler.t 
	                                     exit.t 
	gnu/usr.bin/perl/cpan/Test-Simple/t/subtest: args.t die.t 
	gnu/usr.bin/perl/cpan/Text-Balanced/lib/Text: Balanced.pm 
	gnu/usr.bin/perl/cpan/Text-ParseWords/lib/Text: ParseWords.pm 
	gnu/usr.bin/perl/cpan/Text-ParseWords/t: ParseWords.t 
	gnu/usr.bin/perl/cpan/Time-Piece: Piece.pm Piece.xs Seconds.pm 
	gnu/usr.bin/perl/cpan/Time-Piece/t: 01base.t 02core.t 
	                                    06subclass.t 
	gnu/usr.bin/perl/cpan/Unicode-Collate: Collate.pm Collate.xs 
	                                       Makefile.PL mkheader 
	gnu/usr.bin/perl/cpan/Unicode-Collate/Collate: Locale.pm 
	                                               allkeys.txt 
	gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/CJK: Big5.pm 
	                                                   GB2312.pm 
	                                                   JISX0208.pm 
	                                                   Korean.pm 
	                                                   Pinyin.pm 
	                                                   Stroke.pm 
	                                                   Zhuyin.pm 
	gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/Locale: af.pl 
	                                                      ar.pl 
	                                                      as.pl 
	                                                      az.pl 
	                                                      be.pl 
	                                                      bg.pl 
	                                                      bn.pl 
	                                                      ca.pl 
	                                                      cs.pl 
	                                                      cy.pl 
	                                                      da.pl 
	                                                      de_phone.pl 
	                                                      ee.pl 
	                                                      eo.pl 
	                                                      es.pl 
	                                                      es_trad.pl 
	                                                      et.pl 
	                                                      fa.pl 
	                                                      fi.pl 
	                                                      fi_phone.pl 
	                                                      fil.pl 
	                                                      fo.pl 
	                                                      fr.pl 
	                                                      gu.pl 
	                                                      ha.pl 
	                                                      haw.pl 
	                                                      hi.pl 
	                                                      hr.pl 
	                                                      hu.pl 
	                                                      hy.pl 
	                                                      ig.pl 
	                                                      is.pl 
	                                                      ja.pl 
	                                                      kk.pl 
	                                                      kl.pl 
	                                                      kn.pl 
	                                                      ko.pl 
	                                                      kok.pl 
	                                                      ln.pl 
	                                                      lt.pl 
	                                                      lv.pl 
	                                                      mk.pl 
	                                                      ml.pl 
	                                                      mr.pl 
	                                                      mt.pl 
	                                                      nb.pl 
	                                                      nn.pl 
	                                                      nso.pl 
	                                                      om.pl 
	                                                      or.pl 
	                                                      pa.pl 
	                                                      pl.pl 
	                                                      ro.pl 
	                                                      ru.pl 
	                                                      sa.pl 
	                                                      se.pl 
	                                                      si.pl 
	                                                      si_dict.pl 
	                                                      sk.pl 
	                                                      sl.pl 
	                                                      sq.pl 
	                                                      sr.pl 
	                                                      sv.pl 
	                                                      sv_refo.pl 
	                                                      ta.pl 
	                                                      te.pl 
	                                                      th.pl 
	                                                      tn.pl 
	                                                      to.pl 
	                                                      tr.pl 
	                                                      uk.pl 
	                                                      ur.pl 
	                                                      vi.pl 
	                                                      wae.pl 
	                                                      wo.pl 
	                                                      yo.pl 
	                                                      zh.pl 
	                                                      zh_big5.pl 
	                                                      zh_gb.pl 
	                                                      zh_pin.pl 
	                                                      zh_strk.pl 
	                                                      zh_zhu.pl 
	gnu/usr.bin/perl/cpan/Unicode-Collate/t: contract.t ident.t 
	                                         illegal.t loc_es.t 
	                                         loc_estr.t loc_fr.t 
	                                         nonchar.t version.t 
	                                         view.t 
	gnu/usr.bin/perl/cpan/Unicode-Normalize: Makefile.PL 
	                                         Normalize.pm 
	                                         Normalize.xs mkheader 
	gnu/usr.bin/perl/cpan/Unicode-Normalize/t: func.t illegal.t 
	gnu/usr.bin/perl/cpan/Win32: Win32.pm Win32.xs 
	gnu/usr.bin/perl/cpan/Win32/t: GetOSName.t 
	gnu/usr.bin/perl/cpan/Win32API-File: File.pm File.xs Makefile.PL 
	                                     buffers.h cFile.h cFile.pc 
	                                     const2perl.h typemap 
	gnu/usr.bin/perl/cpan/Win32API-File/t: file.t tie.t 
	gnu/usr.bin/perl/cpan/autodie/lib: Fatal.pm autodie.pm 
	gnu/usr.bin/perl/cpan/autodie/lib/autodie: exception.pm hints.pm 
	                                           skip.pm 
	gnu/usr.bin/perl/cpan/autodie/lib/autodie/exception: system.pm 
	gnu/usr.bin/perl/cpan/autodie/t: autodie_skippy.pm chmod.t 
	                                 dbmopen.t exceptions.t 
	                                 internal.t mkdir.t scope_leak.t 
	                                 truncate.t utf8_open.t 
	                                 version.t version_tag.t 
	gnu/usr.bin/perl/cpan/autodie/t/lib: Hints_pod_examples.pm 
	                                     Hints_provider_does.pm 
	                                     Hints_provider_easy_does_it.pm 
	                                     Hints_provider_isa.pm 
	                                     Hints_test.pm lethal.pm 
	gnu/usr.bin/perl/cpan/autodie/t/lib/Some: Module.pm 
	gnu/usr.bin/perl/cpan/autodie/t/lib/autodie/test: au.pm 
	                                                  badname.pm 
	                                                  missing.pm 
	gnu/usr.bin/perl/cpan/autodie/t/lib/autodie/test/au: 
	                                                     exception.pm 
	gnu/usr.bin/perl/cpan/autodie/t/lib/my: autodie.pm 
	gnu/usr.bin/perl/cpan/autodie/t/lib/pujHa: ghach.pm 
	gnu/usr.bin/perl/cpan/autodie/t/lib/pujHa/ghach: Dotlh.pm 
	gnu/usr.bin/perl/cpan/experimental/lib: experimental.pm 
	gnu/usr.bin/perl/cpan/experimental/t: basic.t 
	gnu/usr.bin/perl/cpan/libnet: Makefile.PL 
	gnu/usr.bin/perl/cpan/libnet/t: config.t datasend.t ftp.t 
	                                hostname.t libnet_t.pl netrc.t 
	                                nntp.t require.t smtp.t time.t 
	gnu/usr.bin/perl/cpan/parent/lib: parent.pm 
	gnu/usr.bin/perl/cpan/parent/t: parent-pmc.t parent.t 
	gnu/usr.bin/perl/cpan/perlfaq/lib: perlfaq.pm perlfaq.pod 
	                                   perlfaq1.pod perlfaq2.pod 
	                                   perlfaq3.pod perlfaq4.pod 
	                                   perlfaq5.pod perlfaq6.pod 
	                                   perlfaq7.pod perlfaq8.pod 
	                                   perlfaq9.pod perlglossary.pod 
	gnu/usr.bin/perl/cpan/podlators/lib/Pod: Man.pm ParseLink.pm 
	                                         Text.pm 
	gnu/usr.bin/perl/cpan/podlators/lib/Pod/Text: Color.pm 
	                                              Overstrike.pm 
	                                              Termcap.pm 
	gnu/usr.bin/perl/cpan/podlators/scripts: pod2man.PL pod2text.PL 
	gnu/usr.bin/perl/cpan/version/lib: version.pm version.pod 
	gnu/usr.bin/perl/cpan/version/lib/version: Internals.pod 
	                                           regex.pm 
	gnu/usr.bin/perl/cpan/version/t: 01base.t 02derived.t 
	                                 03require.t 05sigdie.t 06noop.t 
	                                 07locale.t 08_corelist.t 
	                                 09_list_util.t coretests.pm 
	gnu/usr.bin/perl/cygwin: cygwin.c 
	gnu/usr.bin/perl/dist/Attribute-Handlers: Changes 
	gnu/usr.bin/perl/dist/Attribute-Handlers/lib/Attribute: 
	                                                        Handlers.pm 
	gnu/usr.bin/perl/dist/Carp: Makefile.PL 
	gnu/usr.bin/perl/dist/Carp/lib: Carp.pm 
	gnu/usr.bin/perl/dist/Carp/lib/Carp: Heavy.pm 
	gnu/usr.bin/perl/dist/Carp/t: Carp.t Carp_overload.t 
	                              arg_regexp.t arg_string.t 
	gnu/usr.bin/perl/dist/Data-Dumper: Changes Dumper.pm Dumper.xs 
	gnu/usr.bin/perl/dist/Data-Dumper/t: dumper.t quotekeys.t 
	gnu/usr.bin/perl/dist/Dumpvalue/lib: Dumpvalue.pm 
	gnu/usr.bin/perl/dist/Dumpvalue/t: Dumpvalue.t 
	gnu/usr.bin/perl/dist/Exporter/lib: Exporter.pm 
	gnu/usr.bin/perl/dist/ExtUtils-CBuilder: Changes LICENSE 
	                                         Makefile.PL 
	gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils: 
	                                                      CBuilder.pm 
	gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder: 
	                                                               Base.pm 
	gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform: 
	                                                                        Unix.pm 
	                                                                        VMS.pm 
	                                                                        Windows.pm 
	                                                                        aix.pm 
	                                                                        android.pm 
	                                                                        cygwin.pm 
	                                                                        darwin.pm 
	                                                                        dec_osf.pm 
	                                                                        os2.pm 
	gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows: 
	                                                                                BCC.pm 
	                                                                                GCC.pm 
	                                                                                MSVC.pm 
	gnu/usr.bin/perl/dist/ExtUtils-CBuilder/t: 00-have-compiler.t 
	                                           02-link.t 04-base.t 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS: Changes 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib: perlxs.pod 
	                                            perlxstut.pod 
	                                            perlxstypemap.pod 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils: ParseXS.pm 
	                                                     Typemaps.pm 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS: 
	                                                             Constants.pm 
	                                                             CountLines.pm 
	                                                             Eval.pm 
	                                                             Utilities.pm 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps: 
	                                                              Cmd.pm 
	                                                              InputMap.pm 
	                                                              OutputMap.pm 
	                                                              Type.pm 
	gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t: 109-standard_XS_defs.t 
	gnu/usr.bin/perl/dist/Filter-Simple/lib/Filter: Simple.pm 
	gnu/usr.bin/perl/dist/I18N-LangTags/lib/I18N: LangTags.pm 
	gnu/usr.bin/perl/dist/I18N-LangTags/lib/I18N/LangTags: List.pm 
	gnu/usr.bin/perl/dist/IO: IO.pm IO.xs poll.c poll.h 
	gnu/usr.bin/perl/dist/IO/lib/IO: Handle.pm Poll.pm 
	gnu/usr.bin/perl/dist/IO/t: io_linenum.t io_poll.t io_sock.t 
	                            io_taint.t io_utf8argv.t io_xs.t 
	gnu/usr.bin/perl/dist/Locale-Maketext: ChangeLog 
	gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale: Maketext.pm 
	gnu/usr.bin/perl/dist/Locale-Maketext/lib/Locale/Maketext: 
	                                                           Guts.pm 
	                                                           GutsLoader.pm 
	gnu/usr.bin/perl/dist/Module-CoreList: Changes 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module: CoreList.pm 
	                                                  CoreList.pod 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList: 
	                                                           TieHashDelta.pm 
	                                                           Utils.pm 
	gnu/usr.bin/perl/dist/Module-CoreList/t: corelist.t is_core.t 
	gnu/usr.bin/perl/dist/Net-Ping/t: 450_service.t 
	gnu/usr.bin/perl/dist/PathTools: Cwd.pm Cwd.xs Makefile.PL 
	gnu/usr.bin/perl/dist/PathTools/lib/File: Spec.pm 
	gnu/usr.bin/perl/dist/PathTools/lib/File/Spec: Cygwin.pm Epoc.pm 
	                                               Functions.pm 
	                                               Mac.pm OS2.pm 
	                                               Unix.pm VMS.pm 
	                                               Win32.pm 
	gnu/usr.bin/perl/dist/PathTools/t: Spec.t 
	gnu/usr.bin/perl/dist/Safe: Changes MANIFEST Safe.pm 
	gnu/usr.bin/perl/dist/Safe/t: safe2.t safeops.t safeutf8.t 
	gnu/usr.bin/perl/dist/SelfLoader/lib: SelfLoader.pm 
	gnu/usr.bin/perl/dist/Storable: ChangeLog Storable.pm 
	                                Storable.xs 
	gnu/usr.bin/perl/dist/Storable/t: attach_errors.t canonical.t 
	                                  code.t utf8.t 
	gnu/usr.bin/perl/dist/Term-Complete/lib/Term: Complete.pm 
	gnu/usr.bin/perl/dist/Term-ReadLine/lib/Term: ReadLine.pm 
	gnu/usr.bin/perl/dist/Thread-Queue/lib/Thread: Queue.pm 
	gnu/usr.bin/perl/dist/Thread-Semaphore/t: 01_basic.t 
	                                          04_nonblocking.t 
	                                          05_force.t 
	gnu/usr.bin/perl/dist/Tie-File/lib/Tie: File.pm 
	gnu/usr.bin/perl/dist/Tie-File/t: 00_version.t 
	gnu/usr.bin/perl/dist/XSLoader: Makefile.PL XSLoader_pm.PL 
	gnu/usr.bin/perl/dist/XSLoader/t: XSLoader.t 
	gnu/usr.bin/perl/dist/autouse/lib: autouse.pm 
	gnu/usr.bin/perl/dist/autouse/t: autouse.t 
	gnu/usr.bin/perl/dist/base: Changes 
	gnu/usr.bin/perl/dist/base/lib: base.pm fields.pm 
	gnu/usr.bin/perl/dist/constant/lib: constant.pm 
	gnu/usr.bin/perl/dist/constant/t: constant.t 
	gnu/usr.bin/perl/dist/if: if.pm 
	gnu/usr.bin/perl/dist/if/t: if.t 
	gnu/usr.bin/perl/dist/lib/t: 01lib.t 
	gnu/usr.bin/perl/dist/threads: threads.xs 
	gnu/usr.bin/perl/dist/threads/lib: threads.pm 
	gnu/usr.bin/perl/dist/threads/t: err.t exit.t thread.t 
	gnu/usr.bin/perl/dist/threads-shared: shared.xs 
	gnu/usr.bin/perl/dist/threads-shared/lib/threads: shared.pm 
	gnu/usr.bin/perl/dist/threads-shared/t: av_simple.t hv_refs.t 
	                                        object2.t stress.t 
	gnu/usr.bin/perl/djgpp: djgppsed.sh 
	gnu/usr.bin/perl/ext/B: B.pm B.xs Makefile.PL typemap 
	gnu/usr.bin/perl/ext/B/B: Concise.pm Showlex.pm 
	gnu/usr.bin/perl/ext/B/hints: darwin.pl openbsd.pl 
	gnu/usr.bin/perl/ext/B/t: OptreeCheck.pm b.t concise-xs.t 
	                          concise.t f_map.t f_sort.t 
	                          optree_check.t optree_concise.t 
	                          optree_misc.t optree_samples.t 
	                          optree_sort.t optree_specials.t 
	                          optree_varinit.t showlex.t 
	gnu/usr.bin/perl/ext/Devel-Peek: Peek.pm Peek.xs 
	gnu/usr.bin/perl/ext/Devel-Peek/t: Peek.t 
	gnu/usr.bin/perl/ext/DynaLoader: DynaLoader_pm.PL Makefile.PL 
	                                 dl_aix.xs dl_dllload.xs 
	                                 dl_dlopen.xs dl_dyld.xs 
	                                 dl_freemint.xs dl_hpux.xs 
	                                 dl_none.xs dl_symbian.xs 
	                                 dl_vms.xs dl_win32.xs dlutils.c 
	gnu/usr.bin/perl/ext/DynaLoader/t: DynaLoader.t 
	gnu/usr.bin/perl/ext/Errno: Errno_pm.PL 
	gnu/usr.bin/perl/ext/ExtUtils-Miniperl/lib/ExtUtils: Miniperl.pm 
	gnu/usr.bin/perl/ext/Fcntl: Fcntl.pm Makefile.PL 
	gnu/usr.bin/perl/ext/File-DosGlob/t: DosGlob.t 
	gnu/usr.bin/perl/ext/File-Find/lib/File: Find.pm 
	gnu/usr.bin/perl/ext/File-Find/t: find.t 
	gnu/usr.bin/perl/ext/File-Glob: Glob.pm Glob.xs bsd_glob.c 
	gnu/usr.bin/perl/ext/File-Glob/t: rt114984.t 
	gnu/usr.bin/perl/ext/Hash-Util: Changes Util.xs 
	gnu/usr.bin/perl/ext/Hash-Util/lib/Hash: Util.pm 
	gnu/usr.bin/perl/ext/Hash-Util/t: Util.t 
	gnu/usr.bin/perl/ext/Hash-Util-FieldHash: FieldHash.xs 
	gnu/usr.bin/perl/ext/Hash-Util-FieldHash/lib/Hash/Util: 
	                                                        FieldHash.pm 
	gnu/usr.bin/perl/ext/Hash-Util-FieldHash/t: 05_perlhook.t 
	gnu/usr.bin/perl/ext/I18N-Langinfo: Langinfo.pm Langinfo.xs 
	gnu/usr.bin/perl/ext/IPC-Open3/lib/IPC: Open3.pm 
	gnu/usr.bin/perl/ext/IPC-Open3/t: IPC-Open3.t 
	gnu/usr.bin/perl/ext/NDBM_File: Makefile.PL NDBM_File.pm 
	                                NDBM_File.xs 
	gnu/usr.bin/perl/ext/ODBM_File: ODBM_File.pm ODBM_File.xs 
	                                typemap 
	gnu/usr.bin/perl/ext/Opcode: Opcode.pm Opcode.xs 
	gnu/usr.bin/perl/ext/Opcode/t: Opcode.t 
	gnu/usr.bin/perl/ext/POSIX: Makefile.PL POSIX.xs typemap 
	gnu/usr.bin/perl/ext/POSIX/lib: POSIX.pm POSIX.pod 
	gnu/usr.bin/perl/ext/POSIX/t: export.t math.t posix.t 
	                              sigaction.t time.t wrappers.t 
	gnu/usr.bin/perl/ext/PerlIO-encoding: encoding.pm encoding.xs 
	gnu/usr.bin/perl/ext/PerlIO-encoding/t: encoding.t fallback.t 
	                                        nolooping.t 
	gnu/usr.bin/perl/ext/PerlIO-mmap: mmap.pm mmap.xs 
	gnu/usr.bin/perl/ext/PerlIO-scalar: scalar.pm scalar.xs 
	gnu/usr.bin/perl/ext/PerlIO-scalar/t: scalar.t 
	gnu/usr.bin/perl/ext/PerlIO-via: via.pm via.xs 
	gnu/usr.bin/perl/ext/PerlIO-via/hints: aix.pl 
	gnu/usr.bin/perl/ext/Pod-Functions: Functions_pm.PL 
	gnu/usr.bin/perl/ext/Pod-Functions/t: Functions.t 
	gnu/usr.bin/perl/ext/Pod-Html/lib/Pod: Html.pm 
	gnu/usr.bin/perl/ext/Pod-Html/t: crossref.pod crossref.t 
	                                 crossref2.t crossref3.t 
	                                 htmlview.t pod2html-lib.pl 
	gnu/usr.bin/perl/ext/Pod-Html/testdir: perlpodspec-copy.pod 
	gnu/usr.bin/perl/ext/SDBM_File: Makefile.PL SDBM_File.pm 
	                                SDBM_File.xs 
	gnu/usr.bin/perl/ext/SDBM_File/t: prep.t 
	gnu/usr.bin/perl/ext/Sys-Hostname: Hostname.pm Hostname.xs 
	gnu/usr.bin/perl/ext/VMS-DCLsym: DCLsym.pm DCLsym.xs 
	gnu/usr.bin/perl/ext/VMS-Filespec/t: filespec.t 
	gnu/usr.bin/perl/ext/Win32CORE: Win32CORE.c 
	gnu/usr.bin/perl/ext/XS-APItest: APItest.pm APItest.xs 
	                                 Makefile.PL 
	                                 XSUB-redefined-macros.xs 
	                                 core_or_not.inc numeric.xs 
	                                 typemap 
	gnu/usr.bin/perl/ext/XS-APItest/t: call.t call_checker.t 
	                                   callregexec.t 
	                                   clone-with-stack.t customop.t 
	                                   fetch_pad_names.t grok.t 
	                                   handy.t hash.t magic.t 
	                                   multicall.t printf.t svpeek.t 
	                                   svpv_magic.t 
	                                   underscore_length.t utf8.t 
	                                   xsub_h.t 
	gnu/usr.bin/perl/ext/XS-Typemap: Typemap.pm Typemap.xs 
	gnu/usr.bin/perl/ext/XS-Typemap/t: Typemap.t 
	gnu/usr.bin/perl/ext/arybase: arybase.pm arybase.xs ptable.h 
	gnu/usr.bin/perl/ext/arybase/t: akeys.t aslice.t lslice.t 
	gnu/usr.bin/perl/ext/attributes: attributes.pm attributes.xs 
	gnu/usr.bin/perl/ext/mro: mro.pm mro.xs 
	gnu/usr.bin/perl/ext/re: Makefile.PL re.pm re.xs re_top.h 
	gnu/usr.bin/perl/ext/re/t: lexical_debug.pl lexical_debug.t re.t 
	                           re_funcs_u.t reflags.t regop.pl 
	                           regop.t 
	gnu/usr.bin/perl/hints: aix.sh amigaos.sh catamount.sh darwin.sh 
	                        dec_osf.sh freebsd.sh hpux.sh irix_6.sh 
	                        linux-android.sh linux.sh openbsd.sh 
	                        os390.sh solaris_2.sh 
	gnu/usr.bin/perl/lib: AnyDBM_File.pm Benchmark.pm Benchmark.t 
	                      Config.t DB.pm DB.t English.pm 
	                      UNIVERSAL.pm _charnames.pm bytes.pm 
	                      bytes.t charnames.pm charnames.t 
	                      diagnostics.t dumpvar.pl feature.pm h2xs.t 
	                      locale.pm locale.t open.t overload.pm 
	                      overload.t perl5db.pl perl5db.t sigtrap.pm 
	                      sort.t strict.pm strict.t utf8.pm utf8.t 
	                      utf8_heavy.pl vars_carp.t warnings.pm 
	gnu/usr.bin/perl/lib/B: Deparse-core.t Deparse.pm Deparse.t 
	gnu/usr.bin/perl/lib/DBM_Filter/t: encode.t utf8.t 
	gnu/usr.bin/perl/lib/ExtUtils: Embed.pm typemap 
	gnu/usr.bin/perl/lib/ExtUtils/t: Embed.t 
	gnu/usr.bin/perl/lib/File: Copy.pm Copy.t stat.t 
	gnu/usr.bin/perl/lib/Getopt: Std.pm 
	gnu/usr.bin/perl/lib/Tie: Scalar.pm 
	gnu/usr.bin/perl/lib/Unicode: UCD.pm UCD.t 
	gnu/usr.bin/perl/lib/feature: unicode_strings.t 
	gnu/usr.bin/perl/lib/overload: numbers.pm 
	gnu/usr.bin/perl/lib/unicore: ArabicShaping.txt BidiBrackets.txt 
	                              BidiMirroring.txt Blocks.txt 
	                              CJKRadicals.txt CaseFolding.txt 
	                              CompositionExclusions.txt DAge.txt 
	                              DCoreProperties.txt 
	                              DNormalizationProps.txt 
	                              EastAsianWidth.txt 
	                              EmojiSources.txt 
	                              HangulSyllableType.txt Index.txt 
	                              IndicSyllabicCategory.txt Jamo.txt 
	                              LineBreak.txt NameAliases.txt 
	                              NamedSequences.txt NamedSqProv.txt 
	                              NamesList.txt 
	                              NormalizationCorrections.txt 
	                              PropList.txt PropValueAliases.txt 
	                              PropertyAliases.txt README.perl 
	                              ReadMe.txt ScriptExtensions.txt 
	                              Scripts.txt SpecialCasing.txt 
	                              StandardizedVariants.txt 
	                              UnicodeData.txt mktables version 
	gnu/usr.bin/perl/lib/unicore/auxiliary: GCBTest.txt 
	                                        GraphemeBreakProperty.txt 
	                                        SentenceBreakProperty.txt 
	                                        WordBreakProperty.txt 
	gnu/usr.bin/perl/lib/unicore/extracted: DBidiClass.txt 
	                                        DBinaryProperties.txt 
	                                        DCombiningClass.txt 
	                                        DDecompositionType.txt 
	                                        DEastAsianWidth.txt 
	                                        DGeneralCategory.txt 
	                                        DJoinGroup.txt 
	                                        DJoinType.txt 
	                                        DLineBreak.txt 
	                                        DNumType.txt 
	                                        DNumValues.txt 
	gnu/usr.bin/perl/lib/warnings: register.pm 
	gnu/usr.bin/perl/os2: Makefile.SHs os2.c 
	gnu/usr.bin/perl/os2/OS2/OS2-ExtAttr: ExtAttr.pm 
	gnu/usr.bin/perl/os2/OS2/OS2-Process: Process.pm Process.xs 
	gnu/usr.bin/perl/os2/OS2/OS2-REXX: REXX.pm 
	gnu/usr.bin/perl/os2/OS2/OS2-REXX/DLL: DLL.pm 
	gnu/usr.bin/perl/plan9: config.plan9 config_h.sample 
	                        config_sh.sample mkfile 
	gnu/usr.bin/perl/pod: buildtoc perl.pod perl5200delta.pod 
	                      perlapio.pod perlbook.pod perlcall.pod 
	                      perlcheat.pod perlclib.pod 
	                      perlcommunity.pod perldata.pod 
	                      perldebguts.pod perldebtut.pod 
	                      perldebug.pod perldelta.pod perldiag.pod 
	                      perldsc.pod perldtrace.pod perlebcdic.pod 
	                      perlembed.pod perlexperiment.pod 
	                      perlfilter.pod perlfunc.pod perlgit.pod 
	                      perlgpl.pod perlguts.pod perlhack.pod 
	                      perlhacktips.pod perlhist.pod 
	                      perlintro.pod perliol.pod perlipc.pod 
	                      perllocale.pod perllol.pod 
	                      perlmodinstall.pod perlmodlib.PL 
	                      perlmodstyle.pod perlmroapi.pod 
	                      perlnewmod.pod perlobj.pod perlootut.pod 
	                      perlop.pod perlpacktut.pod perlperf.pod 
	                      perlpod.pod perlpodspec.pod 
	                      perlpodstyle.pod perlpolicy.pod 
	                      perlport.pod perlre.pod perlreapi.pod 
	                      perlrebackslash.pod perlrecharclass.pod 
	                      perlref.pod perlreftut.pod perlrequick.pod 
	                      perlreref.pod perlretut.pod perlrun.pod 
	                      perlsec.pod perlsource.pod perlsub.pod 
	                      perlsyn.pod perltie.pod perltrap.pod 
	                      perlunicode.pod perlunicook.pod 
	                      perlunifaq.pod perluniintro.pod 
	                      perlunitut.pod perlutil.pod perlvar.pod 
	                      perlvms.pod 
	gnu/usr.bin/perl/regen: embed.pl embed_lib.pl feature.pl 
	                        genpacksizetables.pl keywords.pl 
	                        lib_cleanup.pl mg_vtable.pl 
	                        mk_PL_charclass.pl mk_invlists.pl 
	                        opcode.pl opcodes overload.pl reentr.pl 
	                        regcharclass.pl 
	                        regcharclass_multi_char_folds.pl 
	                        regcomp.pl regen_lib.pl 
	                        unicode_constants.pl warnings.pl 
	gnu/usr.bin/perl/symbian: config.pl config.sh symbian_proto.h 
	                          symbianish.h 
	gnu/usr.bin/perl/t: README TEST harness loc_tools.pl test.pl 
	                    thread_it.pl 
	gnu/usr.bin/perl/t/base: lex.t rs.t 
	gnu/usr.bin/perl/t/benchmark: 
	                              rt26188-speed-up-keys-on-empty-hash.t 
	gnu/usr.bin/perl/t/bigmem: pos.t read.t regexp.t vec.t 
	gnu/usr.bin/perl/t/cmd: for.t mod.t 
	gnu/usr.bin/perl/t/comp: fold.t form_scope.t hints.t parser.t 
	                         proto.t require.t uproto.t utf.t 
	gnu/usr.bin/perl/t/io: argv.t bom.t crlf.t defout.t eintr.t 
	                       errno.t errnosig.t fs.t inplace.t 
	                       iprefix.t open.t perlio.t socket.t 
	                       through.t utf8.t 
	gnu/usr.bin/perl/t/lib: Cname.pm common.pl cygwin.t deprecate.t 
	                        h2ph.pht mypragma.t no_load.t 
	                        overload_nomethod.t 
	                        proxy_constant_subs.t universal.t 
	gnu/usr.bin/perl/t/lib/charnames: alias 
	gnu/usr.bin/perl/t/lib/croak: op pp toke 
	gnu/usr.bin/perl/t/lib/feature: bundle implicit 
	gnu/usr.bin/perl/t/lib/strict: refs subs vars 
	gnu/usr.bin/perl/t/lib/warnings: 7fatal 9uninit doio doop mg op 
	                                 perlio pp pp_hot pp_sys regcomp 
	                                 regexec sv toke utf8 
	gnu/usr.bin/perl/t/mro: basic.t basic_04_dfs_utf8.t 
	                        dbic_dfs_utf8.t inconsistent_c3.t 
	                        inconsistent_c3_utf8.t isa_aliases.t 
	                        isa_aliases_utf8.t isarev.t 
	                        method_caching.t method_caching_utf8.t 
	                        next_NEXT.t next_NEXT_utf8.t 
	                        next_edgecases.t next_edgecases_utf8.t 
	                        recursion_c3.t recursion_dfs.t 
	                        vulcan_c3_utf8.t vulcan_dfs_utf8.t 
	gnu/usr.bin/perl/t/op: 64bitint.t alarm.t anonsub.t args.t 
	                       array.t array_base.t attrproto.t attrs.t 
	                       auto.t avhv.t blocks.t bop.t caller.t 
	                       chars.t chdir.t chop.t chr.t closure.t 
	                       concat2.t context.t coreamp.t coresubs.t 
	                       cproto.t crypt.t current_sub.t dbm.t 
	                       defined.t defins.t delete.t die.t 
	                       die_except.t die_keeperr.t die_unwind.t 
	                       do.t dor.t each.t each_array.t eval.t 
	                       evalbytes.t exec.t exp.t fh.t filetest.t 
	                       flip.t for.t fork.t glob.t gmagic.t 
	                       goto.t grep.t groups.t gv.t 
	                       hash-rt85026.t hash.t hashwarn.t 
	                       heredoc.t inc.t inccode.t incfilter.t 
	                       index.t int.t join.t kvaslice.t 
	                       kvhslice.t lc.t leaky-magic.t length.t 
	                       lex.t lex_assign.t lexsub.t list.t 
	                       local.t localref.t loopctl.t 
	                       magic-27839.t magic.t method.t mkdir.t 
	                       my.t my_stash.t mydef.t negate.t oct.t 
	                       ord.t override.t pack.t packagev.t 
	                       postfixderef.t print.t protowarn.t push.t 
	                       pwent.t qr.t quotemeta.t rand.t range.t 
	                       read.t readline.t recurse.t ref.t 
	                       repeat.t require_37033.t require_errors.t 
	                       reset.t reverse.t rt119311.t runlevel.t 
	                       select.t sigdispatch.t signatures.t 
	                       sigsystem.t sleep.t smartkve.t 
	                       smartmatch.t sort.t splice.t split.t 
	                       split_unicode.t sprintf.t sprintf2.t 
	                       srand.t sselect.t stash.t stat.t state.t 
	                       sub.t sub_lval.t substr.t svleak.t 
	                       switch.t symbolcache.t taint.t 
	                       threads-dirh.t threads.t tie.t 
	                       tie_fetch_count.t tiehandle.t time.t tr.t 
	                       undef.t universal.t unlink.t unshift.t 
	                       upgrade.t utf8cache.t utf8decode.t 
	                       utf8magic.t utfhash.t utftaint.t vec.t 
	                       ver.t wantarray.t warn.t while.t write.t 
	gnu/usr.bin/perl/t/opbasic: arith.t cmp.t concat.t qq.t 
	gnu/usr.bin/perl/t/perf: taint.t 
	gnu/usr.bin/perl/t/porting: FindExt.t args_assert.t bincompat.t 
	                            checkcase.t checkcfgvar.t 
	                            cmp_version.t customized.dat 
	                            customized.t diag.t dual-life.t 
	                            globvar.t known_pod_issues.dat 
	                            maintainers.t manifest.t perlfunc.t 
	                            pod_rules.t podcheck.t readme.t 
	                            regen.t ss_dup.t utils.t 
	gnu/usr.bin/perl/t/re: charset.t fold_grind.t overload.t pat.t 
	                       pat_advanced.t pat_re_eval.t 
	                       pat_rt_report.t pat_special_cc.t pos.t 
	                       qr-72922.t qr.t re_tests recompile.t 
	                       reg_email.t reg_eval.t reg_eval_scope.t 
	                       reg_fold.t reg_mesg.t reg_posixcc.t 
	                       regex_sets.t regexp.t 
	                       regexp_unicode_prop.t rt122747.t rxcode.t 
	                       subst.t uniprops.t 
	gnu/usr.bin/perl/t/run: cloexec.t dtrace.t exit.t fresh_perl.t 
	                        locale.t runenv.t script.t switchC.t 
	                        switchI.t switchM.t switchd-78586.t 
	                        switchd.t switches.t switcht.t 
	gnu/usr.bin/perl/t/uni: attrs.t cache.t case.pl chomp.t chr.t 
	                        class.t eval.t fold.t goto.t greek.t 
	                        gv.t labels.t latin2.t lex_utf8.t 
	                        lower.t method.t opcroak.t overload.t 
	                        package.t parser.t readline.t sprintf.t 
	                        stash.t tie.t title.t tr_7jis.t 
	                        tr_eucjp.t tr_sjis.t tr_utf8.t 
	                        universal.t upper.t variables.t write.t 
	gnu/usr.bin/perl/t/win32: runenv.t system.t system_tests 
	gnu/usr.bin/perl/utils: Makefile.PL c2ph.PL enc2xs.PL h2ph.PL 
	                        perlbug.PL splain.PL 
	gnu/usr.bin/perl/vms: descrip_mms.template gen_shrfls.pl 
	                      test.com vms.c vmsish.h 
	gnu/usr.bin/perl/win32: FindExt.pm Makefile Makefile.ce 
	                        config.ce config.gc config.vc 
	                        config_H.ce config_H.gc config_H.vc 
	                        config_h.PL config_sh.PL fcrypt.c 
	                        makefile.mk perlexe.manifest perlhost.h 
	                        perllib.c pod.mak runperl.c vdir.h 
	                        vmem.h win32.c win32.h win32ceio.c 
	                        win32io.c win32iop.h win32sck.c wince.c 
	gnu/usr.bin/perl/win32/ce-helpers: cecopy-lib.pl 
Added files:
	gnu/usr.bin/perl: .dir-locals.el asan_ignore dquote.c 
	                  dquote_inline.h ebcdic_tables.h 
	                  invlist_inline.h mg_names.inc mro_core.c 
	                  overload.inc packsizetables.inc 
	gnu/usr.bin/perl/Porting: bench.pl checkcfguse.pl 
	                          deparse-skips.txt 
	gnu/usr.bin/perl/amigaos4: amigaio.c amigaio.h amigaos.c 
	                           amigaos.h config.sh 
	gnu/usr.bin/perl/cpan: .dir-locals.el 
	gnu/usr.bin/perl/cpan/Archive-Tar/t: 08_ptargrep.t 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN: Plugin.pm 
	gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/Plugin: Specfile.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta: Merge.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/History: 
	                                                       Meta_1_0.pod 
	                                                       Meta_1_1.pod 
	                                                       Meta_1_2.pod 
	                                                       Meta_1_3.pod 
	                                                       Meta_1_4.pod 
	gnu/usr.bin/perl/cpan/CPAN-Meta/t: converter-fragments.t merge.t 
	                                   optional_feature-merge.t 
	gnu/usr.bin/perl/cpan/CPAN-Meta/t/data-test: 
	                                             preserve-release-status.yml 
	gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t: strings.t 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t: 86_fail.t 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/lib: SubtestCompat.pm 
	gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/load-warning: 
	                                                               document.tml 
	gnu/usr.bin/perl/cpan/Config-Perl-V/t: 27_plv5202.t 28_plv5220.t 
	                                       28_plv52201w.t 
	gnu/usr.bin/perl/cpan/Devel-PPPort/parts/base: 5003070 5018002 
	                                               5018003 5018004 
	                                               5019004 5019005 
	                                               5019006 5019007 
	                                               5019008 5019009 
	                                               5019010 5019011 
	                                               5020000 5020001 
	                                               5021000 5021001 
	                                               5021002 5021004 
	                                               5021005 5021006 
	                                               5021007 5021008 
	gnu/usr.bin/perl/cpan/Devel-PPPort/parts/todo: 5003070 5018002 
	                                               5018003 5018004 
	                                               5019004 5019005 
	                                               5019006 5019007 
	                                               5019008 5019009 
	                                               5019010 5019011 
	                                               5020000 5020001 
	                                               5021000 5021001 
	                                               5021002 5021004 
	                                               5021005 5021006 
	                                               5021007 5021008 
	gnu/usr.bin/perl/cpan/Digest-SHA/src: sdf.c 
	gnu/usr.bin/perl/cpan/Digest-SHA/t: bitorder.t inheritance.t 
	gnu/usr.bin/perl/cpan/Encode/bin: encguess 
	gnu/usr.bin/perl/cpan/Encode/t: encoding-locale.t isa.t 
	                                utf8warnings.t 
	gnu/usr.bin/perl/cpan/ExtUtils-Install/lib/ExtUtils: Install.pm 
	                                                     Installed.pm 
	                                                     Packlist.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-Install/t: Install.t 
	                                          InstallWithMM.t 
	                                          Installapi2.t 
	                                          Installed.t Packlist.t 
	                                          can_write_dir.t 
	gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib: TieOut.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test: 
	                                                             Utils.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup: 
	                                                                   BFD.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils: 
	                                                       Command.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker: 
	                                                                 Locale.pm 
	                                                                 version.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version: 
	                                                                         regex.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t: cp.t eu_command.t 
	                                            unicode.t vstrings.t 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup: 
	                                                                     Unicode.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-Manifest/lib/ExtUtils: 
	                                                      MANIFEST.SKIP 
	                                                      Manifest.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-Manifest/t: Manifest.t 
	gnu/usr.bin/perl/cpan/File-Path/t: FilePathTest.pm Path_root.t 
	                                   Path_win32.t 
	gnu/usr.bin/perl/cpan/Filter-Util-Call/t: rt_101033.pm 
	                                          rt_101033.t 
	                                          rt_54452-rebless.t 
	gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus: auth-01.txt auth-02.txt 
	                                        auth-03.txt auth-04.txt 
	                                        auth-05.txt 
	                                        cookies-01.txt 
	                                        cookies-02.txt 
	                                        cookies-03.txt 
	                                        cookies-04.txt 
	                                        cookies-05.txt 
	                                        cookies-06.txt 
	                                        cookies-07.txt 
	                                        delete-01.txt 
	                                        form-01.txt form-02.txt 
	                                        form-03.txt form-04.txt 
	                                        form-05.txt get-01.txt 
	                                        get-02.txt get-03.txt 
	                                        get-04.txt get-05.txt 
	                                        get-06.txt get-07.txt 
	                                        get-08.txt get-09.txt 
	                                        get-10.txt get-11.txt 
	                                        get-12.txt get-13.txt 
	                                        get-14.txt get-15.txt 
	                                        get-16.txt get-17.txt 
	                                        get-18.txt get-19.txt 
	                                        get-20.txt get-21.txt 
	                                        head-01.txt 
	                                        keepalive-01.txt 
	                                        keepalive-02.txt 
	                                        keepalive-03.txt 
	                                        keepalive-04.txt 
	                                        keepalive-05.txt 
	                                        mirror-01.txt 
	                                        mirror-02.txt 
	                                        mirror-03.txt 
	                                        mirror-04.txt 
	                                        mirror-05.txt 
	                                        post-01.txt 
	                                        proxy-auth-01.txt 
	                                        put-01.txt put-02.txt 
	                                        put-03.txt put-04.txt 
	                                        put-05.txt 
	                                        redirect-01.txt 
	                                        redirect-02.txt 
	                                        redirect-03.txt 
	                                        redirect-04.txt 
	                                        redirect-05.txt 
	                                        redirect-06.txt 
	                                        redirect-07.txt 
	                                        redirect-08.txt 
	                                        redirect-09.txt 
	                                        redirect-10.txt 
	gnu/usr.bin/perl/cpan/IO-Compress: Makefile.PL 
	gnu/usr.bin/perl/cpan/IO-Socket-IP/t: 22timeout.t 
	gnu/usr.bin/perl/cpan/JSON-PP/t: zero-mojibake.t 
	gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math: BigFloat.pm 
	                                            BigInt.pm 
	gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math/BigInt: Calc.pm 
	                                                   CalcEmu.pm 
	gnu/usr.bin/perl/cpan/Math-BigInt/t: _e_math.t alias.inc 
	                                     bare_mbf.t bare_mbi.t 
	                                     bare_mif.t big_pi_e.t 
	                                     bigfltpm.inc bigfltpm.t 
	                                     bigintc.t bigintpm.inc 
	                                     bigintpm.t bigints.t 
	                                     biglog.t bigroot.t 
	                                     calling.t config.t 
	                                     const_mbf.t constant.t 
	                                     downgrade.t from_hex-mbf.t 
	                                     inf_nan.t isa.t lib_load.t 
	                                     mbf_ali.t mbi_ali.t 
	                                     mbi_rand.t mbimbf.inc 
	                                     mbimbf.t nan_cmp.t 
	                                     new_overloaded.t 
	                                     objectify_mbf.t 
	                                     objectify_mbi.t req_mbf0.t 
	                                     req_mbf1.t req_mbfa.t 
	                                     req_mbfi.t req_mbfn.t 
	                                     req_mbfw.t require.t 
	                                     round.t rt-16221.t 
	                                     sub_ali.t sub_mbf.t 
	                                     sub_mbi.t sub_mif.t trap.t 
	                                     upgrade.inc upgrade.t 
	                                     upgrade2.t upgradef.t use.t 
	                                     use_lib1.t use_lib2.t 
	                                     use_lib3.t use_lib4.t 
	                                     use_mbfw.t with_sub.t 
	gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigFloat: Subclass.pm 
	gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigInt: BareCalc.pm 
	                                                 Scalar.pm 
	                                                 Subclass.pm 
	gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc: FastCalc.xs 
	gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/lib/Math/BigInt: 
	                                                            FastCalc.pm 
	gnu/usr.bin/perl/cpan/Math-BigInt-FastCalc/t: bigintfc.t 
	                                              bootstrap.t leak.t 
	                                              mbi_rand.t 
	gnu/usr.bin/perl/cpan/Math-BigRat/lib/Math: BigRat.pm 
	gnu/usr.bin/perl/cpan/Math-BigRat/t: big_ap.t bigfltpm.inc 
	                                     bigfltrt.t biglog.t 
	                                     bigrat.t bigratpm.inc 
	                                     bigratpm.t bigratup.t 
	                                     bigroot.t bitwise.t hang.t 
	                                     requirer.t trap.t 
	gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat: Test.pm 
	gnu/usr.bin/perl/cpan/Module-Metadata/corpus/BOMTest: UTF16BE.pm 
	                                                      UTF16LE.pm 
	                                                      UTF8.pm 
	gnu/usr.bin/perl/cpan/Module-Metadata/t: extract-package.t 
	                                         extract-version.t 
	gnu/usr.bin/perl/cpan/Module-Metadata/t/lib: GeneratePackage.pm 
	gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/corpus: BadMETA.yml 
	                                              META-VR.json 
	                                              META-VR.yml 
	                                              bareyaml.meta 
	                                              json.meta 
	                                              yaml.meta 
	gnu/usr.bin/perl/cpan/Pod-Simple/t: ascii_order.pl 
	gnu/usr.bin/perl/cpan/Pod-Simple/t/corpus: 
	                                           enc_char_directive.txt 
	                                           enc_char_directive.xml 
	                                           enc_char_wrong_directive.txt 
	                                           enc_char_wrong_directive.xml 
	gnu/usr.bin/perl/cpan/Pod-Usage/t/pod: headwithmarkup.pl 
	                                       headwithmarkup.t 
	                                       selectheaders.pl 
	                                       selectheaders.t 
	                                       selectsections.pl 
	                                       selectsections.t 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils/lib/Sub: Util.pm 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils/t: prototype.t 
	                                           scalarutil-proto.t 
	                                           subname.t 
	gnu/usr.bin/perl/cpan/Term-ANSIColor/lib/Term: ANSIColor.pm 
	gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test: RRA.pm 
	gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test/RRA: Config.pm 
	gnu/usr.bin/perl/cpan/Term-ANSIColor/t/module: aliases-func.t 
	                                               basic.t 
	                                               basic256.t eval.t 
	                                               stringify.t 
	gnu/usr.bin/perl/cpan/Term-ANSIColor/t/taint: basic.t 
	gnu/usr.bin/perl/cpan/Test-Simple/lib: ok.pm 
	gnu/usr.bin/perl/cpan/Test-Simple/lib/Test: Tester.pm 
	gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Builder/IO: Scalar.pm 
	gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Tester: Capture.pm 
	                                                   CaptureRunner.pm 
	                                                   Delegate.pm 
	gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/use: ok.pm 
	gnu/usr.bin/perl/cpan/Test-Simple/t: 01-basic.t 
	                                     478-cmp_ok_hash.t MyTest.pm 
	                                     SmallTest.pm auto.t 
	                                     capture.t check_tests.t 
	                                     depth.t run_test.t 
	gnu/usr.bin/perl/cpan/Test-Simple/t/Builder: reset_outputs.t 
	gnu/usr.bin/perl/cpan/Time-Piece/t: 02core_dst.t 
	gnu/usr.bin/perl/cpan/Time-Piece/t/lib/Time/Piece: Twin.pm 
	gnu/usr.bin/perl/cpan/Win32API-File/inc/ExtUtils: 
	                                                  Myconst2perl.pm 
	gnu/usr.bin/perl/cpan/autodie/lib/autodie: Util.pm 
	gnu/usr.bin/perl/cpan/autodie/lib/autodie/Scope: Guard.pm 
	                                                 GuardStack.pm 
	gnu/usr.bin/perl/cpan/autodie/t: import-into.t read.t 
	gnu/usr.bin/perl/cpan/autodie/t/lib/my: pragma.pm 
	gnu/usr.bin/perl/cpan/bignum/lib: bigint.pm bignum.pm bigrat.pm 
	gnu/usr.bin/perl/cpan/bignum/lib/Math/BigFloat: Trace.pm 
	gnu/usr.bin/perl/cpan/bignum/lib/Math/BigInt: Trace.pm 
	gnu/usr.bin/perl/cpan/bignum/t: big_e_pi.t bigexp.t bigint.t 
	                                bignum.t bigrat.t bii_e_pi.t 
	                                biinfnan.t bir_e_pi.t bn_lite.t 
	                                bninfnan.t br_lite.t brinfnan.t 
	                                in_effect.t infnan.inc 
	                                option_a.t option_l.t option_p.t 
	                                overrides.t ratopt_a.t scope_f.t 
	                                scope_i.t scope_r.t 
	gnu/usr.bin/perl/cpan/libnet/lib/Net: Cmd.pm Config.pm Domain.pm 
	                                      FTP.pm NNTP.pm Netrc.pm 
	                                      POP3.pm SMTP.pm Time.pm 
	                                      libnetFAQ.pod 
	gnu/usr.bin/perl/cpan/libnet/lib/Net/FTP: A.pm E.pm I.pm L.pm 
	                                          dataconn.pm 
	gnu/usr.bin/perl/cpan/libnet/t: nntp_ipv6.t nntp_ssl.t 
	                                pop3_ipv6.t pop3_ssl.t 
	                                smtp_ipv6.t smtp_ssl.t 
	gnu/usr.bin/perl/cpan/podlators: Makefile.PL 
	gnu/usr.bin/perl/cpan/podlators/t/data: basic.cap basic.clr 
	                                        basic.man basic.ovr 
	                                        basic.pod basic.txt 
	                                        perl.conf termcap 
	gnu/usr.bin/perl/cpan/podlators/t/data/snippets: README 
	gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man: cpp 
	                                                     utf8-nonbreaking 
	                                                     utf8-verbatim 
	gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text: cpp 
	gnu/usr.bin/perl/cpan/podlators/t/docs: pod-spelling.t pod.t 
	                                        synopsis.t 
	gnu/usr.bin/perl/cpan/podlators/t/general: basic.t filehandle.t 
	                                           pod-parser.t 
	gnu/usr.bin/perl/cpan/podlators/t/lib/Test: Podlators.pm RRA.pm 
	gnu/usr.bin/perl/cpan/podlators/t/lib/Test/RRA: Config.pm 
	                                                ModuleVersion.pm 
	gnu/usr.bin/perl/cpan/podlators/t/man: basic.t devise-date.t 
	                                       devise-title.t empty.t 
	                                       heading.t no-encode.t 
	                                       options.t utf8-io.t 
	gnu/usr.bin/perl/cpan/podlators/t/parselink: basic.t 
	gnu/usr.bin/perl/cpan/podlators/t/style: minimum-version.t 
	                                         module-version.t 
	                                         strict.t 
	gnu/usr.bin/perl/cpan/podlators/t/text: basic.t color.t empty.t 
	                                        encoding.t options.t 
	                                        overstrike.t perlio.t 
	                                        termcap.t utf8.t 
	gnu/usr.bin/perl/cpan/version/t: 10_lyon.t 
	gnu/usr.bin/perl/dist/Carp: Changes README 
	gnu/usr.bin/perl/dist/Data-Dumper/t: huge.t trailing_comma.t 
	gnu/usr.bin/perl/dist/PathTools: Changes 
	gnu/usr.bin/perl/dist/PathTools/lib/File/Spec: AmigaOS.pm 
	gnu/usr.bin/perl/dist/PathTools/t: abs2rel.t 
	gnu/usr.bin/perl/dist/Safe/t: safesecurity.t 
	gnu/usr.bin/perl/dist/Test/lib: Test.pm 
	gnu/usr.bin/perl/dist/Test/t: 05_about_verbose.t fail.t mix.t 
	                              multiline.t onfail.t qr.t skip.t 
	                              success.t todo.t 
	gnu/usr.bin/perl/dist/Thread-Queue/t: 11_limit.t 
	gnu/usr.bin/perl/dist/Time-HiRes: Changes HiRes.pm HiRes.xs 
	                                  Makefile.PL typemap 
	gnu/usr.bin/perl/dist/Time-HiRes/fallback: const-c.inc 
	                                           const-xs.inc 
	gnu/usr.bin/perl/dist/Time-HiRes/hints: aix.pl dec_osf.pl 
	                                        dynixptx.pl irix.pl 
	                                        linux.pl sco.pl 
	                                        solaris.pl svr4.pl 
	gnu/usr.bin/perl/dist/Time-HiRes/t: Watchdog.pm alarm.t clock.t 
	                                    gettimeofday.t itimer.t 
	                                    nanosleep.t sleep.t stat.t 
	                                    time.t tv_interval.t 
	                                    ualarm.t usleep.t 
	gnu/usr.bin/perl/dist/base: Makefile.PL 
	gnu/usr.bin/perl/dist/encoding-warnings/lib/encoding: 
	                                                      warnings.pm 
	gnu/usr.bin/perl/dist/encoding-warnings/t: 1-warning.t 2-fatal.t 
	                                           3-normal.t 
	                                           4-lexical.t 
	gnu/usr.bin/perl/dist/if: Changes 
	gnu/usr.bin/perl/ext/Amiga-ARexx: ARexx.pm ARexx.xs Makefile.PL 
	                                  tagtypes.h typemap 
	gnu/usr.bin/perl/ext/Amiga-ARexx/__examples: simplecommand.pl 
	                                             simplehost.pl 
	gnu/usr.bin/perl/ext/Amiga-Exec: Exec.pm Exec.xs Makefile.PL 
	                                 tagtypes.h typemap 
	gnu/usr.bin/perl/ext/Amiga-Exec/__examples: simplecommand.pl 
	                                            simplehost.pl 
	gnu/usr.bin/perl/ext/B/t: sv_stash.t 
	gnu/usr.bin/perl/ext/POSIX/t: iscrash strerror_errno.t 
	gnu/usr.bin/perl/ext/PerlIO-encoding/t: threads.t 
	gnu/usr.bin/perl/ext/SDBM_File: CHANGES COMPARE README 
	                                README.too biblio dba.c dbd.c 
	                                dbe.1 dbe.c dbu.c grind hash.c 
	                                linux.patches makefile.sdbm 
	                                pair.c pair.h readme.ms sdbm.3 
	                                sdbm.c sdbm.h tune.h util.c 
	gnu/usr.bin/perl/ext/XS-APItest/t: cv_name.t extend.t 
	                                   gv_const_sv.t 
	                                   join_with_space.t locale.t 
	                                   newDEFSVOP.t svcat.t 
	                                   svcatpvf.t synthetic_scope.t 
	                                   weaken.t win32.t 
	gnu/usr.bin/perl/ext/re/t: strict.t 
	gnu/usr.bin/perl/lib: meta_notation.pm meta_notation.t 
	gnu/usr.bin/perl/lib/B: Deparse-subclass.t Op_private.pm 
	gnu/usr.bin/perl/lib/perl5db/t: rt-121509-restart-after-chdir 
	                                test-a-statement-2 
	gnu/usr.bin/perl/lib/unicore: IndicPositionalCategory.txt 
	gnu/usr.bin/perl/lib/unicore/auxiliary: LBTest.txt SBTest.txt 
	                                        WBTest.txt 
	gnu/usr.bin/perl/pod: perl5203delta.pod perl5220delta.pod 
	                      perl5221delta.pod perl5222delta.pod 
	                      perl5240delta.pod 
	gnu/usr.bin/perl/regen: charset_translations.pl ebcdic.pl 
	                        op_private 
	gnu/usr.bin/perl/t: charset_tools.pl 
	gnu/usr.bin/perl/t/base: translate.t 
	gnu/usr.bin/perl/t/bigmem: index.t subst.t 
	gnu/usr.bin/perl/t/io: semctl.t 
	gnu/usr.bin/perl/t/lib/croak: pp_sys 
	gnu/usr.bin/perl/t/op: aassign.t anonconst.t const-optree.t 
	                       dump.t hexfp.t infnan.t lvref.t 
	                       multideref.t require_override.t 
	gnu/usr.bin/perl/t/perf: benchmarks benchmarks.t opcount.t 
	                         optree.t speed.t 
	gnu/usr.bin/perl/t/porting: bench.t libperl.t 
	gnu/usr.bin/perl/t/re: reg_nocapture.t speed.t speed_thr.t 
	gnu/usr.bin/perl/t/run: switchDx.t 
	gnu/usr.bin/perl/t/test_pl: plan_skip_all.t 
	gnu/usr.bin/perl/t/uni: heavy.t 
	gnu/usr.bin/perl/t/win32: crypt.t 
	gnu/usr.bin/perl/utils: encguess.PL 
	gnu/usr.bin/perl/win32: GNUmakefile 
Removed files:
	gnu/usr.bin/perl: dquote_static.c inline_invlist.c madly.c 
	                  mg_names.c mro.c overload.c packsizetables.c 
	gnu/usr.bin/perl/cpan/CGI/lib: CGI.pm 
	gnu/usr.bin/perl/cpan/CGI/lib/CGI: Apache.pm Carp.pm Cookie.pm 
	                                   Fast.pm Pretty.pm Push.pm 
	                                   Switch.pm Util.pm 
	gnu/usr.bin/perl/cpan/CGI/t: Dump.t apache.t autoescape.t can.t 
	                             carp.t charset.t checkbox_group.t 
	                             cookie.t delete.t end_form.t form.t 
	                             function.t headers.t hidden.t 
	                             html.t http.t init.t init_test.txt 
	                             multipart_init.t no_tabindex.t 
	                             param_fetch.t popup_menu.t pretty.t 
	                             push.t query_string.t request.t 
	                             rt-52469.t save_read_roundtrip.t 
	                             start_end_asterisk.t 
	                             start_end_end.t start_end_start.t 
	                             switch.t tmpdir.t unescapeHTML.t 
	                             upload.t uploadInfo.t 
	                             upload_post_text.txt url.t 
	                             user_agent.t utf8.t util-58.t 
	                             util.t 
	gnu/usr.bin/perl/cpan/CPAN-Meta/t: strings.t 
	gnu/usr.bin/perl/cpan/HTTP-Tiny/t/cases: auth-01.txt auth-02.txt 
	                                         auth-03.txt auth-04.txt 
	                                         auth-05.txt 
	                                         cookies-01.txt 
	                                         cookies-02.txt 
	                                         cookies-03.txt 
	                                         cookies-04.txt 
	                                         cookies-05.txt 
	                                         cookies-06.txt 
	                                         cookies-07.txt 
	                                         delete-01.txt 
	                                         form-01.txt form-02.txt 
	                                         form-03.txt form-04.txt 
	                                         form-05.txt get-01.txt 
	                                         get-02.txt get-03.txt 
	                                         get-04.txt get-05.txt 
	                                         get-06.txt get-07.txt 
	                                         get-08.txt get-09.txt 
	                                         get-10.txt get-11.txt 
	                                         get-12.txt get-13.txt 
	                                         get-14.txt get-15.txt 
	                                         get-16.txt get-17.txt 
	                                         get-18.txt get-19.txt 
	                                         get-20.txt get-21.txt 
	                                         head-01.txt 
	                                         keepalive-01.txt 
	                                         keepalive-02.txt 
	                                         keepalive-03.txt 
	                                         keepalive-04.txt 
	                                         keepalive-05.txt 
	                                         mirror-01.txt 
	                                         mirror-02.txt 
	                                         mirror-03.txt 
	                                         mirror-04.txt 
	                                         mirror-05.txt 
	                                         post-01.txt 
	                                         proxy-auth-01.txt 
	                                         put-01.txt put-02.txt 
	                                         put-03.txt put-04.txt 
	                                         put-05.txt 
	                                         redirect-01.txt 
	                                         redirect-02.txt 
	                                         redirect-03.txt 
	                                         redirect-04.txt 
	                                         redirect-05.txt 
	                                         redirect-06.txt 
	                                         redirect-07.txt 
	                                         redirect-08.txt 
	                                         redirect-09.txt 
	gnu/usr.bin/perl/cpan/IO-Socket-IP: Build.PL Changes LICENSE 
	                                    MANIFEST META.json META.yml 
	                                    Makefile.PL README 
	gnu/usr.bin/perl/cpan/Locale-Codes/lib/Locale/Codes: 
	                                                     Constants.pod 
	gnu/usr.bin/perl/cpan/Locale-Codes/t: alias_code.t 
	                                      alias_code_old.t 
	gnu/usr.bin/perl/cpan/Module-Build/bin: config_data 
	gnu/usr.bin/perl/cpan/Module-Build/lib/Module: Build.pm 
	gnu/usr.bin/perl/cpan/Module-Build/lib/Module/Build: API.pod 
	                                                     Authoring.pod 
	                                                     Base.pm 
	                                                     Bundling.pod 
	                                                     Compat.pm 
	                                                     Config.pm 
	                                                     ConfigData.pm 
	                                                     Cookbook.pm 
	                                                     Dumper.pm 
	                                                     ModuleInfo.pm 
	                                                     Notes.pm 
	                                                     PPMMaker.pm 
	                                                     PodParser.pm 
	                                                     Version.pm 
	                                                     YAML.pm 
	gnu/usr.bin/perl/cpan/Module-Build/lib/Module/Build/Platform: 
	                                                              Default.pm 
	                                                              MacOS.pm 
	                                                              Unix.pm 
	                                                              VMS.pm 
	                                                              VOS.pm 
	                                                              Windows.pm 
	                                                              aix.pm 
	                                                              cygwin.pm 
	                                                              darwin.pm 
	                                                              os2.pm 
	gnu/usr.bin/perl/cpan/Module-Build/lib/inc: latest.pm 
	gnu/usr.bin/perl/cpan/Module-Build/lib/inc/latest: private.pm 
	gnu/usr.bin/perl/cpan/Module-Build/t: 00-compile.t PL_files.t 
	                                      README.pod add_property.t 
	                                      add_property_array.t 
	                                      add_property_hash.t 
	                                      basic.t bundle_inc.t 
	                                      compat.t debug.t 
	                                      destinations.t ext.t 
	                                      extend.t files.t help.t 
	                                      install.t 
	                                      install_extra_target.t 
	                                      manifypods.t 
	                                      manifypods_with_utf8.t 
	                                      metadata.t metadata2.t 
	                                      mymeta.t 
	                                      new_from_context.t notes.t 
	                                      parents.t perl_mb_opt.t 
	                                      pod_parser.t ppm.t 
	                                      resume.t runthrough.t 
	                                      sample.t script_dist.t 
	                                      test_file_exts.t 
	                                      test_reqs.t test_type.t 
	                                      test_types.t tilde.t 
	                                      unit_run_test_harness.t 
	                                      use_tap_harness.t 
	                                      versions.t 
	                                      write_default_maniskip.t 
	                                      xs.t 
	gnu/usr.bin/perl/cpan/Module-Build/t/actions: installdeps.t 
	                                              manifest_skip.t 
	gnu/usr.bin/perl/cpan/Module-Build/t/bundled/Software: 
	                                                       License.pm 
	gnu/usr.bin/perl/cpan/Module-Build/t/bundled/Tie: CPHash.pm 
	gnu/usr.bin/perl/cpan/Module-Build/t/compat: exit.t 
	gnu/usr.bin/perl/cpan/Module-Build/t/lib: DistGen.pm MBTest.pm 
	gnu/usr.bin/perl/cpan/Module-Build/t/lib/Module: Signature.pm 
	gnu/usr.bin/perl/cpan/Module-Build/t/lib/Software/License: 
	                                                           VaporWare.pm 
	gnu/usr.bin/perl/cpan/Module-Build/t/properties: dist_suffix.t 
	                                                 license.t 
	                                                 module_name.t 
	                                                 needs_compiler.t 
	                                                 release_status.t 
	                                                 requires.t 
	                                                 share_dir.t 
	gnu/usr.bin/perl/cpan/Module-Metadata/t/lib: DistGen.pm 
	                                             MBTest.pm 
	gnu/usr.bin/perl/cpan/Module-Metadata/t/lib/BOMTest: UTF16BE.pm 
	                                                     UTF16LE.pm 
	                                                     UTF8.pm 
	gnu/usr.bin/perl/cpan/Module-Metadata/t/lib/Tie: CPHash.pm 
	gnu/usr.bin/perl/cpan/Package-Constants/lib/Package: 
	                                                     Constants.pm 
	gnu/usr.bin/perl/cpan/Package-Constants/t: 01_list.t 
	gnu/usr.bin/perl/cpan/Parse-CPAN-Meta/t/data: BadMETA.yml 
	                                              META-VR.json 
	                                              META-VR.yml 
	                                              bareyaml.meta 
	                                              json.meta 
	                                              yaml.meta 
	gnu/usr.bin/perl/cpan/Scalar-List-Utils/t: multicall-refcount.t 
	                                           proto.t 
	gnu/usr.bin/perl/cpan/Term-ANSIColor: ANSIColor.pm 
	gnu/usr.bin/perl/cpan/Term-ANSIColor/t: aliases-func.t basic.t 
	                                        basic256.t eval.t 
	                                        stringify.t taint.t 
	gnu/usr.bin/perl/cpan/Test/lib: Test.pm 
	gnu/usr.bin/perl/cpan/Test/t: 05_about_verbose.t fail.t mix.t 
	                              multiline.t onfail.t qr.t skip.t 
	                              success.t todo.t 
	gnu/usr.bin/perl/cpan/Test-Harness/t: proveenv.t 
	gnu/usr.bin/perl/cpan/Time-HiRes: HiRes.pm HiRes.xs Makefile.PL 
	                                  typemap 
	gnu/usr.bin/perl/cpan/Time-HiRes/fallback: const-c.inc 
	                                           const-xs.inc 
	gnu/usr.bin/perl/cpan/Time-HiRes/hints: aix.pl dec_osf.pl 
	                                        dynixptx.pl irix.pl 
	                                        linux.pl sco.pl 
	                                        solaris.pl svr4.pl 
	gnu/usr.bin/perl/cpan/Time-HiRes/t: Watchdog.pm alarm.t clock.t 
	                                    gettimeofday.t itimer.t 
	                                    nanosleep.t sleep.t stat.t 
	                                    time.t tv_interval.t 
	                                    ualarm.t usleep.t utime.t 
	gnu/usr.bin/perl/cpan/Win32API-File/ExtUtils: Myconst2perl.pm 
	gnu/usr.bin/perl/cpan/autodie/t: truncate_me 
	gnu/usr.bin/perl/cpan/encoding-warnings/lib/encoding: 
	                                                      warnings.pm 
	gnu/usr.bin/perl/cpan/encoding-warnings/t: 1-warning.t 2-fatal.t 
	                                           3-normal.t 
	                                           4-lexical.t 
	gnu/usr.bin/perl/cpan/libnet: Config.eg Hostname.pm.eg 
	gnu/usr.bin/perl/cpan/libnet/Net: Cmd.pm Config.pm Domain.pm 
	                                  FTP.pm NNTP.pm Netrc.pm 
	                                  POP3.pm SMTP.pm Time.pm 
	                                  libnetFAQ.pod 
	gnu/usr.bin/perl/cpan/libnet/Net/FTP: A.pm E.pm I.pm L.pm 
	                                      dataconn.pm 
	gnu/usr.bin/perl/cpan/podlators: VERSION 
	gnu/usr.bin/perl/cpan/podlators/t: basic.cap basic.clr basic.man 
	                                   basic.ovr basic.pod basic.t 
	                                   basic.txt color.t 
	                                   devise-date.t filehandle.t 
	                                   man-empty.t man-heading.t 
	                                   man-options.t man-perlio.t 
	                                   man-utf8.t man.t overstrike.t 
	                                   parselink.t pod-parser.t 
	                                   pod-spelling.t pod.t 
	                                   termcap.t text-empty.t 
	                                   text-encoding.t 
	                                   text-options.t text-perlio.t 
	                                   text-utf8.t text.t 
	gnu/usr.bin/perl/cpan/version/lib/version: vpp.pm 
	gnu/usr.bin/perl/cpan/version/t: 00impl-pp.t 
	gnu/usr.bin/perl/dist/ExtUtils-Command/lib/ExtUtils: Command.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Command/t: cp.t eu_command.t 
	gnu/usr.bin/perl/dist/ExtUtils-Command/t/lib: TieOut.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Install: Changes 
	gnu/usr.bin/perl/dist/ExtUtils-Install/lib/ExtUtils: Install.pm 
	                                                     Installed.pm 
	                                                     Packlist.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Install/t: Install.t 
	                                          InstallWithMM.t 
	                                          Installapi2.t 
	                                          Installed.t Packlist.t 
	                                          can_write_dir.t 
	gnu/usr.bin/perl/dist/ExtUtils-Install/t/lib: TieOut.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Install/t/lib/MakeMaker/Test: 
	                                                             Utils.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Install/t/lib/MakeMaker/Test/Setup: 
	                                                                   BFD.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Manifest/lib/ExtUtils: 
	                                                      MANIFEST.SKIP 
	                                                      Manifest.pm 
	gnu/usr.bin/perl/dist/ExtUtils-Manifest/t: Manifest.t 
	gnu/usr.bin/perl/dist/Math-BigInt/lib/Math: BigFloat.pm 
	                                            BigInt.pm 
	gnu/usr.bin/perl/dist/Math-BigInt/lib/Math/BigInt: Calc.pm 
	                                                   CalcEmu.pm 
	gnu/usr.bin/perl/dist/Math-BigInt/t: _e_math.t alias.inc 
	                                     bare_mbf.t bare_mbi.t 
	                                     bare_mif.t big_pi_e.t 
	                                     bigfltpm.inc bigfltpm.t 
	                                     bigintc.t bigintpm.inc 
	                                     bigintpm.t bigints.t 
	                                     biglog.t bigroot.t 
	                                     calling.t config.t 
	                                     const_mbf.t constant.t 
	                                     downgrade.t inf_nan.t isa.t 
	                                     lib_load.t mbf_ali.t 
	                                     mbi_ali.t mbi_rand.t 
	                                     mbimbf.inc mbimbf.t 
	                                     nan_cmp.t new_overloaded.t 
	                                     req_mbf0.t req_mbf1.t 
	                                     req_mbfa.t req_mbfi.t 
	                                     req_mbfn.t req_mbfw.t 
	                                     require.t round.t 
	                                     rt-16221.t sub_ali.t 
	                                     sub_mbf.t sub_mbi.t 
	                                     sub_mif.t trap.t 
	                                     upgrade.inc upgrade.t 
	                                     upgrade2.t upgradef.t use.t 
	                                     use_lib1.t use_lib2.t 
	                                     use_lib3.t use_lib4.t 
	                                     use_mbfw.t with_sub.t 
	gnu/usr.bin/perl/dist/Math-BigInt/t/Math/BigFloat: Subclass.pm 
	gnu/usr.bin/perl/dist/Math-BigInt/t/Math/BigInt: BareCalc.pm 
	                                                 Scalar.pm 
	                                                 Subclass.pm 
	gnu/usr.bin/perl/dist/Math-BigInt-FastCalc: FastCalc.xs 
	gnu/usr.bin/perl/dist/Math-BigInt-FastCalc/lib/Math/BigInt: 
	                                                            FastCalc.pm 
	gnu/usr.bin/perl/dist/Math-BigInt-FastCalc/t: bigintfc.t 
	                                              bootstrap.t leak.t 
	                                              mbi_rand.t 
	gnu/usr.bin/perl/dist/Math-BigRat/lib/Math: BigRat.pm 
	gnu/usr.bin/perl/dist/Math-BigRat/t: big_ap.t bigfltpm.inc 
	                                     bigfltrt.t biglog.t 
	                                     bigrat.t bigratpm.inc 
	                                     bigratpm.t bigratup.t 
	                                     bigroot.t bitwise.t hang.t 
	                                     requirer.t trap.t 
	gnu/usr.bin/perl/dist/Math-BigRat/t/Math/BigRat: Test.pm 
	gnu/usr.bin/perl/dist/base: MANIFEST META.yml 
	gnu/usr.bin/perl/dist/bignum/lib: bigint.pm bignum.pm bigrat.pm 
	gnu/usr.bin/perl/dist/bignum/lib/Math/BigFloat: Trace.pm 
	gnu/usr.bin/perl/dist/bignum/lib/Math/BigInt: Trace.pm 
	gnu/usr.bin/perl/dist/bignum/t: big_e_pi.t bigexp.t bigint.t 
	                                bignum.t bigrat.t bii_e_pi.t 
	                                biinfnan.t bir_e_pi.t bn_lite.t 
	                                bninfnan.t br_lite.t brinfnan.t 
	                                in_effect.t infnan.inc 
	                                option_a.t option_l.t option_p.t 
	                                overrides.t ratopt_a.t scope_f.t 
	                                scope_i.t scope_r.t 
	gnu/usr.bin/perl/ext/DynaLoader: dl_next.xs 
	gnu/usr.bin/perl/ext/POSIX/hints: next_3.pl 
	gnu/usr.bin/perl/ext/POSIX/t: is.t 
	gnu/usr.bin/perl/ext/SDBM_File/sdbm: CHANGES COMPARE Makefile.PL 
	                                     README README.too biblio 
	                                     dba.c dbd.c dbe.1 dbe.c 
	                                     dbu.c grind hash.c 
	                                     linux.patches makefile.sdbm 
	                                     pair.c pair.h readme.ms 
	                                     sdbm.3 sdbm.c sdbm.h tune.h 
	                                     util.c 
	gnu/usr.bin/perl/hints: next_3.sh next_3_0.sh next_4.sh 
	gnu/usr.bin/perl/lib/unicore: IndicMatraCategory.txt 
	gnu/usr.bin/perl/lib/unicore/lib/Gc: Lt.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Hyphen: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/LOE: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/NChar: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/PatWS: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Perl: _XExtend.pl _XRegula.pl 
	                                       _XSpecia.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Space: Y.pl 
	gnu/usr.bin/perl/mad: Nomad.pm P5AST.pm P5re.pm PLXML.pm p55 
	gnu/usr.bin/perl/mad/t: p55.t 
	gnu/usr.bin/perl/t/lib: 1_compile.t compmod.pl 
	gnu/usr.bin/perl/t/lib/warnings: irs 
	gnu/usr.bin/perl/t/run: mad.t 
	gnu/usr.bin/perl/t/x2p: find2perl.t s2p.t 
	gnu/usr.bin/perl/utils: config_data.PL 
	gnu/usr.bin/perl/x2p: EXTERN.h INTERN.h Makefile.SH a2p.c a2p.h 
	                      a2p.pod a2p.y a2py.c find2perl.PL hash.c 
	                      hash.h s2p.PL str.c str.h util.c util.h 
	                      walk.c 

Log message:
Fix merge issues, remove excess files - match perl-5.24.1 dist


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:33:41

Modified files:
	gnu/usr.bin/perl: Configure MANIFEST Makefile.SH 
	                  Makefile.bsd-wrapper Makefile.bsd-wrapper1 
	                  config.over configpm deb.c install_lib.pl 
	                  installperl perl.c pp.c shlib_version util.c 
	                  utils.lst vutil.c 
	gnu/usr.bin/perl/Porting: Maintainers.pl pumpkin.pod 
	gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/private: MakeUtil.pm 
	gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/private: MakeUtil.pm 
	gnu/usr.bin/perl/cpan/Digest-MD5: MD5.xs 
	gnu/usr.bin/perl/cpan/Digest-MD5/t: files.t 
	gnu/usr.bin/perl/cpan/ExtUtils-Install/lib/ExtUtils: Install.pm 
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils: 
	                                                       MM_Unix.pm 
	gnu/usr.bin/perl/cpan/IO-Compress/private: MakeUtil.pm 
	gnu/usr.bin/perl/cpan/NEXT/lib: NEXT.pm 
	gnu/usr.bin/perl/cpan/Pod-Parser/lib/Pod: PlainText.pm 
	gnu/usr.bin/perl/cpan/Sys-Syslog: Makefile.PL 
	gnu/usr.bin/perl/cpan/Text-Balanced/lib/Text: Balanced.pm 
	gnu/usr.bin/perl/cpan/podlators/lib/Pod: Man.pm 
	gnu/usr.bin/perl/cpan/podlators/scripts: pod2man.PL 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module: CoreList.pm 
	gnu/usr.bin/perl/dist/Time-HiRes: HiRes.pm HiRes.xs Makefile.PL 
	gnu/usr.bin/perl/dist/Time-HiRes/fallback: const-c.inc 
	gnu/usr.bin/perl/dist/Time-HiRes/t: Watchdog.pm alarm.t clock.t 
	                                    gettimeofday.t itimer.t 
	                                    nanosleep.t sleep.t stat.t 
	                                    time.t tv_interval.t 
	                                    ualarm.t usleep.t 
	gnu/usr.bin/perl/dist/base/lib: base.pm 
	gnu/usr.bin/perl/dist/threads-shared/t: stress.t 
	gnu/usr.bin/perl/ext/DynaLoader: Makefile.PL 
	gnu/usr.bin/perl/ext/NDBM_File: Makefile.PL 
	gnu/usr.bin/perl/ext/POSIX/t: sigaction.t 
	gnu/usr.bin/perl/hints: openbsd.sh 
	gnu/usr.bin/perl/lib: AnyDBM_File.pm 
	gnu/usr.bin/perl/lib/Getopt: Std.pm 
	gnu/usr.bin/perl/pod: perldelta.pod perlmodinstall.pod 
	                      perlop.pod 
	gnu/usr.bin/perl/regen: lib_cleanup.pl 
	gnu/usr.bin/perl/t/lib: h2ph.pht 
	gnu/usr.bin/perl/t/op: getppid.t 
	gnu/usr.bin/perl/t/porting: customized.dat dual-life.t 
	gnu/usr.bin/perl/t/re: speed.t 
	gnu/usr.bin/perl/utils: Makefile.PL h2ph.PL perlbug.PL 
	gnu/usr.bin/perl/win32: Makefile makefile.mk 
Added files:
	gnu/usr.bin/perl/cpan/Digest-MD5/t: context.t 
	gnu/usr.bin/perl/cpan/Pod-Parser/t: unbalanced.t 
	gnu/usr.bin/perl/dist/Time-HiRes/t: utime.t 
	gnu/usr.bin/perl/dist/base/t: incdot.t incmodified-vs-incdot.t 
	gnu/usr.bin/perl/dist/base/t/lib: BaseIncDoubleExtender.pm 
	                                  BaseIncExtender.pm 

Log message:
Apply local patches - perl-5.24.1


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:34:07

src/gnu/usr.bin/perl/lib/unicore/lib/InPC

Update of /cvs/src/gnu/usr.bin/perl/lib/unicore/lib/InPC
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/lib/unicore/lib/InPC

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/lib/unicore/lib/InPC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:34:07

src/gnu/usr.bin/perl/lib/unicore/lib/InSC

Update of /cvs/src/gnu/usr.bin/perl/lib/unicore/lib/InSC
In directory cvs.openbsd.org:/cvs.d/hack/afresh1/import-perl-5.24.1/src/gnu/usr.bin/perl/lib/unicore/lib/InSC

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/lib/unicore/lib/InSC added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:34:36

Modified files:
	gnu/usr.bin/perl: MANIFEST Makefile.SH 
	gnu/usr.bin/perl/lib/unicore: CombiningClass.pl Decomposition.pl 
	                              Heavy.pl Name.pl Name.pm 
	                              TestProp.pl UCD.pl mktables.lst 
	gnu/usr.bin/perl/lib/unicore/To: Age.pl Bc.pl Bmg.pl Bpb.pl 
	                                 Bpt.pl Cf.pl Digit.pl Ea.pl 
	                                 Fold.pl GCB.pl Gc.pl Hst.pl 
	                                 Isc.pl Jg.pl Jt.pl Lb.pl Lc.pl 
	                                 Lower.pl NFCQC.pl NFDQC.pl 
	                                 NFKCCF.pl NFKCQC.pl NFKDQC.pl 
	                                 Na1.pl NameAlia.pl Nt.pl Nv.pl 
	                                 PerlDeci.pl SB.pl Sc.pl Scx.pl 
	                                 Tc.pl Title.pl Uc.pl Upper.pl 
	                                 WB.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Age: NA.pl V11.pl V20.pl V30.pl 
	                                      V31.pl V32.pl V40.pl 
	                                      V41.pl V50.pl V51.pl 
	                                      V52.pl V60.pl V61.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Alpha: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Bc: AL.pl AN.pl B.pl BN.pl 
	                                     CS.pl EN.pl ES.pl ET.pl 
	                                     L.pl NSM.pl ON.pl R.pl 
	                                     WS.pl 
	gnu/usr.bin/perl/lib/unicore/lib/BidiC: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/BidiM: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Blk: NB.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Bpt: C.pl N.pl O.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CE: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CI: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CWCF: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CWCM: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CWKCF: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CWL: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CWT: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CWU: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Cased: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Ccc: A.pl AR.pl ATAR.pl B.pl 
	                                      BR.pl DB.pl NK.pl NR.pl 
	                                      OV.pl VR.pl 
	gnu/usr.bin/perl/lib/unicore/lib/CompEx: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/DI: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Dash: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Dep: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Dia: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Dt: Com.pl Enc.pl Fin.pl 
	                                     Font.pl Init.pl Iso.pl 
	                                     Med.pl Nar.pl Nb.pl 
	                                     NonCanon.pl Sqr.pl Sub.pl 
	                                     Sup.pl Vert.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Ea: A.pl H.pl N.pl Na.pl W.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Ext: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/GCB: CN.pl EX.pl LV.pl LVT.pl 
	                                      SM.pl XX.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Gc: C.pl Cf.pl Cn.pl L.pl LC.pl 
	                                     Ll.pl Lm.pl Lo.pl Lu.pl 
	                                     M.pl Mc.pl Me.pl Mn.pl N.pl 
	                                     Nd.pl Nl.pl No.pl P.pl 
	                                     Pd.pl Pe.pl Pf.pl Pi.pl 
	                                     Po.pl Ps.pl S.pl Sc.pl 
	                                     Sk.pl Sm.pl So.pl Z.pl 
	                                     Zs.pl 
	gnu/usr.bin/perl/lib/unicore/lib/GrBase: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Hex: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Hst: NA.pl 
	gnu/usr.bin/perl/lib/unicore/lib/IDC: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/IDS: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Ideo: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/In: 2_0.pl 2_1.pl 3_0.pl 3_1.pl 
	                                     3_2.pl 4_0.pl 4_1.pl 5_0.pl 
	                                     5_1.pl 5_2.pl 6_0.pl 6_1.pl 
	                                     6_2.pl 6_3.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Jg: Ain.pl Alef.pl Beh.pl 
	                                     Dal.pl FarsiYeh.pl Feh.pl 
	                                     Gaf.pl Hah.pl Lam.pl 
	                                     NoJoinin.pl Qaf.pl Reh.pl 
	                                     Seen.pl Waw.pl Yeh.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Jt: C.pl D.pl R.pl T.pl U.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Lb: AI.pl AL.pl BA.pl BB.pl 
	                                     CJ.pl CL.pl CM.pl EX.pl 
	                                     GL.pl ID.pl IS.pl NS.pl 
	                                     OP.pl PO.pl PR.pl QU.pl 
	                                     SA.pl XX.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Lower: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Math: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/NFCQC: M.pl Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/NFDQC: N.pl Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/NFKCQC: N.pl Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/NFKDQC: N.pl Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Nt: Di.pl None.pl Nu.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Nv: 0.pl 1.pl 10.pl 100.pl 
	                                     1000.pl 10000.pl 11.pl 
	                                     12.pl 13.pl 14.pl 15.pl 
	                                     16.pl 17.pl 18.pl 19.pl 
	                                     1_2.pl 1_3.pl 1_4.pl 1_8.pl 
	                                     2.pl 20.pl 2_3.pl 3.pl 
	                                     30.pl 3_4.pl 4.pl 40.pl 
	                                     5.pl 50.pl 500.pl 5000.pl 
	                                     50000.pl 6.pl 60.pl 7.pl 
	                                     70.pl 8.pl 80.pl 9.pl 90.pl 
	gnu/usr.bin/perl/lib/unicore/lib/PatSyn: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Perl: Alnum.pl Assigned.pl 
	                                       Blank.pl Graph.pl 
	                                       PerlWord.pl PosixPun.pl 
	                                       Print.pl Word.pl 
	                                       XPosixPu.pl _PerlAny.pl 
	                                       _PerlCh2.pl _PerlCha.pl 
	                                       _PerlFol.pl _PerlIDC.pl 
	                                       _PerlIDS.pl _PerlPr2.pl 
	                                       _PerlPro.pl _PerlQuo.pl 
	gnu/usr.bin/perl/lib/unicore/lib/QMark: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/SB: AT.pl CL.pl EX.pl FO.pl 
	                                     LE.pl LO.pl NU.pl SC.pl 
	                                     ST.pl Sp.pl UP.pl XX.pl 
	gnu/usr.bin/perl/lib/unicore/lib/SD: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/STerm: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Sc: Arab.pl Armn.pl Beng.pl 
	                                     Cham.pl Cprt.pl Cyrl.pl 
	                                     Deva.pl Ethi.pl Geor.pl 
	                                     Grek.pl Gujr.pl Guru.pl 
	                                     Han.pl Hang.pl Hebr.pl 
	                                     Hira.pl Kana.pl Khar.pl 
	                                     Khmr.pl Knda.pl Lana.pl 
	                                     Lao.pl Latn.pl Limb.pl 
	                                     Linb.pl Mlym.pl Mong.pl 
	                                     Orya.pl Sinh.pl Talu.pl 
	                                     Taml.pl Telu.pl Tibt.pl 
	                                     Zinh.pl Zyyy.pl Zzzz.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Scx: Arab.pl Armn.pl Beng.pl 
	                                      Bopo.pl Cakm.pl Cprt.pl 
	                                      Cyrl.pl Deva.pl Geor.pl 
	                                      Grek.pl Gujr.pl Guru.pl 
	                                      Han.pl Hang.pl Hira.pl 
	                                      Kana.pl Latn.pl Linb.pl 
	                                      Mong.pl Orya.pl Syrc.pl 
	                                      Tagb.pl Takr.pl Thaa.pl 
	                                      Yi.pl Zinh.pl Zyyy.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Term: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/UIdeo: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Upper: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/WB: EX.pl FO.pl HL.pl KA.pl 
	                                     LE.pl MB.pl ML.pl MN.pl 
	                                     NU.pl XX.pl 
	gnu/usr.bin/perl/lib/unicore/lib/XIDC: Y.pl 
	gnu/usr.bin/perl/lib/unicore/lib/XIDS: Y.pl 
	gnu/usr.bin/perl/pod: perl.pod perluniprops.pod 
	gnu/usr.bin/perl/win32: GNUmakefile Makefile makefile.mk 
Added files:
	gnu/usr.bin/perl/lib/unicore/To: InPC.pl InSC.pl _PerlLB.pl 
	                                 _PerlWB.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Age: V70.pl V80.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Hyphen: T.pl 
	gnu/usr.bin/perl/lib/unicore/lib/In: 7_0.pl 8_0.pl 
	gnu/usr.bin/perl/lib/unicore/lib/InPC: Bottom.pl Left.pl 
	                                       LeftAndR.pl NA.pl 
	                                       Overstru.pl Right.pl 
	                                       Top.pl TopAndBo.pl 
	                                       TopAndL2.pl TopAndLe.pl 
	                                       TopAndRi.pl VisualOr.pl 
	gnu/usr.bin/perl/lib/unicore/lib/InSC: Avagraha.pl Bindu.pl 
	                                       Cantilla.pl Consona2.pl 
	                                       Consona3.pl Consona4.pl 
	                                       Consona5.pl Consona6.pl 
	                                       Consonan.pl Invisibl.pl 
	                                       Nukta.pl Number.pl 
	                                       Other.pl PureKill.pl 
	                                       Syllable.pl ToneMark.pl 
	                                       Virama.pl Visarga.pl 
	                                       Vowel.pl VowelDep.pl 
	                                       VowelInd.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Jg: Kaf.pl Sad.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Lb: IN.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Nv: 200.pl 300.pl 400.pl 600.pl 
	                                     700.pl 800.pl 900.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Perl: SpacePer.pl Title.pl 
	                                       _PerlNch.pl _PerlPat.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Sc: Dupl.pl Gran.pl Hmng.pl 
	                                     Mult.pl Xsux.pl 
	gnu/usr.bin/perl/lib/unicore/lib/Scx: Copt.pl Dupl.pl Glag.pl 
	                                      Gran.pl Knda.pl Limb.pl 
	                                      Mlym.pl Mult.pl Mymr.pl 
	                                      Phlp.pl Shrd.pl Sind.pl 
	                                      Sinh.pl Taml.pl Telu.pl 
	                                      Tirh.pl 

Log message:
Apply pre-built unicore patch - perl-5.24.1


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/04 17:37:39

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.socppc md.sparc64 mi 
	distrib/sets/lists/man: mi 

Log message:
Sync sets for perl 5.24.1


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/04 18:08:31

Modified files:
	sys/uvm        : uvm_map.c 

Log message:
Delete comment obsoleted by the rewrite in rev 1.136 (2011-05-24)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/04 18:11:50

Modified files:
	sys/uvm        : uvm_amap.h 

Log message:
Update a comment that suggested the stack was executable.  Nope!


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/04 18:39:14

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
Support IPv6 proxy addresses

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/02/04 19:33:21

Modified files:
	lib/libcrypto/x509: x509_vfy.c 

Log message:
Kill leak introduced with refactor
ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2017/02/04 20:32:56

Modified files:
	devel/ocaml-menhir: Makefile distinfo 

Log message:
Update to ocaml-menhir 20170101.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/04 22:38:39

Log message:
    Import libdrm 2.4.75
    
    Status:
    
    Vendor Tag:	libdrm
    Release Tags:	libdrm_2_4_75
    
    C xenocara/lib/libdrm/xf86drmMode.h
    U xenocara/lib/libdrm/Makefile.sources
    U xenocara/lib/libdrm/util_math.h
    C xenocara/lib/libdrm/configure.ac
    U xenocara/lib/libdrm/util_double_list.h
    U xenocara/lib/libdrm/xf86atomic.h
    U xenocara/lib/libdrm/libdrm_lists.h
    U xenocara/lib/libdrm/xf86drmHash.c
    U xenocara/lib/libdrm/xf86drmRandom.c
    U xenocara/lib/libdrm/xf86drmRandom.h
    C xenocara/lib/libdrm/xf86drmMode.c
    U xenocara/lib/libdrm/libsync.h
    C xenocara/lib/libdrm/configure
    C xenocara/lib/libdrm/Makefile.am
    C xenocara/lib/libdrm/Makefile.in
    U xenocara/lib/libdrm/aclocal.m4
    U xenocara/lib/libdrm/xf86drmSL.c
    U xenocara/lib/libdrm/libdrm.pc.in
    C xenocara/lib/libdrm/xf86drm.h
    U xenocara/lib/libdrm/libdrm_macros.h
    C xenocara/lib/libdrm/xf86drm.c
    C xenocara/lib/libdrm/README
    C xenocara/lib/libdrm/config.h.in
    U xenocara/lib/libdrm/xf86drmHash.h
    U xenocara/lib/libdrm/freedreno/Makefile.sources
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.h
    U xenocara/lib/libdrm/freedreno/freedreno_drmif.h
    U xenocara/lib/libdrm/freedreno/freedreno-symbol-check
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/freedreno_pipe.c
    U xenocara/lib/libdrm/freedreno/Makefile.am
    U xenocara/lib/libdrm/freedreno/freedreno_priv.h
    C xenocara/lib/libdrm/freedreno/Makefile.in
    U xenocara/lib/libdrm/freedreno/freedreno_device.c
    U xenocara/lib/libdrm/freedreno/freedreno_bo_cache.c
    U xenocara/lib/libdrm/freedreno/freedreno_bo.c
    U xenocara/lib/libdrm/freedreno/libdrm_freedreno.pc.in
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_bo.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_drm.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_pipe.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_device.c
    U xenocara/lib/libdrm/freedreno/kgsl/msm_kgsl.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_priv.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/msm/msm_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/msm/msm_bo.c
    U xenocara/lib/libdrm/freedreno/msm/msm_priv.h
    U xenocara/lib/libdrm/freedreno/msm/msm_pipe.c
    U xenocara/lib/libdrm/freedreno/msm/msm_drm.h
    U xenocara/lib/libdrm/freedreno/msm/msm_device.c
    U xenocara/lib/libdrm/radeon/radeon_bo.c
    U xenocara/lib/libdrm/radeon/Makefile.sources
    U xenocara/lib/libdrm/radeon/r600_pci_ids.h
    U xenocara/lib/libdrm/radeon/bof.c
    U xenocara/lib/libdrm/radeon/bof.h
    C xenocara/lib/libdrm/radeon/radeon_cs_gem.c
    U xenocara/lib/libdrm/radeon/radeon_cs.h
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.c
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.h
    U xenocara/lib/libdrm/radeon/Makefile.am
    C xenocara/lib/libdrm/radeon/Makefile.in
    U xenocara/lib/libdrm/radeon/radeon_bo_int.h
    U xenocara/lib/libdrm/radeon/radeon_surface.h
    U xenocara/lib/libdrm/radeon/radeon_cs_int.h
    U xenocara/lib/libdrm/radeon/radeon_cs_gem.h
    C xenocara/lib/libdrm/radeon/radeon_surface.c
    U xenocara/lib/libdrm/radeon/libdrm_radeon.pc.in
    U xenocara/lib/libdrm/radeon/radeon_bo.h
    U xenocara/lib/libdrm/radeon/radeon_cs.c
    U xenocara/lib/libdrm/radeon/radeon_cs_space.c
    U xenocara/lib/libdrm/radeon/radeon-symbol-check
    U xenocara/lib/libdrm/tests/drmsl.c
    U xenocara/lib/libdrm/tests/hash.c
    U xenocara/lib/libdrm/tests/drmdevice.c
    U xenocara/lib/libdrm/tests/Makefile.am
    C xenocara/lib/libdrm/tests/Makefile.in
    U xenocara/lib/libdrm/tests/random.c
    U xenocara/lib/libdrm/tests/modetest/Makefile.sources
    U xenocara/lib/libdrm/tests/modetest/modetest.c
    U xenocara/lib/libdrm/tests/modetest/buffers.c
    U xenocara/lib/libdrm/tests/modetest/buffers.h
    U xenocara/lib/libdrm/tests/modetest/Makefile.am
    C xenocara/lib/libdrm/tests/modetest/Makefile.in
    U xenocara/lib/libdrm/tests/modetest/cursor.h
    U xenocara/lib/libdrm/tests/modetest/cursor.c
    U xenocara/lib/libdrm/tests/radeon/rbo.c
    U xenocara/lib/libdrm/tests/radeon/Makefile.am
    C xenocara/lib/libdrm/tests/radeon/Makefile.in
    U xenocara/lib/libdrm/tests/radeon/rbo.h
    U xenocara/lib/libdrm/tests/radeon/radeon_ttm.c
    U xenocara/lib/libdrm/tests/proptest/Makefile.sources
    U xenocara/lib/libdrm/tests/proptest/Makefile.am
    C xenocara/lib/libdrm/tests/proptest/Makefile.in
    U xenocara/lib/libdrm/tests/proptest/proptest.c
    U xenocara/lib/libdrm/tests/kmstest/Makefile.am
    C xenocara/lib/libdrm/tests/kmstest/Makefile.in
    U xenocara/lib/libdrm/tests/kmstest/main.c
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_event.c
    U xenocara/lib/libdrm/tests/exynos/Makefile.am
    C xenocara/lib/libdrm/tests/exynos/Makefile.in
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_perf.c
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_test.c
    U xenocara/lib/libdrm/tests/nouveau/threaded.c
    U xenocara/lib/libdrm/tests/nouveau/Makefile.am
    C xenocara/lib/libdrm/tests/nouveau/Makefile.in
    U xenocara/lib/libdrm/tests/util/Makefile.sources
    U xenocara/lib/libdrm/tests/util/kms.h
    U xenocara/lib/libdrm/tests/util/pattern.c
    U xenocara/lib/libdrm/tests/util/pattern.h
    U xenocara/lib/libdrm/tests/util/Makefile.am
    U xenocara/lib/libdrm/tests/util/format.c
    C xenocara/lib/libdrm/tests/util/Makefile.in
    U xenocara/lib/libdrm/tests/util/format.h
    U xenocara/lib/libdrm/tests/util/common.h
    U xenocara/lib/libdrm/tests/util/kms.c
    U xenocara/lib/libdrm/tests/etnaviv/write_bmp.h
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_cmd_stream_test.c
    U xenocara/lib/libdrm/tests/etnaviv/state_2d.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/cmdstream.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/state.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/Makefile.am
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_bo_cache_test.c
    C xenocara/lib/libdrm/tests/etnaviv/Makefile.in
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_2d_test.c
    U xenocara/lib/libdrm/tests/etnaviv/write_bmp.c
    U xenocara/lib/libdrm/tests/modeprint/modeprint.c
    U xenocara/lib/libdrm/tests/modeprint/Makefile.am
    C xenocara/lib/libdrm/tests/modeprint/Makefile.in
    U xenocara/lib/libdrm/tests/kms/kms-steal-crtc.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-crtc.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-plane.c
    U xenocara/lib/libdrm/tests/kms/Makefile.am
    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.h
    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/kms/libkms-test-device.c
    U xenocara/lib/libdrm/tests/tegra/Makefile.am
    C xenocara/lib/libdrm/tests/tegra/Makefile.in
    U xenocara/lib/libdrm/tests/tegra/openclose.c
    U xenocara/lib/libdrm/tests/amdgpu/frame.h
    U xenocara/lib/libdrm/tests/amdgpu/uvd_messages.h
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.h
    U xenocara/lib/libdrm/tests/amdgpu/basic_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/vce_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.c
    U xenocara/lib/libdrm/tests/amdgpu/Makefile.am
    C xenocara/lib/libdrm/tests/amdgpu/Makefile.in
    U xenocara/lib/libdrm/tests/amdgpu/vce_ib.h
    U xenocara/lib/libdrm/tests/amdgpu/cs_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/bo_tests.c
    U xenocara/lib/libdrm/tests/vbltest/Makefile.am
    C xenocara/lib/libdrm/tests/vbltest/Makefile.in
    U xenocara/lib/libdrm/tests/vbltest/vbltest.c
    U xenocara/lib/libdrm/build-aux/install-sh
    U xenocara/lib/libdrm/build-aux/depcomp
    U xenocara/lib/libdrm/build-aux/missing
    C xenocara/lib/libdrm/build-aux/config.guess
    U xenocara/lib/libdrm/build-aux/ltmain.sh
    U xenocara/lib/libdrm/build-aux/test-driver
    U xenocara/lib/libdrm/build-aux/compile
    C xenocara/lib/libdrm/build-aux/config.sub
    U xenocara/lib/libdrm/include/drm/savage_drm.h
    U xenocara/lib/libdrm/include/drm/radeon_drm.h
    U xenocara/lib/libdrm/include/drm/sis_drm.h
    U xenocara/lib/libdrm/include/drm/drm.h
    U xenocara/lib/libdrm/include/drm/drm_sarea.h
    U xenocara/lib/libdrm/include/drm/via_drm.h
    U xenocara/lib/libdrm/include/drm/drm_mode.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/vc4_drm.h
    U xenocara/lib/libdrm/include/drm/vmwgfx_drm.h
    U xenocara/lib/libdrm/include/drm/drm_fourcc.h
    U xenocara/lib/libdrm/include/drm/virtgpu_drm.h
    C xenocara/lib/libdrm/include/drm/i915_drm.h
    U xenocara/lib/libdrm/include/drm/tegra_drm.h
    U xenocara/lib/libdrm/include/drm/qxl_drm.h
    U xenocara/lib/libdrm/include/drm/r128_drm.h
    U xenocara/lib/libdrm/include/drm/nouveau_drm.h
    U xenocara/lib/libdrm/include/drm/README
    U xenocara/lib/libdrm/include/drm/amdgpu_drm.h
    U xenocara/lib/libdrm/exynos/exynos_drmif.h
    U xenocara/lib/libdrm/exynos/exynos-symbol-check
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.c
    U xenocara/lib/libdrm/exynos/libdrm_exynos.pc.in
    U xenocara/lib/libdrm/exynos/fimg2d_reg.h
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.h
    U xenocara/lib/libdrm/exynos/Makefile.am
    C xenocara/lib/libdrm/exynos/Makefile.in
    U xenocara/lib/libdrm/exynos/exynos_drm.h
    U xenocara/lib/libdrm/exynos/exynos_drm.c
    U xenocara/lib/libdrm/nouveau/Makefile.sources
    U xenocara/lib/libdrm/nouveau/private.h
    U xenocara/lib/libdrm/nouveau/libdrm_nouveau.pc.in
    U xenocara/lib/libdrm/nouveau/nouveau.h
    U xenocara/lib/libdrm/nouveau/nouveau.c
    U xenocara/lib/libdrm/nouveau/nouveau-symbol-check
    U xenocara/lib/libdrm/nouveau/pushbuf.c
    U xenocara/lib/libdrm/nouveau/bufctx.c
    U xenocara/lib/libdrm/nouveau/Makefile.am
    C xenocara/lib/libdrm/nouveau/Makefile.in
    U xenocara/lib/libdrm/nouveau/abi16.c
    U xenocara/lib/libdrm/nouveau/nvif/if0002.h
    U xenocara/lib/libdrm/nouveau/nvif/cl9097.h
    U xenocara/lib/libdrm/nouveau/nvif/unpack.h
    U xenocara/lib/libdrm/nouveau/nvif/class.h
    U xenocara/lib/libdrm/nouveau/nvif/if0003.h
    U xenocara/lib/libdrm/nouveau/nvif/cl0080.h
    U xenocara/lib/libdrm/nouveau/nvif/ioctl.h
    U xenocara/lib/libdrm/libkms/libkms.pc.in
    U xenocara/lib/libdrm/libkms/Makefile.sources
    U xenocara/lib/libdrm/libkms/vmwgfx.c
    U xenocara/lib/libdrm/libkms/api.c
    U xenocara/lib/libdrm/libkms/nouveau.c
    U xenocara/lib/libdrm/libkms/dumb.c
    U xenocara/lib/libdrm/libkms/intel.c
    U xenocara/lib/libdrm/libkms/exynos.c
    U xenocara/lib/libdrm/libkms/kms-symbol-check
    U xenocara/lib/libdrm/libkms/Makefile.am
    C xenocara/lib/libdrm/libkms/Makefile.in
    U xenocara/lib/libdrm/libkms/radeon.c
    C xenocara/lib/libdrm/libkms/linux.c
    U xenocara/lib/libdrm/libkms/internal.h
    U xenocara/lib/libdrm/libkms/libkms.h
    C xenocara/lib/libdrm/m4/libtool.m4
    U xenocara/lib/libdrm/m4/ltversion.m4
    U xenocara/lib/libdrm/m4/lt~obsolete.m4
    U xenocara/lib/libdrm/m4/ltoptions.m4
    U xenocara/lib/libdrm/m4/ltsugar.m4
    U xenocara/lib/libdrm/vc4/Makefile.sources
    U xenocara/lib/libdrm/vc4/vc4_qpu_defines.h
    U xenocara/lib/libdrm/vc4/libdrm_vc4.pc.in
    U xenocara/lib/libdrm/vc4/vc4_packet.h
    U xenocara/lib/libdrm/vc4/Makefile.am
    C xenocara/lib/libdrm/vc4/Makefile.in
    U xenocara/lib/libdrm/etnaviv/Makefile.sources
    U xenocara/lib/libdrm/etnaviv/etnaviv_bo_cache.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_bo.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_device.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_priv.h
    U xenocara/lib/libdrm/etnaviv/etnaviv-symbol-check
    U xenocara/lib/libdrm/etnaviv/libdrm_etnaviv.pc.in
    U xenocara/lib/libdrm/etnaviv/etnaviv_drm.h
    U xenocara/lib/libdrm/etnaviv/etnaviv_cmd_stream.c
    U xenocara/lib/libdrm/etnaviv/Makefile.am
    C xenocara/lib/libdrm/etnaviv/Makefile.in
    U xenocara/lib/libdrm/etnaviv/etnaviv_gpu.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_pipe.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_drmif.h
    U xenocara/lib/libdrm/intel/Makefile.sources
    U xenocara/lib/libdrm/intel/mm.h
    C xenocara/lib/libdrm/intel/intel_bufmgr_fake.c
    U xenocara/lib/libdrm/intel/test_decode.c
    U xenocara/lib/libdrm/intel/intel-symbol-check
    U xenocara/lib/libdrm/intel/libdrm_intel.pc.in
    C xenocara/lib/libdrm/intel/intel_bufmgr.h
    U xenocara/lib/libdrm/intel/Makefile.am
    U xenocara/lib/libdrm/intel/intel_decode.c
    U xenocara/lib/libdrm/intel/intel_bufmgr_priv.h
    U xenocara/lib/libdrm/intel/intel_aub.h
    C xenocara/lib/libdrm/intel/Makefile.in
    C xenocara/lib/libdrm/intel/intel_bufmgr_gem.c
    C xenocara/lib/libdrm/intel/intel_chipset.h
    U xenocara/lib/libdrm/intel/uthash.h
    U xenocara/lib/libdrm/intel/mm.c
    U xenocara/lib/libdrm/intel/intel_debug.h
    U xenocara/lib/libdrm/intel/intel_bufmgr.c
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch
    U xenocara/lib/libdrm/intel/tests/test-batch.sh
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch
    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/gen5-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch
    U xenocara/lib/libdrm/omap/omap_drm.c
    U xenocara/lib/libdrm/omap/libdrm_omap.pc.in
    U xenocara/lib/libdrm/omap/omap_drmif.h
    U xenocara/lib/libdrm/omap/omap-symbol-check
    U xenocara/lib/libdrm/omap/omap_drm.h
    U xenocara/lib/libdrm/omap/Makefile.am
    C xenocara/lib/libdrm/omap/Makefile.in
    U xenocara/lib/libdrm/tegra/private.h
    U xenocara/lib/libdrm/tegra/tegra.c
    U xenocara/lib/libdrm/tegra/Makefile.am
    U xenocara/lib/libdrm/tegra/libdrm_tegra.pc.in
    C xenocara/lib/libdrm/tegra/Makefile.in
    U xenocara/lib/libdrm/tegra/tegra-symbol-check
    U xenocara/lib/libdrm/tegra/tegra.h
    U xenocara/lib/libdrm/amdgpu/Makefile.sources
    U xenocara/lib/libdrm/amdgpu/amdgpu_device.c
    U xenocara/lib/libdrm/amdgpu/util_hash.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_asic_id.h
    U xenocara/lib/libdrm/amdgpu/libdrm_amdgpu.pc.in
    U xenocara/lib/libdrm/amdgpu/util_hash_table.h
    U xenocara/lib/libdrm/amdgpu/amdgpu_cs.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_internal.h
    U xenocara/lib/libdrm/amdgpu/util_hash.h
    U xenocara/lib/libdrm/amdgpu/Makefile.am
    U xenocara/lib/libdrm/amdgpu/amdgpu_vamgr.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_gpu_info.c
    C xenocara/lib/libdrm/amdgpu/Makefile.in
    U xenocara/lib/libdrm/amdgpu/util_hash_table.c
    U xenocara/lib/libdrm/amdgpu/amdgpu.h
    U xenocara/lib/libdrm/amdgpu/amdgpu_bo.c
    U xenocara/lib/libdrm/amdgpu/amdgpu-symbol-check
    U xenocara/lib/libdrm/man/drm-memory.xml
    U xenocara/lib/libdrm/man/drmModeGetResources.xml
    U xenocara/lib/libdrm/man/drmHandleEvent.xml
    U xenocara/lib/libdrm/man/Makefile.am
    U xenocara/lib/libdrm/man/drm-kms.xml
    C xenocara/lib/libdrm/man/Makefile.in
    U xenocara/lib/libdrm/man/drm.xml
    U xenocara/lib/libdrm/man/drmAvailable.xml
    
    47 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	2017/02/04 22:46:42

Modified files:
	lib/libdrm     : Makefile.am Makefile.bsd-wrapper Makefile.in 
	                 Makefile.sources README config.h.in configure 
	                 configure.ac libsync.h xf86drm.c xf86drm.h 
	                 xf86drmMode.c xf86drmMode.h 
	lib/libdrm/amdgpu: Makefile.in 
	lib/libdrm/etnaviv: Makefile.in 
	lib/libdrm/exynos: Makefile.in 
	lib/libdrm/freedreno: Makefile.in 
	lib/libdrm/include/drm: i915_drm.h 
	lib/libdrm/intel: Makefile.am Makefile.in intel_bufmgr.h 
	                  intel_bufmgr_fake.c intel_bufmgr_gem.c 
	                  intel_chipset.h 
	lib/libdrm/libkms: Makefile.in linux.c 
	lib/libdrm/man : Makefile.in 
	lib/libdrm/nouveau: Makefile.in 
	lib/libdrm/omap: Makefile.in 
	lib/libdrm/radeon: Makefile.in radeon_cs_gem.c radeon_surface.c 
	lib/libdrm/tegra: Makefile.in 
	lib/libdrm/tests: Makefile.in 
	lib/libdrm/tests/amdgpu: Makefile.in 
	lib/libdrm/tests/etnaviv: Makefile.in 
	lib/libdrm/tests/exynos: Makefile.in 
	lib/libdrm/tests/kms: Makefile.in 
	lib/libdrm/tests/kmstest: Makefile.in 
	lib/libdrm/tests/modeprint: Makefile.in 
	lib/libdrm/tests/modetest: Makefile.in 
	lib/libdrm/tests/nouveau: Makefile.in 
	lib/libdrm/tests/proptest: Makefile.in 
	lib/libdrm/tests/radeon: Makefile.in 
	lib/libdrm/tests/tegra: Makefile.in 
	lib/libdrm/tests/util: Makefile.in 
	lib/libdrm/tests/vbltest: Makefile.in 
	lib/libdrm/vc4 : Makefile.in 
Removed files:
	lib/libdrm/tests: dristat.c drmstat.c drmtest.c drmtest.h 
	                  getclient.c getstats.c getversion.c 
	                  name_from_fd.c openclose.c setversion.c 
	                  updatedraw.c 

Log message:
Merge libdrm 2.4.75


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/04 22:49:06

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	2017/02/04 22:52:14

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/04 23:27:35

Modified files:
	faq            : current.html 

Log message:
remove some files after the upgrade to perl 5.24.1.
with help from afresh1


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/05 00:02:52

Modified files:
	faq            : current.html 

Log message:
missing \


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/05 00:57:08

Modified files:
	sys/kern       : uipc_proto.c 

Log message:
AF_UNIX SOCK_RAW support (whatever that meant) was broken years ago.
FreeBSD and NetBSD deleted it years ago and nothing uses it, so delete it.

ok jca@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/05 05:59:32

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
As far as we understood the architecture reference manual it should
only need a data cache write-back to PoU (Point of Unification) to
make changes to the pagetables visible.  Interestingly enough, this
does not seem to work on the AMD hardware.  Instead we need to flush
to PoC (Point of Coherence), which essentially means flush to memory.

Surprisingly even FreeBSD flushes their pagetable changes to PoC, and
they have done that since the code was first imported.  Until we find
out whether this is a software bug or just completely expected, switch
us to flushing to PoC as well.  This makes my AMD machine behave.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/05 06:08:03

Modified files:
	sys/arch/arm64/arm64: locore.S pmap.c 

Log message:
Implement another pagetable level for bootstrapping machines that have
their memory mapped above 39 bits of address space.  Since our pmap is
configured to use a 3 level pagetable userland we need to reconfigure
the size back to 39 bits as soon are in virtual address space and have
finished using the FDT via the 1:1 map.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/05 06:11:06

Modified files:
	sys/arch/arm64/stand/efiboot: exec.c 

Log message:
Since turning of the MMU in the beginning of the kernel removes
the caches' contents, we lose data about the freshly copied and
created kernel.  This leads to bootup failures.  Make sure to
clean the caches to make sure that the data is in memory before
we turn off the MMU.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/05 06:18:16

Added files:
	sys/arch/arm64/include: pci_machdep.h 

Log message:
Add the necessary PCI header to be able to compile PCI drivers.  Based
on the octeon one.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/05 06:21:38

Modified files:
	sys/arch/arm64/arm64: intr.c 

Log message:
Add implementation for intr_barrier(9).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/05 06:28:05

Modified files:
	sys/arch/arm64/conf: Makefile.arm64 

Log message:
Ask for a generic armv8-a encoding rather than one based on and tuned
for cortex-a57.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/05 07:00:42

Modified files:
	usr.sbin/pkg_add/OpenBSD: State.pm 

Log message:
Use a non-greedy regular expression for the installpath url.
This ensures, that a trailing whitespace does not break pkg_add.

OK espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/05 07:07:11

Modified files:
	sys/arch/arm64/arm64: bus_dma.c 

Log message:
_dmamem_alloc_range() stores physical addresses in the segments, so
upon free don't try to convert it from virtual to physical again.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/05 07:07:45

Modified files:
	usr.sbin/pkg_add: pkg.conf.5 

Log message:
The installer does not create pkg.conf during installation and does
not update it during upgrades anymore. pkg_add(1) will soon use the
installurl file as primary source to find the package repository.

OK espie@, tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/05 07:22:06

Modified files:
	security/sslsplit: Makefile 
	security/sslsplit/patches: patch-ssl_c 

Log message:
Unbreak sslsplit build following libressl api change by not including
"connect socket" or "accept socket" in the string produced by
ssl_ssl_state_to_str; this is currently only used in a debug printf
anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/05 07:40:17

Modified files:
	distrib/miniroot: install.sub 

Log message:
user, username, userpass and userkey are global variables. The user
created during install is added to the wheel group and as such is
actually an admin user. So use ADMIN, ADMIN_NAME, ADMIN_PASS and
ADMIN_KEY instead.

OK tb@
OK krw@ on a similar diff


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/05 07:57:15

Modified files:
	distrib/miniroot: install.sub 

Log message:
Rename rootpass to _rootpass and localize it together with _rootkey.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/05 08:06:05

Modified files:
	lib/libssl     : s3_lib.c ssl.h 

Log message:
Define values for SSL_CTRL_SET_GROUPS{,_LIST} and wire them up to the
SSL_{,CTX_}ctrl() functions. As crazy as it is, some software appears to
call the control functions directly rather than using the macros (or
functions) provided by the library.

Discussed with beck@ and sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/05 08:39:53

Modified files:
	distrib/miniroot: install.sub 

Log message:
Curly brackets are not needed here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/05 08:42:09

Modified files:
	devel/msgpack  : Makefile 

Log message:
Use lang/gcc for atomic builtins on arm


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/05 09:04:14

Modified files:
	sys/net        : if_bridge.c pf.c 
	sys/netinet    : ipsec_input.c 
	sys/netinet6   : dest6.c frag6.c icmp6.c in6.c ip6_forward.c 
	                 ip6_input.c ip6_mroute.c ip6_output.c ip6_var.h 
	                 raw_ip6.c route6.c 

Log message:
Use percpu counters for ip6stat

Try to follow the existing examples.  Some notes:
- don't implement counters_dec() yet, which could be used in two
similar chunks of code.  Let's see if there are more users first.
- stop incrementing IPv6-specific mbuf stats, IPv4 has no equivalent.

Input from mpi@, ok bluhm@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/05 09:23:38

Modified files:
	sys/kern       : subr_percpu.c uipc_mbuf.c 
	sys/net        : route.c 
	sys/netinet    : igmp.c ip_input.c udp_usrreq.c 
	sys/netinet6   : ip6_input.c 
	sys/sys        : percpu.h 

Log message:
Always allocate counters memory using type M_COUNTERS.

This makes the API simpler, and is probably more useful than spreading
counters memory other several types, making it harder to track.

Prodded by mpi, ok mpi@ stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 11:13:28

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c mdoc_html.c tbl_html.c 

Log message:
Improve <table> syntax:
The <col> element can only appear inside <colgroup>, so use <colgroup>.
The <tbody> element is optional and useless, so don't use it.
Even if we would ever need <thead> or <tfoot>, <tbody> would still be
optional and useless; besides, we will likely never need <thead> or <tfoot>,
simply because our languages don't support such functionality.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/05 12:19:46

Modified files:
	share/man/man4 : athn.4 

Log message:
the ar9280 exists in pcie form too; confirmed by stsp


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 12:29:03

Modified files:
	usr.bin/mandoc : html.c html.h mandoc.css mdoc_html.c 

Log message:
for .Rs, use <cite>


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/05 12:29:32

Modified files:
	distrib/miniroot: install.sub 

Log message:
Reformat and adapt install_http() to fit to 80 columns.

OK krw@, tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/05 12:50:51

Modified files:
	mail/mozilla-thunderbird: Makefile 

Log message:
Build against system ICU, and pass --enable-pie to CONFIGURE_ARGS -
syncs with seamonkey and firefox.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/05 12:51:27

Modified files:
	sys/kern       : exec_elf.c 

Log message:
Since we expect to never do binary compat with other OSes again,
delete the no-longer-used probe hook support.

ok mpi@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tim@cvs.openbsd.org	2017/02/05 13:11:52

Modified files:
	audio/wavpack  : Tag: OPENBSD_6_0 Makefile distinfo 
	audio/wavpack/pkg: Tag: OPENBSD_6_0 PLIST 

Log message:
Update to wavpack 5.1.0, fixing 4 vulnerabilities:
http://www.openwall.com/lists/oss-security/2017/01/23/4

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 13:21:17

Modified files:
	usr.bin/mandoc : html.c html.h mandoc.css mdoc_html.c 

Log message:
mark up .Ar, .Fa, .Va, .Ft, and .Vt with <var> rather than <i>;
suggested by bentley@ long ago, but needed lots of cleanup first


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/05 13:26:19

Modified files:
	net/icinga/core2: Makefile 

Log message:
Disable unity build on !amd64 to reduce memory use during build.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 13:34:47

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
fix font selection for .Bf without argument


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/05 13:56:17

Modified files:
	databases      : Makefile 

Log message:
Unhook databases/postgresql-jdbc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/05 13:59:49

Removed files:
	databases/postgresql-jdbc: Makefile distinfo 
	databases/postgresql-jdbc/patches: patch-build_xml 
	databases/postgresql-jdbc/pkg: DESCR-docs DESCR-main PLIST-docs 
	                               PLIST-main 

Log message:
Remove databases/postgresql-jdbc.

It's currently oudated and nothing in the ports tree uses it.

Recent versions of this use maven for building and try to download
lots of additional artifacts, and using just a binary .jar file
seems to be pointless.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 14:00:18

Modified files:
	usr.bin/mandoc : mandoc.css mdoc_html.c 

Log message:
Wrap .St content in a <span class="St">.
Also add forgotten <span class="Ux"> to .At rendering.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/05 14:05:12

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register postgresql-jdbc{,-docs} removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/05 14:13:43

Modified files:
	mail/postfix/snapshot: Makefile distinfo 

Log message:
update to postfix-3.2-20170129, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/05 14:23:00

Modified files:
	graphics/ffmpeg: Makefile 
Added files:
	graphics/ffmpeg/patches: patch-libavformat_tls_openssl_c 

Log message:
Change FFmpeg's TLS support to use SSLv23_*_method (allowing any
supported SSL/TLS version, in our case this is TLS1.0+) instead of the
confusingly-named TLSv1_*_method (TLSv1.0 only). Fixes e.g. "mplayer
https://ftp.openbsd.org/pub/OpenBSD/songs/song53.mp3". OK Brad.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 14:39:54

Modified files:
	share/man/man7 : mandoc_char.7 

Log message:
document hyphenation


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/02/05 14:58:16

Modified files:
	www/newsbeuter : Makefile distinfo 
Added files:
	www/newsbeuter/patches: patch-src_feedhq_api_cpp 
	                        patch-src_oldreader_api_cpp 
	                        patch-src_ttrss_api_cpp 
Removed files:
	www/newsbeuter/patches: patch-config_sh patch-mk_newsbeuter_deps 
	                        patch-src_cache_cpp 
	                        patch-src_controller_cpp 
	                        patch-src_utils_cpp 

Log message:
Update to 2.9

- remove MAINTAINER per their request.
- start using gcc4.
- remove devel/gettext module, still using it for building.
- remove upstreamed patches.
- add new patches for replacing wordexp with glob stuff.

OK fcambus@, clue stick hitting from sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 15:30:16

Modified files:
	share/man/man7 : mdoc.7 

Log message:
document output spacing near delimiters


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/05 18:50:36

Modified files:
	sys/arch/i386/i386: mptramp.s 

Log message:
When determining whether or not to hatch into PAE mode, use the cpu_pae
flag variable instead of checking some pointer assignment made earlier
in pae_bootstrap.

ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/05 19:34:43

Modified files:
	gnu/usr.bin/perl: Makefile.bsd-wrapper 

Log message:
Remove incorrect perl version comment

From didickman AT gmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/05 19:42:53

Modified files:
	share/man/man1 : gcc-local.1 

Log message:
Document the behavior of -Wshadow.  Add arm to the list of PIE archs


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 20:41:44

Modified files:
	usr.bin/mandoc : mdoc_html.c mdoc_man.c mdoc_term.c 
	                 mdoc_validate.c 

Log message:
The .Nm macro does not only use the default name when it has no
argument, but also when the first argument is a child macro.
Arcane issue found in the FreeBSD cxgbetool(8) manual that Baptiste
Daroussin <bapt at FreeBSD> sent me long ago for a different reason.

While solving this, switch to the new technique of doing text
production in the validator, reducing code duplication in the
formatters, which also makes -Ttree output clearer.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/05 20:44:37

Modified files:
	regress/usr.bin/mandoc/mdoc/Nm: Makefile badNAMEuse.out_ascii 
	                                emptyNAMEuse.out_ascii 

Log message:
one less groff-mandoc difference after mdoc_validate.c rev. 1.234


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/05 20:52:35

Modified files:
	sys/arch/arm/include: endian.h 

Log message:
add a license for the code in here, all of which i seem to have written.

this has been pointed out to me by a couple of people now.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/05 21:08:57

Modified files:
	sys/arch/arm64/include: endian.h 

Log message:
patrick@ tells me this is mostly mine too


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/05 23:16:36

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
megaraid sas fusion chips have their own command for aborting tasks


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/05 23:16:52

Modified files:
	usr.sbin/adduser: adduser.8 

Log message:
Use quotes to protect the password hash from shell expansion. Update hash
to the new bcrypt version $2b$ and use more rounds. Prof. Falken's password
is much safer now. Found thanks to a problem report by John McGuigan.

ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/05 23:27:01

Modified files:
	usr.sbin/smtpd : table.5 

Log message:
Bump bcrypt version to $2b$ and increase number of rounds in two examples.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 00:04:31

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
implement scsi command timeouts.

there's a struct timeout in scsi_xfer for this purpose, which is
used to schedule a timeout of the command in the future. the timeout
adds the xs to a list in mfii_softc of outstanding commands that
are to be aborted. this list is processed in a task so we can sleep
for an mfii_ccb. the new ccb is used to issue an abort against the
specific command that timed out.

to avoid having a timeout complete at the same time as a command
on the chip, a refcnt is added to ccbs. the chip and the timeout
get a ref each. the mfii completion path will attempt to timeout_del,
and if that's succesful it will subtract the timeouts ref as well
as its own. if it fails, the abort path owns the ccb and becomes
responsible for calling scsi_done on behalf of the mfii completion
path.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/06 00:09:20

Modified files:
	share/man/man9 : counters_alloc.9 

Log message:
The counter api now always uses memory with type M_COUNTERS.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/06 00:15:56

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Change the pmap_pmap_pool ipl from IPL_VM to IPL_NONE.  Matches the
other archs.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 00:36:01

Modified files:
	lang/sbcl      : Makefile 

Log message:
The threads FLAVOR doesn't build on i386 either.

Spotted by sthen@

https://marc.info/?l=openbsd-ports&m=148632665127848&w=2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 01:14:09

Modified files:
	devel/m4       : Makefile distinfo 
	devel/m4/patches: patch-doc_m4_1 patch-doc_m4_texi 

Log message:
Update to m4-1.4.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/06 01:15:02

Modified files:
	sysutils/consolekit/patches: patch-src_ck-manager_c 
	                             patch-src_ck-sysdeps-openbsd_c 
	                             patch-tools_ck-get-x11-display-device_c 

Log message:
Pushed upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 01:18:53

Modified files:
	lang/sbcl      : Makefile 
Added files:
	lang/sbcl/patches: patch-src_runtime_GNUmakefile 

Log message:
Respect CFLAGS, don't hardcode -O3

Spotted in a report from sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 02:01:28

Modified files:
	net/adns       : Makefile 

Log message:
Simplify


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 02:10:12

Modified files:
	net/adns/pkg   : DESCR 

Log message:
Trailing whitespace


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 02:10:29

Modified files:
	net/adns       : Makefile distinfo 

Log message:
Bugfix update to ands-1.5.1


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/06 02:13:41

Modified files:
	sys/arch/i386/i386: db_trace.c locore.s 
	sys/arch/i386/include: cpu.h cpufunc.h db_machdep.h 
	sys/ddb        : db_prof.c 
	sys/arch/amd64/amd64: db_trace.c 

Log message:
Implement Dynamic Profiling, a ddb(4) based & gprof compatible kernel
profiling framework, for i386.

Code patching is used to enable probes when entering functions.  The
probes will call a mcount()-like function to match the behavior of a
GPROF kernel.

A new sysctl knob, ddb.profile, need to be set to 1 in securelevel 0
to be able to use this feature.

ok jasper@, guenther@, mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/06 02:15:51

Modified files:
	sys/arch/amd64/amd64: locore.S 

Log message:
Sync a comment with i386.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 02:19:40

Modified files:
	net/py-adns    : Makefile 

Log message:
perl -pi -> sed -i


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/06 02:22:51

Modified files:
	usr.bin/ssh    : sshd.c 

Log message:
Restore \r\n newline sequence for server ident string. The CR got
lost in the flensing of SSHv1. Pointed out by Stef Bon


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/06 02:27:46

Modified files:
	x11/xfce4/xfce4-clipman: Makefile distinfo 
	x11/xfce4/xfce4-clipman/pkg: PLIST 

Log message:
Update to xfce4-clipman 1.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 02:40:20

Modified files:
	devel/p5-SDL   : Makefile 

Log message:
Mark as BROKEN-i386: dependent ports (games/vacuum, games/frozen-bubble)
fail when checking for SDL_perl:

./SDL_perl.c: loadable library and perl binaries are mismatched (got
handshake key 0x2b, needed 0xXXXXXXXX)

(the last number changes each time).


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/06 02:54:14

Modified files:
	x11/xfce4/xfdashboard: Makefile distinfo 
	x11/xfce4/xfdashboard/pkg: PLIST 

Log message:
update to xfdashboard 0.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/06 02:54:34

Modified files:
	x11/xfce4/terminal: Makefile distinfo 

Log message:
update to xfce4-terminal 0.8.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/06 02:56:05

Modified files:
	www            : Makefile 
Removed files:
	www/vimb       : Makefile distinfo 
	www/vimb/pkg   : DESCR PLIST 

Log message:
Remove vimb, it's using the deprecated and insecure www/webkit.

OK ajacoutot@, gonzalo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/06 02:56:49

Modified files:
	geo/geos       : Makefile distinfo 
	geo/geos/patches: patch-src_Makefile_in 
	geo/geos/pkg   : PLIST 

Log message:
Update to geos 3.6.1, all from Rafael Sadowksi, thanks!

Drop doxygen dependency/resulting docs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 03:11:32

Modified files:
	telephony/asterisk: Makefile 
	telephony/asterisk/patches: patch-main_audiohook_c 

Log message:
raise debug level of other audiohook messages, even debug level 1 is unusable
on a busy system


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/06 03:22:35

Modified files:
	net/openvpn    : Makefile distinfo 
	net/openvpn/patches: patch-configure patch-include_Makefile_in 
	                     patch-src_openvpn_route_c 
	                     patch-src_openvpn_tun_c 
	net/openvpn/pkg: PLIST 
Added files:
	net/openvpn/patches: patch-src_openvpn_ssl_openssl_c 

Log message:
Update to openvpn-2.4.0

Lots of new features and changes, see

https://github.com/OpenVPN/openvpn/blob/master/Changes.rst

Tests by danj@ and Bryan Linton, ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/02/06 03:42:01

Modified files:
	games/openxcom : Makefile 

Log message:
Switch to in-ports gcc to make it start on the first run if LC_ALL=C is not
set.
Reported by Sol?ne Rapenne, thanks!
OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/06 03:56:57

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register removal of vimb.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 04:44:56

Modified files:
	devel/jansson  : Makefile 
Added files:
	devel/jansson/patches: patch-src_hashtable_seed_c 

Log message:
Use arc4random() to seed the hashtable in jansson, rather than /dev/urandom
with a fallback to tv_sec ^ tv_usec ^ getpid.  ok kirby@ (maintainer).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 05:23:14

Modified files:
	lang/sbcl      : Makefile 

Log message:
zap stray OB at start of file


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/06 06:23:00

Modified files:
	usr.bin/tmux   : screen-write.c tmux.h tty.c 

Log message:
Only redraw the modified character when adding combining characters, not
the whole line.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/06 06:25:15

Modified files:
	usr.bin/tmux   : input.c 

Log message:
Fix logging of CSI parameters.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 06:58:16

Modified files:
	mail/neomutt   : Makefile distinfo 

Log message:
update to neomutt-20170206


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/06 08:00:41

Modified files:
	usr.bin/tmux   : cmd-attach-session.c cmd-new-session.c 
	                 cmd-switch-client.c key-bindings.c tmux.h 

Log message:
Cancel key table when switching session, unless the key is going to
repeat. Reported by Amos Bird.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/06 08:13:23

Modified files:
	usr.sbin/pkg_add/OpenBSD: State.pm Paths.pm 

Log message:
basic installurl support, get installpath from it (appending the requisite
magic for packages location...).   Fairly straightforward

if pkg.conf defines installpath=, it takes precedence
(manual trumps automatic)

to be fully documented once the dust settles.

okay aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/06 08:33:15

Modified files:
	audio/ocp      : Makefile 

Log message:
Mark as BROKEN on alpha, it triggers an internal compiler error.

arctar.c:384: internal compiler error: in extract_insn, at recog.c:2077


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/06 08:49:08

Modified files:
	sys/arch/octeon/dev: octehci.c 

Log message:
Mark ehci_intr() as MP-safe on octeon.

OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/06 08:53:11

Modified files:
	devel/py-testpath: Makefile distinfo 

Log message:
fixup distfile name, spotted jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/06 09:01:25

Modified files:
	sys/netinet6   : ip6_input.c 

Log message:
Make ip6_input() more like ipv4_input() and introduce ip6_ours().
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/06 09:12:16

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 

Log message:
amend the "unsigned package" message, commenting that signify(1) doesn't
see old-style signatures. Clue for people trying pkg_add -current against
6.0 or earlier.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/06 10:15:56

Modified files:
	sbin/mount     : mount.c 

Log message:
Postpone pledge call until after the getopt switch and hoist the call to
readlabelfs over it. This avoids a pledge abort due to the fact that the
ioctl DIOCGDINFO may not be allowed on the given file: mount /dev/tty /tmp.

ok benno


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/06 10:24:32

Modified files:
	.              : ddb.html 

Log message:
kernels are now compiled with debugging symbols, so we can skip one step.
avoid a few parenthetical remarks and simplify a number of command lines.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/06 10:57:29

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
- update to epiphany-3.22.6

Fixes 'password extraction sweep attack on password manager'


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/06 10:57:47

Added files:
	www/epiphany/patches: patch-lib_ephy-profile-migrator_c 

Log message:
add missing patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2017/02/06 11:02:37

Modified files:
	devel/src      : Makefile distinfo 

Log message:
Update devel/src to 1.12

OK aja@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2017/02/06 11:10:28

Modified files:
	app/cwm        : client.c 

Log message:
Call client_resize instead of client_move after client_placecalc since the size
may also change.

from Vadim Vygonets


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/06 11:11:33

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.socppc : login.conf 
	etc/etc.sparc64: login.conf 

Log message:
List openfiles-max explicitly in default /etc/login.conf files. Otherwise,
raising openfiles-cur above the implicit -max value (1024 on at least the
common arch) results in the setting not being applied at all.

Earlier version OK tom@ danj@ ajacoutot@ benno@ krw@ beck@, suggestion about
openfiles= from millert@ - changes in this version are to use 1024 for -max
rather than 512 to avoid changing the existing hard limit, and just use
openfiles= for bgpd/unbound where max and cur are the same value.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/06 11:55:43

Modified files:
	.              : ddb.html 

Log message:
strip leading underbars from C symbols in assembler. this trades historical
accuracy for less confusion.

hat tip to guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/06 12:23:45

Modified files:
	sys/arch/arm64/arm64: locore.S machdep.c pmap.c 
	sys/arch/arm64/conf: files.arm64 
	sys/arch/arm64/include: armreg.h 
Added files:
	sys/arch/arm64/arm64: cpufunc_asm.S 
	sys/arch/arm64/include: cpufunc.h 

Log message:
Move cache and tlb flush functions, which were mostly inline assembly,
into separate functions.  This makes them reusable from other parts in
the kernel.  Assembly and header are taken from FreeBSD, but modified
to fit our requirements and with some unnecessary stuff removed.  While
there remove micro optimization for uniprocessor kernels.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/06 12:26:49

Modified files:
	usr.bin/tmux   : input.c screen-write.c tmux.h tty.c 

Log message:
Add BCE for clear to start of screen, which was somehow missed.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/06 12:45:23

Modified files:
	usr.bin/tmux   : tmux.h tty.c 

Log message:
Do not go through the whole attributes setting process if the new cell
is the same as the previous one.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 13:05:23

Modified files:
	devel/p5-libintl: Makefile 

Log message:
restore perl to WANTLIB, lost in gettext change


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 13:20:23

Modified files:
	comms/hamlib   : Makefile 
	comms/pilot-link: Makefile 
	converters/p5-Cpanel-JSON-XS: Makefile 
	databases/xapian-bindings: Makefile 
	devel/p5-Glib2 : Makefile 
	devel/p5-IO-AIO: Makefile 
	geo/gdal       : Makefile 
	graphics/GraphicsMagick: Makefile 

Log message:
Add perl to WANTLIB, first batch. This used to be done automatically but
since SHARED_ONLY support was removed across the ports tree the perl module
no longer adds it, so it must be done manually for any perl ports that
provide perl shared-library modules (i.e. libdata/perl5/site_perl/$ARCH/*.so)
and you must not remove them from WANTLIB even if they show as "Extra".


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 13:28:32

Modified files:
	mail/cyrus-imapd: Makefile 
	net/irssi-silc : Makefile 
	net/liboping   : Makefile 
	net/libproxy   : Makefile 
	textproc/redland-bindings: Makefile 
	www/clearsilver: Makefile 
	www/fcgi       : Makefile 
	www/p5-libapreq2: Makefile 
	x11/p5-Gtk2    : Makefile 
	x11/p5-Gtk2-GladeXML: Makefile 
	x11/p5-Gtk2-ImageView: Makefile 

Log message:
Add perl to WANTLIB, second batch. This used to be done automatically but
since SHARED_ONLY support was removed across the ports tree the perl module
no longer adds it, so it must be done manually for any perl ports that
provide perl shared-library modules (i.e. libdata/perl5/site_perl/$ARCH/*.so)
and you must not remove them from WANTLIB even if they show as "Extra".


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/06 14:05:44

Added files:
	share/man/man5 : installurl.5 

Log message:
Add a manual page for the /etc/installurl file.

With help from and OK tb@ jmc@
OK ajacoutot@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2017/02/06 14:31:32

Modified files:
	share/man/man5 : installurl.5 

Log message:
fix spelling


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/06 14:43:48

Modified files:
	sys/dev/pv     : if_xnf.c xbf.c xen.c xenstore.c xenvar.h 

Log message:
Use separate compile time debug flags for xen, xnf and xbf


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/06 14:47:06

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Fixup a few errors, make detaching more robust


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/06 14:52:02

Modified files:
	sys/dev/pv     : xen.c xenstore.c xenvar.h 

Log message:
XST_POLL turned out to be pretty useless since it's only set when cold


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/06 14:54:05

Log message:
    Test combinations of IPsec tunnel and transport mode on several
    machines.  For now only ESP encrypted IPv4 and IPv6 ICMP ping packets
    are generated.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170206
    
    N src/regress/sys/netinet/ipsec/Makefile
    N src/regress/sys/netinet/ipsec/ipsec.conf
    N src/regress/sys/netinet/ipsec/LICENSE
    N src/regress/sys/netinet/ipsec/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/06 14:56:19

Modified files:
	regress/sys/netinet: Makefile 

Log message:
Add ipsec subdir.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2017/02/06 14:57:55

Modified files:
	net/profanity  : Makefile distinfo 
	net/profanity/patches: 
	                       patch-tests_unittests_tools_stub_http_upload_c 

Log message:
minor update to 0.5.1, from MAINTAINER rsadowski

tested by feinerer and myself
ok feinerer (who also spotted and fixed a missing python dependency)


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/06 14:58:29

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Add proper locking for the interrupt source list

Now that we can attach and detach devices, we need to make sure we
can do so while interrupts are running.  Thankfully, in the meantime
the refcnt_init(9) API came around to help us out.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/06 15:05:11

Modified files:
	usr.bin/tmux   : input.c tmux.h tty-term.c tty.c 

Log message:
Use DECFRA on VT420 compatible terminals (so, xterm) and ED on all
others for clearing panes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/02/06 15:29:57

Modified files:
	textproc/cloc  : Makefile 

Log message:
textproc/cloc fix RUN_DEPENDS

Last update to cloc listed LIB_DEPENDS without setting
run depends which resulted in a non working cloc when
installed via pkg_add if the user doesn't happen to
have LIB_DEPENDS from other sources.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/06 15:39:05

Modified files:
	textproc/calibre: Makefile distinfo 
	textproc/calibre/patches: patch-setup_build_py 
	                          patch-src_calibre_linux_py 
	textproc/calibre/pkg: PLIST 

Log message:
update to calibre-2.78.0


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/06 15:58:51

Modified files:
	regress/sys/netinet/ipsec: Makefile 

Log message:
Ping via IPsec must increment ESP input and output counter by one.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 17:25:40

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
whitespace fixes. no functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/02/06 18:39:59

Modified files:
	net/icecast    : Makefile distinfo 
	net/icecast/patches: patch-Makefile_in patch-admin_Makefile_in 
	                     patch-conf_Makefile_in patch-configure 
	                     patch-doc_Makefile_in patch-web_Makefile_in 

Log message:
Update for IceCast to 2.4.3:

http://www.icecast.org/news/icecast-release-2_4_3/

Maintener timeout.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/02/06 19:08:38

Modified files:
	lib/libssl     : bio_ssl.c d1_both.c d1_clnt.c d1_lib.c d1_pkt.c 
	                 d1_srtp.c d1_srvr.c s3_lib.c ssl_asn1.c 
	                 ssl_both.c ssl_cert.c ssl_ciph.c ssl_clnt.c 
	                 ssl_err.c ssl_lib.c ssl_locl.h ssl_packet.c 
	                 ssl_pkt.c ssl_rsa.c ssl_sess.c ssl_srvr.c 
	                 ssl_txt.c t1_enc.c t1_lib.c t1_reneg.c 

Log message:
Change SSLerror() back to taking two args, with the first one being an SSL *.
Make a table of "function codes" which maps the internal state of the SSL *
to something like a useful name so in a typical error in the connection you
know in what sort of place in the handshake things happened. (instead of
by arcane function name).
Add SSLerrorx() for when we don't have an SSL *
ok jsing@ after us both being prodded by bluhm@ to make it not terrible


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 19:47:19

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
provide support for submitting async dcmd frames.

async dcmds are submitted via an mpii request (like the scsi commands
are) which uses the ccb_request buffer, meaning that the dcmd itself
has to go somewhere else. this reuses the sense buffer on the ccb
for the dcmd, and provides wrappers for accessing that space and
submitting a dcmd via the passthru command.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/02/06 20:11:11

Modified files:
	lib/libcrypto/err: err.c err_prn.c 

Log message:
Add file and line to the LibreSSL error strings sine we are no longer in
1989, VMS, or MS/DOS and we all run Brobdingnagian C compilers that have
can now be counted on to achieve this level of sophistication nearly
everywhere.
ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 20:14:53

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
add the framework around asynchronous event notifications.

this submits MR_DCMD_CTRL_EVENT_WAIT commands via the async dcmd
path to read all events from boot onward, and eventually ends up
waiting after the boot messages are consumed.

right now none of the events are handled, but this can be added now
this framework is in place.

the board does generate human readable log messages for every event.
we can send them somewhere (dmesg or syslog for example), but for
now theyre masked by #if 0.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 21:42:56

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
support hotplug of physical disks.

this only handles MFI_EVT_PD_INSERTED_EXT and MFI_EVT_PD_REMOVED_EXT so
far. if this code is to be reused in mfi, it should probably change to
use MFI_EVT_PD_INSERTED and MFI_EVT_PD_REMOVED instead.

unlike mpii and mpi, it looks like the firmware aborts outstanding
commands against a disk when it's physically removed, so we dont
have to explicitly abort them. this is probably a carry over from
mfi generation boards which dont have an explicit abort command
they can use.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 21:43:59

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
i got the MFII_TASK_MGMT flags round the wrong way.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 22:08:53

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
handle physical disk state changes.

more specificially we probe the disk if it goes from UNCONFIGURED_GOOD
to a SYSTEM disk, and detach it if goes from being a SYSTEM disk
to anything else.

this semantic comes from the lsi^Wavago code in the illumos mr_sas
driver. seems to work fine.

i think this covers all the ways a passthru disk can transition on
these boards.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/06 22:18:07

Modified files:
	sys/dev/acpi   : acpithinkpad.c 

Log message:
Test for NULL before dereferencing a pointer not after.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 22:39:17

Modified files:
	sys/sys        : pool.h 

Log message:
export the multi page allocator so other things can explicitly use it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/02/06 23:12:27

Modified files:
	games/urbanterror: Makefile distinfo 
	games/urbanterror/patches: patch-Makefile 
	games/urbanterror-data: Makefile distinfo 

Log message:
Update to urbanterror-4.3.2
From maintainer Ryan Freeman, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 23:21:37

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
provide a custom pool page allocator for mbufs, but dont use it yet.

the custom allocator is basically a wrapper around the multi page
pool allocator, but it has a single global memory limit managed by
the wrapper.

currently each of the mbuf pools has their own memory limit (or
none in the case of the myx pool) independent of the other pools.
this means each pool can allocate up to nmbclust worth of mbufs,
rather than all of them sharing the one limit. wrapping the allocator
like this means we can move to a single memory limit for all mbufs
in the system.

ok bluhm@ as part of a larger diff


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 23:27:18

Modified files:
	sys/sys        : mbuf.h 
	sys/kern       : uipc_mbuf.c 

Log message:
add m_pool_init(), a wrapper around pool_init for mbuf clusters.

m_pool_init is basically a call to pool_init with everythign except
the size and alignment specified, and a call to pool_set_constraints
so the memroy is always dma reachable. it also wires up the memory
with the custom mbuf pool allocator.

ok bluhm@ as part of a larger diff


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/06 23:51:58

Modified files:
	sys/kern       : uipc_mbuf.c 
	sys/dev/pci    : if_myx.c 

Log message:
move the mbuf pools to m_pool_init and a single global memory limit

this replaces individual calls to pool_init, pool_set_constraints, and
pool_sethardlimit with calls to m_pool_init. m_pool_init inits the
mbuf pools with the mbuf pool allocator, and because of that doesnt
set per pool limits.

ok bluhm@ as part of a larger diff


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/07 00:00:21

Modified files:
	sys/kern       : uipc_mbuf.c 

Log message:
enable per cpu caches on the mbuf pools.

this didnt make sense previously since the mbuf pools had item
limits that meant the cpus had to coordinate via a single counter
to make sure the limit wasnt exceeded.

mbufs are now limited by how much memory can be allocated for pages
from the system. individual pool items are no longer counted and
therefore do not have to be coordinated.

ok bluhm@ as part of a larger diff.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/07 00:07:29

Modified files:
	sys/dev/ic     : mfireg.h 

Log message:
pull struct mfi_evtarg_pd_state out of struct mfi_evt_detail.

this lets me pass the specific argument to an aen handler in mfii.
it also unbreaks the tree.

found by jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/02/07 01:11:11

Modified files:
	inputmethods/scim: 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 

Log message:
Update SCIM homepage links.

Broken links pointed out by Bryan Linton.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/07 01:15:30

Modified files:
	geo/postgis    : Makefile distinfo 
	geo/postgis/pkg: PLIST 

Log message:
Update to postgis 2.3.2.

See http://postgis.net/2017/01/31/postgis-2.3.2/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/07 01:16:45

Modified files:
	geo/gdal       : Makefile distinfo 
	geo/gdal/patches: patch-configure patch-swig_python_setup_py 

Log message:
Update to gdal 2.1.3.

See https://trac.osgeo.org/gdal/wiki/Release/2.1.3-News


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/07 01:17:57

Modified files:
	geo/mapserver  : Makefile distinfo 
Added files:
	geo/mapserver/patches: patch-cmake_FindPHP5_cmake 
Removed files:
	geo/mapserver/patches: patch-mapscript_php_error_c 

Log message:
Update to mapservr 7.0.4.

See http://mapserver.org/development/changelog/changelog-7-0.html#changelog-7-0-4
Backport an upstream patch to fix php bindings build, remove a patch
merged upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/07 01:20:51

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-src_app_qgisapp_cpp 
	geo/qgis/pkg   : PLIST 
Added files:
	geo/qgis/patches: patch-src_server_qgsserver_cpp 

Log message:
Update to qgis 2.18.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/07 01:58:47

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
Add installurl to FILES and SEE ALSO.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 02:36:22

Modified files:
	devel/intellij : Makefile distinfo 
	devel/intellij/pkg: PLIST 

Log message:
update to intellij-2016.3.4, from maintainer Caspar Schutijser


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/07 02:38:38

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.297.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/07 03:08:21

Modified files:
	sys/netinet    : in.c 
	sys/netinet6   : in6.c 
	sys/dev/pci    : if_iwm.c 
	sys/net        : if.c 

Log message:
Release the NET_LOCK() before entering per-driver ioctl() routine.

This prevents a deadlock with the X server and some wireless drivers.
The real fix is to take unix domain socket code out of the NET_LOCK().

Issue reported by pirofti@ and ajacoutot@

ok tb@, stsp@, pirofti@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/07 04:36:52

Modified files:
	share/man/man5 : installurl.5 

Log message:
Inline the example section: this looks better, makes 'mandoc -Tlint' happy
and avoids giving the impression that one should follow the link to find
examples.

jmc agrees; go ahead rpe


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/07 04:37:23

Modified files:
	share/man/man5 : Makefile 

Log message:
Hook installurl.5 to build.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/07 04:37:48

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/07 04:52:07

Modified files:
	sys/dev/pv     : xenstore.c 

Log message:
Make the 'incomplete header' message debug only


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/07 04:55:14

Modified files:
	share/man/man5 : installurl.5 

Log message:
Fix Xr: syspatch(1) -> syspatch(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/07 05:22:41

Modified files:
	usr.sbin/httpd : server_http.c 

Log message:
Improve parsing of the HTTP request line

Make sure that the beginning of a new request starts with an
alphabetic character.  This is a quick way to detect non-ASCII
requests (eg. TLS on port 80).  The full validation of the request
method is done once the input line is read.

Make sure that non-terminated lines do not exceed the
SERVER_MAXHEADERLENGTH which is 8k.  As the current read watermark is
set to 64k, this means that the limit check is triggered after max.
64k of input, depending on the TCP read buffer.

OK benno@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/07 05:27:42

Modified files:
	usr.sbin/httpd : httpd.conf.5 httpd.h parse.y server.c 

Log message:
/tmp/cvsspEkok


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 05:32:56

Modified files:
	net/ngrep      : Makefile 
	net/ngrep/patches: patch-ngrep_c 

Log message:
Fix timestamp printing (due to our nonstandard bpf_timeval)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/07 05:57:12

Modified files:
	regress/misc/c++abi: nm1.C 

Log message:
Include <netinet/in.h> to get in_addr_t and in_port_t compiled.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/07 06:42:45

Log message:
    Import pdfsandwich 0.1.6
    
    pdfsandwich generates "sandwich" OCR pdf files, i.e. pdf files which contain
    only images (no text) will be processed by optical character recognition (OCR)
    and the text will be added to each page invisibly "behind" the images.
    
    pdfsandwich is a command line tool which is supposed to be useful to OCR
    scanned books or journals. It is able to recognize the page layout even for
    multicolumn text.
    
    ok benoit@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20170207
    
    N ports/graphics/pdfsandwich/Makefile
    N ports/graphics/pdfsandwich/distinfo
    N ports/graphics/pdfsandwich/pkg/PLIST
    N ports/graphics/pdfsandwich/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/07 06:52:07

Modified files:
	graphics       : Makefile 

Log message:
+pdfsandwich


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/07 07:01:31

Log message:
    import libevtx: a library to access the Windows XML Event Log (EVTX) format.
    ok benoit@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170207
    
    N ports/sysutils/libevtx/Makefile
    N ports/sysutils/libevtx/distinfo
    N ports/sysutils/libevtx/pkg/PLIST
    N ports/sysutils/libevtx/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/07 07:02:05

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libevtx


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/07 07:02:59

Modified files:
	devel/goffice  : Makefile distinfo 

Log message:
Update to goffice-0.10.33.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/07 07:03:29

Modified files:
	math/gnumeric  : Makefile distinfo 
	math/gnumeric/pkg: PLIST 
Added files:
	math/gnumeric/patches: patch-doc_C_gnumeric_xml 
	                       patch-doc_Makefile_in 

Log message:
Update to gnumeric-1.12.33.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/07 07:12:42

Modified files:
	math/gnumeric/patches: patch-doc_Makefile_in 

Log message:
Upstream commit URL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:23:28

Modified files:
	textproc/p5-XML-Tidy: Makefile distinfo 

Log message:
update to XML::Tidy 1.16


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/07 07:24:34

Modified files:
	regress/lib/libcrypto/bn/general: bntest.c 

Log message:
Remove unused variable in C source to make the test compile and pass.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:26:13

Modified files:
	converters/p5-JSON-XS: Makefile distinfo 

Log message:
update to JSON::XS 3.03


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:30:40

Modified files:
	converters/p5-Date-Tolkien-Shire: Makefile distinfo 

Log message:
update to Date::Tolkien::Shire 1.21


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/07 07:33:37

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Unfortunately DECFRA does not handle default colours properly (it does
not reset colours when in SGR 0), so we can't use it without more
trouble than it is worth. Abandon the idea for now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:40:52

Modified files:
	net/lldpd      : Makefile distinfo 

Log message:
update to lldpd-0.9.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:42:24

Modified files:
	audio/quodlibet: Makefile distinfo 
	audio/quodlibet/pkg: PLIST 
Removed files:
	audio/quodlibet/patches: patch-quodlibet_devices__gpod_py 

Log message:
update to quodlibet-3.8.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:42:44

Modified files:
	security/yubico/yubikey-personalization: Makefile distinfo 

Log message:
update to ykpers-1.18.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:44:02

Modified files:
	net/pear-Net-SMTP: Makefile distinfo 

Log message:
update to pear-Net_SMTP-1.7.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:45:07

Modified files:
	security/py-bcrypt: Makefile distinfo 

Log message:
update to py-bcrypt-3.1.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 07:48:02

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/client/pkg: PLIST 
	security/letsencrypt/py-acme: distinfo 
	security/letsencrypt/py-acme/pkg: PLIST 

Log message:
update to certbot-0.11.1


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/02/07 08:07:14

Modified files:
	sys/net80211   : ieee80211_proto.c 

Log message:
Enable the short slot time feature in 802.11n mode.
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 08:10:10

Modified files:
	textproc/podofo: Makefile distinfo 
	textproc/podofo/patches: patch-CMakeLists_txt 
	textproc/podofo/pkg: PLIST 
Removed files:
	textproc/podofo/patches: patch-src_base_PdfString_cpp 
	                         patch-src_base_PdfXRefStream_cpp 

Log message:
update to podofo-0.9.5


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/07 08:10:48

Modified files:
	sys/crypto     : cryptodev.h 
	sys/dev        : softraid_crypto.c 
	sys/netinet    : ip_ah.c ip_esp.c ip_ipcomp.c 

Log message:
The return code of crp_callback is never checked, so it is not
useful to propagate the error.  When an error occurs in an asynchronous
network path, incrementing a counter is the right thing.  There are
four places where an error is not accounted, just add a comment for
now.
OK mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/07 08:14:28

Modified files:
	share/termtypes: termtypes.master 

Log message:
Update to terminfo-20170128.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/07 08:34:47

Modified files:
	sys/net        : if_pflow.c 

Log message:
No longer need to unlock the netlock since the upper layer is doing it.

Found by Hrvoje Popovski.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/07 08:52:33

Modified files:
	lib/libcrypto/err: err.c err_prn.c 

Log message:
Revert previous; the implementation is incorrect since it assumes that the
provided error code matches the error that is currently on the top of the
error stack.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/07 09:04:33

Modified files:
	regress/usr.sbin/syslogd: args-client-tls-fake.pl 
	                          args-client-tls-tcp.pl 
	                          args-server-tls-client-fake.pl 
	                          args-server-tls-tcp.pl 
	                          args-tls-cipher-null.pl 

Log message:
Adapt regex in syslogd test to the new shiny libssl error messages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	okan@cvs.openbsd.org	2017/02/07 09:55:18

Modified files:
	sysutils/sec   : Makefile distinfo 

Log message:
Update to 2.7.11

ok benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2017/02/07 09:56:51

Modified files:
	devel/jdk/1.8  : Makefile distinfo 
	devel/jdk/1.8/files: cacerts 
Removed files:
	devel/jdk/1.8/patches: 
	                       patch-jdk_src_solaris_native_sun_management_OperatingSystemImpl_c 

Log message:
- Update to u121

Contains many upstream bug fixes and security fixes which
can be mined from u112-u121 release notes here:

http://www.oracle.com/technetwork/java/javase/8u-relnotes-2225394.html

- Update cacerts from freebsd repo
- Remove patch now upstream

okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/07 10:13:28

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
DECSLRM in xterm(1) appears to have a quirk where it can generate an
extra scroll of the entire terminal; issuing DECSTBM first prevents
this. Do that for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/07 10:25:46

Modified files:
	sys/arch/amd64/amd64: aesni.c via.c 
	sys/arch/i386/i386: via.c 
	sys/arch/i386/pci: glxsb.c 
	sys/crypto     : crypto.c cryptodev.h cryptosoft.c 
	sys/dev        : softraid_crypto.c 
	sys/dev/pci    : hifn7751.c safe.c ubsec.c 
	sys/netinet    : ip_ah.c ip_esp.c ip_ipcomp.c 

Log message:
Reduce the per-packet allocation costs for crypto operations (cryptop)
by pre-allocating two cryptodesc objects and storing them in an array
instead of a linked list.  If more than two cryptodesc objects are
required use mallocarray to fetch them.  Adapt the drivers to the new
API.

This change results in one pool-get per ESP packet instead of three.
It also simplifies softraid crypto where more cryptodesc objects are
allocated than used.

From, with and ok markus@, ok bluhm@
"looks sane" mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/07 10:58:43

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
Ox on its own line;


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/07 11:06:42

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Remove a debugging leftover.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/07 11:18:16

Modified files:
	sys/netinet    : ip_ah.c ip_ah.h ip_esp.c ip_esp.h ip_ipcomp.c 
	                 ip_ipcomp.h 
	usr.bin/netstat: inet.c 

Log message:
IPsec packets could be dropped unaccounted if output after crypto
failed.  Add a counter for that case.
OK dhill@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/07 11:21:35

Modified files:
	www/epiphany   : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
- update to epiphany-3.20.7

Fixes password extraction sweep attack on password manager


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/07 11:22:09

Added files:
	www/epiphany/patches: Tag: OPENBSD_6_0 
	                      patch-lib_ephy-profile-migrator_c 

Log message:
sigh, add missing patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/07 11:22:28

Modified files:
	x11/i3status   : Makefile 
	x11/i3status/patches: patch-src_first_network_device_c 

Log message:
plug an fd leak, reported by rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/07 11:27:46

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Do not clear the scroll region, instead set it to the scroll region we
actually want.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/07 14:09:10

Modified files:
	telephony/asterisk: Makefile 

Log message:
Revert the -kqueue subpackage changes that snucked in by accident.

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 14:17:01

Modified files:
	security/yubico/yubikey-personalization: Makefile 

Log message:
Drop SEPARATE_BUILD. With make(1) and SEPARATE_BUILD, ykpers tries to rebuild
manpages from sources with a2x (even though they appear up-to-date). Alternative
methods to fix add deps which aren't otherwise needed (either asciidoc for a2x,
or gmake which does work ok with SEPARATE_BUILD).

Build breakage reported by nigel@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 14:20:38

Modified files:
	net/icinga/core: Makefile distinfo 

Log message:
Switch icinga/core to github-generated tarballs, the proper uploaded ones
have been removed. Based on a diff from kirby@.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/07 14:23:25

Modified files:
	sys/arch/arm/cortex: ampintc.c 
	sys/arch/arm64/dev: ampintc.c 

Log message:
There are 1023 possible values for the interrupts, but our masks limit
these currently to 255.  Thus making it impossible to use higher IRQs
than that.  The AMD Seattle SoC though seems to provide 448 IRQs, which
is kind of out of bounds, so raise them to the proper values.  This
makes interrupts work on that machine.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/07 14:28:58

Modified files:
	www/py-django/lts: Makefile distinfo 
	www/py-django/lts/pkg: PLIST 

Log message:
update django to 1.8.17.
ok benoit@.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/07 14:32:48

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/07 14:33:50

Modified files:
	www/py-django/stable: Makefile distinfo 
	www/py-django/stable/pkg: PLIST 

Log message:
update django to 1.10.5.
ok benoit@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 14:34:43

Modified files:
	net/icinga/web : Makefile distinfo 
	net/icinga/web/patches: patch-etc_apache2_icinga-web_conf_in 
	                        patch-etc_conf_d_databases_xml_in 
	net/icinga/web/pkg: PLIST 

Log message:
update to icinga-web 1.14.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 14:40:06

Modified files:
	net/icinga/core: Makefile distinfo 
	net/icinga/core/patches: patch-base_checks_c 
	                         patch-base_logging_c patch-cgi_avail_c 
	                         patch-cgi_cgiutils_c patch-cgi_cmd_c 
	                         patch-cgi_histogram_c 
	                         patch-cgi_history_c 
	                         patch-cgi_notifications_c 
	                         patch-cgi_showlog_c patch-cgi_trends_c 
	net/icinga/core/pkg: PLIST-cgi PLIST-main 

Log message:
update to icinga 1.14.0

security fixes (also affecting nagios; icinga 1.x is the old nagios-derived
branch, whereas 2.x is all new) -

* Bug #13709: CVE-2016-9566: Root priviledge escalation during log file opening
* Bug #10453: Icinga Classic-UI 1.13.3 and older are vulnerable to XSS - CVE-2015-8010

notable changes -

* Classic UI: Remove attribute based authorization (cgiauth.cfg is not parsed
any more)
* IDO: Remove deprecated config options


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 14:40:55

Modified files:
	net/icinga/core: Tag: OPENBSD_6_0 Makefile distinfo 
	net/icinga/core/patches: Tag: OPENBSD_6_0 patch-base_checks_c 
	                         patch-base_logging_c patch-cgi_avail_c 
	                         patch-cgi_cgiutils_c patch-cgi_cmd_c 
	                         patch-cgi_histogram_c 
	                         patch-cgi_history_c 
	                         patch-cgi_notifications_c 
	                         patch-cgi_showlog_c patch-cgi_trends_c 
	net/icinga/core/pkg: Tag: OPENBSD_6_0 PLIST-cgi PLIST-main 

Log message:
update to icinga 1.14.0

security fixes (also affecting nagios; icinga 1.x is the old nagios-derived
branch, whereas 2.x is all new) -

* Bug #13709: CVE-2016-9566: Root priviledge escalation during log file opening
* Bug #10453: Icinga Classic-UI 1.13.3 and older are vulnerable to XSS - CVE-2015-8010

notable changes -

* Classic UI: Remove attribute based authorization (cgiauth.cfg is not parsed
any more)
* IDO: Remove deprecated config options


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/07 14:51:03

Modified files:
	sys/arch/arm64/dev: agtimer.c 

Log message:
The default frequency we chose for the generic timer does not always ring
true.  Instead, unless overwritten by the device tree, we should ask the
generic timer for its frequency.  This fixes time on my AMD Seattle and
should improve time management on QEMU as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/07 14:56:07

Modified files:
	sys/arch/arm64/arm64: locore.S pmap.c 

Log message:
For consistency sake, apply the inner shareable attribute to the bootstrap
pagetables as well.  Also replace the number for write-back with a proper
define.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/07 15:28:37

Modified files:
	sys/netinet    : ip_ipsp.h ipsec_input.c 

Log message:
Error propagation does neither make sense for ip input path nor for
asynchronous callbacks.  Make the IPsec functions void, there is
already a counter in the error path.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2017/02/07 15:30:16

Modified files:
	sys/netinet    : icmp_var.h ip_icmp.c 

Log message:
Use percpu counters for icmp

ok dlg@ a while ago
some input from jca@ who wrote the same diff


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/02/07 16:03:11

Modified files:
	regress/usr.bin/ssh: test-exec.sh 

Log message:
Remove deprecated SSH1 options RSAAuthentication and
RhostsRSAAuthentication from regression test sshd_config.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/07 16:05:33

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Since the instruction cache does not in any way snoop the data cache
we need to make sure to clean the data and invalidate the instruction
cache upon entering a page with pmap_enter().  Since it is possible
that pmap_enter() does not directly enter the page, we need to do the
same dance in the pmap fault fixup code.  Every new writeable mapping
or write removes a page's flag to mark it unflushed.  The next time
pmap_enter() is called or a fault happens on that VA, it has to be
flushed and invalidated again.  This was heavily discussed with Dale
Rahn.

On the Pine64 and Raspberry Pi 3 we have been very lucky to not run
into any cache issues, especially with the instruction cache.  The
AMD Seattle seems to be a different kind of beast where we actually
have to care about these things.  This finally brings the machine
into userland.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/07 16:53:19

Modified files:
	net/icinga/core2: Makefile 

Log message:
Remove the BROKEN-sparc64 marker, it's now using gcc 4.9 and unity build is
disabled, so the reasons given no longer apply. (Untested, but time to give it
another chance).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/07 18:20:40

Modified files:
	sys/net        : pf_lb.c 

Log message:
Remove an uneeded NULL test which was after a deref.
ok mpi@ henning@ sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/07 18:28:51

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Test for NULL before dereferencing a pointer not after.
ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/07 18:32:38

Modified files:
	sys/isofs/udf  : udf_vfsops.c 

Log message:
Move a pointer deref to after a NULL test.
ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2017/02/07 21:00:04

Modified files:
	sys/arch/amd64/stand/efiboot: efiboot.c 

Log message:
Retry BS->ExitBootServices() if it fails.
Reported by Ryan, pulse.purge at gmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/07 21:30:45

Modified files:
	sys/ddb        : db_elf.c db_prof.c 

Log message:
Use ELF_ST_{BIND,TYPE} instead of ELFDEFNNAME(ST_{BIND,TYPE})

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/07 21:34:29

Modified files:
	libexec/ld.so  : library.c loader.c 
	sys/kern       : exec_elf.c 
	sys/sys        : exec_elf.h 

Log message:
Provide size-generic ELF_NO_ADDR in <sys/exec_elf.h> and use that instead
of ELFDEFNNAME(NO_ADDR)

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/07 21:47:23

Modified files:
	sys/kern       : exec_elf.c 
	sys/sys        : exec_elf.h 

Log message:
elf{32,64}_check_brand() isn't used; delete it

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/07 21:55:38

Modified files:
	sys/kern       : exec_elf.c 

Log message:
Change ELFNAME(read_from)'s buf parameter to be void*, eliminating a cast
from all but one call

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/07 22:02:05

Modified files:
	sys/kern       : exec_elf.c 
	sys/sys        : exec_elf.h 

Log message:
Move ELF_AUX_ENTRIES from exec_elf.h to exec_elf.c; it's totally internal
and not something we guarantee to userspace

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/07 22:09:26

Modified files:
	sys/sys        : exec_elf.h 
	sys/conf       : files 
	sys/kern       : exec_conf.c exec_elf.c 
	sys/arch/alpha/include: exec.h 
	sys/arch/amd64/include: exec.h 
	sys/arch/arm/include: exec.h 
	sys/arch/arm64/include: exec.h 
	sys/arch/hppa/include: exec.h 
	sys/arch/i386/include: exec.h 
	sys/arch/m88k/include: exec.h 
	sys/arch/mips64/include: exec.h 
	sys/arch/powerpc/include: exec.h 
	sys/arch/sh/include: exec.h 
	sys/arch/sparc64/include: exec.h 
Removed files:
	sys/kern       : exec_elf32.c exec_elf64.c 

Log message:
In exec_elf.c: expand ELFNAME(), ELFNAME2(), and ELFNAMEEND() except
leaving out the size, so that
ELFNAME2(exec,makecmds)
becomes
exec_elf_makecmds
instead of
exec_elf{32,64}_makecmds
and then delete the ELFNAME2() and ELFNAMEEND() macros.

Move the prototypes for functions local to exec_elf.c to there from
exec_elf.h.

Simplify the SMALL_KERNEL conditionals around the ELF coredump code.

Change exec_conf.c to use the size-generic names and macros

Remove exec_elf{32,64}.c and just build exec_elf.c; delete the
_KERN_DO_ELF and _KERN_DO_ELF64 #defines.

ok jca@, encouragement from deraadt@ and tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/07 22:28:30

Modified files:
	sys/kern       : subr_pool.c 

Log message:
the splvm() in pool_gc_pages is unecessary now.

all pools set their ipls unconditionally now, so there isn't a need
to second guess them.

pointed out by and ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/08 00:06:43

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
fix a mixup of lengths of addresses and lengths in the aen_start sgl

basically use htolem64 to set the address and htolem32 for the
length, not the other way round. lucky this is mostly run on x86.

found by Jon Kloske


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/08 01:18:07

Modified files:
	devel/proj     : Makefile 

Log message:
newer HOMEPAGE


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 01:25:12

Modified files:
	usr.bin/tmux   : tmux.h window.c 

Log message:
Remove event watermarks, don't work well enough to be worth it.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 01:26:35

Modified files:
	usr.bin/tmux   : grid.c 

Log message:
Tweak how much we expand lines by.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 01:50:10

Modified files:
	usr.bin/tmux   : screen-write.c tmux.h tty.c 

Log message:
Trying to avoid the occasional newline by saving the last cell on screen
is not actually helping us much and just adds complexity, so don't
bother.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 01:54:45

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Log size of output buffer as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/08 02:13:25

Modified files:
	sys/arch/arm64/stand/efiboot: efiboot.c 

Log message:
Retry BS->ExitBootServices() if it fails, like on amd64.  Also we need
to make sure to pass the current mapkey to prove EFI that we know the
current memory map and its constraints.  Otherwise EFI can choose to
only partially exit until we pass the correct key.  As we already use
the memory map to allocate memory for the kernel, split the previous
function into one simply retrieving the table and another one who uses
the map to allocate memory.  At some point it would be nice to actually
pass the table to the kernel since its data is more reliable than the
FDT only.  While there, sync a bit of style with the amd64 version.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/08 02:18:24

Modified files:
	sys/arch/arm64/arm64: locore.S 
	sys/arch/arm64/stand/efiboot: conf.c exec.c 

Log message:
Pass the physical address to the end of symbols to the kernel.  From
armv7 we inherited the mechanism to manually modify the kernel symbol
table to change the value of esym.  We don't use this, but instead use
the virtual address that is passed to the kernel.  This change makes us
only work on and hand out physical addresses.  Bump the efiboot version
to make this ABI change more visible.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/02/08 02:27:06

Modified files:
	graphics/rawtherapee: Makefile distinfo 
	graphics/rawtherapee/patches: patch-CMakeLists_txt 
	                              patch-rtengine_sleef_c 
	graphics/rawtherapee/pkg: PLIST 
Removed files:
	graphics/rawtherapee/patches: patch-AboutThisBuild_cmake 
	                              patch-rtengine_CMakeLists_txt 
	                              patch-rtengine_dcraw_cc 
	                              patch-rtexif_CMakeLists_txt 
	                              patch-rtgui_CMakeLists_txt 
	                              patch-rtgui_adjuster_cc 
	                              patch-rtgui_guiutils_h 
	                              patch-rtgui_preferences_cc 
	                              patch-rtgui_thresholdadjuster_cc 
	                              patch-rtgui_tonecurve_cc 

Log message:
Update to rawtherapee-5.0-r1.
Remove patches merged upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/08 03:13:38

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version, and switch to using HTTPS.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 03:49:53

Modified files:
	security/lastpass-cli: Makefile distinfo 

Log message:
update to lastpass-cli-1.1.2, from maintainer Björn Ketelaars


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/02/08 03:50:21

Modified files:
	devel/zeal     : Makefile distinfo 

Log message:
Update devel/zeal 0.2.1 => 0.3.1

OK abieber@

port changes:
- add x11/qt5/qt5base dependency to LIB_DEPENDS
- add Qt5Concurrent to WANTLIB (from qtbase)
- mark USE_WXNEEDED = Yes (uses qt webkit)

upstream changelog:

=====
0.3.1
=====

Fixed Issues:

Fixed random crashing on application start and exit. (#595)
Fixed web view hanging caused by URLs with no schema. (#532)
Fixed docset removal on Windows. (#621)
Fixed race condition (and warning) in docset removal logic.
Fixed docset selection with Select All shortcut (usually Ctrl+A).

=====
0.3.0
=====
This releases contains a lot of bug fixes, as well as improvements to the UI and
application performance. See the link above for the complete list of changes.
The most interesting changes are listed below.

New Features:

Dedicated docset management UI available via Tools -> Docsets.... (#354)
Added portable mode support. (#486)
Search results now have two icons per item: docset and symbol type.
New search term highlighting instead of the bold font.
Tabs can be cloned with Ctrl+Alt+T. (#524)
Remote resources can be open within the application. (#474)
Added support for system style icons (FreeDesktop) if available.
A new tab can set to open after currently selected one.
Dropped support for --query command line parameter. Plugins should have
switched to dash-plugin URL scheme by now. Users can invoke search by running
zeal <query>.

Improvements:

A lot of search performance improvements!
Implemented a short delay before starting a search to allow user to finish
typing.
Added tooltips for elided texts across the app (tabs, search results).
Page Up/Page Down now work when search text box is focused.
Splitters and tool bars do not override system styling.
Splitters cannot be collapsed anymore.
Updated symbol type icons and definitions.
Main menu updated to be more browser-like.
Show current page title in the window title.
Better detection of another application instances.

Fixed Issues:

Fixed viewing of Android 7 docset. (#596)
Fixed AppIndicator support with Cinnamon DE. (#487)
Fixed many crashes in different situations.
Ctrl+Shift+Tab now properly navigates through tabs backwards. (#518)
Fixed filename corruption on Windows with non-Latin locale. (#508)
Fixed docset list not updating on storage change. (#475)

Known Issues:

Under some circumstances Zeal crashes on exit or start. (#595 and #605 )
Due to performance optimisations ordering of search results became less
relevant. (#603)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 03:52:30

Modified files:
	net/GeoIP      : Makefile 

Log message:
Update GeoLite databases to latest version, and switch to using HTTPS.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 03:53:03

Modified files:
	net/GeoIP      : distinfo 

Log message:
Update GeoLite2 databases to latest version, and switch to using HTTPS.
(oops, missed distinfo)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 03:53:48

Modified files:
	net/arp-scan   : Makefile distinfo 

Log message:
update mac-vendor listing


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/08 05:37:43

Modified files:
	sys/netinet    : ipsec_input.c 
	sys/netinet6   : ip6_input.c ip6_var.h 

Log message:
Remove the ipsec protocol callbacks which all do the same.  Implement
it in ipsec_common_input_cb() instead.  The code that was copied
to ah6_input_cb() is now in ip6_ours() so we can call it directly.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 05:53:46

Modified files:
	security/wpa_supplicant: Makefile 
	security/wpa_supplicant/files: wpa_supplicant.conf 
Added files:
	security/wpa_supplicant/patches: patch-wpa_supplicant_config_h 

Log message:
Patch wpa-supplicant to set DEFAULT_AP_SCAN 0, the scan code doesn't handle
OpenBSD. Remove ap_scan=0 from default config as suggested by / ok dcoppa.

README still mentions ap_scan=0; as discussed with tb@ some institutions
provide sample config files which do include other ap_scan settings so
I think it's still helpful there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 05:55:18

Modified files:
	games/urbanterror: Makefile 

Log message:
Use clang to build urbanterror on i386 for the integrated assembler;
old binutils assembler doesn't handle snapvector_sse.c.   ok kirby@


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2017/02/08 06:13:15

Modified files:
	sys/arch/luna88k/luna88k: mainbus.c 

Log message:
Now pcexmem(4) and pcexio(4) are attached at cbus(4), we do not need to
include "pcex.h" here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/08 06:26:47

Modified files:
	mail/thunderbird-i18n: Makefile.inc distinfo 
	mail/mozilla-thunderbird: Makefile distinfo 

Log message:
Bugfix update to thunderbird 45.7.1.

See https://www.mozilla.org/en-US/thunderbird/45.7.1/releasenotes/


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/08 06:43:33

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
Due to non-blocking sockets, tls_handshake() could wait in a busy
loop.  Use an additional poll(2) during the handshake and also
respect the -w timeout option there.
From Shuo Chen; OK beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 06:53:32

Modified files:
	usr.bin/tmux   : resize.c tty.c 

Log message:
Improve some of the logging on resize.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 08:24:48

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Remove unnecessary duplicate check.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 08:41:41

Modified files:
	usr.bin/tmux   : grid.c screen-redraw.c screen-write.c 

Log message:
Add a helper to store a cell, and some tidying.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 08:49:29

Modified files:
	usr.bin/tmux   : input.c screen-write.c server-client.c tty.c 

Log message:
Some other tidying bits.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 09:08:06

Modified files:
	sys/dev/pv     : xen.c 

Log message:
Fixup incorrect test when allocating grant table entries

An xnf & xbf attach/detach loop has revealed that sometimes when we're
about to free a grant table entry that is still in use which is a grave
mistake code wise.  Turned out we could allocate an entry twice because
of an incorrect test that took flags value into account when making the
decision regarding availability of a given entry.  At the same time,
upon releasing the entry we explicitly CAS in 0 into the flags making
this check bogus.

While here be explicit about starting flags by initializing them to 0
and always panic when the "double free" condition is encountered.

rzalamena@ has lent me his eyes and has double-checked the condition.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 09:15:52

Modified files:
	sys/dev/pv     : xen.c xenvar.h 

Log message:
Introduce Xen interrupt barriers

intr_barrier(9) is useful to make sure that after an interrupt is
masked, the interrupt handler for the device has finished executing
before proceeding with further device configuration.

However, since Xen interrupt handlers run in the thread context, we
need to make sure that they have finished as well.  By scheduling a
xen_barrier_task modelled after (or rather copied ;) ifq_barrier_task
we can ensure that the interrupt handler is no longer running.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 09:17:31

Modified files:
	sys/dev/pv     : if_xnf.c 

Log message:
Switch to Xen interrupt barrier


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 09:18:20

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Fix clear start of line.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 09:29:00

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Abort transactions with non-retriable error when device is stopped


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 09:45:18

Modified files:
	usr.bin/tmux   : grid-view.c grid.c input.c screen-write.c 
	                 screen.c tmux.h tty.c 

Log message:
Collect sequences of printable ASCII characters and process them
together instead of handling them one by one. This is significantly
faster. Sequences are terminated when we reach the end of the line, fill
the internal buffer, or a different character is seen by the input
parser (an escape sequence, or UTF-8).

Rather than writing collected sequences out immediately, hold them until
it is necessary (another screen modification, or we consume all
available data). This means we can discard changes that would have no
effect (for example, lines that would just be scrolled off the screen or
cleared). This reduces the total amount of data we write out to the
terminal - not important for fast terminals, but a big help with slow
(like xterm).


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 09:51:26

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Switch to Xen interrupt barrier and improve state transitions


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 10:23:46

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Cleanup the device removal path

When destroying the ring all transfers should be already gone so there
should be no need to repeat ourselves after xbf_stop has done its work.

Get rid of the yield() that was probably masking some issues that have
been since fixed.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 10:31:09

Modified files:
	usr.bin/tmux   : input.c screen-write.c tmux.h tty-term.c tty.c 

Log message:
Add support for scroll up escape sequence (CSI S) and use it when
possible instead of sending individual line feeds.


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/02/08 10:31:45

Modified files:
	faq/ports      : guide.html 

Log message:
pkg/SECURITY files don't exist since 2013

ok tb@ tj@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 10:32:45

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Specify the read/write DMA flag for bounce buffers


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 10:33:51

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
window_copy_pagedown shouldn't reset the mode anymore, instead let the
caller do it so it can free the marks. Problem reported by attila at
stalphonsos dot com.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/08 10:36:33

Modified files:
	devel/cargo    : cargo.port.mk 

Log message:
modcargo-crates-1 -> modcargo-gen-crates
modcargo-crates-2 -> modcargo-gen-crates-licenses

discussed with semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2017/02/08 10:36:47

Modified files:
	share/man/man5 : port-modules.5 

Log message:
modcargo-crates-1 -> modcargo-gen-crates
modcargo-crates-2 -> modcargo-gen-crates-licenses

discussed with semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/08 10:39:57

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Improve error handling for poll timeouts


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/08 10:58:59

Modified files:
	regress/sys/netinet/ipsec: Makefile README ipsec.conf 

Log message:
Encrypt UDP and TCP packets in test.  Use a sane transport config.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/08 11:03:31

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
Avoid double close(2) in netcat.  After every call to readwrite()
there is already a close(2), so do not do it in readwrite().
OK beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/08 11:44:50

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
Avoid a busy loop in netcat's tls_close().  Reuse the tls_handshake()
wrapper that calls poll(2) and handles the -w timeout.
OK beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/08 12:07:36

Modified files:
	net/nagios/check_bioctl: Makefile distinfo 

Log message:
Update to check_bioctl-1.23. This unbreaks after the removal of sudo
from base.

with and ok afresh1@ (maintainer and upstream)


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/02/08 13:32:43

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
Avoid printf %s NULL.  From semarie@, OK djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/08 13:58:31

Modified files:
	sys/sys        : proc.h 
	sys/kern       : kern_exec.c kern_exit.c kern_fork.c 

Log message:
Delete the obsolete fork/exec/exit emulation hooks.

ok mpi@ dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/08 14:04:44

Modified files:
	sys/sys        : exec.h 
	sys/kern       : exec_elf.c 

Log message:
Remove support for forcing the ELF interpreter to a specific address,
last used by COMPAT_SYSV which was removed in 2011.

ok millert@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	danj@cvs.openbsd.org	2017/02/08 14:33:43

Modified files:
	data/xkeyboard-config/man: xkeyboard-config.7 
	data/xkeyboard-config/pc: Makefile 
	dist/xkeyboard-config: Makefile.in NEWS aclocal.m4 autogen.sh 
	                       configure configure.ac 
	dist/xkeyboard-config/compat: Makefile.in 
	dist/xkeyboard-config/docs: Makefile.in 
	dist/xkeyboard-config/geometry: Makefile.in 
	dist/xkeyboard-config/geometry/digital_vndr: Makefile.in 
	dist/xkeyboard-config/geometry/sgi_vndr: Makefile.in 
	dist/xkeyboard-config/keycodes: Makefile.in 
	dist/xkeyboard-config/keycodes/digital_vndr: Makefile.in 
	dist/xkeyboard-config/keycodes/sgi_vndr: Makefile.in 
	dist/xkeyboard-config/m4: gettext.m4 intlmacosx.m4 lib-ld.m4 
	                          lib-link.m4 lib-prefix.m4 nls.m4 po.m4 
	                          progtest.m4 
	dist/xkeyboard-config/man: Makefile.in 
	dist/xkeyboard-config/po: bg.po ca.po cs.po da.po de.po eo.po 
	                          fi.po fr.po gl.po hr.po ko.po nl.po 
	                          pl.po ru.po sv.po uk.po vi.po 
	dist/xkeyboard-config/rules: Makefile.in base.extras.xml.in 
	                             base.m_s.part base.xml.in 
	                             evdev.extras.xml.in evdev.xml.in 
	dist/xkeyboard-config/rules/bin: Makefile.in 
	dist/xkeyboard-config/rules/compat: Makefile.in 
	dist/xkeyboard-config/symbols: Makefile.in al ara de pc ru se tr 
	dist/xkeyboard-config/symbols/digital_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/fujitsu_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/hp_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/jolla_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/macintosh_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/nec_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/nokia_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/sgi_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/sharp_vndr: Makefile.in sl-c3x00 
	dist/xkeyboard-config/symbols/sony_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/sun_vndr: Makefile.in 
	dist/xkeyboard-config/symbols/xfree68_vndr: Makefile.in 
	dist/xkeyboard-config/types: Makefile.in 

Log message:
Update to xkeyboard-config 2.20

ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/08 14:35:18

Modified files:
	distrib/miniroot: install.sub 

Log message:
Reformat get_responsfile() to fit to 80 columns.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	danj@cvs.openbsd.org	2017/02/08 14:36:21

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/08 15:04:03

Modified files:
	distrib/miniroot: install.sub 

Log message:
Use a variable for the sysctl output to shorten the for-loop to
fit to 80 columns.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/08 15:16:49

Modified files:
	distrib/miniroot: install.sub 

Log message:
Localize PS3 at the top of v6_defroute() to make its assignment
fit to 80 columns.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/08 15:29:39

Modified files:
	distrib/miniroot: install.sub 

Log message:
Add some line breaks to fit to 80 columns.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 15:42:07

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Do not adjust region lower by pane offset when scrolling up, it is
already an absolute position.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/08 15:43:37

Modified files:
	distrib/miniroot: install.sub 

Log message:
Add some more line breaks to fit to 80 columns.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/08 15:56:01

Modified files:
	distrib/miniroot: install.sub 

Log message:
Use a variable to make the prompt fit to 80 columns.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/08 16:09:28

Modified files:
	regress/sys/netinet/ipsec: Makefile 

Log message:
Fix IP address schema to make space for AH tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/08 16:13:02

Modified files:
	distrib/miniroot: install.sub 

Log message:
Add even more line breaks to fit to 80 columns.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 16:47:35

Modified files:
	usr.bin/tmux   : tmux.h tty.c 

Log message:
Add a common function to invalidate all the terminal cached state.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 16:49:59

Modified files:
	net/unifi      : Makefile distinfo 
	net/unifi/pkg  : PLIST 

Log message:
update to unifi-5.4.11


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/08 16:53:03

Modified files:
	usr.bin/tmux   : tmux.h tty.c 

Log message:
Another helper function to write to terminal and log.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/08 17:01:14

Modified files:
	net/nagios/check_bioctl: Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
MFC ok sthen@

Update to check_bioctl-1.23. This unbreaks after the removal of sudo
from base.

with and ok afresh1@ (maintainer and upstream)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 17:04:40

Modified files:
	net/isc-bind   : Makefile distinfo 

Log message:
update to BIND 9.10.4-P6

* If a server is configured with a response policy zone (RPZ) that
rewrites an answer with local data, and is also configured for DNS64
address mapping, a NULL pointer can be read triggering a server crash.
This flaw is disclosed in CVE-2017-3135. [RT #44434]

* A synthesized CNAME record appearing in a response before the associated
DNAME could be cached, when it should not have been. This was a
regression introduced while addressing CVE-2016-8864. [RT #44318]


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/08 17:05:52

Modified files:
	net/isc-bind   : Tag: OPENBSD_6_0 Makefile distinfo 
Added files:
	net/isc-bind/patches: Tag: OPENBSD_6_0 patch-bin_dig_dig_c 
	                      patch-bin_dig_host_c 
	                      patch-bin_dig_nslookup_c 
	                      patch-lib_isc_unix_net_c 
	                      patch-lib_isc_unix_socket_c 

Log message:
update to BIND 9.10.4-P6

* If a server is configured with a response policy zone (RPZ) that
rewrites an answer with local data, and is also configured for DNS64
address mapping, a NULL pointer can be read triggering a server crash.
This flaw is disclosed in CVE-2017-3135. [RT #44434]

* A synthesized CNAME record appearing in a response before the associated
DNAME could be cached, when it should not have been. This was a
regression introduced while addressing CVE-2016-8864. [RT #44318]


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/08 17:43:58

Modified files:
	sys/netinet    : ip_ah.c ip_ipcomp.c 

Log message:
Put back a return that I have removed by accident.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/02/08 20:43:05

Modified files:
	lib/libcrypto/des: set_key.c 
	lib/libcrypto/man: DES_set_key.3 

Log message:
DES keys are not 7 days long.  ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/09 00:51:55

Modified files:
	geo/osm2pgsql  : Makefile 

Log message:
Mark BROKEN, fails to build with geos 3.6.

Reported by naddy@ & sthen@, also see
https://github.com/openstreetmap/osm2pgsql/issues/634,
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214819 and
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216338


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/09 01:24:13

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/09 01:24:29

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.45.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/09 01:27:58

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-143.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/09 02:33:15

Modified files:
	usr.bin/tmux   : screen-write.c 

Log message:
When an ordinary (not collected) cell is received, we need to flush any
delayed scrolling before drawing it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/09 02:46:36

Removed files:
	news/plor      : Makefile distinfo 
	news/plor/files: plor.1 
	news/plor/patches: patch-configure patch-configure_in 
	                   patch-main_c patch-soupreply_c patch-video_c 
	news/plor/pkg  : DESCR PLIST 

Log message:
Remove plor, it is unfinished alpha quality software, and unmaintained
since 1998.

We have news/multimail in ports, which is mature software and allows
reading SOUP and QWK packets, among other formats.

OK sthen@, ajacoutot@, benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/09 02:50:24

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register removal of plor.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/09 03:09:14

Modified files:
	usr.bin/tmux   : screen-write.c 

Log message:
Combining characters need a full flush.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/09 03:27:03

Modified files:
	sys/kern       : sched_bsd.c 

Log message:
Do no select a CPU to execute the current thread when being preempt()ed.

Calling sched_choosecpu() at this moment often result in moving the thread
to a different CPU.  This does not help the scheduler and creates a domino
effect, resulting in kernel thread moving to other CPUs.

Tested by many without performance impact.  Simon Mages measured a small
performance improvement and a smaller variance with an http proxy.

Discussed with kettenis@, ok martijn@, beck@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/09 03:29:37

Modified files:
	sys/net        : pf_table.c 

Log message:
Replace a custom loop calling yield() by the idiom to check if the
current process is hogging a CPU.

ok mikeb@, visa@, tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/09 03:40:57

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Release the NET_LOCK() before calling unp_detach(), fix a recursion
found by dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/09 04:16:22

Modified files:
	usr.sbin/relayd: check_tcp.c 

Log message:
Do not loose the send/expect validation error on timeout.

When a read timeout is reached, the code also has to check if there is
already anything in the input buffer and verify it again.  This fixes
relayd and relayctl to show "send/expect failed" instead of "tcp read
timeout".

Found by Michael W. Lucas (while working on the Relayd Mastery book).
Thanks.

OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/09 04:18:55

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Temporarily grab the NET_LOCK() around soisdisconnected().

This makes a (wrong) assert disappear and makes sure we hack to avoid a
recursion in the upcall case still work.

The real solution to this problem is to not grab the NET_LOCK() before
entering uipc_usrreq().

Issue reported by dtucker@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/02/09 04:19:47

Modified files:
	games/urbanterror-data: Makefile 

Log message:
Don't package 1G of data on the arches where urbanterror isn't built.
OK fcambus@ and Ryan Freeman (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2017/02/09 04:32:41

Modified files:
	devel/afl      : Makefile distinfo 

Log message:
update to 2.39b
OK jsg@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 05:00:12

Modified files:
	build          : support.dat 

Log message:
+NSW IT


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 05:00:26

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/09 05:00:42

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Don't lie about the default size in the man page.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/09 05:09:33

Modified files:
	usr.bin/tmux   : server-client.c status.c tmux.h 

Log message:
Break the message storage function into its own function, useful for
debugging.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/09 05:34:30

Modified files:
	x11/gtk-vnc    : Makefile 
Added files:
	x11/gtk-vnc/patches: patch-src_vnccolormap_c 
	                     patch-src_vncconnection_c 

Log message:
SECURITY fix for:
CVE-2017-5884 - fix bounds checking for RRE, hextile and copyrect encodings
CVE-2017-5885 - fix color map index bounds checking


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/09 05:58:03

Modified files:
	graphics/ffmpeg: Makefile distinfo 
	graphics/ffmpeg/patches: patch-libavutil_random_seed_c 

Log message:
Update to ffmpeg-20170208.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/09 05:58:39

Modified files:
	x11/mplayer    : Makefile 

Log message:
Bump FFMPEG_V to 20170208.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 06:00:55

Modified files:
	faq            : current.html 

Log message:
acme.conf -> acme-client.conf

from raf czlonka


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 07:09:50

Modified files:
	faq            : current.html 

Log message:
update sqlite3 entry according to the XXX comment.  new packages have long
been available and this way it can be included directly in update61.html.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/02/09 07:43:04

Modified files:
	mail/courier-authlib: Makefile distinfo 
Removed files:
	mail/courier-authlib/patches: patch-userdb_userdbpw_c 

Log message:
bugfix update to 0.67.0
patch committed upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/02/09 07:46:36

Modified files:
	mail/courier-imap: Makefile distinfo 

Log message:
bugfix update to 4.17.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/02/09 07:47:43

Modified files:
	mail/maildrop  : Makefile distinfo 

Log message:
bugfix update to 2.8.5


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/09 07:49:00

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Document refresh-client -C.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/09 08:04:53

Modified files:
	usr.bin/tmux   : cmd-new-session.c cmd-swap-window.c format.c 
	                 server-fn.c server.c session.c tmux.1 tmux.h 

Log message:
Instead of numbering session groups, give them a name which may be given
to -t instead of a target session. Also allow them to contain only one
session.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/09 08:14:11

Modified files:
	databases/postgresql: Makefile 
	databases/postgresql/pkg: PLIST-server README-server 

Log message:
Adjust pg_upgrade docs. Written by jeremy@ based on my notes, with small
tweaks by me to avoid hardcoding versions (both in this README and in the
@ask-update in PLIST).  OK jeremy@ pea@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/09 08:19:32

Modified files:
	sys/net        : pf.c 
	sys/netinet6   : ip6_output.c 
	sys/netinet    : ip_output.c tcp_input.c tcp_output.c tcp_subr.c 
	                 tcp_timer.c tcp_usrreq.c tcp_var.h 

Log message:
percpu counters for TCP stats

ok mpi@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/09 08:23:35

Modified files:
	sys/netinet    : icmp6.h 
	sys/netinet6   : icmp6.c in6_var.h mld6.c nd6.c nd6_nbr.c 
	                 nd6_rtr.c raw_ip6.c raw_ip6.h 

Log message:
percpu counters for raw ipv6 and icmp6 stats

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/09 08:32:56

Modified files:
	sys/netinet    : ip_divert.c ip_divert.h 
	sys/netinet6   : ip6_divert.c ip6_divert.h 

Log message:
percpu counters for divert(4) stats

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/02/09 08:36:46

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Unbreak 'netstat -g' and make multicast route stats sysctl more robust.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/09 10:03:28

Modified files:
	news           : Makefile 

Log message:
remove news/plor


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/09 10:19:07

Modified files:
	usr.bin/mandoc : libmandoc.h main.c mandoc_aux.h mandocdb.c 
	                 tag.c term_ps.c 

Log message:
Be consistent in protecting __attribute__ attributes with __;
from Christos Zoulas <christos @ NetBSD>.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 10:21:24

Modified files:
	.              : index.html 
	libressl       : index.html 
	openbgpd       : index.html 
	opencvs        : index.html 
	openntpd       : index.html 
	opensmtpd      : index.html 
	openssh        : index.html 

Log message:
oh no! it's 2017 already!


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 10:22:19

Modified files:
	faq            : current.html faq1.html faq10.html faq11.html 
	                 faq13.html faq14.html faq15.html faq4.html 
	                 faq5.html faq6.html faq7.html faq8.html 
	                 index.html 

Log message:
2017


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 10:45:10

Modified files:
	opencvs        : index.html 

Log message:
missed one 2017


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/09 11:26:17

Modified files:
	usr.bin/mandoc : dba.c dbm_map.c 

Log message:
Improve clarity of some casts;
from Christos Zoulas <christos at NetBSD>.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/09 12:02:34

Modified files:
	sys/kern       : vfs_cache.c 

Log message:
Use TAILQ_FOREACH_SAFE in cache_purgevfs().  Fix whitespaces.
No binary change.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/09 12:50:47

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
No need to cast NULL when assigning it to a variable;
from Christos Zoulas <christos at NetBSD>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/09 12:51:34

Modified files:
	x11/xfce4/xfce4-systemload: Makefile distinfo 

Log message:
Update to xfce4-systemload 1.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/09 12:52:05

Modified files:
	x11/xfce4/xfce4-netload: Makefile distinfo 

Log message:
Update to xfce4-netload 1.3.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/09 13:14:41

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
When getaddrinfo fails, print the requested host and port.

Should make debugging easier, especially when using -x literal_ipv6_address


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/09 13:15:28

Modified files:
	sys/kern       : kern_tc.c 

Log message:
remove a dead variable; ok millert, guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/09 13:16:00

Modified files:
	usr.bin/nc     : nc.1 

Log message:
Document that -x can take an ipv6 address enclosed in square brackets.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/09 13:31:29

Modified files:
	sys/netinet6   : icmp6.c 

Log message:
Dedup calls to icmp6stat_inc in icmp6_errcount, should save a few bytes

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/02/09 13:36:50

Modified files:
	lang/myrddin   : Makefile distinfo 
	lang/myrddin/pkg: PLIST 
Removed files:
	lang/myrddin/patches: patch-configure patch-mk_c_mk 

Log message:
Update myrddin to the latest commit.

Remove no longer needed local patches.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/09 14:13:18

Modified files:
	devel/mpfr     : Makefile distinfo 

Log message:
update to 3.1.5 patch level 2 for some bug fixes


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 15:07:55

Modified files:
	faq            : current.html 

Log message:
upgrading from 6.0-release to -current by compiling from source is NOT
supported; remove build instructions for getting over the RELRO change
and several armv7 ABI breaks that happened way back in autumn.

discussed with guenther


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/09 15:10:41

Modified files:
	faq            : current.html 

Log message:
an extra "code" snuck in


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/09 15:21:54

Modified files:
	usr.sbin/pstat : pstat.c 

Log message:
Teach pstat -d to also print untyped kernel symbols.

Storage defined in assembly code often doesn't define its type and size,
thus the nlist interface can't present it as N_DATA.  Instead of fixing
all the assembly by adding .type pseudo ops, work around the problem in
pstat.  Let's hope that allowing N_COMM is sufficient.  This makes
''pstat -d u cpuid_level'' useful.

Reported by mikeb@, "looks sane" mikeb@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/09 15:43:35

Modified files:
	regress/usr.sbin/ospfd: Makefile 

Log message:
Add defines that are needed to compile XS code with Perl 5.24.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/09 15:55:45

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
When netcat was started with -Uz, the exit status was always 1.  If
the unix connect is successful, let nc -z close the socket and exit
with 0.
OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/02/09 17:02:45

Modified files:
	sysutils/u-boot: Makefile 

Log message:
Set MODPY_RUNDEP=No to avoid a RUN_DEPENDS on python.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/09 19:10:22

Modified files:
	usr.sbin/pkg_add/OpenBSD: LibSpec.pm SharedLibs.pm 

Log message:
add glue to be able to ask "give me the highest number shared library with
that stem".  needed later for new fancy stuff in check-lib-depends
okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/09 19:24:07

Modified files:
	editors/emacs  : Makefile 
	editors/emacs/patches: patch-configure 

Log message:
Don't use ld -Z on arm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/09 20:05:33

Modified files:
	editors/emacs  : Makefile 
Added files:
	editors/emacs/patches: patch-lisp_files_el 

Log message:
Open ports tree patches in diff-mode by default.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/09 20:36:40

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
Sanitise escape sequences in key comments sent to printf but preserve
valid UTF-8 when the locale supports it; bz#2520 ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/09 21:34:50

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
bring back r1.34 that was backed out for problems loading public keys:

translate OpenSSL error codes to something more
meaninful; bz#2522 reported by Jakub Jelen, ok dtucker@

with additional fix from Jakub Jelen to solve the backout.
bz#2525 bz#2523 re-ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/02/10 01:05:14

Modified files:
	sys/dev/pci    : envy.c 

Log message:
Remove unused variable. From Michael W. Bombardieri <mb at ii.net>.
Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/02/10 01:07:21

Modified files:
	sys/dev/usb    : umidi.c 

Log message:
Use __func__ for DPRINTF's as we do in other parts of the
code. From Michael W. Bombardieri" <mb at ii.net>. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/02/10 01:09:36

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Fix links to usb-audio specs. From Michael Reed <m.reed at mykolab.com>.
Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/02/10 01:13:37

Modified files:
	sys/dev/pci    : azalia.c 

Log message:
Update link to intel HDA spec. From
Alexey Suslikov <alexey.suslikov at gmail.com>.
Thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/10 02:37:43

Modified files:
	devel/llvm     : Makefile distinfo 
	devel/llvm/patches: patch-cmake_modules_AddLLVM_cmake 
	                    patch-lib_CodeGen_TargetLoweringBase_cpp 
	                    patch-lib_Support_Triple_cpp 
	                    patch-lib_Support_Unix_Signals_inc 
	                    patch-lib_Target_Mips_MCTargetDesc_MipsMCAsmInfo_cpp 
	                    patch-tools_clang_include_clang_Driver_Options_td 
	                    patch-tools_clang_lib_Basic_Targets_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_h 
	                    patch-tools_clang_lib_Driver_Tools_cpp 
	devel/llvm/pkg : PLIST-main 
Added files:
	devel/llvm/patches: 
	                    patch-lib_Target_AArch64_AArch64ISelLowering_cpp 
	                    patch-lib_Target_AArch64_AArch64Subtarget_h 
	                    patch-tools_lld_ELF_DriverUtils_cpp 
	                    patch-tools_lld_ELF_Driver_cpp 
Removed files:
	devel/llvm/patches: patch-tools_lld_ELF_InputFiles_cpp 
	                    patch-tools_lld_ELF_InputSection_cpp 
	                    patch-tools_lld_ELF_InputSection_h 
	                    patch-tools_lld_ELF_LinkerScript_cpp 
	                    patch-tools_lld_ELF_LinkerScript_h 
	                    patch-tools_lld_ELF_Writer_cpp 
	                    patch-tools_lld_ELF_Writer_h 
	devel/llvm/pkg : PFRAG.lld-main 

Log message:
Update to llvm-4.0.0rc2.
- survived a bulk on i386 and amd64

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/10 02:38:12

Modified files:
	lang/clang     : clang.port.mk 

Log message:
Bump clang version to 4.0.0rc2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/10 02:39:21

Modified files:
	devel/include-what-you-use: Makefile 
Added files:
	devel/include-what-you-use/patches: patch-iwyu_cc 
	                                    patch-iwyu_driver_cc 
	                                    patch-iwyu_location_util_h 

Log message:
Fix with llvm>=4.0.0rc2.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/02/10 02:40:01

Modified files:
	mail/courier-authlib/patches: patch-Makefile_in patch-configure 

Log message:
unbreak and regen patches
spotted by Nygel Tailor, thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/10 03:06:00

Modified files:
	converters/libpst: Makefile distinfo 

Log message:
Update to libpst-0.6.70.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/10 03:09:55

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/10 03:10:11

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.46.


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/02/10 03:23:44

Modified files:
	multimedia/mlbviewer: Makefile distinfo 
	multimedia/mlbviewer/pkg: PLIST 

Log message:
update mlbviewer to 2015-sf-1


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/10 03:39:45

Modified files:
	sys/arch/alpha/compile: Makefile.inc 
	sys/arch/amd64/compile: Makefile.inc 
	sys/arch/arm64/compile: Makefile.inc 
	sys/arch/armv7/compile: Makefile.inc 
	sys/arch/hppa/compile: Makefile.inc 
	sys/arch/i386/compile: Makefile.inc 
	sys/arch/landisk/compile: Makefile.inc 
	sys/arch/loongson/compile: Makefile.inc 
	sys/arch/luna88k/compile: Makefile.inc 
	sys/arch/macppc/compile: Makefile.inc 
	sys/arch/octeon/compile: Makefile.inc 
	sys/arch/sgi/compile: Makefile.inc 
	sys/arch/socppc/compile: Makefile.inc 
	sys/arch/sparc64/compile: Makefile.inc 

Log message:
Unbreak 'config -p'.

ok tb@, jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	mestre@cvs.openbsd.org	2017/02/10 05:10:39

Modified files:
	net/mcabber    : Makefile distinfo 

Log message:
Update to version 1.0.5:
- Bugfixes, and huge speed optimizations for large rosters
- This release fixes CVE-2017-5589

For more information on CVE-2017-5589 ->
https://rt-solutions.de/en/2017/02/CVE-2017-5589_xmpp_carbons/. The one
assigned specifically for mcabber is CVE-2017-5604.

OK maintainer Markus Hennecke, prodded by Rafael Sadowski to switch HOMEPAGE
to HTTPS


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/10 05:30:50

Modified files:
	regress/sys/nfs: Makefile 

Log message:
Create and connect to unix domain sockets on NFS mounted file system.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/10 05:59:18

Modified files:
	usr.bin/tmux   : tmux.1 tmux.h tty-keys.c tty.c 

Log message:
Don't use a bufferevent for the tty, so we can keep better track of what
is being written and when.

Also a manpage typo fix from jmc@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2017/02/10 07:07:28

Modified files:
	databases/postgresql: Makefile distinfo 
	databases/postgresql/pkg: PLIST-docs 

Log message:
Update to 9.6.2

ok jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/10 07:23:49

Modified files:
	net/fping      : Makefile distinfo 
	net/fping/patches: patch-src_fping_c 

Log message:
update to fping-3.16


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/10 07:51:13

Modified files:
	textproc/mupdf : Makefile 
Added files:
	textproc/mupdf/patches: patch-source_fitz_pixmap_c 

Log message:
mupdf: backport fix for use-after-free and heap-based buffer overflow
in fz_subsample_pixmap(), https://bugs.ghostscript.com/show_bug.cgi?id=697515


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2017/02/10 08:00:54

Modified files:
	app/cwm        : group.c 

Log message:
Fix group hidden state when a client wants to be on all desktops on start;
reported by Vadim Vygonets with diff, but another approach was taken.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/10 08:38:23

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Add rather than delete the event if more writing to come.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/10 08:39:14

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Revert; committed from the wrong directory.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/10 08:39:43

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Add not delete the event if more to write.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/10 08:44:31

Modified files:
	usr.bin/mandoc : main.c manconf.h mandoc.1 manpath.c 
	                 mdoc_macro.c tree.c 

Log message:
In -Ttree output mode, show the BROKEN node flag and
provide a -Onoval output option to show the unvalidated tree.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/10 09:20:58

Modified files:
	usr.bin/mandoc : mdoc_macro.c 

Log message:
Oops, the previous commit unintentionally included this file.
The intended commit message for rev. 1.167 is:

In the SYNOPSIS, .Nm blocks can get broken if one of their children
gets broken.  In that case, mark them as BROKEN and ENDED and make
sure they get closed out together with the child.

Fixes tree corruption leeding to a NULL dereference found by tb@
with afl(1) in: .Sh SYNOPSIS .Bl .Oo .Nm .Bk .Oc .It (where .Bk is
the child and .Oo is the breaker).
A simpler form of the same corruption (without crash) is visible in:
.Sh SYNOPSIS .Ao .Nm .Bo .Ac .Bc text
where the text ended up inside the .Nm (child .Bo, breaker .Ao).


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/02/10 11:44:56

Modified files:
	net/corebird   : Makefile distinfo 

Log message:
Update net/corebird 1.4.1 => 1.4.2

OK abieber@

upstream changelog:

Version 1.4.2 (2017-01-27)

Changelog:
- Fix a crash when going back from a tweet with media to another
tweet with media
- Fix compilation with --disable-video
- Decrease log level of UserStream output to debug when no internet
connection is present


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/10 14:42:33

Log message:
    Import textproc/py-markdown
    It is textproc/markdown being renamed to be able to add a py3 flavor
    This new import updates it to py-markdown-2.6.8 and adds a py3 flavor
    
    tweaks and ok sthen@
    
    Status:
    
    Vendor Tag:	danj
    Release Tags:	danj_20170210
    
    C ports/textproc/py-markdown/Makefile
    C ports/textproc/py-markdown/distinfo
    C ports/textproc/py-markdown/pkg/DESCR
    C ports/textproc/py-markdown/pkg/PLIST
    N ports/textproc/py-markdown/pkg/PFRAG.no-python3
    
    4 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jdanj:yesterday -jdanj ports/textproc/py-markdown

CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/10 15:19:11

Modified files:
	usr.bin/mandoc : mdoc_macro.c 

Log message:
For child macros of block-end macros, only scan backwards for pending
breakers unless the parent of the block is already closed.  While
the scanning is needed in cases like ".Ac Bo" for broken Ao, it is
useless and crashy in cases like ".Ac Bc" for non-broken Ao.

This fixes a NULL pointer dereference that tb@ found with afl(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/10 15:25:20

Added files:
	textproc/py-markdown: Makefile distinfo 
	textproc/py-markdown/pkg: DESCR PLIST 

Log message:
Merge "conflicts"


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/10 15:33:10

Modified files:
	textproc       : Makefile 

Log message:
- markdown
+ py-markdown
+ py-markdown,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/10 15:34:23

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register markdown -> py-markdown


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/10 15:35:19

Modified files:
	devel/py-cheetah: Makefile 
	www/pelican    : Makefile 

Log message:
It's textproc/py-markdown now

noticed/reminded by and ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/10 15:38:59

Removed files:
	textproc/markdown: Makefile distinfo 
	textproc/markdown/pkg: DESCR PLIST 

Log message:
It lives now in textproc/py-markdown

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/10 20:44:22

Modified files:
	sys/arch/sgi/include: intr.h 
	sys/arch/sgi/localbus: int.c macebus.c 
	sys/arch/sgi/sgi: intr_template.c ip27_machdep.c 
	sys/arch/sgi/xbow: xbridge.c xheart.c 

Log message:
Let MP-safe interrupt handlers run without the kernel lock on sgi.

OK miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/10 21:12:28

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
disable aen handling.

on some or all original mfii boards (2208) the aen path fires repeatedly
without reporting anything, causes enough load to start actual io.

found by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/10 22:37:27

Modified files:
	distrib/sets/lists/comp: md.arm64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/10 23:07:03

Modified files:
	sys/kern       : exec_elf.c 

Log message:
Correct the entry point and base address calculations for an
interpreter whose entry point isn't in its first PT_LOAD segment.

problem report and testing by patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/10 23:28:02

src/distrib/arm64/miniroot

Update of /cvs/src/distrib/arm64/miniroot
In directory cvs.openbsd.org:/tmp/cvs-serv83342/miniroot

Log Message:
Directory /cvs/src/distrib/arm64/miniroot added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/10 23:36:03

Modified files:
	distrib/arm64  : Makefile 
	etc/etc.arm64  : Makefile.inc 
Added files:
	distrib/arm64/miniroot: Makefile 

Log message:
Add an initial miniroot with bootaa64.efi on fat and bsd.rd on ffs.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/11 00:07:10

Modified files:
	distrib/notes/arm64: contents prep 

Log message:
update miniroot notes


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/11 01:52:16

Modified files:
	sysutils/consul-template: Makefile distinfo 

Log message:
update to consul-template-0.18.1


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2017/02/11 02:04:45

Modified files:
	share/man/man4/man4.luna88k: Makefile 
Added files:
	share/man/man4/man4.luna88k: xp.4 

Log message:
Add xp(4/luna88k) man page.

ok guenther@ dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/11 03:34:23

Modified files:
	sys/arch/sgi/dev: if_iec.c 

Log message:
Simplify ifq_deq_{begin,rollback,commit} sequence to ifq_dequeue.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/11 03:59:21

Modified files:
	graphics/lensfun: Makefile 

Log message:
disable SSE in graphics/lensfun on arch where it can't work, the CMakeLists
file is not smart enough to check.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/11 04:35:51

Modified files:
	faq            : current.html 

Log message:
alpha, armv7, macppc, landisk and luna88k (and perhaps other archs) have
older snapshots that do not yet contain the new perl version, so suggest
that people run perl -v before removing files.

found the hard way by florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/11 05:47:34

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
SECURITY update to webkitgtk4-2.14.4.
CVE-2017-2365, CVE-2017-2366, CVE-2017-2373, CVE-2017-2363, CVE-2017-2362,
CVE-2017-2350, CVE-2017-2350, CVE-2017-2354, CVE-2017-2355, CVE-2017-2356,
CVE-2017-2371, CVE-2017-2364, CVE-2017-2369


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/11 05:52:58

Modified files:
	infrastructure/bin: check-lib-depends 

Log message:
magically add most recent c/perl to ports with perl so, based on file name.
okay sthen@
(version tweaked to tell you if your pkg_add is not recent enough)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/11 05:56:08

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/11 06:23:11

Modified files:
	usr.bin/mandoc : mdoc_macro.c 

Log message:
Do not prematurely mark intermediate blocks as broken while scanning
backwards.  Only do so when a block is found that is actually broken.
Logic error found while investigating crashes reported by tb@.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/11 06:53:51

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/11 07:08:35

Modified files:
	usr.bin/mandoc : mdoc_macro.c 

Log message:
Do not prematurely close .Nd containing a broken child.
Fixes tree corruption leading to NULL dereference
in insane cases like .Oo Oo .Nd .Pq Oc .Oc Oc
found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/11 07:40:06

Modified files:
	sys/arch/sgi/dev: if_iec.c 

Log message:
Always leave one free slot in the Tx ring to avoid ambiguity with ring
head and tail in the interrupt handler. This fixes an old bug that
causes a Tx stall when Tx ring gets full.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/11 08:44:11

Modified files:
	usr.bin/mandoc : mdoc_macro.c 

Log message:
Never look for broken blocks inside blocks that are already closed.
Fixes the last the of tree corruptions sometimes causing NULL dereference
reported by tb@; this one triggered in cases like: .Bl -column .It Pq Ta


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/11 09:12:36

Modified files:
	sbin/dhclient  : dhcpd.h errwarn.c parse.c 
	usr.sbin/dhcpd : dhcpd.h errwarn.c parse.c 

Log message:
Move parse_warning() into parse.c to prepare to replace errwarn.c
with standard daemon log.[ch].

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/11 09:43:46

Modified files:
	security/regripper: Makefile distinfo 
	security/regripper/pkg: PLIST 

Log message:
update to a new RegRipper checkout; new and updated plugins
ok rpointel@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/11 09:47:19

Modified files:
	www/py-requests: Makefile distinfo 
	www/py-requests/pkg: PLIST 

Log message:
Update to py-requests 2.13.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/11 09:51:14

Modified files:
	devel/py-test-runner: Makefile distinfo 

Log message:
Update to py-test-runner 2.11.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/11 10:02:45

Modified files:
	devel/py-spark-parser: Makefile distinfo 
	devel/py-spark-parser/pkg: PLIST 

Log message:
Update to py-spark-parser 1.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/11 10:09:05

Modified files:
	net/py-socks   : Makefile distinfo 

Log message:
Update to py-socks 1.6.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/11 10:49:56

Modified files:
	www/py-httplib2: Makefile distinfo 

Log message:
Update to py-httplib2 0.10.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/11 11:32:44

Modified files:
	audio/py-eyed3 : Makefile distinfo 

Log message:
Update to eyeD3-0.7.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/11 11:50:20

Modified files:
	devel/py-codestyle: Makefile distinfo 

Log message:
Update to py-codestyle 2.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/11 11:58:01

Modified files:
	textproc/py-markdown: Makefile 

Log message:
Fix python3 test, ok danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/11 12:51:06

Modified files:
	share/man/man9 : file.9 
	sys/sys        : filedesc.h 
	sys/kern       : exec_script.c kern_descrip.c kern_event.c 
	                 kern_exec.c sys_pipe.c tty_pty.c 
	                 uipc_syscalls.c vfs_syscalls.c 

Log message:
Add a flags argument to falloc() that lets it optionally set the
close-on-exec flag on the newly allocated fd.  Make falloc()'s
return arguments non-optional: assert that they're not NULL.

ok mpi@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/11 13:13:14

Modified files:
	regress/usr.bin/mandoc/char/space: esct-mdoc.in 
	regress/usr.bin/mandoc/mdoc/Bk: break.in synopsis.in 

Log message:
remove a few Mdocdate that snuck in


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/11 13:22:17

Modified files:
	regress/usr.bin/mandoc/mdoc/Bl: Makefile 
	regress/usr.bin/mandoc/mdoc/Nd: broken.in broken.out_ascii 
	                                broken.out_lint 
	regress/usr.bin/mandoc/mdoc/Nm: Makefile broken.in 
	                                broken.out_ascii 
	regress/usr.bin/mandoc/mdoc/break: tail.in tail.out_ascii 
	                                   tail.out_lint 
Added files:
	regress/usr.bin/mandoc/mdoc/Bl: breakingTa.in 
	                                breakingTa.out_ascii 
	regress/usr.bin/mandoc/mdoc/Nm: broken.out_lint 

Log message:
new regression tests for mdoc_macro.c revs. 1.167-1.172


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/11 13:28:26

Modified files:
	audio/py-acoustid: Makefile distinfo 
	audio/py-acoustid/pkg: PLIST 

Log message:
Update to py-acoustid-1.1.4 and fix py3 flavor

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/11 13:40:03

Modified files:
	usr.sbin/ldapd : attributes.c ber.c ber.h modify.c 

Log message:
Correct handling of requests to delete individual attribute values.

reported by ZHANG Huangbin (zhb (at) iredmail.org)
fix by Robert Klein (roklein (at) roklein.de)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/11 13:44:13

Modified files:
	security/py-gnupg: Makefile distinfo 

Log message:
Update to py-gnupg-0.4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/11 14:25:50

Modified files:
	textproc/py-sphinx: Makefile 

Log message:
Replace the find(1) that rename the binaries (to avoid conflicts) with
a for loop.

reported by landry@, ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/11 14:49:43

Modified files:
	usr.bin/mandoc : man_term.c 

Log message:
Do not read one element past the end of the static const termacts array.
Bug found by Sevan Janiyan <venture37 at geeklan dot co dot uk>
who ran the OpenBSD mandoc test suite on Ubuntu on POWER8 (sic!)
and reported that mdoc/Sh/before.in failed in -Tman mode.
If that isn't power testing, i don't know...


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/11 15:21:58

Modified files:
	devel/py-tox   : Makefile distinfo 

Log message:
Update to py-tox-2.6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/11 16:08:43

Modified files:
	share/man/man4/man4.luna88k: xp.4 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/11 16:12:22

Modified files:
	share/man/man9 : file.9 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/11 18:01:39

Modified files:
	sys/dev/ic     : rtwn.c 

Log message:
Fix an uninitialised return value in rtwn_ra_init().  Though nothing
currently tests the return value.

ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/11 21:29:57

Modified files:
	sys/dev/usb    : if_smsc.c 

Log message:
The videocore portion of the raspberry pi which boots the arm cores and
runs the mailbox interface knows about a MAC address that appears to be
derived from a unique serial number along with the raspberry pi
foundation oui.

It modifies the device tree when booting to store the MAC address
in /axi/usb/hub/ethernet/mac-address so fetch and use this value
for the integrated smsc(4) Ethernet.

A different smsc adapter plugged into one of the USB ports
probes later with a different unit number and skips this path.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/11 21:55:08

Modified files:
	share/man/man9 : Makefile fork1.9 
	sys/sys        : proc.h 
	sys/uvm        : uvm_extern.h 
	sys/kern       : init_main.c kern_fork.c kern_kthread.c 
	                 kern_sched.c 
	sys/arch/alpha/alpha: vm_machdep.c 
	sys/arch/amd64/amd64: vm_machdep.c 
	sys/arch/arm/arm: vm_machdep.c 
	sys/arch/arm64/arm64: vm_machdep.c 
	sys/arch/hppa/hppa: vm_machdep.c 
	sys/arch/i386/i386: vm_machdep.c 
	sys/arch/m88k/m88k: vm_machdep.c 
	sys/arch/mips64/mips64: vm_machdep.c 
	sys/arch/powerpc/powerpc: vm_machdep.c 
	sys/arch/sh/sh : vm_machdep.c 
	sys/arch/sparc64/sparc64: vm_machdep.c 
Added files:
	share/man/man9 : thread_fork.9 

Log message:
Split up fork1():
- FORK_THREAD handling is a totally separate function, thread_fork(),
that is only used by sys___tfork() and which loses the flags, func,
arg, and newprocp parameters and gains tcb parameter to guarantee
the new thread's TCB is set before the creating thread returns
- fork1() loses its stack and tidptr parameters
Common bits factor out:
- struct proc allocation and initialization moves to thread_new()
- maxthread handling moves to fork_check_maxthread()
- setting the new thread running moves to fork_thread_start()
The MD cpu_fork() function swaps its unused stacksize parameter for
a tcb parameter.

luna88k testing by aoyama@, alpha testing by dlg@
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/11 23:46:18

Log message:
    import libfwnt: library for Windows NT data types.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170212
    
    N ports/sysutils/libfwnt/Makefile
    N ports/sysutils/libfwnt/distinfo
    N ports/sysutils/libfwnt/pkg/DESCR
    N ports/sysutils/libfwnt/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/11 23:47:10

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libfwnt


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/11 23:58:29

Log message:
    import libfvde: ibrary and tools to access FileVault Drive Encryption (FVDE)
    encrypted volumes.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170212
    
    N ports/sysutils/libfvde/Makefile
    N ports/sysutils/libfvde/distinfo
    N ports/sysutils/libfvde/pkg/DESCR
    N ports/sysutils/libfvde/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/11 23:59:05

Modified files:
	sysutils       : Makefile 

Log message:
SUBDIR += libfvde


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/12 00:07:55

Log message:
    import libfwsi: library to access the Windows Shell Item format.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170212
    
    N ports/sysutils/libfwsi/Makefile
    N ports/sysutils/libfwsi/distinfo
    N ports/sysutils/libfwsi/pkg/DESCR
    N ports/sysutils/libfwsi/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/12 00:08:45

Modified files:
	sysutils       : Makefile 

Log message:
SUBDIR += libfwsi


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2017/02/12 01:56:17

Modified files:
	etc            : Makefile 
	etc/mtree      : 4.4BSD.dist 

Log message:
As it's done in /etc/skel for new regular users, create an empty
/root/.ssh/authorized_keys file with correct permissions (0600 for the
file, 0700 for /root/.ssh dir). Since we encourage administrators to use
public keys only if they want to access root account via ssh, might
aswell make it easier, this will be particularly useful in
managed/provisioned environments (think ansible & others).

Note that administrators might get an e-mail from security(8) if the
file suddenly appears after an update - this is of course expected :)

ok tb@ sthen@ rpe@ ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2017/02/12 01:57:00

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/etc: mi 

Log message:
sync (add /root/.ssh & /root/.ssh/authorized_keys)


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2017/02/12 01:58:31

Modified files:
	distrib/miniroot: install.sub 

Log message:
In autoinstall, no need to create /mnt/root/.ssh if the install script
provided an ssh public key, the directory is in the base set now.

From tb@, discussed with rpe@ and tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2017/02/12 01:59:52

Modified files:
	etc/mtree      : special 

Log message:
Add /root/.ssh/authorized_keys to /etc/mtree/special so that security(8)
checks for the correct mode/ownership.

prodded by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	stefan@cvs.openbsd.org	2017/02/12 02:25:04

Modified files:
	gnu/llvm/tools/clang/include/clang/Basic: DiagnosticSemaKinds.td 

Log message:
Disable -Wpointer-sign warnings per default

base gcc does the same. suggested by and ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/12 02:55:15

Modified files:
	share/man/man1 : clang-local.1 

Log message:
mention -Wpointer-sign being off by default


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/12 02:57:47

Modified files:
	share/man/man1 : Makefile 

Log message:
install clang-local(1)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/12 03:23:35

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/12 03:23:47

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.47.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/12 03:38:39

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 

Log message:
Update to google-cloud-sdk-143.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/02/12 03:46:09

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
malloc does not *need* to return page-aligned objects for size >=
a page.  This is not required by any standard and other malloc
implementation do not document (or implement) this. ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/12 03:57:34

Log message:
    import libfsntfs: library and tools to access NTFS.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170212
    
    N ports/sysutils/libfsntfs/Makefile
    N ports/sysutils/libfsntfs/distinfo
    N ports/sysutils/libfsntfs/pkg/DESCR
    N ports/sysutils/libfsntfs/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/12 03:58:21

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libfsntfs


CVSROOT:	/cvs
Module name:	ports
Changes by:	czarkoff@cvs.openbsd.org	2017/02/12 04:15:51

Modified files:
	telephony/baresip/re: Makefile distinfo 
	telephony/baresip/re/patches: patch-Makefile 

Log message:
Update to re-0.5.1

No SHLIB bump because there are no changes in API.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/12 04:19:46

Modified files:
	www/lighttpd   : Makefile 
Added files:
	www/lighttpd/patches: patch-src_fdevent_freebsd_kqueue_c 

Log message:
Use level-triggered kqueue(). https://redmine.lighttpd.net/issues/2788

from brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/12 04:25:19

Modified files:
	devel/llvm     : Makefile 
Added files:
	devel/llvm/patches: 
	                    patch-tools_clang_include_clang_Basic_DiagnosticSemaKinds_td 

Log message:
Disable -Wpointer-sign warnings per default; base gcc does the same.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/12 04:56:41

Modified files:
	sys/dev/pv     : xenstore.c 

Log message:
Remove incorrect if statement

Pointed out by jsg@ and Nathanael Rensen, <nathanael at
list ! polymorpheus ! com>, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/12 06:15:50

Modified files:
	distrib/special/dhclient: Makefile 
	sbin/dhclient  : Makefile bpf.c clparse.c conflex.c dhclient.c 
	                 dhcpd.h dispatch.c kroute.c options.c packet.c 
	                 parse.c privsep.c 
Added files:
	sbin/dhclient  : log.c log.h 

Log message:
Switch from 'legacy' errwarn.c to standard daemon logging functions.

No objections heard. Feedback from millert@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/12 06:33:19

Removed files:
	sbin/dhclient  : errwarn.c 

Log message:
Remove now unused file.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/12 06:55:01

Modified files:
	sbin/dhclient  : bpf.c clparse.c dhclient.c dispatch.c kroute.c 
	                 options.c 

Log message:
Adjust lines that are too long.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/12 07:13:23

Modified files:
	usr.bin/mandoc : eqn_term.c 
	regress/usr.bin/mandoc/eqn/matrix: Makefile 
	regress/usr.bin/mandoc/eqn/unary: sqrt.in sqrt.out_ascii 
	                                  sqrt.out_html 
Added files:
	regress/usr.bin/mandoc/eqn/matrix: empty.in empty.out_ascii 
	                                   empty.out_html 

Log message:
Do not access a NULL pointer if a matrix or square root are empty.
Crashes found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/12 08:53:15

Modified files:
	sbin/dhclient  : bpf.c dhclient.c dispatch.c kroute.c privsep.c 

Log message:
Eliminate most strerror() invocations by using log_warn() and fatal()
instead of log_warnx() and fatalx(). A few log_info() to log_warn()
for the same reason.

Suggested by millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/12 09:26:15

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	chl@cvs.openbsd.org	2017/02/12 10:12:37

Modified files:
	sys/dev        : vscsi.c 

Log message:
Remove dead assignment and now unused variable.

Found by LLVM/Clang Static Analyzer.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/12 10:41:17

Modified files:
	sys/dev/usb/dwc2: dwc2.c dwc2_coreintr.c dwc2_hcdintr.c 
	                  dwc2var.h 

Log message:
Replace dummy mutex asserts with real ones.

OK stsp@


CVSROOT:	/cvs
Module name:	www
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/12 10:52:57

Modified files:
	.              : events.html 

Log message:
Add my fosdem dual-talk.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/12 11:19:54

Modified files:
	.              : README 
	share/mk       : bsd.xorg.mk 

Log message:
replace XENOCARA_RERUN_AUTOCONF setting with autoreconf make target.

The previous mechanism didn't play well with the new separated build
user.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/02/12 13:56:19

Modified files:
	security/lynis : Makefile distinfo 
	security/lynis/pkg: PLIST 

Log message:
Update for Lynis to 2.4.1

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/12 14:48:19

Log message:
    import the z3 theorem prover.
    ok benoit@ input & ok daniel@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170212
    
    N ports/math/z3/Makefile
    N ports/math/z3/distinfo
    N ports/math/z3/pkg/PLIST
    N ports/math/z3/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/12 14:48:57

Modified files:
	math           : Makefile 

Log message:
SUBDIR += z3


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/12 17:56:32

Modified files:
	sys/dev/pci    : if_bge.c 

Log message:
properly set BGE_HCC_STATS_ADDR_HI by using BGE_HOSTADDR.

this makes it consistent with the rest of the code.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/12 18:34:37

Modified files:
	sys/arch/sparc64/include: bus.h 

Log message:
whitespace tweak. no functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/02/13 00:23:37

Modified files:
	games/vegastrike: Makefile.inc 
	games/vegastrike/engine: Makefile 

Log message:
Don't package data on arches where main package doesn't build.
ok pascal@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/13 01:31:47

Modified files:
	geo/josm       : Makefile distinfo 

Log message:
Update to josm r11526, from MAINTAINER Holger Mikolon


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/13 01:44:55

Modified files:
	net/p5-Net-SFTP-Foreign: Makefile distinfo 

Log message:
Update to p5-Net-SFTP-Foreign-1.87.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 03:22:12

Modified files:
	security/gnutls: Makefile distinfo 
	security/gnutls/pkg: PLIST 

Log message:
Update to gnutls-3.5.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 03:23:50

Modified files:
	security/gnutls: Makefile 

Log message:
Proper indent; no change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/13 03:27:00

Modified files:
	lang/verilator : Makefile distinfo 
	lang/verilator/pkg: PLIST 

Log message:
Update to verilator-3.900.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/13 05:23:47

Modified files:
	usr.sbin/smtpd : parse.y ruleset.c smtpd.conf.5 smtpd.h 

Log message:
allow negation of authenticated keyword:
accept ! authenticated [...]

ok sunil@, jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/13 05:43:43

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
fix incoming tls-require regression, introduced with last parse.y cleanup
causing the flag not to be propagated down to the listener

ok eric@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/13 05:51:10

Modified files:
	www/blogsum    : Makefile 

Log message:
www/blogsum needs an rdep on www/p5-CGI. Pointed out by Johan Huldtgren.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/13 05:52:13

Modified files:
	infrastructure/bin: proot 
	infrastructure/man/man1: proot.1 

Log message:
forgotten: scrape SIGNING_PARAMETERS


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/13 05:56:50

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
we generally don't use subshells, comment that explicitly. I had to read back
the log to remember that one :)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/13 05:57:50

Modified files:
	infrastructure/mk: pkgpath.mk 

Log message:
root no longer involved in building packages, simplify accordingly


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/13 07:03:13

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0226


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/13 07:20:27

Modified files:
	databases/py-puppetdb: Makefile distinfo 
	databases/py-puppetdb/pkg: PLIST 

Log message:
Minor update to 0.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/13 07:22:00

Modified files:
	www/puppetboard: Makefile distinfo 
	www/puppetboard/pkg: PLIST 
Added files:
	www/puppetboard/patches: 
	                         patch-puppetboard_templates_inventory_html 

Log message:
Update to 0.2.1, now with daily run charts on overview page
and a little python3 compatitbility patch to fix the inventory page rendering


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/02/13 07:48:44

Modified files:
	usr.sbin/bgpctl: bgpctl.8 parser.c 
	usr.sbin/bgpd  : control.c session.c 

Log message:
draft-ietf-idr-shutdown extends to support a message on either of
"Administrative Shutdown" or "Administrative Reset"

patch submitted by Job Snijders, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 07:59:09

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Reverse output when installing a patch; it's more logical (first get, then
install). While here, match the installer output a bit more:
Get/Verify ...
Installing ...

prodded by a mail exchange with "bytevolcano"
discussed with robert@ sthen@
ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/13 09:05:31

Modified files:
	usr.bin/tmux   : grid.c 

Log message:
Collected cells may still need to be extended for RGB colours.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/02/13 09:07:07

Modified files:
	lang/gambit    : Makefile distinfo 
	lang/gambit/patches: patch-configure 

Log message:
Update to gambit 4.8.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 09:07:52

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/pkg: PLIST 

Log message:
Update to glib2-2.50.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 09:35:31

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 

Log message:
Update to gdk-pixbuf-2.36.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 09:49:38

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.22.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 09:50:00

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.22.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 09:50:24

Modified files:
	mail/evolution-ews: Makefile distinfo 

Log message:
Update to evolution-ews-3.22.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/13 10:54:27

Modified files:
	regress/sys/netinet/ipsec: Makefile README ipsec.conf 

Log message:
Test IPsec with AH the same way it is already done for ESP.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/13 11:49:01

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
Fix powerdown with vmmci(4) VMs using a shutdown and no reset.

vmm VMs don't support powerdown - no ACPI or power management - so we
use a trick to issue a reboot and just don't reset after the triple
fault.  This worked before but was broken with the previous fix to
pvbus_shutdown() - move the trick to vmd instead.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 12:13:14

Modified files:
	usr.sbin/dhcpd : Makefile alloc.c bootp.c bpf.c confpars.c db.c 
	                 dhcp.c dhcpd.c dhcpd.h dispatch.c hash.c icmp.c 
	                 memory.c options.c packet.c parse.c pfutils.c 
	                 sync.c tables.c tree.c udpsock.c 
Added files:
	usr.sbin/dhcpd : log.c log.h 

Log message:
Switch from old errwarn.c logging to shiny new log.[ch].

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 12:15:39

Modified files:
	usr.sbin/dhcrelay: Makefile bpf.c dhcrelay.c dispatch.c packet.c 
Added files:
	usr.sbin/dhcrelay: log.c log.h 

Log message:
Switch from old errwarn.c logging to shiny new log.[ch].

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 12:19:21

Removed files:
	usr.sbin/dhcpd : errwarn.c 
	usr.sbin/dhcrelay: errwarn.c 

Log message:
Banished to the attic.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:35:38

Log message:
    import libmsiecf: library and tools to access the IE Cache File (index.dat).
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170213
    
    N ports/sysutils/libmsiecf/Makefile
    N ports/sysutils/libmsiecf/distinfo
    N ports/sysutils/libmsiecf/pkg/DESCR
    N ports/sysutils/libmsiecf/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:38:21

Log message:
    import liblnk, library and tools to access the Windows Shortcut File.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170213
    
    N ports/sysutils/liblnk/Makefile
    N ports/sysutils/liblnk/distinfo
    N ports/sysutils/liblnk/pkg/DESCR
    N ports/sysutils/liblnk/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:40:08

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += liblnk
+     SUBDIR += libmsiecf


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:41:09

Log message:
    import libolecf: library and tools to access the OLE 2 Compound File.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170213
    
    N ports/sysutils/libolecf/Makefile
    N ports/sysutils/libolecf/distinfo
    N ports/sysutils/libolecf/pkg/DESCR
    N ports/sysutils/libolecf/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:42:15

Log message:
    import libqcow: library and tools to access the QEMU Copy-On-Write (QCOW).
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170213
    
    N ports/sysutils/libqcow/Makefile
    N ports/sysutils/libqcow/distinfo
    N ports/sysutils/libqcow/pkg/DESCR
    N ports/sysutils/libqcow/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:43:16

Log message:
    import libregf: library and tools to access the Windows NT Registry File.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170213
    
    N ports/sysutils/libregf/Makefile
    N ports/sysutils/libregf/distinfo
    N ports/sysutils/libregf/pkg/DESCR
    N ports/sysutils/libregf/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:43:55

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libolecf
+     SUBDIR += libqcow
+     SUBDIR += libregf


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:45:46

Log message:
    import libesedb: library and tools to access the ESE and EDB format.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170213
    
    N ports/sysutils/libesedb/Makefile
    N ports/sysutils/libesedb/distinfo
    N ports/sysutils/libesedb/pkg/DESCR
    N ports/sysutils/libesedb/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/13 12:46:28

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libesedb


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/13 12:58:00

Modified files:
	net/icinga/core2: Makefile distinfo 
	net/icinga/core2/patches: patch-CMakeLists_txt 

Log message:
update to icinga2-2.6.2

disable unity build (upstream default) everywhere, it was previously disabled on
!amd64, but the large c++ files involved are bringing my amd64 workstation to its
knees with long hangs making X unusable for many minutes at a time


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/13 14:24:48

Modified files:
	graphics/lensfun: Makefile 

Log message:
zap a space that crept in to the .if; no problem, just untidy


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 14:53:53

Modified files:
	usr.sbin/dhcpd : dispatch.c pfutils.c sync.c udpsock.c 

Log message:
Do the strerror() elimination dance with log_warnx() -> log_warn(),
fatalx() -> fatal() and even a couple of fprintf(stderr) -> log_warn().


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 14:57:31

Modified files:
	usr.sbin/dhcrelay: dispatch.c 

Log message:
Do the strerror() elimination dance with a log_warnx() -> log_warn().


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 15:05:35

Modified files:
	usr.sbin/dhcrelay: bpf.c dhcrelay.c dispatch.c 

Log message:
Adjust some long lines.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 15:33:39

Modified files:
	usr.sbin/dhcpd : bootp.c conflex.c confpars.c dhcp.c dhcpd.c 
	                 dhcpd.h dispatch.c icmp.c memory.c options.c 
	                 parse.c sync.c udpsock.c 

Log message:
Adjust some long lines.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/13 15:41:35

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.045


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 15:49:38

Modified files:
	usr.sbin/dhcrelay: bpf.c dhcrelay.c dispatch.c 

Log message:
Eliminate pointless'%m' (a.k.a. hand rolled strerror()) by using fatal() and
log_warn(). Zap a couple of explicit 'syslog()' calls.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/13 16:04:05

Modified files:
	usr.sbin/dhcpd : bpf.c confpars.c db.c dhcp.c dhcpd.c dhcpd.h 
	                 dispatch.c icmp.c memory.c parse.c pfutils.c 
	                 sync.c 

Log message:
Eliminate pointless'%m' (a.k.a. hand rolled strerror()) by using fatal() and
log_warn(). Zap a couple of explicit 'syslog()' calls.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2017/02/13 20:50:25

Modified files:
	lib/libcrypto  : opensslv.h 

Log message:
bump to 2.5.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/13 20:51:19

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/14 01:24:10

Modified files:
	graphics/shotwell: Makefile distinfo 
	graphics/shotwell/patches: patch-Makefile_in patch-configure 
	graphics/shotwell/pkg: PLIST 

Log message:
Update to shotwell-0.25.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/14 02:37:16

Log message:
    Import libuv: A cross-platform asynchronous I/O library.
    
    Based on work by dcoppa@. OK abieber@, jca@. Thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20170214
    
    N ports/devel/libuv/Makefile
    N ports/devel/libuv/distinfo
    N ports/devel/libuv/pkg/DESCR
    N ports/devel/libuv/pkg/PLIST
    N ports/devel/libuv/patches/patch-src_unix_openbsd_c
    N ports/devel/libuv/patches/patch-configure_ac
    N ports/devel/libuv/patches/patch-src_unix_internal_h
    N ports/devel/libuv/patches/patch-test_test-fs_c
    N ports/devel/libuv/patches/patch-test_test-poll_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/14 02:38:38

Modified files:
	devel          : Makefile 

Log message:
Link devel/libuv.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/14 02:46:21

Modified files:
	sys/kern       : sys_socket.c uipc_socket.c uipc_socket2.c 
	                 uipc_syscalls.c uipc_usrreq.c 
	sys/sys        : socketvar.h systm.h 

Log message:
Wrap the NET_LOCK() into a per-socket solock() that does nothing for
unix domain sockets.

This should prevent the multiple deadlock related to unix domain sockets.

Inputs from millert@ and bluhm@, ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/14 02:46:56

Modified files:
	geo/mapserver  : Makefile 
Added files:
	geo/mapserver/patches: patch-mapwms_c 

Log message:
Fix #5387 (potential remote DOS when using fastcgi)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/14 02:47:41

Modified files:
	sys/net        : pfkeyv2.c 

Log message:
Replace two recursive splsoftnet()/splx() dances with a splsoftassert().

ok mikeb@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/14 02:51:46

Modified files:
	sys/netinet    : ip_ipsp.c 

Log message:
Get rid of recursive splsoftnet()/splx() dances and convert a timeout to
the timeout_set_proc(9) variant to take the NET_LOCK().

ok mikeb@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/14 03:31:15

Modified files:
	sys/kern       : vfs_bio.c kern_ktrace.c kern_subr.c kern_task.c 
	                 vfs_sync.c sched_bsd.c 
	sys/net        : pf_table.c 
	sys/sys        : sched.h syscall_mi.h proc.h 
	sys/uvm        : uvm_glue.c uvm_map.c uvm_pdaemon.c 

Log message:
Convert most of the manual checks for CPU hogging to sched_pause().

The distinction between preempt() and yield() stays as it is usueful
to know if a thread decided to yield by itself or if the kernel told
him to go away.

ok tedu@, guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/14 05:31:38

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/patches: patch-bootstrap_sh 
	                            patch-configure_ac 
	                            patch-main_audiohook_c 

Log message:
update to asterisk-13.14.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/14 05:50:15

Modified files:
	share/man/man1 : clang-local.1 gcc-local.1 

Log message:
tweak previous; ok jsg, who reminded me the same text in
gcc-local needed bumped too;


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/02/14 06:13:23

Modified files:
	usr.sbin/bgpctl: parser.c 

Log message:
fix a crash when parsing large community given on the command line
found by jsg@, fixed by phessler@ and strsep() by me.
fix memory leak jsg@
ok jsg@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/14 06:55:13

Modified files:
	www/logswan    : Makefile distinfo 

Log message:
Update logswan to 1.07.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 08:16:34

Added files:
	usr.sbin/smtpd : mail.lmtp.8 mail.lmtp.c 

Log message:
add new implementation of a standalone LMTP client which will deprecate the
builtin delivery_lmtp.c

ok sunil@, jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/14 08:39:14

Modified files:
	sys/arch/amd64/amd64: identcpu.c 

Log message:
Set the default TSC quality to -1000 to be less than the i8254

This makes sure that TSC is not used if we really don't want to.  The
kernel bumps the quality to 2000 for constant invariants TSCs on
latest CPUs only.

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/02/14 08:47:12

Modified files:
	sys/dev/isa    : asmc.c 

Log message:
asmc: on system resume, restore the keyboard backlight value

ok various


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 09:00:07

src/usr.sbin/smtpd/mail

Update of /cvs/src/usr.sbin/smtpd/mail
In directory cvs.openbsd.org:/tmp/cvs-serv78468/mail

Log Message:
Directory /cvs/src/usr.sbin/smtpd/mail added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 09:00:21

src/usr.sbin/smtpd/mail/mail.lmtp

Update of /cvs/src/usr.sbin/smtpd/mail/mail.lmtp
In directory cvs.openbsd.org:/tmp/cvs-serv31317/mail.lmtp

Log Message:
Directory /cvs/src/usr.sbin/smtpd/mail/mail.lmtp added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 09:02:13

Modified files:
	usr.sbin/smtpd : Makefile 
Added files:
	usr.sbin/smtpd/mail: Makefile 
	usr.sbin/smtpd/mail/mail.lmtp: Makefile 

Log message:
prepare Makefiles but don't link to the build yet


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/14 09:06:00

Log message:
    Import libidn2.
    
    Libidn2 is a complete IDNA2008 and TR46 implementation.
    
    Some details taken from the FreeBSD port.
    ok ajacoutot@ jca@
    
    Status:
    
    Vendor Tag:	naddy
    Release Tags:	naddy_20170214
    
    N ports/devel/libidn2/distinfo
    N ports/devel/libidn2/Makefile
    N ports/devel/libidn2/pkg/DESCR
    N ports/devel/libidn2/pkg/PLIST
    N ports/devel/libidn2/patches/patch-src_idn2_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/14 09:06:57

Modified files:
	devel          : Makefile 

Log message:
+libidn2


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/14 09:19:49

Modified files:
	sysutils/ggrep : Makefile distinfo 

Log message:
Update to 3.0.
Despite the significant-seeming version jump, this merely fixes some bugs.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 09:42:10

src/usr.sbin/smtpd/mail/mail.file

Update of /cvs/src/usr.sbin/smtpd/mail/mail.file
In directory cvs.openbsd.org:/tmp/cvs-serv69657/mail.file

Log Message:
Directory /cvs/src/usr.sbin/smtpd/mail/mail.file added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 09:43:28

Modified files:
	usr.sbin/smtpd/mail: Makefile 
Added files:
	usr.sbin/smtpd : mail.file.8 mail.file.c 
	usr.sbin/smtpd/mail/mail.file: Makefile 

Log message:
add standalone mda for file delivery which will later obsolete
builtin delivery_file + set of makefiles, not linked to build

ok sunil@, eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 09:47:30

src/usr.sbin/smtpd/mail/mail.maildir

Update of /cvs/src/usr.sbin/smtpd/mail/mail.maildir
In directory cvs.openbsd.org:/tmp/cvs-serv94448/mail.maildir

Log Message:
Directory /cvs/src/usr.sbin/smtpd/mail/mail.maildir added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 09:48:30

Modified files:
	usr.sbin/smtpd/mail: Makefile 
Added files:
	usr.sbin/smtpd : mail.maildir.8 mail.maildir.c 
	usr.sbin/smtpd/mail/mail.maildir: Makefile 

Log message:
add standalone maildir MDA (work in progress) which will soon obsolete the
builtin delivery_maildir backend, + makefiles, not linked to build yet

ok eric@, sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/14 10:51:14

Modified files:
	lib/libc/sys   : poll.2 

Log message:
Missing opening brace. Spotted by Hiltjo Posthuma.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/14 10:56:26

Modified files:
	sysutils/borgbackup: Makefile distinfo 
	sysutils/borgbackup/patches: patch-borg__hashindex_c 
	sysutils/borgbackup/pkg: PLIST 

Log message:
Update to borgbackup-1.0.10

From Björn Ketelaars (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/14 11:13:05

Modified files:
	usr.bin/tmux   : cmd-load-buffer.c cmd-save-buffer.c 
	                 cmd-source-file.c server-client.c tmux.h 

Log message:
Make source-file look for files relative to the client working directory
(like load-buffer and save-buffer), from Chris Pickel. Also break the
where-is-this-file code out into its own function for loadb and saveb.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/14 13:20:30

Log message:
    impotr libsigscan: library for binary signature scanning.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170214
    
    N ports/sysutils/libsigscan/Makefile
    N ports/sysutils/libsigscan/distinfo
    N ports/sysutils/libsigscan/pkg/DESCR
    N ports/sysutils/libsigscan/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/14 13:21:57

Log message:
    import libsmdev: library to access to storage media devices.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170214
    
    N ports/sysutils/libsmdev/Makefile
    N ports/sysutils/libsmdev/distinfo
    N ports/sysutils/libsmdev/pkg/DESCR
    N ports/sysutils/libsmdev/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/14 13:23:09

Log message:
    import libsmraw: library and tools to access the (split) RAW image format.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170214
    
    N ports/sysutils/libsmraw/Makefile
    N ports/sysutils/libsmraw/distinfo
    N ports/sysutils/libsmraw/pkg/DESCR
    N ports/sysutils/libsmraw/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/14 13:23:41

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libsigscan
+     SUBDIR += libsmdev
+     SUBDIR += libsmraw


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/14 13:24:45

Log message:
    import libscca, library and tools to access the Windows Prefetch File.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170214
    
    N ports/sysutils/libscca/Makefile
    N ports/sysutils/libscca/distinfo
    N ports/sysutils/libscca/pkg/DESCR
    N ports/sysutils/libscca/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/14 13:25:58

Log message:
    import libvhdi: library and tools to access the VHD image format.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170214
    
    N ports/sysutils/libvhdi/Makefile
    N ports/sysutils/libvhdi/distinfo
    N ports/sysutils/libvhdi/pkg/DESCR
    N ports/sysutils/libvhdi/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/14 13:26:44

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libscca
+     SUBDIR += libvhdi


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/14 13:30:11

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl 2017.02.14 to unbreak with youtube changes

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2017/02/14 13:36:41

Modified files:
	usr.sbin/smtpd : mail.file.8 

Log message:
fix man page, diff from jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/14 15:03:01

Modified files:
	distrib/miniroot: install.sub 

Log message:
Rename functions to match the predominantly used verb_noun naming scheme
and to improve readability.

addhostent -> add_hostent
askpass -> ask_pass
askpassword -> ask_password
makedev -> make_dev
showcols -> show_cols
startcgiinfo -> start_cgiinfo
waitcgiinfo -> wait_cgiinfo

OK krw@, tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/14 15:05:13

Modified files:
	distrib/miniroot: install.sub 

Log message:
Fix comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/14 15:23:04

Modified files:
	distrib/miniroot: install.sub 

Log message:
These variables are global so use uppercase and rename sshd and xdm
to START_SSHD and START_XDM to better match their purpose.

aperture -> APERTURE
defcons -> DEFCONS
ssh_enableroot -> SSHD_ENABLEROOT
sshd -> START_SSHD
xdm -> START_XDM

OK krw@, tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/14 15:46:53

Modified files:
	sbin/dhclient  : dhclient.c dispatch.c 

Log message:
fatalx() prepends 'fatal in _progname:'. So eliminate redundant
'; exiting' suffix used by old style logging.

Eliminate an extra log message before fatal()'ing out with a summary
message.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/14 15:54:52

Modified files:
	www/racktables : Makefile distinfo 
	www/racktables/pkg: PLIST 
Removed files:
	www/racktables/patches: patch-wwwroot_inc_code_php 

Log message:
update to RackTables-0.20.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/14 16:02:19

Modified files:
	net/ocserv     : Makefile distinfo 
	net/ocserv/patches: patch-doc_sample_config 
	                    patch-src_occtl_occtl_c 
Removed files:
	net/ocserv/patches: patch-src_Makefile_in 
	                    patch-src_ocpasswd_Makefile_in 

Log message:
update to ocserv-0.11.7, from Björn Ketelaars


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/14 16:17:36

Modified files:
	comms/fldigi   : Makefile distinfo 
Added files:
	comms/fldigi/patches: patch-configure 

Log message:
update to FLdigi-3.23.21


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/14 18:46:47

Modified files:
	usr.bin/ssh    : sftp.c 

Log message:
fix division by zero crash in "df" output when server returns zero
total filesystem blocks/inodes. Spotted by Guido Vranken; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/14 20:33:13

Modified files:
	share/man/man9 : thread_fork.9 

Log message:
Fix some grammar and correct a manpage section

prodding and ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/14 20:36:58

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Threads share filedesc, so we can walk allprocess instead of allproc

ok mpi@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/14 23:47:16

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/14 23:47:31

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.48.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/15 01:47:55

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
"status bar" -> "status line" for consistency, from Benjamin Dopplinger.


CVSROOT:	/cvs
Module name:	ports
Changes by:	zhuk@cvs.openbsd.org	2017/02/15 02:55:20

Modified files:
	x11/qt5/qtenginio: Makefile 
	x11/qt5/qtenginio/pkg: PLIST-docindex 

Log message:
Fix conflict marker that prevented installation of qt5-html meta-package.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/15 04:22:13

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Do not clear to end of screen unless the pane is at the bottom.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/15 05:31:57

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
Add a NULL test to wrterror() to avoid a NULL deref when called from a
free() error path.

ok otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/15 05:49:43

Modified files:
	devel/cargo    : Makefile cargo.port.mk distinfo 
	devel/cargo/patches: patch-tests_cargotest_support_paths_rs 
	devel/cargo/pkg: PLIST 
Added files:
	devel/cargo/patches: patch-src_cargo_core_package_id_rs 
Removed files:
	devel/cargo/patches: 
	                     patch-modcargo-crates_libc-0_2_18_src_unix_bsd_netbsdlike_openbsdlike_mod_rs 

Log message:
Update to cargo 0.16.0.

All the hard work by semarie@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/15 05:52:35

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-src_etc_rust-gdb 
	                   patch-src_librustc_session_filesearch_rs 
	                   patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_os_rs 
	                   patch-src_llvm_include_llvm_Support_Threading_h 
	                   patch-src_llvm_lib_CodeGen_TargetLoweringBase_cpp 
	lang/rust/pkg  : PLIST-doc PLIST-main 
Added files:
	lang/rust/patches: patch-src_bootstrap_native_rs 
	                   patch-src_llvm_include_llvm_ExecutionEngine_RTDyldMemoryManager_h 
	                   patch-src_llvm_lib_Transforms_InstCombine_InstCombineLoadStoreAlloca_cpp 
	lang/rust/pkg  : PFRAG.amd64-main PFRAG.i386-main 
Removed files:
	lang/rust/patches: patch-configure 
	                   patch-mk_cfg_i686-unknown-openbsd_mk 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_mod_rs 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_other_b32_mod_rs 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_other_b64_mod_rs 
	                   patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_other_mod_rs 
	                   patch-src_librustc_back_target_i686_unknown_openbsd_rs 
	                   patch-src_librustc_back_target_mod_rs 
	                   patch-src_librustc_back_target_openbsd_base_rs 
	                   patch-src_librustc_trans_cabi_x86_rs 
	                   patch-src_test_run-pass_backtrace_rs 
	                   patch-src_tools_compiletest_src_runtest_rs 
	                   patch-src_tools_tidy_src_main_rs 
	lang/rust/pkg  : PFRAG.b32-doc PFRAG.b64-doc 

Log message:
Update to rust 1.15.1.

- switch to rustbuild build system instead of configure (the world
definitely needed one more build system!)
- the build still takes +INF hours, this is being investigated

Note that rust will be a hard-requirement for gecko 54... sigh.

Tested by semarie@ and myself on i386 & amd64.

All the hard work and countless build hours by semarie@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/15 06:19:08

Modified files:
	usr.sbin/pkg_add: pkg_add.1 pkg_check.8 pkg_delete.1 pkg_sign.1 

Log message:
improve list item formatting;
from salvador sabaini


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/15 07:09:07

Modified files:
	usr.bin/mandoc : man_term.c 

Log message:
Fix previous:  I forgot that i had to change the convention how
a node is marked as "not a macro" when unifying the parsers.
Confirmed to work by Sevan Janiyan.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/15 07:14:49

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0227


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/15 07:32:21

Modified files:
	devel/p5-Test-Script: Makefile 

Log message:
Sort according to Makefile.template.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/15 07:36:22

Modified files:
	devel/p5-Test-Script: Makefile distinfo 

Log message:
update p5-Test-Script to 1.15


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/15 07:44:20

Modified files:
	sys/arch/octeon/dev: octdwctwo.c 

Log message:
Mark dwc2_intr() as MP-safe on octeon. The driver's internal state
is protected by a mutex.

OK stsp@ jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/15 07:49:13

Modified files:
	sys/dev/usb/dwc2: dwc2.h 

Log message:
Align mutex IPL with the interrupt handler's priority.

Spotted by stsp@; OK jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/15 07:56:42

Modified files:
	lib/libssl     : ssl_lib.c 

Log message:
Avoid dereferencing a pointer when reporting an error about the same
pointer being NULL.

Found by jsg@ with cppcheck; also detected by Coverity.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/15 08:14:23

Modified files:
	sys/arch/arm/include: vmparam.h 

Log message:
Bump MAXTSIZ to 64M on arm.

Needed for ports/devel/llvm which builds large executables with a .text
section over 32M.  Remove the comment about the +/-32M limitation of
branch instructions, which can be lifted using other techniques
(eg cc -mlong-calls) and should not be enforced by the kernel.

ok guenther@ patrick@ jsg@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/15 08:27:48

Modified files:
	net/lftp       : Makefile distinfo 
	net/lftp/patches: patch-configure 
Added files:
	net/lftp/patches: patch-src_Resolver_cc 

Log message:
update to lftp-4.7.5, from maintainer Rafael Sadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/15 08:58:40

Modified files:
	lib/libc/gen   : fts.c 

Log message:
Style improvement, no functional change.

As reported by Yuri Pankov, some versions of GCC whine that "tmp"
might be used uninitialized in fts_open(3).  Clearly, that cannot
actually happen, but explicitly setting it to NULL is safer anyway.
While here, rename the badly named variable "tmp" and make the
inner "if" easier to understand.

Feedback and OK guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/15 11:31:33

Modified files:
	x11/gnome/calculator: Makefile distinfo 

Log message:
update to gnome-calculator-3.22.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/15 11:33:58

Modified files:
	x11/gnome/grilo-plugins: Makefile distinfo 
	x11/gnome/grilo-plugins/pkg: PLIST 

Log message:
update to grilo-plugins-0.3.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/15 11:34:02

Modified files:
	x11/gnome/grilo: Makefile distinfo 
	x11/gnome/grilo/pkg: PLIST 

Log message:
update to grilo-0.3.3


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/15 11:53:29

Modified files:
	sys/net        : route.c 

Log message:
Replace manual loops with FOREACH macro.
OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/15 12:36:24

Modified files:
	sbin/dhclient  : dhclient.8 
	usr.sbin/dhcpd : dhcpd.8 
	usr.sbin/dhcrelay: dhcrelay.8 

Log message:
Adopt the common verbiage other log.[ch] daemons use to describe '-d'.

Point out that dhcpd(8) -f is an alias for -d.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/15 13:00:16

Modified files:
	sbin/dhclient  : dhclient.c parse.c 

Log message:
Use new log.[ch] functions in parse_warn().

Simplify the "^" placing logic and make it apply to log entries as
well as terminal output.

Since dhclient(8) can be re-exec'd for various reasons after going
daemon, make sure we don't try to log to stderr if it isn't a TTY.


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/02/15 14:18:52

Modified files:
	libexec/ld.so/m88k: rtld_machine.c 
	sys/arch/m88k/include: tcb.h 
	sys/arch/m88k/m88k: trap.c 

Log message:
Make this build (and run) with gcc 4.


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/02/15 14:22:53

Modified files:
	gnu/lib/libstdc++-v3: Makefile 
	gnu/usr.bin/cc/libobjc: Makefile 

Log message:
gcc4 on m88k still uses sjlj exceptions, as did arm before EABI.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/02/15 14:28:23

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Fix the code supposed to abort when attempting to detach a slot that's
not on the slot list (the check was a no-op). Found by jsg@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/15 14:38:09

Modified files:
	sys/arch/arm64/arm64: copy.S copystr.S 

Log message:
Implement permission checks in the copy routines.  When they were
initially copied from armv7 no parallel instructions to ldrbt and strbt
were found, so a different permission model based on the addressing was
assumed.  This was incorrect as the AArch64 provides ldtrb and sttrb to
do load/store operations with userland permissions.

From Dale Rahn.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/15 14:39:50

Modified files:
	sys/arch/arm64/arm64: copy.S copystr.S 

Log message:
whitespace fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/15 16:38:31

Modified files:
	usr.bin/ssh    : match.c 

Log message:
Fix memory leaks in match_filter_list() error paths.

ok dtucker@ markus@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/15 16:56:26

Modified files:
	faq            : faq6.html 

Log message:
no need to set the nfsd -tun 4 flags since it's the default.  zap the
following paragraph, too, since it makes no sense without the rcctl line.

brought up by daniel bolgheroni and requested by jung


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/15 17:24:43

Modified files:
	usr.sbin/dhcpd : dhcpd.c dhcpd.h parse.c 

Log message:
Bring parse_warn() into the log.[ch] 21st century and adopt the "^"
placement logic from dhclient.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/15 17:55:07

Modified files:
	faq            : faq6.html 

Log message:
rephrase slightly


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/15 19:08:42

Modified files:
	gnu/usr.bin/clang: Makefile.inc 
	lib/libcxx     : Makefile 
	lib/libcxxabi  : Makefile 

Log message:
clang is installed as cc and c++ there is no need to set CC and CXX to
clang and clang++.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/15 19:59:42

Modified files:
	usr.bin/mandoc : libmdoc.h mdoc.c mdoc_html.c mdoc_macro.c 
	                 mdoc_man.c mdoc_term.c roff.h 

Log message:
Remove the ENDBODY_NOSPACE flag, simplifying the code.

Comparing to groff output, it appears that all cases where it was used
and made a difference actually require the opposite, ENDBODY_SPACE.

I have no idea why i added it back in 2010; maybe to compensate for
some other bug that has long been fixed.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/16 01:13:24

Modified files:
	libexec/ld.so/aarch64: Makefile.inc 

Log message:
Match the recent change in the kernel and ask for a generic armv8-a
encoding rather than one based on and tuned for cortex-a57 when using
+nofp+nosimd.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/16 01:19:32

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
Update to webkitgtk4-2.14.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/16 01:41:42

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/16 01:41:56

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.49.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/16 01:49:02

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-144.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/16 02:03:15

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/16 02:30:51

Modified files:
	x11/gnome/photos: Makefile distinfo 

Log message:
Update to gnome-photos-3.22.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/16 02:35:33

Modified files:
	devel/meson    : Makefile distinfo 
	devel/meson/pkg: PLIST 

Log message:
Update to meson-0.38.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/16 02:47:10

Modified files:
	usr.bin/mandoc : mdoc_macro.c 
	regress/usr.bin/mandoc/mdoc/break: twice.in twice.out_ascii 
	                                   twice.out_lint 

Log message:
Fix block scoping error if an explicit block is broken by two
implicit blocks (.Aq Bq Po .Pc) that left the outer breaker open
and could in exceptional cases, like between .Bl and .It, cause
tree corruption leading to NULL dereference.
Found by tb@ with afl(1).

While here, do not mark intermediate ENDBODY markers as broken.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2017/02/16 03:14:51

Modified files:
	productivity/homebank: Makefile distinfo 
	productivity/homebank/pkg: PLIST 

Log message:
Update to 5.1.4

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/16 03:15:12

Modified files:
	sys/net        : if.c if_pflow.c 
	sys/netinet    : in.c 
	sys/netinet6   : in6.c 
	sys/dev/pci    : if_iwm.c if_iwn.c 

Log message:
Revert "Release the NET_LOCK() before entering per-driver ioctl() routine".

This is most likely to be the cause of the deadlock seen by port builders
since it's the only changed that happened after a2k17.

Instead bring back pirofti@ original hack to release the NET_LOCK() inside
iwm(4) and iwn(4).

This fixes some splassert reported by bluhm@

Deadlock reported by naddy@ and rpe@ and ajacoutot@ confirmed the deadlock
has been introduced post a2k17.

Tested by and ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/16 03:45:45

Modified files:
	graphics/gprof2dot: Makefile 

Log message:
remove HOMEPAGE which is already the default with GH_*


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/16 03:53:25

Modified files:
	usr.bin/tmux   : attributes.c cmd-run-shell.c cmd-set-option.c 
	                 tmux.c window-choose.c 

Log message:
Style nits.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/16 03:55:57

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Fix rev. 1.183: -O syntax is different in default apropos(1) output
mode and in other output modes, so do not error out prematurely.
Also sort local variables in main() while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/16 03:56:00

Modified files:
	net/lftp       : Makefile distinfo 
	net/lftp/patches: patch-configure patch-src_Makefile_in 
Removed files:
	net/lftp/patches: patch-src_Resolver_cc 

Log message:
Update to lftp-4.7.6 and add explicit gettext dep. From rsadowski (maintainer).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/16 04:51:47

Modified files:
	regress/usr.bin/mandoc/db/out: all.mout fn.dout padfentry.dout 
	                               padientry.dout padmentry.dout 
	                               threemacros.dout va.dout xr.dout 

Log message:
cope with macro value sorting implemented in dba.c rev. 1.6


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/16 05:18:38

Modified files:
	usr.bin/tmux   : Makefile cmd-capture-pane.c 
Removed files:
	usr.bin/tmux   : cmd-clear-history.c 

Log message:
Merge clear-history into capture-pane.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/16 05:35:39

Modified files:
	astro/ansiweather: Makefile distinfo 

Log message:
Update ansiweather to 1.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/16 05:43:08

Modified files:
	usr.bin/tmux   : grid-view.c screen-write.c 

Log message:
Handle insert cells when cursor at edge of screen correctly, and do a
full flush before insert.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/16 05:56:01

Modified files:
	usr.bin/tmux   : input.c tty.c 

Log message:
There are buggy terminals out there that do not move the cursor to 0,0
after CSR, so invalidate the cursor position rather than assuming 0,0.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/02/16 06:31:10

Modified files:
	libexec/ld.so/alpha: rtld_machine.c 

Log message:
correct format strings, ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/16 07:09:00

Modified files:
	sys/dev/usb/dwc2: dwc2.c 

Log message:
Remove an unnecessary NULL pointer check.

OK stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/16 07:24:41

Modified files:
	devel/lpeg     : Makefile distinfo 

Log message:
Update lpeg to 1.0.1.

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/16 07:27:30

Modified files:
	net/ruby-msgpack: Makefile distinfo 
	net/ruby-msgpack/pkg: PLIST 

Log message:
Maintenance update to 1.0.3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/16 07:38:07

Modified files:
	share/man/man7 : mdoc.7 
	usr.bin/mandoc : mdoc_term.c 
	regress/usr.bin/mandoc/mdoc/Bl: breakingTa.in 

Log message:
Surprisingly, groff does not support scaling units in .Bl -column
column width specifiers, so stop supporting them, too.
As a side effect, this fixes an assertion failure that tb@ found
with afl(1), triggered by: .Bl -column -4n


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/16 08:07:16

Modified files:
	devel/llvm     : Makefile 

Log message:
Use -mlong-calls on arm and powerpc to work around relocations overflow

On those architectures the .text section of the executables is too big
for the 32M immediate branch offset.  ld --relax is supposed to fix
things on powerpc, but it is actually ineffective here.  cc -mlong-calls
creates branches instructions using a full 32 bits register; FreeBSD
uses the same workaround.

A fix for lib/csu is still needed to avoid an overflow between .init
and .fini sections.  powerpc hasn't been tested, but we know that
devel/llvm is already broken there anyway.

ok Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/16 10:16:19

Modified files:
	sysutils/bacula: Makefile distinfo 
	sysutils/bacula/patches: patch-src_dird_bacula-dir_conf_in 
	                         patch-src_filed_Makefile_in 
Added files:
	sysutils/bacula/patches: patch-src_filed_backup_c 

Log message:
update to bacula-7.4.5, patched to avoid an FD segfault.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/02/16 11:02:22

Modified files:
	sys/dev/acpi   : dsdt.c 

Log message:
On Apple hardware, claim an OSI of Darwin and no other OSes

The DSDT on at MacBooks takes many different and beneficial code
paths when the OS reports to be Darwin, but due to the way it checks
OSI, we can't just add Darwin to the aml_valid_osi array since later
checks for Windows variants will supersede the Darwin check.

Fixes suspend and keeps Thunderbolt ports powered up after resume.
One regression is that the acpibat driver no longer attaches and
will require an ACPI Smart Battery driver, which is in the works.

Adapted from a similar change in the Linux kernel from 2014.

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/16 13:06:04

Log message:
    import tmate-2.2.1
    
    Instant terminal sharing based on tmux.
    
    based on work by Wesley MOUEDINE ASSABY (MAINTAINER)
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20171602
    
    N ports/sysutils/tmate/distinfo
    N ports/sysutils/tmate/Makefile
    N ports/sysutils/tmate/pkg/PLIST
    N ports/sysutils/tmate/pkg/DESCR
    N ports/sysutils/tmate/patches/patch-tmate-ssh-client_c
    N ports/sysutils/tmate/patches/patch-tmate-session_c
    N ports/sysutils/tmate/patches/patch-window-copy_c
    N ports/sysutils/tmate/patches/patch-cmd-string_c
    N ports/sysutils/tmate/patches/patch-tmate_h
    N ports/sysutils/tmate/patches/patch-tmux_h
    N ports/sysutils/tmate/patches/patch-tmate-debug_c
    N ports/sysutils/tmate/patches/patch-server_c
    N ports/sysutils/tmate/patches/patch-tmux_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/16 13:06:50

Modified files:
	sysutils       : Makefile 

Log message:
+tmate


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/16 13:59:20

Modified files:
	regress/sys/kern/execve/tests: goodaout.c 

Log message:
Fix type of argv.  Found by clang.

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2017/02/16 14:16:55

Modified files:
	net/openvpn    : Makefile 
Added files:
	net/openvpn/patches: patch-src_openvpn_syshead_h 

Log message:
Add missing header to fix this message in the log:
NOTE: setsockopt TCP_NODELAY=1 failed (No kernel support)
okay jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/16 14:17:43

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 

Log message:
update p5-IO-Socket-SSL to 2.047


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/16 14:48:52

Modified files:
	sysutils/ruby-r10k: Makefile distinfo 

Log message:
Maintenance update 2.5.1 -> 2.5.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/16 14:50:52

Modified files:
	net/nagios/check_rabbitmq: Makefile distinfo 
	net/nagios/check_rabbitmq/pkg: PLIST 

Log message:
Update to 2.0.3, get away from that git tag, to a proper released
version.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/16 17:29:22

Modified files:
	lib/libc/asr   : res_send_async.c 

Log message:
Increase UDP packet buffer to 4096 bytes from 512. There are some really
broken DNS servers out there that send packets >512 bytes w/o even the
courtesy of trying to use EDNS0.

A partial workaround as more complete packet parsing solutions are
worked on.

ok jca@ eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/16 19:04:15

Modified files:
	usr.bin/ssh    : ssh.c 

Log message:
For ProxyJump/-J, surround host name with brackets to allow
literal IPv6 addresses. From Dick Visser; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/02/16 19:31:14

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
ifdef out "rsa1" from the list of supported keytypes when compiled without
SSH1 support.  Found by kdunlop at guralp.com, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/02/16 19:32:05

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
Do not show rsa1 key type in usage when compiled without SSH1 support.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/16 20:01:39

Modified files:
	usr.bin/mandoc : roff.c 

Log message:
Fix a read buffer overrun that copied random data from memory into
text nodes when a string passed to deroff() ended in a backslash
and the byte after the terminating NUL was non-NUL, found by tb@
with afl(1).

Invalid bytes so copied with the high bit set could later sometimes
trigger another out of bounds read access to static memory in
roff_strdup(), so add an assertion there to abort safely in case
of similar data corruption.


CVSROOT:	/cvs
Module name:	src
Changes by:	feinerer@cvs.openbsd.org	2017/02/16 23:48:33

Modified files:
	sys/sys        : videoio.h 

Log message:
Avoid __u8, __u16, __u32, __u64, __s32, __s64, and __le32 and use standard
types instead. Keep whitespace formatting to ease potential future syncs with
corresponding Linux headers.

Suggested by deraadt@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/17 02:05:09

Modified files:
	x11/mplayer    : Makefile 

Log message:
Remove ONLY_FOR_ARCHS; we're building almost everywhere and CLANG_ARCHS
now exists.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/17 02:06:17

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/17 02:06:36

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.50.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/17 02:13:49

Modified files:
	x11/dbus       : Makefile distinfo 

Log message:
Update to dbus-1.10.16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/17 02:38:51

Modified files:
	x11/xfce4/xfce4-weather: Makefile distinfo 

Log message:
update to xfce4-weather 0.8.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/17 02:39:29

Modified files:
	x11/xfce4/ristretto: Makefile distinfo 

Log message:
update to ristretto 0.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/17 02:40:14

Modified files:
	x11/xfce4/thunar: Makefile distinfo 
	x11/xfce4/thunar/pkg: PLIST 

Log message:
update to thunar 1.6.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/17 02:40:42

ports/x11/xfce4/parole/patches

Update of /cvs/ports/x11/xfce4/parole/patches
In directory cvs.openbsd.org:/tmp/cvs-serv34931/patches

Log Message:
Directory /cvs/ports/x11/xfce4/parole/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/17 02:41:11

Modified files:
	x11/xfce4/parole: Makefile distinfo 
	x11/xfce4/parole/pkg: PLIST 
Added files:
	x11/xfce4/parole/patches: patch-src_parole-player_c 

Log message:
update to parole 0.9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/17 02:43:16

Modified files:
	x11/xfce4/xfce4-notifyd: Makefile distinfo 

Log message:
update to xfce4-notifyd 0.3.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/17 02:44:09

Modified files:
	x11/xfce4/xfce4-mount: Makefile distinfo 

Log message:
update to xfce4-mount 1.1.0, ported to gtk3


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/17 02:59:28

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Fix inverted PMAP_CANFAIL logic.
From Dale Rahn. ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/17 02:59:31

Modified files:
	regress/bin/chmod: Makefile 

Log message:
Add tests for chmod's interaction with symlinks: missing tests for -h and
add tests for the regression introduced in chmod.c r1.33 that transferred
the permissions from the link to the target file in some circumstances.
There are no tests for chflags since I couldn't come up with testcases
without undesirable side-effects like breaking make clean.

Four of these tests fail and will be fixed in the upcoming r1.40 to chmod.

Prompted by a bug report from Christopher Wellons


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/02/17 03:01:28

Modified files:
	lang/python    : Makefile.inc 

Log message:
remove a sparc leftover


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/17 03:13:57

Modified files:
	mail/rspamd    : Makefile distinfo 
Removed files:
	mail/rspamd/patches: patch-contrib_t1ha_t1ha_h 

Log message:
update to rspamd-1.4.4, from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/17 03:14:12

Modified files:
	bin/chmod      : chmod.c 

Log message:
In chmod's symbolic mode without -h and -R flags, a missing FTS_COMFOLLOW
flag to fts_open led to the following behavior: the symlink's permissions
were read, changed according to the command line, and transferred to the
target file.  chflags had a similar problem while chmod was unaffected.
Regression introduced in r1.33.  Reported by Christopher Wellons, thanks!

ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/17 03:46:09

Modified files:
	textproc/link-grammar: Makefile distinfo 
	textproc/link-grammar/pkg: PLIST-main 

Log message:
Update to link-grammar-5.3.15.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/02/17 04:04:32

Log message:
    Add a port for the closed firmware required to boot Raspberry Pi systems.
    
    It is loaded from a FAT16 or FAT32 filesystem on removeable media,
    the hardware does not accommodate loading it from a ROM.
    
    This includes software that runs on the VideoCore part of the Broadcom
    SoCs which boots the arm cores and continues to provide services to
    the arm cores after they have booted.
    
    Redistribution is permitted subject to the conditions outlined in
    https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom
    
    feedback from and ok sthen@ ok phessler@ on an earlier version.
    
    Status:
    
    Vendor Tag:	jsg
    Release Tags:	jsg_20170217
    
    N ports/sysutils/raspberrypi-firmware/Makefile
    N ports/sysutils/raspberrypi-firmware/distinfo
    N ports/sysutils/raspberrypi-firmware/pkg/DESCR
    N ports/sysutils/raspberrypi-firmware/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/02/17 04:08:24

Modified files:
	sysutils       : Makefile 

Log message:
+raspberrypi-firmware


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/17 04:57:16

Modified files:
	share/man/man4 : dwctwo.4 

Log message:
Mention arm64 and armv7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/17 05:37:33

Modified files:
	sysutils/tmate : Makefile 
	sysutils/tmate/patches: patch-tmate-debug_c 

Log message:
- use tmate-io GH_ACCOUNT (previous redirected to here anyway)
- drop BDEP on libtool (unneeded)
- don't pickup execinfo.h


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/17 07:49:03

Modified files:
	sys/netinet    : ip_ipcomp.c 

Log message:
Using ipcomp(4) with IPv6 transport mode failed with protocol family
not supported.  A break in the af switch statement was missing since
revision 1.1 from 2001.
OK visa@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/17 09:42:41

Modified files:
	etc/rc.d       : rc.subr 

Log message:
Stop supporting the historical way of starting ypbind(8); that is setting
'ypbind_flags=""' when domainname is set and /var/yp/binding exists.
This can lead to inconsistent behavior at startup since /var may not be
mounted yet and /etc/rc's start_daemon() will not start ypbind.

A.K.A. make ypbind startup consistent with all other OpenBSD daemons.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/17 09:46:17

Modified files:
	usr.sbin/ypbind: ypbind.8 ypbind.c 

Log message:
ypbind(8) is not started automatically at boot time by /etc/rc if domainname
is set and the directory var/yp/binding exists.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/17 10:16:04

Modified files:
	sys/arch/arm64/arm64: db_interface.c db_trace.c 

Log message:
Implement DDB backtrace support.  In addition to the actual tracing,
clean up a few address types from int to vaddr_t, implement 8 byte
reads and remove the unused db_fetch_reg() function.

From Dale Rahn


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/17 10:43:04

Modified files:
	regress/usr.bin/mandoc/man/IP: literal.in literal.out_ascii 

Log message:
more tests for .IP/.nf interaction that i forgot to commit


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/17 10:51:02

Modified files:
	sys/arch/arm64/arm64: bus_dma.c 

Log message:
Remove a bunch of dead code in bus dma.  This code still needs actual
cache flushing implemented, but apparently we have not yet encountered
a hardware or controller where this was necessary.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/17 11:26:16

Modified files:
	usr.bin/mandoc : chars.c 
	regress/usr.bin/mandoc/mdoc/Dq: empty.out_ascii 
	regress/usr.bin/mandoc/mdoc/Lb: badargs.out_ascii 
	                                break.out_ascii eos.out_ascii 
	regress/usr.bin/mandoc/mdoc/Op: broken.out_ascii 
	regress/usr.bin/mandoc/mdoc/St: badargs.out_ascii call.out_ascii 
	regress/usr.bin/mandoc/roff/cond: before-Dd.out_ascii 
	regress/usr.bin/mandoc/roff/de: escname.out_ascii 
	regress/usr.bin/mandoc/roff/esc: c.out_ascii 

Log message:
Many people have been complaining for a long time that ``...'' looks
ugly in -Tascii output.  For that reason, bentley@ submitted patches
to render "..." instead to groff in November 2014 (yes, more than
two years ago).  Carsten Kunze yesterday merged them for the upcoming
groff-1.22.4 release.  Yay!

Consequently, do the same in mandoc: Render \(Lq and \(Rq (which
are used for .Do, .Dq, .Lb, and .St) as '"' in -Tascii output.
All other output modes including -Tutf8 remain unchanged.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/17 11:53:32

Modified files:
	usr.sbin/unbound: Makefile.in aclocal.m4 acx_python.m4 
	                  config.h.in configure configure.ac 
	usr.sbin/unbound/cachedb: cachedb.c 
	usr.sbin/unbound/daemon: acl_list.c acl_list.h cachedump.c 
	                         daemon.c daemon.h remote.c remote.h 
	                         stats.c stats.h unbound.c worker.c 
	                         worker.h 
	usr.sbin/unbound/dns64: dns64.c 
	usr.sbin/unbound/dnstap: dnstap.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/iterator: iter_delegpt.c iter_delegpt.h 
	                           iter_donotq.h iter_fwd.c iter_fwd.h 
	                           iter_hints.c iter_hints.h iter_priv.h 
	                           iter_scrub.c iter_utils.c iterator.c 
	                           iterator.h 
	usr.sbin/unbound/libunbound: context.c context.h libunbound.c 
	                             libworker.c libworker.h 
	                             unbound-event.h unbound.h worker.h 
	usr.sbin/unbound/services: listen_dnsport.c listen_dnsport.h 
	                           localzone.c localzone.h mesh.c mesh.h 
	                           outside_network.c outside_network.h 
	usr.sbin/unbound/services/cache: dns.c dns.h infra.c infra.h 
	                                 rrset.c rrset.h 
	usr.sbin/unbound/sldns: keyraw.c rrdef.h str2wire.c wire2str.c 
	                        wire2str.h 
	usr.sbin/unbound/smallapp: unbound-anchor.c unbound-checkconf.c 
	                           unbound-control.c unbound-host.c 
	                           worker_cb.c 
	usr.sbin/unbound/util: alloc.c alloc.h config_file.c 
	                       config_file.h configlexer.lex 
	                       configparser.y fptr_wlist.c fptr_wlist.h 
	                       iana_ports.inc locks.c locks.h log.c 
	                       mini_event.c mini_event.h module.c 
	                       module.h net_help.c netevent.c netevent.h 
	                       rbtree.c rbtree.h tube.c tube.h 
	                       ub_event.c ub_event.h 
	                       ub_event_pluggable.c winsock_event.c 
	                       winsock_event.h 
	usr.sbin/unbound/util/data: dname.c dname.h msgencode.c 
	                            msgparse.c msgparse.h msgreply.c 
	                            msgreply.h packed_rrset.c 
	                            packed_rrset.h 
	usr.sbin/unbound/util/storage: dnstree.c dnstree.h lookup3.c 
	                               lruhash.c lruhash.h slabhash.c 
	                               slabhash.h 
	usr.sbin/unbound/validator: autotrust.c autotrust.h val_anchor.c 
	                            val_anchor.h val_neg.c val_neg.h 
	                            val_nsec.c val_nsec3.c val_nsec3.h 
	                            val_secalgo.c val_sigcrypt.c 
	                            val_sigcrypt.h val_utils.c 
	                            validator.c validator.h 
Added files:
	usr.sbin/unbound: systemd.m4 
	usr.sbin/unbound/services: view.c view.h 

Log message:
Update to unbound-1.6.1rc3 - thanks millert@ and Brad for tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/17 12:06:27

Modified files:
	sysutils/mcollective: Makefile distinfo 

Log message:
maintenance update to 2.10.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/17 12:07:46

Modified files:
	sysutils/mcollective-plugins/package-agent: Makefile distinfo 
	sysutils/mcollective-plugins/package-agent/pkg: PLIST 

Log message:
maintenance update to 4.5.0


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/17 12:14:39

Modified files:
	usr.bin/mandoc : mdoc_man.c mdoc_term.c 
	regress/usr.bin/mandoc/mdoc/Rs: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Rs: allch.out_utf8 break.out_utf8 
	                                empty.out_utf8 
	                                three_authors.out_utf8 

Log message:
Use typographic quotes rather than '"' for .Rs %T (no change for -Tascii
output, of course).  Patch from bentley@ in November 2014.  This can be
committed now because groff merged Anthony's patch yesterday.

Simply committing myself because asking Anthony to go search for
his two-year-old patch and have him discover that it had accumulated
an average of (felt) two or three conflicts per line by now would
have been mean, even if hilarious.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/17 12:14:58

Modified files:
	sys/arch/arm64/arm64: locore.S pmap.c 
	sys/arch/arm64/include: pte.h 

Log message:
Use a proper memory attribute for write-through instead of reusing
the nocache attribute.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/17 12:16:40

Modified files:
	sysutils/mcollective-plugins/puppet-agent: Makefile distinfo 
	sysutils/mcollective-plugins/puppet-agent/pkg: PLIST 

Log message:
maintenance update to 1.12.0


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/17 12:20:22

Modified files:
	sys/arch/arm64/arm64: machdep.c pmap.c 
	sys/arch/arm64/dev: arm64_bus_space.c 

Log message:
Fix up and use the device memory attribute for device mappings.  Add
inner shareable attributes while there.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/02/17 13:04:45

Modified files:
	usr.sbin/nsd   : axfr.c configparser.y configure.ac dbaccess.c 
	                 dbcreate.c difffile.c difffile.h ipc.c 
	                 mini_event.c mini_event.h namedb.c namedb.h 
	                 nsd-checkconf.c nsd-checkzone.c nsd-control.c 
	                 nsd-mem.c nsd.c nsd.h nsec3.c options.c 
	                 options.h query.c radtree.c radtree.h rbtree.c 
	                 rbtree.h remote.c server.c tsig.c udbradtree.c 
	                 udbradtree.h udbzone.h util.c xfrd-disk.c 
	                 xfrd-notify.c xfrd-notify.h xfrd-tcp.c 
	                 xfrd-tcp.h xfrd.c xfrd.h 

Log message:
Update to 4.1.15.
This contains a local patch to query.c (missed _t conversion) that has
been submitted upstream.
OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/02/17 13:05:06

Modified files:
	usr.sbin/nsd   : configure 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/17 15:08:41

Modified files:
	net/nagios/check_rabbitmq: Makefile 

Log message:
Make update alone is not enought to test, now use EPOCH
to allow proper build of package, as pointed out by nigel@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/02/17 15:24:45

Modified files:
	lib/libc/asr   : asr_debug.c asr_private.h asr_utils.c 

Log message:
use common errnos instead of random strings as error indicators in
pack/unpack contexts.

ok krw@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/17 16:17:43

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
cleanup checksum/makesum

- fix DISTFILES/CHECKSUMFILES
- simplify list-distinfo
- zap IGNORE lines in distinfo (can't generate, not used)
- internal _MAKESUM=true/false -> simplify actual size check in
fetching makefiles
- NO_CHECKSUM applies only to checksum, not makesum, ever.

okay aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/17 17:19:33

Modified files:
	sys/arch/arm64/dev: agtimer.c mainbus.c 

Log message:
Initialize the generic timer early so that its delay function can be
used early, similar to the armv7 implementation.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/17 17:34:14

Modified files:
	sys/arch/arm64/dev: agtimer.c 

Log message:
Bump variables related to arithmetic operations to 64-bit.  Especially
the bump of usec and csec is of concern since a timer frequency of around
187MHz overflows in a 32-bit only calculation, as seen on the AMD Seattle
SoC.  Since we are running a 64-bit architecture, doing 64-bit arithmetic
operations doesn't hurt us as much as on the 32-bit ARMv7 port.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/17 17:45:23

Modified files:
	gnu/usr.bin/perl: Makefile.bsd-wrapper1 

Log message:
Correct list of perl manpages to be installed

Many thanks to schwarze@ for feedback and OK


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/02/17 17:45:54

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync perl manpages


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/17 17:47:18

Modified files:
	sys/arch/arm64/dev: agtimer.c 

Log message:
Make sure that the timer control registers are written before any
further code is executed.  Additionally, make sure the counter is
read only after all previous code has executed.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/17 18:58:27

Modified files:
	faq            : faq14.html 

Log message:
add the magic fdisk incantation for gpt/uefi.
based on a diff from jason tubnor, verified by yasuoka.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/17 19:01:53

Modified files:
	distrib/arm64/miniroot: Makefile 
	distrib/arm64/ramdisk: Makefile install.md list 

Log message:
Add miniroot and ramdisk hooks for the Raspberry Pi 3.

Unlike the TI boot ROM the Broadcom one doesn't understand FAT12, only
FAT16 or FAT32.

The u-boot-aarch64 and raspberrypi-firmware packages are now required to
run make release on arm64.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/17 23:09:01

Modified files:
	sys/sys        : exec_elf.h 

Log message:
Include sys/types.h rather than machine/_types.h.  With this change
link.h can be included without first including sys/types.h matching the
behaviour on other systems.

Suggested by and ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/17 23:42:08

Modified files:
	sys/sys        : exec_elf.h 

Log message:
Add Elf{32,64}_Nhdr structs with the same member names used by libelf
and glibc.  As noted by guenther@ this is the same layout as our
Elf{32,64}_Note structs and the handful of uses we have in the tree may
switch From _Note to _Nhdr in future.

Prompted by the development version of Mesa using the Nhdr type.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/18 01:35:17

Modified files:
	textproc/extract_url: Makefile distinfo 

Log message:
Update to extract_url 1.6.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 02:45:51

Modified files:
	net/samba      : Tag: OPENBSD_6_0 Makefile 
	net/samba/pkg  : Tag: OPENBSD_6_0 PLIST-main 

Log message:
Fix samba-tool domain --use-ntvfs

It is not clear whether s3fs is a valid alternative to ntvfs, so keep
providing ntvfs support for people who run an AD DC (AD support is
supposed to require s3fs).  The same fix was committed to -current some
time ago.  Prodded by Alex McWhirter and Ian McWilliam.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 03:16:34

Modified files:
	audio/cmus/patches: patch-sndio_c 

Log message:
Fix 24 bits support.

from Donovan Watteau (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 03:17:35

Modified files:
	audio/cmus     : Makefile 

Log message:
New HOMEPAGE.

from Donovan Watteau (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 03:19:10

Modified files:
	audio/cmus     : Makefile 
Added files:
	audio/cmus/patches: patch-configure 

Log message:
The ffmpeg plugin has a dep on libavcodec, register it.

from Donovan Watteau (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 03:57:43

Modified files:
	textproc/link-grammar: Makefile 

Log message:
Mirror distfile. MASTER_SITES has a bad ssl setup.

prodded by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 04:01:38

Modified files:
	sysutils/udfclient: Makefile distinfo 

Log message:
Update to UDFclient-0.8.7

> Minor release fixing newfs_udf bug that would not
> detect an overflow on the number of sectors. It now
> allows for discs bigger than 2tb.

from Josh Grosse (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 04:02:59

Removed files:
	www/tor-browser/browser/patches: 
	                                 patch-js_src_jit_ExecutableAllocator_cpp 
	www/tor-browser/torbutton/patches: 
	                                   patch-src_defaults_preferences_preferences_js 

Log message:
Remove empty files

Spotted by Rafael Sadowski.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 04:20:08

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 04:27:13

Modified files:
	textproc/link-grammar: Makefile 

Log message:
Revert, they seem to have fix it...


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 05:04:57

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.13.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 05:10:50

Modified files:
	sysutils/u-boot: Makefile 

Log message:
BROKEN on sparc64


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/18 06:15:48

Modified files:
	lang/rust      : Makefile 
	lang/rust/patches: patch-src_bootstrap_native_rs 
Added files:
	lang/rust/patches: patch-src_bootstrap_lib_rs 

Log message:
Divide build time by at least three and various fixes, all from semarie@

- stop pruning optimizations coming from the environment (ie OpenBSD's
default -O2 -pipe) when building llvm - this resulted in a very slow
llvm, and in a veeery slow rust build, and an awfully slow rust
compiler. Yay. See https://github.com/rust-lang/rust/issues/39900
- only add cmake to BDEP when rustc is compiled with bundled llvm
- propagate verbose cmake flag to bundled llvm build

tested on i386 and amd64


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/18 06:29:45

Modified files:
	www/py-beautifulsoup4: Makefile distinfo 

Log message:
Update to py-beautifulsoup4 4.5.3

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/18 06:37:44

Modified files:
	devel/py-jupyter_core: Makefile distinfo 

Log message:
Update to py-jupyter_core 4.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 06:40:25

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 06:40:43

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.51.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/18 06:43:34

Modified files:
	usr.bin/mandoc : libmandoc.h preconv.c 

Log message:
preconv_encode() can take a const input buffer;
diff from <christos at NetBSD>


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/18 07:06:20

Modified files:
	multimedia/libvpx/patches: patch-libs_mk 

Log message:
Remove -Wno-unknown-warning-option -Wno-clobbered when building
vp8/encoder/onyx_if.c and vp8/decoder/onyxd_if.c, those options only
exist in clang or recent gccs (?) - unbreaks the build on at least
macppc and loongson, maybe sparc64.

From Donovan Watteau, who tested this on loongson. Tested by myself on
macppc.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/18 07:14:19

Modified files:
	sys/arch/arm64/arm64: bus_dma.c 

Log message:
Extend and fix bus_dmamap_load_raw() implementation to make xhci(4)
work.  Copied from the 32-bit ARM version, with a few minor changes
for arm64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/18 07:17:02

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.3.4


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/18 07:29:23

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
tighter introduction


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/18 07:36:24

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
bye bye addsum, use SUPDISTFILES correctly
also, NO_CHECKSUM is very specific and limited now


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/18 07:54:31

Modified files:
	x11/xfce4/xfce4-taskmanager: Makefile distinfo 
	x11/xfce4/xfce4-taskmanager/pkg: PLIST 

Log message:
Update to xfce4-taskmanager 1.2.0.

Dont default to Gtk3 yet, there's a SIGBUS upon exit i'm investigating.
Shuffle WANTLIB around in preparation for it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/18 08:00:02

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
more simplification, there is no reason for having several crypto ciphers
in the ports tree at any one time.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/18 08:05:56

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
bye bye PREFERRED_CIPHERS


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/18 08:13:00

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
shorten description


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/18 08:15:08

Modified files:
	infrastructure/mk: bsd.port.mk pkgpath.mk 

Log message:
list-distinfo never got used so kill it


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/18 09:18:48

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
As it's done for nss/sqlite/libevent, provide a way to build against
bundled nspr if MOZILLA_USE_BUNDLED_NSPR is set - no binary change for
ports using this module. Paves the way for some -stable work.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/18 09:22:54

Modified files:
	www/mozilla    : mozilla.port.mk 
	www/tor-browser/browser: Makefile 
	www/seamonkey  : Makefile 
	www/firefox-esr: Makefile 
	www/mozilla-firefox: Makefile 
	mail/mozilla-thunderbird: Makefile 

Log message:
Consolidate textproc/icu4c common dependency into mozilla.port.mk, and
allow to build against bundled icu4c by setting MOZILLA_USE_BUNDLED_ICU.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/18 09:24:03

Modified files:
	devel/xulrunner/24: Makefile 

Log message:
This outdated copy of gecko doesnt bundle nor need icu4c, cheat by
setting MOZILLA_USE_BUNDLED_ICU to Yes so that it doesnt uselessly
depend on it.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 09:48:37

Modified files:
	driver/xf86-video-i740: ChangeLog Makefile.in aclocal.m4 
	                        configure configure.ac 
	driver/xf86-video-i740/src: compat-api.h 
Added files:
	driver/xf86-video-i740: compile 

Log message:
Update to xf86-video-i740 1.3.6


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 10:02:50

Modified files:
	driver/xf86-video-chips: ChangeLog configure configure.ac 
	driver/xf86-video-chips/src: compat-api.h 
Added files:
	driver/xf86-video-chips/util: iopl.h 

Log message:
Update to xf86-video-chips 1.2.7


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 10:12:34

Modified files:
	driver/xf86-video-glint: ChangeLog Makefile.in configure 
	                         configure.ac 
	driver/xf86-video-glint/src: compat-api.h glint_driver.c 
	                             pm2_dac.c 
Added files:
	driver/xf86-video-glint: compile 

Log message:
Update to xf86-video-glint 1.2.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/18 10:21:51

Modified files:
	www/tinyproxy  : Makefile distinfo 
	www/tinyproxy/patches: patch-configure 
	                       patch-etc_tinyproxy_conf_in 
Removed files:
	www/tinyproxy/patches: patch-src_child_c patch-src_hashmap_c 
	                       patch-src_reqs_c 

Log message:
Update to tinyproxy-1.8.4

Includes the patches we have for CVE-2012-3505, and adds support for
listening on multiple addresses (0.0.0.0 and :: by default).

maintainer timeout


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 10:22:07

Modified files:
	driver/xf86-video-mga: ChangeLog compile config.h.in configure 
	                       configure.ac 
	driver/xf86-video-mga/src: compat-api.h mga.h mga_dac3026.c 
	                           mga_dacG.c mga_driver.c mga_exa.c 
	                           mga_merge.c mga_storm.c 

Log message:
Update to xf86-video-mga 1.6.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 10:31:59

Modified files:
	security/gnutls: Makefile 

Log message:
Move to libidn2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 10:32:38

Modified files:
	audio/ario     : Makefile 
	databases/evolution-data-server: Makefile 
	databases/freetds: Makefile 
	databases/libdbi-drivers: Makefile 
	devel/gwenhywfar: Makefile 
	devel/libvirt-glib: Makefile 
	devel/libvmime : Makefile 
	devel/vte3     : Makefile 
	graphics/gimp/stable: Makefile 
	graphics/shotwell: Makefile 
	mail/claws-mail: Makefile 
	mail/evolution-ews: Makefile 
	mail/evolution-rss: Makefile 
	mail/zarafa/zarafa: Makefile 
	net/glib2-networking: Makefile 
	net/libepc     : Makefile 
	net/libvncserver: Makefile 
	net/monitoring-plugins: Makefile 
	net/openconnect: Makefile 
	net/radcli     : Makefile 
	net/telepathy/telepathy-gabble: Makefile 
	net/telepathy/telepathy-salut: Makefile 
	print/cups-filters: Makefile 
	print/gtklp    : Makefile 
	print/gutenprint: Makefile 
	print/hplip    : Makefile 
	print/libspectre: Makefile 
	productivity/aqbanking: Makefile 
	security/xmlsec: Makefile 
	sysutils/collectd: Makefile 
	sysutils/librelp: Makefile 
	sysutils/libvirt: Makefile 
	sysutils/riemann-c-client: Makefile 
	sysutils/rsyslog: Makefile 
	textproc/iksemel: Makefile 
	www/epiphany   : Makefile 
	www/liferea    : Makefile 
	www/squid      : Makefile 
	x11/gnome/anjuta: Makefile 
	x11/gnome/builder: Makefile 
	x11/gnome/color-manager: Makefile 
	x11/gnome/devhelp: Makefile 
	x11/gnome/documents: Makefile 
	x11/gnome/empathy: Makefile 
	x11/gnome/gvfs : Makefile 
	x11/gnome/initial-setup: Makefile 
	x11/gnome/libgepub: Makefile 
	x11/gnome/online-accounts: Makefile 
	x11/gnome/settings-daemon: Makefile 
	x11/gnome/terminal: Makefile 
	x11/gnome/yelp : Makefile 
	x11/gtk+2      : Makefile 
	x11/gtk+3      : Makefile 
	x11/gtk-vnc    : Makefile 
	x11/kde/base3  : Makefile 
	x11/virt-viewer: Makefile 
	x11/xfce4/terminal: Makefile 
	x11/xfce4/xfce4-mailwatch: Makefile 
	net/filezilla  : Makefile 
	x11/vlc        : Makefile 

Log message:
idn -> idn2 after gnutls WANTLIB change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 10:33:52

Modified files:
	audio/ario     : Makefile 
	databases/evolution-data-server: Makefile 
	databases/freetds: Makefile 
	databases/libdbi-drivers: Makefile 
	devel/gwenhywfar: Makefile 
	devel/libvirt-glib: Makefile 
	devel/libvmime : Makefile 
	devel/vte3     : Makefile 
	graphics/gimp/stable: Makefile 
	graphics/shotwell: Makefile 
	mail/claws-mail: Makefile 
	mail/evolution-ews: Makefile 
	mail/evolution-rss: Makefile 
	mail/zarafa/zarafa: Makefile 
	net/glib2-networking: Makefile 
	net/libepc     : Makefile 
	net/libvncserver: Makefile 
	net/monitoring-plugins: Makefile 
	net/openconnect: Makefile 
	net/radcli     : Makefile 
	net/telepathy/telepathy-gabble: Makefile 
	net/telepathy/telepathy-salut: Makefile 
	print/cups-filters: Makefile 
	print/gtklp    : Makefile 
	print/gutenprint: Makefile 
	print/hplip    : Makefile 
	print/libspectre: Makefile 
	productivity/aqbanking: Makefile 
	security/xmlsec: Makefile 
	sysutils/collectd: Makefile 
	sysutils/librelp: Makefile 
	sysutils/libvirt: Makefile 
	sysutils/riemann-c-client: Makefile 
	sysutils/rsyslog: Makefile 
	textproc/iksemel: Makefile 
	www/epiphany   : Makefile 
	www/liferea    : Makefile 
	www/squid      : Makefile 
	x11/gnome/anjuta: Makefile 
	x11/gnome/builder: Makefile 
	x11/gnome/color-manager: Makefile 
	x11/gnome/devhelp: Makefile 
	x11/gnome/documents: Makefile 
	x11/gnome/empathy: Makefile 
	x11/gnome/gvfs : Makefile 
	x11/gnome/initial-setup: Makefile 
	x11/gnome/libgepub: Makefile 
	x11/gnome/online-accounts: Makefile 
	x11/gnome/settings-daemon: Makefile 
	x11/gnome/terminal: Makefile 
	x11/gnome/yelp : Makefile 
	x11/gtk+2      : Makefile 
	x11/gtk+3      : Makefile 
	x11/gtk-vnc    : Makefile 
	x11/kde/base3  : Makefile 
	x11/virt-viewer: Makefile 
	x11/xfce4/terminal: Makefile 
	x11/xfce4/xfce4-mailwatch: Makefile 

Log message:
Missed bump.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 10:57:59

Modified files:
	driver/xf86-video-nv: ChangeLog Makefile.in configure 
	                      configure.ac 
	driver/xf86-video-nv/src: compat-api.h nv_driver.c nv_include.h 
	                          nv_setup.c 
Added files:
	driver/xf86-video-nv: compile 

Log message:
Update to xf86-video-nv 2.1.21


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 11:05:37

Modified files:
	driver/xf86-video-savage: ChangeLog compile configure 
	                          configure.ac 
	driver/xf86-video-savage/src: compat-api.h savage_driver.c 

Log message:
Update to xf86-video-savage 2.3.9


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 11:08:53

Modified files:
	driver/xf86-video-siliconmotion: ChangeLog compile configure 
	                                 configure.ac 
	driver/xf86-video-siliconmotion/src: compat-api.h smi.h 
	                                     smi_driver.c smi_exa.c 
	                                     smi_xaa.c 

Log message:
Update to xf86-video-siliconmotion 1.7.9


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 11:20:31

Modified files:
	driver/xf86-video-sis: ChangeLog Makefile.in README configure 
	                       configure.ac 
	driver/xf86-video-sis/src: compat-api.h sis_driver.c 
Added files:
	driver/xf86-video-sis: compile 

Log message:
Update to xf86-video-sis 0.10.9


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 11:23:56

Modified files:
	driver/xf86-video-tdfx: ChangeLog Makefile.in configure 
	                        configure.ac 
	driver/xf86-video-tdfx/src: compat-api.h 
Added files:
	driver/xf86-video-tdfx: compile 

Log message:
Update to xf86-video-tdfx 1.4.7


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 11:26:15

Modified files:
	driver/xf86-video-trident: ChangeLog compile configure 
	                           configure.ac 
	driver/xf86-video-trident/src: compat-api.h 

Log message:
Update to xf86-video-trident 1.3.8


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/18 11:27:12

Modified files:
	regress/bin/chmod: Makefile 

Log message:
Add a regress test for the chflags problem analogous to the chmod bug
found by Christopher Wellons (see chmod.c r1.41).


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/18 11:29:55

Modified files:
	driver/xf86-video-r128/src: compat-api.h 

Log message:
Adapt Block/WakeupHandler signature for ABI 23


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/02/18 11:35:41

Modified files:
	net/ruby-msgpack: Makefile 
	net/ruby-msgpack/pkg: PLIST 

Log message:
Unbreak for ruby 2.4
pointed out by naddy@, rpe@, nigel@
feedback from jeremy@, suggesting a much larger cleanup than I first intended


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/18 12:23:05

Modified files:
	share/man/man5 : resolv.conf.5 
	lib/libc/net   : resolver.3 
	lib/libc/asr   : asr.c asr_private.h asr_run.3 asr_utils.c 
	                 res_mkquery.c res_send_async.c 

Log message:
Add EDNS0 support.

EDNS allows for various DNS extensions, among which UDP DNS packets size
bigger than 512 bytes.  The default is still to not advertize anything.

ok eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/18 13:29:38

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
Add NULL tests to wrterror() to avoid a NULL deref when called from
malloc initialization or a free() error path.

Prompted by libc's malloc.c rev 1.214; with correction from jsg@ and otto@
ok jsg@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/02/18 15:25:13

Modified files:
	lib/libc/asr   : res_send_async.c 

Log message:
Use more specific error codes for invalid packets.
In particular, truncated packets without the TC flag set (non-compliant
server sending too large packets) now fail with EOVERFLOW instead of EINVAL,
so the TCP fallback mechanism can work.

feedback and ok krw@ jca@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/18 15:32:25

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Somewhat fix DEBUG flavor (enable-debug-symbols expects debug flags,
not a yes/no flag)
From semarie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/18 15:56:12

Modified files:
	multimedia/x265: Makefile distinfo 

Log message:
Update to x265-2.3.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/18 17:10:57

Modified files:
	usr.bin/ssh    : utf8.c 

Log message:
Add a common nl_langinfo(CODESET) alias for US-ASCII "ANSI_X3.4-1968"
that is used by Linux. Fixes mprintf output truncation for non-UTF-8
locales on Linux spotted by dtucker@; ok deraadt@ schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/18 17:11:29

Modified files:
	regress/usr.bin/ssh/unittests/utf8: tests.c 

Log message:
add test cases for C locale; ok schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/18 17:46:57

Modified files:
	bin/cat        : Makefile 

Log message:
More whitespace, helps reading

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/02/18 23:16:25

Modified files:
	emulators/mupen64plus: Makefile.inc 
	emulators/mupen64plus/video-glide64mk2: Makefile 
Added files:
	emulators/mupen64plus/video-glide64mk2/patches: 
	                                                patch-projects_unix_Makefile 

Log message:
Build mupen64plus on PowerPC.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/19 00:55:11

Modified files:
	usr.bin/tmux   : input.c 

Log message:
Add SGR 28 to clear hidden flag.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/19 01:35:13

Modified files:
	sys/arch/mips64/mips64: ipifuncs.c 

Log message:
Add IPI counter.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/19 01:44:23

Modified files:
	sysutils/ioping: Makefile distinfo 

Log message:
Update to ioping 1.0


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/19 01:59:41

Modified files:
	sys/arch/loongson/include: autoconf.h intr.h 
	sys/arch/loongson/loongson: generic3a_machdep.c 

Log message:
Add SMP config and IPI control logic for Loongson 3A.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/19 02:14:31

Modified files:
	sysutils/consul: Makefile distinfo 

Log message:
Update to consul-0.7.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/19 02:53:37

Modified files:
	sys/arch/loongson/loongson: loongson3_intr.c 

Log message:
Skip IO interrupt mask update on secondary CPUs when restoring IPL.
The mask is node-wide, and only the primary CPU handles IO interrupts.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/19 03:07:21

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
trailing space


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/19 03:18:41

Modified files:
	sys/arch/loongson/dev: com_leioc.c 

Log message:
Suppress messages about spurious UART interrupts on MP systems.
A similar workaround was added in r1.8 of cn30xxuart.c because
of the same root cause.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/19 03:55:35

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
more removing / simplifying of fetch stuff


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/02/19 04:38:24

Modified files:
	usr.sbin/bgpd  : bgpd.8 

Log message:
draft-ietf-idr-large-community has been published as RFC 8092


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/19 04:56:53

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: elf64-aarch64.c 

Log message:
elf64-aarc64 -> elf64-aarch64 in TARGET_LITTLE_NAME
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/19 05:02:30

Modified files:
	lib/libc/asr   : asr_utils.c 

Log message:
Use T_OPT instead of literal "41".

Requested earlier by eric@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/19 05:42:45

Modified files:
	gnu/usr.bin/binutils-2.17/binutils: readelf.c 

Log message:
Add an ELF machine number to string mapping for AArch64.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/19 06:15:19

Modified files:
	usr.bin/file/magdir: elf 

Log message:
Recognise AArch64 binaries and core dumps.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/19 07:07:26

Modified files:
	lang/go        : go.port.mk 

Log message:
Export PATH so that things using cgo don't die with, for e.g.
exec "cc" not found in path

s/PATH/PORTPATH/ from sthen@
ok jsing@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/19 07:07:47

Modified files:
	sysutils/consul: Makefile 

Log message:
No need for MODGO_ENV anymore.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/19 07:23:28

Modified files:
	sysutils/tmate : Makefile 

Log message:
missing bump after implicit HOMEPAGE change


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/02/19 07:34:44

Modified files:
	archivers/zstd : Makefile distinfo 
	archivers/zstd/patches: patch-tests_playTests_sh 

Log message:
Update to zstd 1.1.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/19 07:43:49

Modified files:
	net/telepathy/folks: Makefile 
	x11/gnome/control-center: Makefile 
	graphics/evince: Makefile 
	x11/gnome/bijiben: Makefile 
	x11/gnome/todo : Makefile 
	devel/goffice  : Makefile 
	productivity/glabels: Makefile 
	x11/gnome/calendar: Makefile 
	x11/kde/base3  : Makefile 

Log message:
First shot at fixing the idn -> idn2 failure after gnutls dependency change.
List provided by naddy@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/19 07:57:35

Modified files:
	x11/xfce4/xfce4-dict: Makefile distinfo 

Log message:
Update to xfce4-dict 0.7.99 (ported to Gtk3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/19 08:43:33

Modified files:
	emulators/advancemame: Makefile distinfo 

Log message:
Update advancemame to 3.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/19 08:47:15

Modified files:
	emulators/advancemess: Makefile distinfo 

Log message:
Update advancemess to 3.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/19 09:11:52

Modified files:
	archivers/snappy: Makefile distinfo 

Log message:
Update snappy to 1.1.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/19 09:12:28

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
more old mirror targets


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/19 10:30:58

Modified files:
	app/xauth      : ChangeLog Makefile.am Makefile.in README 
	                 configure configure.ac gethost.c parsedpy.c 
	                 process.c test-driver xauth.c 
Added files:
	app/xauth      : compile 

Log message:
Update to xauth 1.0.10


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/19 10:32:45

Modified files:
	app/xconsole   : ChangeLog compile configure.ac 

Log message:
Update to xconsole 1.0.7


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/19 10:38:12

Modified files:
	app/xconsole   : config.h.in configure 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/19 10:41:29

Modified files:
	lib/libXi      : ChangeLog configure configure.ac 
	lib/libXi/src  : XIQueryDevice.c 

Log message:
Update to libXi 1.7.9


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/19 10:45:40

Modified files:
	proto/presentproto: ChangeLog configure.ac presentproto.h 
	                    presentproto.txt presenttokens.h 
Added files:
	proto/presentproto: COPYING README compile 

Log message:
Update to presentproto 1.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/19 10:46:19

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/19 10:53:58

Modified files:
	distrib/miniroot: install.sub 

Log message:
Remove an unfortunate significant trailing whitespace that ended up passing
a bogus argument to ftp(1), disabling redirection and running ftp(1) in the
background.

ok rpe


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/19 11:19:48

Modified files:
	dist/xkeyboard-config/rules: base.m_s.part 

Log message:
Restore local change to handle Ctrl+Alt+Backspace to kill X by default.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/19 11:49:01

Modified files:
	graphics/luvcview: Makefile 

Log message:
Use standard type u_int32_t instead of __u32.

Build error after sys/videoio.h update reported by naddy@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:02:43

Log message:
    Import py-mpmath 0.19, ok daniel@, danj@
    
    mpmath is a free Python library for real and complex floating-point
    arithmetic with arbitrary precision.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170219
    
    N ports/math/py-mpmath/Makefile
    N ports/math/py-mpmath/distinfo
    N ports/math/py-mpmath/pkg/DESCR
    N ports/math/py-mpmath/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/19 12:04:16

Modified files:
	devel/ptlib    : Makefile 

Log message:
Use standard type u_int32_t instead of __u32.

Build error after sys/videoio.h update reported by naddy@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:05:18

Modified files:
	math           : Makefile 

Log message:
+py-mpmath
+py-mpmath,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:11:58

Log message:
    Import py-cairocffi 0.8.0, ok daniel@, danj@
    
    cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of
    Python bindings and object-oriented API for cairo. Cairo is a 2D vector
    graphics library with support for multiple backends including image
    buffers, PNG, PostScript, PDF, and SVG file output.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170220
    
    N ports/devel/py-cairocffi/Makefile
    N ports/devel/py-cairocffi/distinfo
    N ports/devel/py-cairocffi/pkg/DESCR
    N ports/devel/py-cairocffi/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:17:42

Modified files:
	devel          : Makefile 

Log message:
+py-cairocffi
+py-cairocffi,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:23:13

Log message:
    Import py-bleach 1.5.0, ok danj@
    
    Bleach is a whitelist-based HTML sanitizing library that escapes or
    strips markup and attributes. Bleach is intended for sanitizing text
    from untrusted sources.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170220
    
    N ports/www/py-bleach/Makefile
    N ports/www/py-bleach/distinfo
    N ports/www/py-bleach/pkg/DESCR
    N ports/www/py-bleach/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/19 12:26:39

Modified files:
	devel/ptlib    : Makefile 

Log message:
post-patch -> pre-configure like $DEITY intended; next time talk
to $MAINTAINER.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:26:40

Modified files:
	www            : Makefile 

Log message:
+py-bleach
+py-bleach,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:30:54

Log message:
    Import py-qtpy 1.1.2, ok danj@
    
    QtPy(pronounced 'cutie pie') is a small abstraction layer that lets you write
    applications using a single api call to either PyQt or PySide.
    
    It provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout (where
    the QtGui module has been split into QtGui and QtWidgets).
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170220
    
    N ports/x11/py-qtpy/Makefile
    N ports/x11/py-qtpy/distinfo
    N ports/x11/py-qtpy/pkg/DESCR
    N ports/x11/py-qtpy/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:37:54

Log message:
    Import py-qtawesome 0.3.3, ok and tweak danj@
    
    QtAwesome enables iconic fonts such as Font Awesome and Elusive Icons in
    PyQt and PySide applications.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170220
    
    N ports/x11/py-qtawesome/Makefile
    N ports/x11/py-qtawesome/distinfo
    N ports/x11/py-qtawesome/pkg/DESCR
    N ports/x11/py-qtawesome/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 12:41:34

Modified files:
	x11            : Makefile 

Log message:
+py-qtawesome
+py-qtawesome,python3
+py-qtpy
+py-qtpy,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/19 12:42:40

Modified files:
	sys/arch/arm64/arm64: ast.c exception.S genassym.cf 

Log message:
Fix asynchronous system traps so that they actually work.  Fixes at
least one regression test and allows processes to be killed using
Ctrl-C.  Discussed with Dale Rahn.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/19 12:45:48

Modified files:
	multimedia     : Makefile 
Removed files:
	multimedia/coherence: Makefile distinfo 
	multimedia/coherence/pkg: DESCR PLIST 

Log message:
Remove coherence, dead upstream.

HOMEPAGE is down, someone did a mirror on github
(https://github.com/coherence-project/Coherence) but can't maintain it,
won't work with a potential twisted update, etc etc - there are other
UPNP/DLNA servers in the ports.
ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/19 12:59:12

Modified files:
	regress/sys/kern/pledge/generic: main.c manager.c tests.out 

Log message:
Clean up regress/sys/kern/pledge/generic tests: many tests failed because
wlpaths is disabled in GENERIC kernels: remove or disable failing test
cases. Also remove the test_mmap() function testing the prot_exec promise
since it would need to be run on a wxallowed partition.

from semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/19 13:01:24

Modified files:
	regress/sys/kern/pledge: Makefile 

Log message:
re-enable generic pledge tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 13:13:20

Modified files:
	devel/py-mccabe: Makefile distinfo 

Log message:
Update to py-mccabe 0.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 13:14:33

Modified files:
	devel/pyflakes : Makefile distinfo 

Log message:
Update to pyflakes 1.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/19 13:15:42

Modified files:
	devel/flake8   : Makefile distinfo 
Removed files:
	devel/flake8/patches: patch-setup_py 

Log message:
Update to flake8 3.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/19 13:53:26

Modified files:
	print/poppler  : Makefile distinfo 

Log message:
Update to poppler-0.52.0.

Minor bumps for poppler-qt{4,5} because of symbol additions,
even if they are considered 'private'.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/19 14:14:44

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register coherence removal, reminded by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/19 14:39:32

Modified files:
	lib/csu        : crtbegin.c crtbeginS.c 

Log message:
Move static variables from .data to .bss by not initializing them to zero

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/19 15:09:18

Modified files:
	bin/ksh        : ksh.1 

Log message:
Assigning to RANDOM calls srand_deterministic(3), not srand(3),
and simplify the next sentence; triggered by a different patch
from Anton dot Lindqvist at gmail dot com.

OK millert@ tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/19 15:25:21

Modified files:
	faq            : faq14.html 

Log message:
better separation of mbr and gpt instructions in the fde/raid sections.

ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/19 16:28:43

Modified files:
	www/pelican    : Makefile distinfo 
	www/pelican/patches: patch-pelican_tests_test_pelican_py 
	www/pelican/pkg: PLIST 

Log message:
Update to pelican-3.7.1 and use py3

maintainer timeout, ok shadchin@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/19 16:45:46

Modified files:
	usr.bin/fmt    : fmt.c 

Log message:
Do not break the line at U+00A0 NO-BREAK SPACE.
Bug pointed out by Eric dot Pruitt at gmail dot com on misc@.
OK millert@ bentley@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/19 17:18:23

Modified files:
	faq            : faq14.html 

Log message:
clean up and tighten "installing to a mirror".

with & ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/19 17:43:25

Modified files:
	sys/kern       : subr_pool.c 

Log message:
revert 1.206 because it allows deadlocks.

if the gc task is running on a cpu that handles interrupts it is
possible to allow a deadlock. the gc task my be cleaning up a pool
and holding its mutex when an non-MPSAFE interrupt arrives and tries
to take the kernel lock. another cpu may already be holding the
kernel lock when it then tries use the same pool thats the pool GC
is currently processing.

thanks to sthen@ and mpi@ for chasing this down.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/19 18:00:26

Modified files:
	gnu/usr.bin    : Makefile 

Log message:
Skip building gdb on aarch64 there is no support for it.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/19 21:32:07

Modified files:
	faq            : faq14.html 

Log message:
rewrap, clean up and tighten the "disks and partitions" section. inline
a few bullet lists and rearrange some sections to improve the flow.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/19 21:38:48

Modified files:
	faq            : faq14.html 

Log message:
remove two unneeded labels


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/19 23:29:42

Modified files:
	sys/netinet    : ip_carp.c ip_carp.h 

Log message:
carp(4) percpu counters

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/19 23:30:39

Modified files:
	sys/net        : if_pfsync.c if_pfsync.h 

Log message:
pfsync(4) percpu counters

ok florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/02/20 00:03:42

Modified files:
	sysutils/dtb   : Makefile distinfo 
	sysutils/dtb/pkg: PLIST 

Log message:
update dtb to linux 4.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/20 00:04:00

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp 
	                    patch-tools_clang_lib_Driver_Tools_cpp 

Log message:
Sync both the --eh-frame-hdr and float128 diffs to what was commited
upstream.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/20 00:07:36

Modified files:
	sysutils/salt-testing: Makefile distinfo 

Log message:
Update to salt-testing-2017.2.20.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/20 00:14:45

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
SVM: fix segment A/R bits formatting


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/20 00:21:47

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
SVM: fix wrong treatment of MSRs, especially EFER.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/20 00:22:50

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
typo in comment


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/20 00:36:20

Modified files:
	sys/arch/amd64/include: vmmvar.h 
	sys/arch/amd64/amd64: vmm_support.S 

Log message:
SVM: asm support for SVM/RVI


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/20 01:12:47

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
VMX: assert that the supplied instruction length matches what is expected for
HLT exits


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/20 01:42:46

Modified files:
	lib/libc/arch/aarch64/sys: tfork_thread.S 

Log message:
__tfork(3) returns the thread ID of the new thread in x0, not x1.  The
value returned in x1 on __tfork(3) is always zero, which made the code
always fall into the child case.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/20 02:26:51

Modified files:
	build          : mirrors.dat 

Log message:
remove commented-out dead mirror, mirror.poliwangi.ac.id


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/20 02:29:10

Modified files:
	build          : mirrors.dat 

Log message:
update Esslingen mirror details/maintainer email.

-UF	ftp://ftp-stud.fht-esslingen.de/pub/OpenBSD/
+UF	ftp://mirror.hs-esslingen.de/pub/OpenBSD/
+UH	http://mirror.hs-esslingen.de/pub/OpenBSD/
+UHS	https://mirror.hs-esslingen.de/pub/OpenBSD/


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/20 02:30:15

Modified files:
	.              : ftp.html ftplist httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/20 02:31:34

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/20 03:23:28

Modified files:
	comms/fldigi   : Makefile 

Log message:
set a portroach marker, the default scheme picks up alpha versions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2017/02/20 04:04:27

Modified files:
	lang/python    : Makefile.inc 
	lang/python/2.7: Makefile 
	lang/python/3.4: Makefile 
	lang/python/3.5: Makefile 
	lang/python/3.6: Makefile 

Log message:
10 years ago, we needed to build python with c++ to make sure modules
with native c++ code worked fine.  We no longer need to do that, and
llvm errors out with the non-sensical combination of "c++ -std=c99".

this fixes the python build on arm64

tested by sthen@ in an i386 bulk, thanks!

OK sthen@, rpointel@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/20 05:10:42

Modified files:
	mail/postfix/snapshot: Makefile distinfo 
	mail/postfix/snapshot/patches: 
	                               patch-src_posttls-finger_posttls-finger_c 

Log message:
update to postfix-3.3.20170218, from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/20 06:09:15

Modified files:
	lib/libtls/man : tls_init.3 tls_read.3 

Log message:
document tls_config_error(3) RETURN VALUES, improve what is said
about tls_error(3), and warn about some traps;
OK jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/20 06:45:17

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
remove quite a few old targets, introduce a new one
- 'prepare' is what gets dependencies in place to build a port
- install-depends is what the install/update cookies do internally
before installing a port.

older / intermediate targets are not really needed, namely:
build-depends, run-depends, runlib-depends, runwantlib-depends,
lib-depends, buildlib-depends, buildwantlib-depends

They redirect to cookies, so just depend on the cookies directly

okay aja@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/20 07:21:45

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
tighter documentation for dependency handling


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/20 07:29:55

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
install-depends works as expected for multi-package setups.
it's prepare that's special.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/02/20 08:35:05

Modified files:
	sys/dev/rasops : rasops32.c 

Log message:
memcpy a character row at a time to the framebuffer, rather than
sending pixel by pixel

greatly speeds up the text framebuffer on some EFI implementations,
such as shaving 10 seconds off a boot under VMWare Fusion

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/02/20 08:38:04

Modified files:
	sys/dev/pci    : if_iwm.c if_iwn.c 

Log message:
Remove hack to release/re-acquire netlock in _ioctl().

A short hang in X11 during an ifconfig scan is better than making
tcpdump(8) an express ticket to the ddb prompt.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/20 08:48:00

Modified files:
	usr.bin/fmt    : fmt.c 

Log message:
* Hoist Copyright notice to the top, don't hide it in the middle.
* Add Copyright and license for my changes, and for pjanzen@'s in 2000.
* Comply with the obnoxious license condition that we must list changes
in the source code.
* Delete a fragment of an ancient RCS change log listing changes by
Gareth McCaughan himself.  The license does NOT require us to keep that,
and it does not contain interesting information, not even for historians.

OK pjanzen@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/20 09:01:15

Modified files:
	lib/libtls/man : tls_init.3 

Log message:
spelling fix;


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/20 09:13:35

Modified files:
	distrib/octeon/ramdisk: install.md 

Log message:
Bump the default size of the MSDOS partition from 16MB to 32MB.
16MB is too small to hold bsd, bsd.mp and bsd.rd simultaneously.

Noticed by and OK stsp@
OK deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/20 09:57:01

Modified files:
	build          : mirrors.dat 

Log message:
add missing contact address for nluug, update contact addresses for
ucr.ac.cr and gigenet.com

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/20 10:04:25

Modified files:
	sys/netinet    : ip_ipip.h 
	usr.bin/netstat: inet.c 

Log message:
Crank all members of struct ipipstat to 64 bits

Will make conversion to percpu counters easier.  ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/20 10:09:39

Modified files:
	x11/gnome/contacts: Makefile 

Log message:
Regen WANTLIB to unbreak.

reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/20 10:14:31

Modified files:
	shells/nsh     : Makefile 
Added files:
	shells/nsh/patches: patch-stats_c 

Log message:
Adapt after the struct ipipstat members size bump


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/20 10:23:20

Modified files:
	faq            : faq14.html 

Log message:
clean up the fdisk section: merge the bullet list "fdisk tips and tricks"
into the main text and spell out "fdisk -iy sd0" explicitly.

ok tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/20 12:31:56

Modified files:
	databases/sqlite3: Makefile distinfo 

Log message:
Update to sqlite 3.17.0.

See http://sqlite.org/releaselog/3_17_0.html - went into an amd64 bulk
build without issues, and is a requirement for upcoming gecko 52.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/20 12:33:13

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Update to nss 3.29.1.

See
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.29_release_notes
and
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.29.1_release_notes


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/20 12:56:33

Modified files:
	sys/arch/i386/i386: vmm.c 

Log message:
same fix as amd64 (typo in comment)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/20 13:20:38

Modified files:
	faq            : faq14.html index.html 

Log message:
replace "using disklabel" with a short high level description of disklabels
in particular, avoid rehashing the man page. clean up the disaster recovery
bit.

with & ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/02/20 13:25:27

Modified files:
	sys/arch/i386/i386: vmm.c 

Log message:
VMX: assert that the supplied instruction length matches what is expected for
HLT exits. Matches previous diff from amd64


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/20 13:28:32

Modified files:
	faq            : faq14.html 

Log message:
remove "some words on raid in general".

suggested by naddy and discussed with tj


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/20 14:12:14

Modified files:
	sys/arch/arm64/arm64: vm_machdep.c 

Log message:
STACKALIGN() already does the right thing by casting the given argument
to unsigned long, so explicitly casting the address to unsigned int only
leads to truncation.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/20 14:20:26

Modified files:
	faq            : faq14.html 

Log message:
slightly rework the boot amd64 section.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/20 14:27:36

Modified files:
	distrib/miniroot: dot.profile 

Log message:
Zap the extra echo and show the prompt using the var?'prompt' feature
of read.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/20 15:57:16

Modified files:
	devel/libev    : Makefile 
	devel/p5-EV    : Makefile 
	x11/rxvt-unicode: Makefile 

Log message:
Drop workarounds to get libev working on arm.

libev can use the appropriate sync instructions now that cc defines
__ARM_ARCH_6K__.

ok dcoppa@ (libev and rxvt-unicode maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/02/20 16:21:19

Modified files:
	lib/libcrypto/err: err.c err.h 
	lib/libcrypto/man: ERR_put_error.3 Makefile 
Added files:
	lib/libcrypto/man: ERR_asprintf_error_data.3 

Log message:
Mark ERR_add_error_data and ERR_add_error_vdata as not for internal use,
and document ERR_asprintf_error_data as their replacement.
ok jsing@, ingo@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/02/20 16:55:22

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
Add missing $OpenBSD$


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/20 17:41:04

Modified files:
	faq            : faq14.html 

Log message:
i forgot to remove an (8)


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2017/02/20 22:17:48

Modified files:
	usr.sbin/npppd/npppd: Makefile 
	usr.sbin/radiusd: Makefile.inc 

Log message:
Stop using "DEBUG" make variable for extra debugs.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/21 00:15:21

Modified files:
	lib/libcrypto/man: ERR_asprintf_error_data.3 

Log message:
don;t end Nd with a full stop;


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/02/21 00:28:28

Modified files:
	lib/libc/asr   : getaddrinfo_async.c 

Log message:
Report the errno set by getifaddrs(3) if the setup for AI_ADDRCONFIG fails,
rather than a non-informative EAI_FAIL.  Compare to -1 for error detection
while here.

ok jca@ gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/21 01:46:48

Modified files:
	x11/gnome/shell: Makefile 

Log message:
idn -> idn2 to unbreak (reported by naddy@)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/21 02:08:22

Modified files:
	lang/ecl       : Makefile 

Log message:
Remove BROKEN-arm; seems reliable here


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/21 02:12:57

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.35.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/21 02:19:31

Modified files:
	print/libspectre: Makefile 

Log message:
Regen WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/21 02:31:34

Modified files:
	audio/quodlibet: Makefile 

Log message:
Add missing py-futures dep to quodlibet, reported by Laurie Tratt, thanks!
While there, split deps into py2/all python/others, and replace gettext module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/21 02:44:37

Modified files:
	editors/abiword: Makefile 
	math/gnumeric  : Makefile 

Log message:
Sync WANTLIB to unbreak (reported by naddy@).


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 02:47:51

Log message:
    import dfwinreg: Digital Forensics Windows Registry.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170221
    
    N ports/security/py-dfwinreg/Makefile
    N ports/security/py-dfwinreg/distinfo
    N ports/security/py-dfwinreg/pkg/PLIST
    N ports/security/py-dfwinreg/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 02:48:43

Modified files:
	security       : Makefile 

Log message:
+     SUBDIR += py-dfwinreg


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 02:50:29

Log message:
    import libvmdk: library and tools to access the VMware Virtual Disk format.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170221
    
    N ports/sysutils/libvmdk/Makefile
    N ports/sysutils/libvmdk/distinfo
    N ports/sysutils/libvmdk/pkg/DESCR
    N ports/sysutils/libvmdk/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 02:51:30

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libvmdk


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/21 02:56:32

Modified files:
	net/py-boto    : Makefile distinfo 
	net/py-boto/pkg: PLIST 

Log message:
Update to py-boto-2.46.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/21 02:59:46

Modified files:
	www/bozohttpd  : Makefile distinfo 
	www/bozohttpd/patches: patch-Makefile 

Log message:
Update to bozohttpd-20170201.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/21 03:30:15

Modified files:
	usr.bin/tmux   : screen-write.c 

Log message:
Scrolling at least needs to be flushed before sending EL to the terminal
(but it is simpler to flush everything, so do that instead).


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 03:38:42

Log message:
    import libbde: access the BitLocker Drive Encryption encrypted volumes.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170221
    
    N ports/security/libbde/Makefile
    N ports/security/libbde/distinfo
    N ports/security/libbde/pkg/PLIST
    N ports/security/libbde/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 03:39:25

Modified files:
	security       : Makefile 

Log message:
+     SUBDIR += libbde


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/21 04:45:48

Modified files:
	multimedia/xine-lib: Makefile 

Log message:
Use standard type u_int32_t instead of __u32.

Build error after sys/videoio.h update reported by naddy@.
OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 05:24:37

Log message:
    import libvshadow: library and tools to access the VSSformat.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170221
    
    N ports/sysutils/libvshadow/Makefile
    N ports/sysutils/libvshadow/distinfo
    N ports/sysutils/libvshadow/pkg/DESCR
    N ports/sysutils/libvshadow/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 05:26:23

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libvshadow


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/21 05:31:20

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 05:33:47

Log message:
    import libvslvm: library to access the LVM volume system format.
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170221
    
    N ports/sysutils/libvslvm/Makefile
    N ports/sysutils/libvslvm/distinfo
    N ports/sysutils/libvslvm/pkg/DESCR
    N ports/sysutils/libvslvm/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/21 05:35:31

Modified files:
	sysutils       : Makefile 

Log message:
+     SUBDIR += libvslvm


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/21 06:15:01

Modified files:
	infrastructure/mk: bsd.port.mk pkgpath.mk 

Log message:
kill some old ghosts:
FTP_KEEP_ALIVE, README_TOPS, _FETCH*, RECURSIVE_FETCH_LIST
detection of old INSTALL/DEINSTALL/REQ scripts


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/21 06:31:56

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
comment tweaks


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/21 06:46:18

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
unbreak checksum. Simplify messages


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/21 06:49:34

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
instead of
VAR=
.for x in <maybe empty>
VAR += value
.endfor

do
.for x in <maybe empty>
VAR += value
.endfor
VAR ?=

(avoid an extra empty value at front)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/21 06:53:40

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
explain the very intricate logic that handles all fetched files
simplify one variable


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/21 06:55:16

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
TRUSTED_PKG_PATH has been there long enough, so use it as intended


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/21 07:18:12

Modified files:
	usr.bin/tmux   : tmux.h tty-term.c 

Log message:
Don't need is1,is2,is3 so remove them.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/21 07:31:41

Modified files:
	usr.sbin/unbound: configure configure.ac 
	usr.sbin/unbound/doc: 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 

Log message:
update to unbound-1.6.1 release; only version string changes compared to
the release candidate we had.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/21 08:28:27

Modified files:
	lib/libssl     : ssl_ciph.c ssl_locl.h 

Log message:
Remove STREEBOG 512 as a TLS MAC since there are currently no cipher suites
that make use of it.

ok bcook@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dhill@cvs.openbsd.org	2017/02/21 08:33:52

Modified files:
	sys/netinet6   : ip6_output.c 

Log message:
In ip6_ctloutput, check for an invalid level early like the other
*ctloutput functions.  This also reduces a level of indentation.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/02/21 08:36:21

Modified files:
	security/keybase: Makefile distinfo 
Removed files:
	security/keybase/patches: patch-go_install_install_unix_go 
	                          patch-go_logger_redirect_stderr_nix_go 
	                          patch-go_vendor_github_com_keybase_go-ps_process_openbsd_go 
	                          patch-go_vendor_vendor_json 

Log message:
Remove most of the patches as they are upstreamed. Bump to latest version.

OK awolk@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/21 08:46:25

Modified files:
	regress/sys/kern/pledge/generic: Makefile test_tty.c 

Log message:
Make test_request_tty() also pass in environments without tty by opening a
pseudo-tty and testing on the slave instead of stderr.

nicm confirms that this approach is fine
bluhm tested in his environment and the tests now pass

from semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/02/21 09:08:33

Modified files:
	sys/conf       : GENERIC 

Log message:
temporarily disable BFD, to not block work on unlocking the socket layer.

requested by deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/21 09:17:11

Modified files:
	net/p5-Net-DNS : Makefile distinfo 

Log message:
update p5-Net-DNS to 1.08


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/21 09:25:04

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Change pane redraw to collect cells up as well, and simplify it a bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/21 09:31:58

Modified files:
	regress/sys/kern/pledge/ioctl: Makefile 

Log message:
Remove SUDO=doas in regress Makefile.  The test developer must not
set the SUDO variable.  The tester may decide wether he runs doas,
sudo or the whole test as root.
discussed with tb@ semarie@ benno@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/21 09:35:50

Modified files:
	faq            : faq8.html 

Log message:
reword to avoid lots of ntpd(8) mentions.

help & ok tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/21 09:43:53

Removed files:
	infrastructure/man/man1: retrieve-index.1 
	infrastructure/bin: extract-dependencies find-build-order 
	                    retrieve-index 

Log message:
kill old cruft. keep portslogger as people still use it


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/21 09:45:36

Modified files:
	lang/ruby/2.3  : Makefile 
Added files:
	lang/ruby/2.3/patches: patch-ext_ripper_depend 

Log message:
Workaround for ram-constrained archs: build ext/ripper/ripper.c with -O1

ok phessler@ jeremy@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/21 09:49:55

Modified files:
	sysutils/consul: Makefile 

Log message:
ONLY_FOR_ARCHS=amd64, ok ajacoutot


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/21 10:04:45

Modified files:
	lang/ruby/2.4  : Makefile 
Added files:
	lang/ruby/2.4/patches: patch-ext_ripper_depend 

Log message:
Workaround for ram-constrained archs: build ext/ripper/ripper.c with -O1

Same as lang/ruby/2.3.  Preventively add arm, just in case it is near
the maximum limit.
Prodded by jeremy@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/21 12:49:42

Modified files:
	x11/xfce4/xfce4-mount: Makefile distinfo 

Log message:
Update to xfce4-mount 1.1.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/21 12:53:55

Modified files:
	www/mozilla-firefox: Makefile 
Added files:
	www/mozilla-firefox/patches: patch-widget_gtk_nsWindow_cpp 

Log message:
Backport fix for #1335827 - frequent crashes with "ABORT:
RenderFreePicture: RenderBadPicture", reported and testing by semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/02/21 15:32:28

Modified files:
	lib/libc/asr   : getaddrinfo_async.c getnetnamadr_async.c 

Log message:
missing breaks

ok jca@ krw@ gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/21 16:44:39

Modified files:
	share/man/man7 : roff.7 

Log message:
fix spelling error;
found by Michael <Stapelberg at debian dot org> with Lintian


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/21 19:26:10

Modified files:
	faq            : faq1.html 

Log message:
remove "selecting hardware"

ok tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/21 19:49:25

Modified files:
	net/wget       : Makefile distinfo 
	net/wget/patches: patch-doc_wget_texi 

Log message:
Update to wget-1.19.1

ok/tweaks jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/21 21:39:30

Modified files:
	sys/arch/armv7/broadcom: bcm2835_dwctwo.c 
	sys/arch/arm64/dev: bcm2835_dwctwo.c 

Log message:
Set sc_vendor in bcm2835_dwctwo before calling dwc2_init().

This changes the root hub dmesg output from
"vendor 0x0000 DWC2 root hub" to "Broadcom DWC2 root hub".

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2017/02/22 00:48:26

Modified files:
	usr.sbin/npppd/npppd: npppd_auth.c 

Log message:
Delete lines which are misleading and unneeded.
spotted patrick


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/22 01:25:48

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.15.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/22 01:25:59

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.52.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/22 01:52:24

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
Handle an odd edge case where .It is preceded by .Sm.
NULL dereference in man.cgi reported by Gabriel Guzman <gabe at
guzman dash nunez dot com> on misc@.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/22 02:01:32

Modified files:
	usr.bin/tmux   : grid.c key-string.c window.c 

Log message:
Minor bits: fix an array size, add comment, make grid_cell_entry static.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/22 02:06:11

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp 

Log message:
Fix OpenBSD/aarch64 types.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/22 02:37:51

Modified files:
	security/py-paramiko: Makefile distinfo 

Log message:
Update to py-paramiko-2.1.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/22 02:56:03

Modified files:
	sys/net        : bpf.h 

Log message:
The pcap people gave us ID 267 for DLT_OPENFLOW

Via https://github.com/the-tcpdump-group/libpcap/issues/542

OK sthen@ jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/22 03:13:18

Modified files:
	devel/p5-Config-Any: Makefile distinfo 

Log message:
Update to p5-Config-Any-0.28.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/22 03:16:14

Modified files:
	usr.sbin/npppd/npppd: npppd.conf.5 

Log message:
The default for the strip-nt-domain attribute is "yes", so fix up
the manpage to not tell lies.

ok yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/22 03:20:21

Modified files:
	sys/kern       : sys_socket.c 

Log message:
Do not grab the NET_LOCK() when poll(2)ing on unix domain sockets.

Fix the 'X freeze' while scanning with wireless interfaces.  Problem
reported by pirofti@.

ok tb@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/22 04:27:54

src/regress/sys/kern/pledge/sendrecvfd

Update of /cvs/src/regress/sys/kern/pledge/sendrecvfd
In directory cvs.openbsd.org:/tmp/cvs-serv24204/sendrecvfd

Log Message:
Directory /cvs/src/regress/sys/kern/pledge/sendrecvfd added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/22 04:30:00

Added files:
	regress/sys/kern/pledge/sendrecvfd: Makefile sendrecvfd.c 

Log message:
Add regress tests for fd passing and pledge. Check sending and receiving
all 7 types of vnodes as follows:
- nopledge:	 no pledge - verify that send/recv work as expected
- sendfd:	 pledge the sender with "stdio sendfd"
- recvfd:	 pledge the receiver with "stdio recvfd"
- nosendfd:	 pledge the sender with "stdio" (it is expected to fail)
- norecvfd:	 pledge the receiver with "stdio" (it is expected to fail)
This results in 35 possible combinations with different semantics depending
on the vnode type.

From semarie, many thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/22 04:31:12

Modified files:
	regress/sys/kern/pledge: Makefile 

Log message:
Enable semarie's sendrecvfd tests


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/22 04:42:46

Modified files:
	sys/nfs        : nfs.h nfs_bio.c nfs_serv.c nfs_socket.c 
	                 nfs_subs.c nfs_syscalls.c nfs_var.h 
	                 nfs_vfsops.c nfs_vnops.c nfsmount.h 

Log message:
Keep local definitions local.

"good work" deraadt@, ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/22 06:25:36

Modified files:
	net/libpsl     : Makefile 

Log message:
Switch to libidn2


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/02/22 06:43:36

Modified files:
	sbin/ping      : ping.c 

Log message:
Unbreak "ping6 -L"

$ ping6 -L ff02::1%em1
ping6: setsockopt IP6_MULTICAST_LOOP: Invalid argument

Unfortunately we have this inconsistency in the sockets API where we need
to pass an unsigned char for IP_MULTICAST_LOOP but we need an unsigned
int for IPV6_MULTICAST_LOOP.

While here, fix a typo in the error message.

OK millert@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/02/22 06:46:53

Modified files:
	sys/netinet6   : in6.h 

Log message:
Fix comments about a few ipv6 sockoptions

OK millert@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/02/22 06:55:14

Modified files:
	usr.sbin/bgpd  : parse.y pfkey.c 

Log message:
Add missing htonl for IPsec SPI.

Also, do not allow to configure SPI values in the 0..255 range. RFC 4302
and RFC 4303 say the following:
"The set of SPI values in the range 1 through 255 are reserved by the
Internet Assigned Numbers Authority (IANA) for future use; a reserved
SPI value will not normally be assigned by IANA unless the use of the
assigned SPI value is specified in an RFC.  The SPI value of zero (0)
is reserved for local, implementation-specific use and MUST NOT be
sent on the wire".

ok and tweak benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/22 06:59:27

Modified files:
	mail/evolution-rss: Makefile 

Log message:
Sync WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/22 07:03:57

Modified files:
	graphics/evince: Makefile 

Log message:
Some WANTLIB do not belong to the "light" FLAVOR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/22 07:07:03

Modified files:
	x11/gnome/totem: Makefile 
	x11/gnome/terminal: Makefile 

Log message:
Sync WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/22 07:07:28

Modified files:
	x11/gnome/autoar: Makefile distinfo 
	x11/gnome/autoar/pkg: PLIST 

Log message:
Update to gnome-autoar-0.2.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2017/02/22 07:09:10

Modified files:
	usr.bin/sed    : process.c 

Log message:
Remove unused-with-dead-store variable oldpsanl.

From Daniel Cegielka - thanks

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/02/22 07:18:25

Modified files:
	usr.sbin/eigrpctl: eigrpctl.c eigrpctl.8 

Log message:
Allow specifying an alternate socket path.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/02/22 07:24:50

Modified files:
	usr.sbin/eigrpd: eigrpd.h eigrpe.h interface.c kroute.c parse.y 

Log message:
No need to use SIOCGIFRDOMAIN anymore.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/22 07:26:22

Added files:
	multimedia/libvpx/patches: 
	                           patch-third_party_libyuv_include_libyuv_row_h 

Log message:
Fix on arm, avoid broken vector support in old gcc versions.

ok Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/22 07:28:30

Modified files:
	devel/libuv    : Makefile 
	devel/libuv/patches: patch-src_unix_openbsd_c 
Added files:
	devel/libuv/patches: patch-src_unix_tcp_c patch-src_unix_udp_c 
	                     patch-test_test-udp-ipv6_c 
	                     patch-test_test-udp-multicast-join6_c 

Log message:
Fix IPv6 support.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/22 07:34:34

Modified files:
	devel/libuv    : Makefile 

Log message:
Use lang/gcc for atomic builtins on arm.


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2017/02/22 07:36:20

Modified files:
	regress/usr.sbin/ldapd: Makefile 

Log message:
ldapd regress tests depends on openldap-client, check
if that package is installed, otherwise print
a warning and skip them but not fail.

requested by/ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2017/02/22 07:40:46

Modified files:
	usr.sbin/ldapd : btest.c 

Log message:
print a formatted errx() string instead of segfault,
by checking argc correctly.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/22 07:58:27

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Since SQLite is gone, we no longer need the "flock" pledge.
Patch from semarie@, OK tb@.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/22 09:12:12

Modified files:
	sys/net        : pfvar.h 

Log message:
Amend a misleading comment mentioning ``ipintrq''.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/02/22 09:16:35

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
Pledge man.cgi(8).
Based on a more complicated patch from semarie@.
Sebastien and tb@ both agree with the simplification.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/02/22 09:39:56

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/dev/acpi   : acpi.c acpidev.h acpivar.h files.acpi 
Added files:
	sys/dev/acpi   : acpisbs.c smbus.h 

Log message:
add acpisbs, an acpi smart battery subsystem driver reading data
over smbus

currently disabled because it conflicts with acpibat

ok deraadt, kettenis


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/22 10:17:34

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
add https for nluug and update their contact address.
add https for cc.uoc.gr and update their directory path.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/22 12:15:59

Log message:
    import py-dfvfs: Digital Forensics Virtual File System (dfVFS).
    ok benoit@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170222
    
    N ports/security/py-dfvfs/Makefile
    N ports/security/py-dfvfs/distinfo
    N ports/security/py-dfvfs/pkg/PLIST
    N ports/security/py-dfvfs/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/22 12:17:05

Modified files:
	security       : Makefile 

Log message:
+     SUBDIR += py-dfvfs


CVSROOT:	/cvs
Module name:	src
Changes by:	dhill@cvs.openbsd.org	2017/02/22 12:34:42

Modified files:
	sys/kern       : uipc_proto.c 
	sys/net        : pfkey.c rtsock.c 
	sys/netinet    : in_proto.c 
	sys/netinet6   : in6_proto.c 

Log message:
Use c99 struct initialization with protosw.

This makes it easier to grep for a member, such as .pr_usrreq, and know
which functions to review.

ok mpi@ bluhm@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/02/22 14:06:31

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/02/22 14:41:31

Modified files:
	sys/dev/acpi   : acpisbs.c 

Log message:
fix timeout loop

from Anton Lindqvist


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/22 15:18:51

Modified files:
	lib/libc/arch/aarch64/sys: sigprocmask.S 

Log message:
The assembly for sigprocmask(2) had a tiny typo which made it jump to
the wrong location, thus not making it set SIG_BLOCK with a zero mask
when attempting to read the signal mask (if set ptr is NULL).  Instead
an attempt to read the mask actually told the syscall to set the mask
to zero.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/22 15:55:27

Modified files:
	sys/arch/arm64/arm64: bus_dma.c 
	sys/arch/arm64/dev: mainbus.c simplebus.c 
	sys/arch/arm64/include: bus.h 

Log message:
The AMD Seattle SoC incorporates DMA coherent controllers, especially
AHCI, PCIe and Ethernet.  Since these systems rely on cache snooping,
we must not map pages that are supposed to be coherent as uncacheable.
Instead if we have a cache coherent device, create a bus tag and mark
that tag as coherent.  For users of that tag we can simply use normal,
cached memory.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/22 16:01:15

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : ahci_fdt.c 

Log message:
Add a generic ahci(4) frontend for FDT.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/22 16:03:12

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable ahci(4).

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/02/22 17:15:12

Modified files:
	sys/sys        : percpu.h 

Log message:
be nicer to 32bit strict alignment archs that can do 64bit loads/stores.

ie, align boot memory to the size of uint64_ts.

there's an argument to be made that we should align this to 16 bytes
to be consistent with malloc and pools.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/22 18:01:15

Modified files:
	faq            : faq1.html 

Log message:
revert the "really free" section to its original form without elaborations.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/02/22 18:05:38

Modified files:
	.              : armv7.html 

Log message:
correct the link to dwge(4)
from Seth Jackson


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/22 18:27:50

Modified files:
	faq            : faq1.html 

Log message:
smartuser -> user


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/22 18:42:45

Modified files:
	faq            : faq4.html 

Log message:
remove "i don't want to install the compiler"

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/22 19:22:23

Modified files:
	faq            : faq4.html 

Log message:
merge a 1-sentence paragraph with its 2-sentence successor and drop
some redundant words elsewhere.

ok tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/22 19:51:11

Modified files:
	www/py-flask   : Makefile distinfo 
	www/py-flask/patches: patch-docs_conf_py 
	www/py-flask/pkg: PLIST 

Log message:
Maintainer update to py-flask-0.12


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/02/22 23:40:17

Modified files:
	usr.bin/dc     : bcode.c dc.1 

Log message:
Introduce e command, equivalent to p, but writes to stderr


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/02/22 23:41:46

Modified files:
	usr.bin/bc     : bc.y 

Log message:
- write parse errors to stderr, prompted by Martijn Dekker
- we're only interactive if stdout en stderr are a tty as well as stdin


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/23 01:26:47

Modified files:
	sysutils/salt  : Makefile distinfo 

Log message:
Update to salt-2016.11.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/23 01:32:26

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_util_platforms_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-145.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/23 01:35:20

Modified files:
	databases/redis: Makefile distinfo 

Log message:
Update to redis-3.2.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/23 01:40:24

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/23 01:40:43

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.53.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/23 01:54:33

Modified files:
	graphics/feh   : Makefile distinfo 
	graphics/feh/patches: patch-man_feh_pre 

Log message:
Update to feh-2.18.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/23 02:05:08

Modified files:
	databases/ruby-redis: Makefile distinfo 

Log message:
Update to ruby-redis-3.3.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/23 02:18:51

Modified files:
	databases/hs-hedis: Makefile distinfo 
	databases/hs-hedis/pkg: PLIST 

Log message:
Update to hedis-0.9.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/23 02:33:51

Modified files:
	www/tomcat/v7  : Makefile distinfo 
	www/tomcat/v7/pkg: PLIST-examples PLIST-main 
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/pkg: PLIST-examples PLIST-main 

Log message:
Updates:
tomcat-7.0.75
tomcat-8.5.11


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/23 03:06:39

Modified files:
	sys/dev/pv     : hypervic.c 

Log message:
Add missing mtx_leave() calls in two hypervic error paths

ok mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 04:52:00

Modified files:
	devel/py-nbformat: Makefile distinfo 

Log message:
Update to py-nbformat 4.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/23 05:23:50

Log message:
    import hachoir-core, framework to parse and edit binary files as a tree of objects.
    inputs and ok sthen@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170223
    
    N ports/devel/py-hachoir-core/Makefile
    N ports/devel/py-hachoir-core/distinfo
    N ports/devel/py-hachoir-core/pkg/PLIST
    N ports/devel/py-hachoir-core/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:25:38

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:	rpointel@cvs.openbsd.org	2017/02/23 05:25:55

Log message:
    import hachoir metadata: extract metadata using Hachoir library.
    inputs and ok sthen@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170223
    
    N ports/devel/py-hachoir-metadata/Makefile
    N ports/devel/py-hachoir-metadata/distinfo
    N ports/devel/py-hachoir-metadata/pkg/DESCR
    N ports/devel/py-hachoir-metadata/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:26:01

Modified files:
	.              : anoncvs.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/23 05:27:34

Log message:
    import hachoir-parser: Hachoir parsers used to open binary files.
    inputs and ok sthen@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170223
    
    N ports/devel/py-hachoir-parser/Makefile
    N ports/devel/py-hachoir-parser/distinfo
    N ports/devel/py-hachoir-parser/pkg/DESCR
    N ports/devel/py-hachoir-parser/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:27:58

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/23 05:29:07

Modified files:
	devel          : Makefile 

Log message:
+     SUBDIR += py-hachoir-core
+     SUBDIR += py-hachoir-metadata
+     SUBDIR += py-hachoir-parser


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 05:30:54

Modified files:
	x11/py-qtpy    : Makefile distinfo 
	x11/py-qtpy/pkg: PLIST 

Log message:
Update to py-qtpy 1.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 05:37:15

Modified files:
	x11/py-qtawesome: Makefile distinfo 
	x11/py-qtawesome/pkg: PLIST 

Log message:
Update to py-qtawesome 0.4.4


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:40:33

Modified files:
	build          : mirrors.dat 

Log message:
more https


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:40:52

Modified files:
	build          : mirrors.dat 

Log message:
fix past-o


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:41:22

Modified files:
	build          : mirrors.dat 

Log message:
another past-o


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:47:13

Modified files:
	build          : mirrors.pl 

Log message:
check URL scheme matches URL type


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:47:53

Modified files:
	.              : ftp.html ftplist httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/23 05:48:08

Modified files:
	etc/examples   : pkg.conf 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/23 06:01:34

Modified files:
	devel/py-backports: Makefile 

Log message:
Add a HOMEPAGE

ok shadchin@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/23 06:03:01

Modified files:
	www/py-werkzeug: Makefile distinfo 
	www/py-werkzeug/pkg: PLIST 

Log message:
Update to py-werkzeug-0.11.15 and take maintainership

ok shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/23 06:03:46

Modified files:
	audio/mpd      : Makefile distinfo 
	audio/mpd/patches: patch-Makefile_in patch-doc_mpdconf_example 
	audio/mpd/pkg  : PLIST 
Added files:
	audio/mpd/patches: patch-src_command_CommandError_cxx 
Removed files:
	audio/mpd/patches: patch-configure 

Log message:
Update to mpd-0.20.5.

mpd has sndio support now, disable libao output plugin.
Switch to clang.

Based on work by chrisz@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/23 06:11:21

Modified files:
	devel/py-construct: Makefile distinfo 
	devel/py-construct/pkg: PLIST 

Log message:
downgrade construct to 2.5.3 to be compatible with Plaso.
inputs aja@ and ok sthen@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2017/02/23 06:11:42

Modified files:
	devel/jdk/1.8  : Makefile 
Added files:
	devel/jdk/1.8/patches: 
	                       patch-jdk_src_solaris_native_java_net_PlainSocketImpl_c 

Log message:
- fix socket creation in with_ipv6 flavor by stopping the jdk from forcing
ipv4 to ipv6 address mapping on using the IPV6_V6ONLY socket option.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/23 06:16:55

Modified files:
	x11/gnome/tracker: Makefile distinfo 

Log message:
Update to meta-tracker-1.10.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 06:21:12

Modified files:
	devel/py-jupyter_client: Makefile distinfo 
	devel/py-jupyter_client/pkg: PLIST 

Log message:
Update to py-jupyter_client 5.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/23 06:48:26

Modified files:
	devel/jsoncpp  : Makefile distinfo 

Log message:
Update to jsoncpp-1.8.0


CVSROOT:	/cvs
Module name:	www
Changes by:	giovanni@cvs.openbsd.org	2017/02/23 06:49:42

Modified files:
	faq            : current.html 

Log message:
a configuration change is needed after uprading mail/courier-authlib to 0.67


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/23 06:53:07

Log message:
    import plaso: engine and tools to automate creation of super timeline.
    inputs and ok sthen@, thank you for all people who test all depends.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20170223
    
    N ports/security/plaso/Makefile
    N ports/security/plaso/distinfo
    N ports/security/plaso/pkg/PLIST
    N ports/security/plaso/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/23 06:53:55

Modified files:
	security       : Makefile 

Log message:
+     SUBDIR += plaso


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/23 06:56:43

Modified files:
	faq            : current.html 

Log message:
tweak previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 06:58:32

Modified files:
	devel/py-nbconvert: Makefile distinfo 
	devel/py-nbconvert/pkg: PLIST 

Log message:
Update to py-nbconvert 5.1.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 07:00:50

Modified files:
	www/jupyter-notebook: Makefile distinfo 
	www/jupyter-notebook/pkg: PLIST 

Log message:
Update to jupyter-notebook 4.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2017/02/23 07:14:37

Modified files:
	regress/lib/libcrypto/bn/general: bntest.c 

Log message:
Check return value of every BN_* functions in bntest
- add macro CHECK_GOTO
- unify function return code to rc
- add err: label for error goto
ok bcook@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/23 07:24:14

Added files:
	infrastructure/bin: retrieve-index 
	infrastructure/man/man1: retrieve-index.1 

Log message:
oops those are used internally by "make search" in /usr/ports
noticed by danj@, thx


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 07:28:44

Modified files:
	devel/py-traitlets: Makefile distinfo 

Log message:
Update to py-traitlets 4.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/23 07:36:07

Modified files:
	devel/py-appdirs: Makefile distinfo 

Log message:
Update to py-appdirs 1.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/23 07:36:32

ports/devel/imake/patches

Update of /cvs/ports/devel/imake/patches
In directory cvs.openbsd.org:/tmp/cvs-serv86391/patches

Log Message:
Directory /cvs/ports/devel/imake/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2017/02/23 08:57:42

Modified files:
	lang/go        : Makefile distinfo 
	lang/go/patches: patch-src_cmd_link_internal_ld_data_go 
	                 patch-src_cmd_link_internal_ld_elf_go 
	                 patch-src_cmd_link_internal_ld_lib_go 
	                 patch-src_runtime_cgo_gcc_openbsd_386_c 
	                 patch-src_runtime_cgo_gcc_openbsd_amd64_c 
	lang/go/pkg    : PLIST 
Added files:
	lang/go/patches: patch-src_runtime_cgo_gcc_libinit_c 
	                 patch-src_runtime_cgo_gcc_libinit_openbsd_c 
Removed files:
	lang/go/patches: patch-api_except_txt patch-api_go1_6_txt 
	                 patch-src_runtime_sys_openbsd_386_s 
	                 patch-src_runtime_sys_openbsd_amd64_s 
	                 patch-src_runtime_sys_openbsd_arm_s 
	                 patch-src_syscall_zsysnum_openbsd_386_go 
	                 patch-src_syscall_zsysnum_openbsd_amd64_go 
	                 patch-src_syscall_zsysnum_openbsd_arm_go 
	                 patch-src_time_time_test_go 

Log message:
Update lang/go to version 1.8.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2017/02/23 09:01:09

Modified files:
	security/go-crypto: Makefile distinfo 
	security/go-crypto/pkg: PLIST 

Log message:
Update security/go-crypto to match the Go 1.8 release.

The acme packages are not currently enabled, since this creates a circular
dependency with the net/go-net package.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2017/02/23 09:02:24

Modified files:
	net/go-net     : Makefile distinfo 
	net/go-net/pkg : PLIST 

Log message:
Update net/go-net to match the Go 1.8 release.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2017/02/23 09:03:13

Modified files:
	textproc/go-text: Makefile distinfo 
	textproc/go-text/pkg: PLIST 

Log message:
Update textproc/go-text to match the Go 1.8 release.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2017/02/23 09:04:16

Modified files:
	devel/go-tools : Makefile distinfo 
	devel/go-tools/pkg: PLIST 

Log message:
Update devel/go-tools to match the Go 1.8 release.

ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/02/23 10:04:02

Modified files:
	lib/libc/asr   : asr.c asr_private.h getaddrinfo_async.c 
	                 gethostnamadr_async.c getnameinfo_async.c 
	                 getnetnamadr_async.c getrrsetbyname_async.c 
	                 res_search_async.c 

Log message:
Put a common subq pointer in the query struct, rather than one in each
element of the union.

ok gilles@ millert@ krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/23 10:28:48

Log message:
    Import lemonbar 1.2
    
    lemonbar (formerly known as bar) is a lightweight bar entirely based on XCB.
    Provides full UTF-8 support, basic formatting, RandR and Xinerama support and
    EWMH compliance without wasting your precious memory.
    
    ok bentley@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20170223
    
    N ports/x11/lemonbar/Makefile
    N ports/x11/lemonbar/distinfo
    N ports/x11/lemonbar/pkg/PLIST
    N ports/x11/lemonbar/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/02/23 10:30:49

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: 
	                      patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                      patch-third_party_WebKit_Source_platform_fonts_FontCache_h 
	                      patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
Added files:
	www/chromium/patches: patch-base_allocator_allocator_shim_cc 
	                      patch-chrome_app_settings_strings_grdp 
	                      patch-chrome_browser_extensions_api_settings_private_prefs_util_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_ui_task_manager_task_manager_columns_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_webui_settings_appearance_handler_cc 
	                      patch-chrome_browser_ui_webui_settings_appearance_handler_h 
	                      patch-content_browser_renderer_host_render_message_filter_cc 
	                      patch-content_browser_renderer_host_render_message_filter_h 
	                      patch-content_browser_renderer_host_render_view_host_impl_cc 
	                      patch-content_common_content_switches_internal_cc 
	                      patch-content_common_view_messages_h 
	                      patch-mash_package_mash_packaged_service_cc 
	                      patch-media_base_audio_latency_cc 
	                      patch-net_tools_cert_verify_tool_verify_using_path_builder_cc 
	                      patch-services_ui_gpu_gpu_main_cc 
	                      patch-ui_base_dragdrop_os_exchange_data_provider_factory_cc 
	                      patch-ui_gfx_font_list_cc 
	                      patch-ui_message_center_views_toast_contents_view_cc 

Log message:
use more linux specific code for font handling and gpu


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/02/23 10:32:52

Modified files:
	x11            : Makefile 

Log message:
+lemonbar


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/23 10:47:16

Modified files:
	www/ruby-raindrops: Makefile 

Log message:
Missing test dep

ok jeremy (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/23 10:47:57

Modified files:
	www/ruby-raindrops/patches: patch-pkg_mk 

Log message:
Refresh patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/23 10:48:35

Modified files:
	www/ruby-raindrops: Makefile 

Log message:
Tweak comment


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/23 10:49:50

Added files:
	www/ruby-raindrops/patches: patch-ext_raindrops_extconf_rb 

Log message:
Unbreak on archs who don't provide atomic builtins.

The build system previously added -march=i486 if __sync_* atomics were
missing...

ok jeremy@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/23 12:01:16

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: elf64-aarch64.c 

Log message:
Set ELF_MAXPAGESIZE to 64k, to match lld(1).  Also define ELF_MINPAGESIZE.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/23 12:52:59

Modified files:
	build          : mirrors.dat 
	.              : httpslist 

Log message:
add https for litnet.it


CVSROOT:	/cvs
Module name:	src
Changes by:	daniel@cvs.openbsd.org	2017/02/23 13:29:17

Modified files:
	lib/libc/hash  : md5.3 

Log message:
Replace use of mathematical minus with an em-dash (from tb@) and break up
a long sentence (from tj@).


CVSROOT:	/cvs
Module name:	src
Changes by:	daniel@cvs.openbsd.org	2017/02/23 13:46:08

Modified files:
	bin/md5        : md5.1 
	lib/libc/hash  : sha1.3 

Log message:
SHA-1 collisions have now been found so update some man pages. As noted by
minek van on misc@. Thanks.

ok tb@, tj@

(and jmc@ is ok with the diff but can't ok the technical content).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/23 15:50:07

Modified files:
	lib/libc/arch/aarch64/sys: sigpending.S 

Log message:
The assembly for sigpending(2) wasn't correctly implemented either.  I
suppose this still stems from the first steps where we tried to get at
least some userland stuff to compile.  This change properly saves the
pointer before doing the syscall and stores the return value in the
pointer on return.  This makes sigpending regress pass.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/23 15:57:11

Modified files:
	security/letsencrypt/acme-tiny: Makefile distinfo 

Log message:
update to a newer acme-tiny checkout, fixing agreement url. from Mikolaj Kucharski


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/23 15:57:30

Modified files:
	security/letsencrypt/acme-tiny: Tag: OPENBSD_6_0 Makefile 
	                                distinfo 

Log message:
update to a newer acme-tiny checkout, fixing agreement url. from Mikolaj Kucharski


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 17:34:22

Modified files:
	build          : mirrors.pl 
	build/mirrors  : ftp.html.end ftp.html.head ftp.html.mid1 
	                 ftp.html.mid2 openbgpd-ftp.html.end 
	                 openbgpd-ftp.html.head openssh-ftp.html.end 
	                 openssh-ftp.html.head 
	                 openssh-portable.html.head 
	                 openssh-portable.html.mid1 
Added files:
	build/mirrors  : ftp.html.mid0 

Log message:
Adjust ftp list generation to include https URLs (not previously shown here),
putting them first in the list, and suppressing the http version for those sites.
beck@ deraadt@ liked it, tweaks suggested by tj@ tb@ - I've incorporated some,
they may want to tweak some more but this seems a good starting point.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/23 17:34:50

Modified files:
	.              : ftp.html 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/23 19:07:02

Modified files:
	faq            : faq4.html faq8.html upgrade60.html index.html 

Log message:
merge the almost unreferenced bootloader section into the bsd.rd section

ok tj


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/23 20:07:03

Modified files:
	.              : README 

Log message:
correct autoreconf line
ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/23 20:16:34

Modified files:
	usr.bin/ssh    : sshd.c 

Log message:
might as well set the listener socket CLOEXEC


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/02/23 22:29:16

Modified files:
	security/libewf: Makefile 

Log message:
force the use of awk in base.
spotted by naddy@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/24 01:05:34

Modified files:
	graphics/inkscape: Makefile distinfo 
	graphics/inkscape/patches: 
	                           patch-src_extension_implementation_script_cpp 
	graphics/inkscape/pkg: PLIST 
Added files:
	graphics/inkscape/patches: patch-src_libnrtype_FontFactory_cpp 
Removed files:
	graphics/inkscape/patches: patch-src_2geom_hvlinesegment_h 
	                           patch-src_2geom_line_cpp 
	                           patch-src_ui_clipboard_cpp 
	                           patch-src_util_expression-evaluator_cpp 

Log message:
Update to inkscape 0.92.0, from Rafael Sadowski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/24 01:33:59

Modified files:
	graphics/libdvbpsi: Makefile distinfo 

Log message:
Update to libdvbpsi-1.3.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/24 01:38:32

Modified files:
	sysutils/salt-testing: Makefile distinfo 

Log message:
Update to salt-testing-2017.2.23.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/24 01:42:52

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.17.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/24 01:43:05

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.54.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/02/24 02:13:12

Modified files:
	lang/php/7.0   : Makefile distinfo 
	lang/php/7.0/patches: patch-acinclude_m4 patch-ext_spl_php_spl_c 
	                      patch-ext_standard_config_m4 
	                      patch-sapi_cli_php_cli_c 

Log message:
update to 7.0.16


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/24 03:03:12

Added files:
	sys/arch/arm64/dev: pciecam.c 

Log message:
Introduce pciecam(4), a driver for generic ECAM compatible PCI host
controllers.  Support for legacy interrupts and MSI is implemented
but pending on further improvements to arm64's interrupt API.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/24 03:04:17

Modified files:
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/core: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 
	multimedia/gstreamer1/plugins-base: Makefile distinfo 
	multimedia/gstreamer1/plugins-good: distinfo 
	multimedia/gstreamer1/plugins-libav: distinfo 
	multimedia/gstreamer1/plugins-ugly: distinfo 
	multimedia/gstreamer1/py-gstreamer: distinfo 

Log message:
Update the gstreamer1 stack to version 1.10.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/24 03:13:13

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK files.arm64 

Log message:
Hook up pciecam(4), but don't compile it yet.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/24 03:42:00

Modified files:
	lib/libcrypto  : cert.pem 

Log message:
Add the following root CAs, from SECOM Trust Systems / Security Communication
of Japan, they are present in Mozilla's CA store.  OK ajacoutot@

/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication EV RootCA1
/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication RootCA2
/C=JP/O=SECOM Trust.net/OU=Security Communication RootCA1


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/24 04:23:02

Modified files:
	sbin/iked      : ikev2.c 

Log message:
In a scenario where a config reload happens during an IKE_AUTH exchange,
and we move an SA from one to another policy, we need to make sure to do
refcounting if the policies involved are already in the garbage collect
phase.

ok markus@ mikeb@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/24 05:41:02

Modified files:
	faq            : faq1.html 

Log message:
add back a lost <p>


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/24 06:46:22

Modified files:
	graphics/py-matplotlib: Makefile 

Log message:
Fix Gtk3 backend for python3 flavor.

ok daniel@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/24 07:05:37

Modified files:
	textproc/gspell: Makefile distinfo 

Log message:
Update to gspell-1.2.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2017/02/24 07:28:31

Modified files:
	usr.sbin/ldapd : ldapd.c ldapd.h ldape.c 

Log message:
Implement fork+exec model

OK jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/02/24 09:58:12

Modified files:
	sys/dev/pv     : if_xnf.c xbf.c xen.c 

Log message:
Update license

Some final touches before the release, increase the maximum
number of CAS iterations before we declare the grant table
entry lost forever.  This happens on older Xen 3.x versions
as reported by Kirill Miazine.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/24 10:10:59

Modified files:
	sys/arch/arm64/arm64: intr.c 
	sys/arch/arm64/include: intr.h 

Log message:
Implement an API for establishing legacy PCI interrupts.  This specific
establish function parses the device tree's interrupt map to discover
the correct interrupt controller node and interrupt cells for the given
PCI node.  After retrieving that information we can do the same the
normal FDT establish API already does.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/24 10:12:31

Modified files:
	sys/dev/fdt    : ahci_fdt.c sxiehci.c virtio_mmio.c 

Log message:
The interrupts have been established using the FDT interrupt API, so we
need to use the FDT interrupt API do disestablish them.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/24 10:16:41

Modified files:
	sys/arch/arm64/arm64: intr.c 
	sys/arch/arm64/dev: ampintc.c bcm2836_intr.c 
	sys/arch/arm64/include: intr.h 

Log message:
Retire the global interrupt establish and disestablish API.  It has been
of good use for supporting multiple SoCs with each their own interrupt
controllers, but as of now we have replaced it wit the FDT-enabled API.

ok kettenis@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/24 10:49:46

Modified files:
	faq            : faq8.html 

Log message:
thin out and improve some text in the "device not configured" section.
clean up <li> formatting while here.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/24 11:36:33

Modified files:
	sys/net        : pfkeyv2.c 

Log message:
Avoid some casts by using the sa field of union sockaddr_union.
OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/24 11:47:54

Modified files:
	graphics/imlib2: Makefile 
	graphics/imlib2/patches: patch-imlib2_pc_in 
Added files:
	graphics/imlib2/patches: patch-imlib2-config_in 

Log message:
Fix the output of pkg-config imlib2 and imlib2-config

Spotted by naddy@ some time ago, bulk build and ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/02/24 13:48:13

Modified files:
	editors/ged    : Makefile distinfo 

Log message:
Update to GNU ed 1.14.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/24 14:08:28

Modified files:
	net/curl       : Makefile distinfo 
	net/curl/pkg   : PLIST 
Removed files:
	net/curl/patches: patch-lib_vtls_vtls_c patch-tests_server_sws_c 

Log message:
SECURITY update to 7.53.1:
CVE-2017-2629: make SSL_VERIFYSTATUS work again
Also numerous other bug fixes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/24 14:09:11

Modified files:
	net/curl       : Tag: OPENBSD_6_0 Makefile distinfo 
	net/curl/pkg   : Tag: OPENBSD_6_0 PLIST 
Removed files:
	net/curl/patches: Tag: OPENBSD_6_0 patch-lib_vtls_vtls_c 

Log message:
SECURITY update to 7.53.1:
CVE-2017-2629: make SSL_VERIFYSTATUS work again


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/24 14:23:38

Modified files:
	shells/yash    : Makefile 
	shells/yash/pkg: PLIST 

Log message:
mark for entry in shells(5);
reminded by Andreas Kusalananda Kahari <andreas.kahari@nbis.se>


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/24 14:51:37

Log message:
    Import py-patsy 0.4.1, ok danj@
    
    Patsy is a Python library for describing statistical models (especially
    linear models, or models that have a linear component) and building
    design matrices. Patsy brings the convenience of R formulas to Python.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170225
    
    N ports/math/py-patsy/Makefile
    N ports/math/py-patsy/distinfo
    N ports/math/py-patsy/pkg/DESCR
    N ports/math/py-patsy/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/24 15:00:27

Modified files:
	math           : Makefile 

Log message:
+py-patsy
+py-patsy,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/24 15:48:41

Modified files:
	devel/py-appdirs: Makefile distinfo 

Log message:
Update to py-appdirs 1.4.2


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/24 16:38:47

Modified files:
	usr.bin/make   : varmodifiers.c 

Log message:
add support for variables in the lhs of SYSV modifiers.
lack of support noted by naddy@
source, xenocara, and ports still build without a hitch.

okay naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/02/24 19:45:13

Modified files:
	lang/chicken   : Makefile.inc 
	lang/chicken/bootstrap: distinfo 
	lang/chicken/core: Makefile distinfo 
Removed files:
	lang/chicken/core/patches: patch-irregex-core_scm 
	                           patch-posix-common_scm 
	                           patch-posixunix_scm 

Log message:
Update to chicken 4.12.0. From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/25 00:28:32

Modified files:
	regress/bin/ksh/vi: sh.h 
	regress/lib/libc/dirname: dirname_test.c 
	regress/lib/libc/ifnameindex: ifnitest.c 
	regress/lib/libc/locale/setlocale: setlocale.c 
	regress/lib/libc/strtod: strtodtest.c 
	regress/lib/libedit/chared: test_gets.c 
	regress/lib/libutil/fmt_scaled: fmt_test.c 
	regress/libexec/ld.so/constructor/libab: ab.C 
	regress/libexec/ld.so/lazy/libfoo: foo.c 
	regress/libexec/ld.so/lazy/prog: prog.c 
	regress/misc/X11/blt: blt.c 
	regress/sys/kern/bind: bind.c 

Log message:
Add missing includes to avoid implicit function declarations.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/25 03:21:53

Modified files:
	gnu/llvm/tools/lld/ELF: OutputSections.cpp 

Log message:
Make sure the .eh_frame ends with a terminator.  This avoids creating a
zero-sized .eh_frame section, which confuses the strip from our
frankenbinutils.

With this diff lld seems to be usable as the arm64 system linker.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/25 03:44:54

Modified files:
	x11/xfce4/xfce4-diskperf: Makefile distinfo 

Log message:
Update to xfce4-diskperf 2.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/25 03:46:46

Modified files:
	x11/xfce4/xfce4-genmon: Makefile distinfo 
	x11/xfce4/xfce4-genmon/pkg: PLIST 

Log message:
Update to xfce4-genmon 4.0.0, migrated to Gtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/25 03:53:15

Modified files:
	mail/mutt      : Makefile distinfo 
	mail/mutt/patches: patch-main_c 
	mail/mutt/pkg  : PLIST 
Removed files:
	mail/mutt/patches: patch-mutt_ssl_c 

Log message:
update to mutt-1.8.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/25 04:10:09

Modified files:
	graphics/libgxps: Makefile distinfo 

Log message:
Update to libgxps-0.2.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/25 04:15:04

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.18.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/25 04:15:17

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.55.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/25 04:16:25

Modified files:
	emulators/qemu : Makefile 
Added files:
	emulators/qemu/patches: patch-hw_virtio_virtio_c 

Log message:
Fix interrupts with virtio when not using MSI.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/25 04:17:30

Modified files:
	multimedia/xine-lib: Makefile distinfo 
	multimedia/xine-lib/patches: patch-configure_ac 
	                             patch-m4_decoders_m4 
	                             patch-src_post_deinterlace_plugins_Makefile_in 
	                             patch-src_xine-utils_utils_c 
	multimedia/xine-lib/pkg: PLIST 
Removed files:
	multimedia/xine-lib/patches: 
	                             patch-src_combined_ffmpeg_ff_audio_decoder_c 
	                             patch-src_combined_ffmpeg_ff_video_decoder_c 
	                             patch-src_combined_ffmpeg_ffmpeg_compat_h 
	                             patch-src_post_planar_eq2_c 
	                             patch-src_xine-utils_memcpy_c 

Log message:
Update to xine-lib-1.2.8.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/25 05:51:40

Removed files:
	www/w3m/patches: patch-configure 

Log message:
imlib2-config has been fixed


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/25 05:57:03

Modified files:
	distrib/miniroot: install.sub 

Log message:
Localize _OPT as it is not used as a global variable.

OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/25 06:19:57

Modified files:
	sys/arch/arm64/dev: ampintc.c 

Log message:
Implement support for interrupt types.  The GIC only seems to support
level triggered active-high or egdge triggered low-to-high interrupts.
We currently always configure them to be level triggered, which is a
sane default for most controllers.  Since MSI interupts on the GIC are
edge triggered, we need to be able to parse the type information and to
configure the interrupt correspondingly.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/25 06:55:06

Modified files:
	lang/elixir    : Makefile distinfo 

Log message:
update to elixir-1.4.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/25 07:59:55

Modified files:
	textproc/icu4c : Makefile 
Removed files:
	textproc/icu4c/patches: patch-source_stubdata_Makefile_in 

Log message:
Stop adding -finhibit-size-directive to the stubdata build.  This appears
to have become obsolete sometime in the last ten years, and clang does
not support -finhibit-size-directive.  ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/25 08:04:01

Modified files:
	gnu/llvm/tools/clang/lib/Basic: Targets.cpp 

Log message:
Fix the types used on aarch64 to match what we have in <sys/types.h>.

From Brad Smith.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/25 08:05:06

Modified files:
	sysutils/py-ghmi: Makefile distinfo 

Log message:
update to py-ghmi-1.0.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/25 08:05:21

Modified files:
	java/jna       : Makefile distinfo 
	java/jna/patches: patch-build_xml 
	                  patch-test_com_sun_jna_LibraryLoadTest_java 
	java/jna/pkg   : PLIST 

Log message:
update to jna-4.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/25 08:05:33

Modified files:
	x11/gnome/mutter: Makefile distinfo 

Log message:
update to mutter-3.22.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/25 08:05:40

Modified files:
	x11/gnome/shell: Makefile distinfo 

Log message:
update to gnome-shell-3.22.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/25 08:06:16

Modified files:
	sysutils/ruby-puppet-syntax: Makefile distinfo 
	sysutils/ruby-puppet-syntax/pkg: PLIST 

Log message:
update to puppet-syntax-2.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/25 08:21:24

Modified files:
	devel/ruby-rspec/specinfra: Makefile distinfo 
	devel/ruby-rspec/specinfra/pkg: PLIST 

Log message:
update to specinfra-2.66.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/02/25 09:04:20

Modified files:
	infrastructure/templates: Makefile.template 

Log message:
Mention the `uses pledge()' comment

prodded by Anton Lindqvist, reminded by looking at dicepassc
ok/tweak naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/25 09:53:02

Modified files:
	gnu/llvm/lib/Transforms/Scalar: LoopIdiomRecognize.cpp 

Log message:
Disable loop idiom recognition for _libc_memset and _libc_memcpy.  These are
the internal names we use in libc for memset and memcpy and having the
compiler optimize them as calls to memset and memcpy will lead to infinite
recursion.

This is a temporary solution while guenther@ tries to figure out a better
way to force calls from inside libc via identifiers that are of hidden
visibility.

ok jsg@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/25 09:53:09

Modified files:
	sys/arch/arm64/arm64: intr.c 
	sys/arch/arm64/include: intr.h 

Log message:
MSI interrupts are established in a different way as well.  Instead of
simply hooking up the interrupt handler and returning an MD cookie, we
need to pass back information for the PCI controller to configure its
interrupt correctly.  For this, add another establish routine into the
FDT-based interrupt API which looks up msi-controller nodes and calls
their MSI-specific establish function if requested.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/25 10:04:19

Modified files:
	sys/arch/arm64/conf: files.arm64 
	sys/arch/arm64/dev: ampintc.c 

Log message:
Implement ampintcmsi(4) in ampintc(4) to support MSI.  The GICv2M is an
extension to the GIC controller, which is represented as subnode in the
device tree.  There can be multiple GICv2Ms, so it makes sense to attach
those to ampintc(4) as some kind of simplebus.  The GICv2M is simply an
interrupt generator that can be used by PCIe devices to ring the door
bell.  There is no need for further configuration, we only need to find
out which SPIs we are allowed to use for MSI and to register an edge
triggered interrupt on a (randomly) allocated SPI.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/25 10:05:43

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable ampintcmsi(4), pciecam(4), ppb(4) and virtio(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/25 10:12:25

Added files:
	lib/libcxxabi  : shlib_version 

Log message:
Provide libc++abi as shared library as well.  Discussed and requested
due to ports build failures.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/02/25 10:58:33

Modified files:
	textproc/py-unidecode: Makefile distinfo 
	textproc/py-unidecode/pkg: PLIST 

Log message:
Update to py-unidecode 0.04.20

ok benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/25 11:04:13

Modified files:
	gnu/usr.bin/clang/clang: clang.1 

Log message:
sync clang.1 with clang.rst

Generated with gmake and py-sphinx installed via
cd /usr/src/gnu/llvm/tools/clang/docs && gmake -f Makefile.sphinx man

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2017/02/25 11:58:04

Modified files:
	math/coq       : Makefile 

Log message:
Minor cleanup:
- http -> https
- drop gettext module

ok shadchin@, tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/02/25 12:15:09

Modified files:
	sys/dev/acpi   : acpireg.h acpithinkpad.c 

Log message:
attach acpithinkpad to LEN0268 HID found on newer thinkpads


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/25 13:04:05

Modified files:
	lang           : Makefile 

Log message:
Unhook lang/hugs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/25 13:04:57

Removed files:
	lang/hugs      : Makefile distinfo 
	lang/hugs/patches: patch-configure 
	                   patch-docs_users_guide_Makefile_in 
	                   patch-packages_base_cbits_execvpe_c 
	                   patch-packages_base_include_HsBase_h 
	                   patch-packages_network_Network_Socket_hsc 
	                   patch-src_Makefile 
	lang/hugs/pkg  : DESCR PLIST 

Log message:
Retire lang/hugs. Dead upstream since more than 10 years, and needs W|X.

ok dcoppa@ about 9 months ago (and I totally forgot it).


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/25 13:07:42

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
hugs is gone.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/02/25 13:09:20

Modified files:
	sys/dev/acpi   : acpiasus.c acpireg.h acpithinkpad.c 
	                 acpitoshiba.c atk0110.c 

Log message:
move vendor HIDs into their drivers, clean up some unused defines

ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	mglocker@cvs.openbsd.org	2017/02/25 13:11:33

Modified files:
	news/sabnzbd   : Makefile distinfo 
	news/sabnzbd/pkg: PLIST 

Log message:
Update to sabnzbd 1.2.1.

From Carlin Bingham.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/25 13:15:46

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Oops! It's hugs98, not hugs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/25 13:35:31

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-Makefile patch-t_t1450-fsck_sh 
	                   patch-t_test-lib_sh 
	devel/git/pkg  : PLIST-main PLIST-x11 

Log message:
Update to git-2.12.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/25 13:37:36

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	lang           : Makefile 
	security       : Makefile 
	shells         : Makefile 
Removed files:
	devel/hmake    : Makefile distinfo 
	devel/hmake/patches: patch-man_hmake_1 patch-script_harch 
	                     patch-script_hi_inst 
	                     patch-script_hmake-config_inst 
	                     patch-script_hmake_inst 
	                     patch-src_hmake_Config_hs 
	                     patch-src_hmake_MkConfig_hs 
	                     patch-src_hmake_PackageConfig_hs 
	                     patch-src_interpreter_HiConfig_hs 
	devel/hmake/pkg: DESCR PLIST 
	lang/nhc98     : Makefile distinfo 
	lang/nhc98/patches: patch-Makefile patch-configure 
	                    patch-man_nhc98_1 
	                    patch-script_greencard_inst 
	                    patch-script_harch_inst 
	                    patch-script_hood_inst 
	                    patch-script_hsc2hs_inst 
	                    patch-script_nhc98_inst 
	                    patch-script_tprofprel 
	                    patch-src_runtime_Integer_alloca_c 
	                    patch-tests_runtests 
	lang/nhc98/pkg : DESCR PLIST 
	security/logsurfer: Makefile distinfo 
	security/logsurfer/patches: patch-Makefile_in 
	                            patch-src_logsurfer_c 
	security/logsurfer/pkg: DESCR PLIST 
	shells/scsh    : Makefile distinfo 
	shells/scsh/patches: patch-c_unix_dynamo_c patch-c_unix_event_c 
	                     patch-c_unix_fd-io_c patch-configure_in 
	                     patch-scsh_sleep1_c 
	shells/scsh/pkg: DESCR PLIST 

Log message:
Remove ports that don't work on LP64 archs.

lang/nhc98              ok ajacoutot@ jca@ kili@
security/logsurfer      ok ajacoutot@ jca@
shells/scsh             ok sthen@ ajacoutot@ jca@
devel/hmake             ok kili@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/25 13:44:13

Modified files:
	graphics/inkscape: Makefile 

Log message:
add missing autotool dependencies; from maintainer Rafael Sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/25 14:52:25

Modified files:
	emulators/dynamips: Makefile 

Log message:
dynamips' JIT requires W+X, mark the binary as appropriate.
pointed out by Brune Gruel, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/25 15:08:42

Modified files:
	devel/imake-cf : Makefile 
	devel/imake-cf/patches: patch-OpenBSD_cf 

Log message:
Make c++ the default C++ compiler on OpenBSD instead of the fallback value
of g++.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/25 15:53:36

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: bfd-in2.h elf32-arm.c libbfd.h 
	                               reloc.c 
	gnu/usr.bin/binutils-2.17/gas/config: tc-arm.c 

Log message:
Implement support for generating movw/movt relocations on arm in gas(1).

Ported from FreeBSD's GPLv2 version of binutils.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/02/25 16:48:08

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
pledge stdio before parsing the http response
ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/25 21:06:38

Modified files:
	usr.sbin/pcidump: Makefile 

Log message:
build pcidump on arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/25 21:16:05

Modified files:
	distrib/sets/lists/base: md.arm64 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/02/25 22:24:59

Modified files:
	security/lynis : Makefile distinfo 
	security/lynis/pkg: PLIST 

Log message:
Upgrade for Lynis to 2.4.3

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/02/25 22:52:02

Modified files:
	sys/arch/octeon/include: cpu.h 

Log message:
Define cache line size for the per-cpu API.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/02/26 01:40:41

Modified files:
	graphics/pdfsandwich: Makefile 

Log message:
Mark as ONLY_FOR_ARCHS=${OCAML_NATIVE_ARCHS}, the configure script looks
for ocamlopt.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/26 03:09:53

Modified files:
	lang/guile2    : Makefile distinfo 
Removed files:
	lang/guile2/patches: patch-module_ice-9_ftw_scm 

Log message:
Update to guile2-2.0.14.
Keep BROKEN since the bulk builders cannot build it for some reason.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/26 03:52:46

Modified files:
	devel/cpp-hocon: Makefile distinfo 

Log message:
update to cpp-hocon-0.1.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/26 04:08:56

Modified files:
	www/qutebrowser: Makefile distinfo 
	www/qutebrowser/pkg: PLIST 

Log message:
update to qutebrowser-0.10.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/26 04:15:05

Modified files:
	x11/virt-viewer: Makefile distinfo 

Log message:
update to virt-viewer-5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/26 04:18:25

Modified files:
	infrastructure/mk: bsd.port.mk pkgpath.mk 

Log message:
GC old stuff


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/02/26 04:29:55

Modified files:
	usr.bin/dc     : bcode.c inout.c 

Log message:
Move away from BN_zero, the one returning an int is deprecated and the
new one is a void function. From Daniel Cegielka.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/26 05:20:51

Log message:
    Import Mesa 13.0.5
    
    Status:
    
    Vendor Tag:	mesa
    Release Tags:	mesa-13_0_5
    
    U xenocara/lib/mesa/autogen.sh
    U xenocara/lib/mesa/aclocal.m4
    U xenocara/lib/mesa/install-lib-links.mk
    U xenocara/lib/mesa/VERSION
    U xenocara/lib/mesa/common.py
    C xenocara/lib/mesa/Makefile.in
    U xenocara/lib/mesa/SConstruct
    C xenocara/lib/mesa/configure.ac
    C xenocara/lib/mesa/configure
    U xenocara/lib/mesa/Makefile.am
    U xenocara/lib/mesa/install-gallium-links.mk
    U xenocara/lib/mesa/scons/custom.py
    U xenocara/lib/mesa/scons/crossmingw.py
    U xenocara/lib/mesa/scons/llvm.py
    U xenocara/lib/mesa/scons/source_list.py
    U xenocara/lib/mesa/scons/dxsdk.py
    U xenocara/lib/mesa/scons/x11.py
    U xenocara/lib/mesa/scons/fixes.py
    U xenocara/lib/mesa/scons/gallium.py
    U xenocara/lib/mesa/docs/xlibdriver.html
    U xenocara/lib/mesa/docs/debugging.html
    U xenocara/lib/mesa/docs/relnotes.html
    U xenocara/lib/mesa/docs/developers.html
    U xenocara/lib/mesa/docs/shading.html
    U xenocara/lib/mesa/docs/VERSIONS
    U xenocara/lib/mesa/docs/contents.html
    U xenocara/lib/mesa/docs/ARB_color_buffer_float.txt
    U xenocara/lib/mesa/docs/utilities.html
    U xenocara/lib/mesa/docs/gears.png
    U xenocara/lib/mesa/docs/perf.html
    U xenocara/lib/mesa/docs/llvmpipe.html
    U xenocara/lib/mesa/docs/conform.html
    U xenocara/lib/mesa/docs/faq.html
    U xenocara/lib/mesa/docs/mangling.html
    U xenocara/lib/mesa/docs/README.UVD
    U xenocara/lib/mesa/docs/autoconf.html
    U xenocara/lib/mesa/docs/extensions.html
    U xenocara/lib/mesa/docs/libGL.txt
    U xenocara/lib/mesa/docs/mesa.css
    U xenocara/lib/mesa/docs/systems.html
    U xenocara/lib/mesa/docs/README.WIN32
    U xenocara/lib/mesa/docs/precompiled.html
    U xenocara/lib/mesa/docs/lists.html
    U xenocara/lib/mesa/docs/sourcedocs.html
    U xenocara/lib/mesa/docs/sourcetree.html
    U xenocara/lib/mesa/docs/vmware-guest.html
    U xenocara/lib/mesa/docs/repository.html
    U xenocara/lib/mesa/docs/thanks.html
    U xenocara/lib/mesa/docs/helpwanted.html
    U xenocara/lib/mesa/docs/osmesa.html
    U xenocara/lib/mesa/docs/download.html
    U xenocara/lib/mesa/docs/intro.html
    U xenocara/lib/mesa/docs/install.html
    U xenocara/lib/mesa/docs/viewperf.html
    U xenocara/lib/mesa/docs/bugs.html
    U xenocara/lib/mesa/docs/patents.txt
    U xenocara/lib/mesa/docs/license.html
    U xenocara/lib/mesa/docs/postprocess.html
    U xenocara/lib/mesa/docs/dispatch.html
    U xenocara/lib/mesa/docs/index.html
    U xenocara/lib/mesa/docs/egl.html
    U xenocara/lib/mesa/docs/features.txt
    U xenocara/lib/mesa/docs/envvars.html
    U xenocara/lib/mesa/docs/devinfo.html
    U xenocara/lib/mesa/docs/application-issues.html
    U xenocara/lib/mesa/docs/README.VCE
    U xenocara/lib/mesa/docs/webmaster.html
    U xenocara/lib/mesa/docs/opengles.html
    U xenocara/lib/mesa/docs/versions.html
    U xenocara/lib/mesa/docs/specs/WL_create_wayland_buffer_from_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_control.spec
    U xenocara/lib/mesa/docs/specs/MESA_multithread_makecurrent.spec
    U xenocara/lib/mesa/docs/specs/MESA_ycbcr_texture.spec
    U xenocara/lib/mesa/docs/specs/MESA_query_renderer.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_frame_usage.spec
    U xenocara/lib/mesa/docs/specs/enums.txt
    U xenocara/lib/mesa/docs/specs/MESA_window_pos.spec
    U xenocara/lib/mesa/docs/specs/MESA_pack_invert.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_debug.spec
    U xenocara/lib/mesa/docs/specs/MESA_drm_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_release_buffers.spec
    U xenocara/lib/mesa/docs/specs/MESA_pixmap_colormap.spec
    U xenocara/lib/mesa/docs/specs/WL_bind_wayland_display.spec
    U xenocara/lib/mesa/docs/specs/EGL_MESA_platform_surfaceless.txt
    U xenocara/lib/mesa/docs/specs/MESA_set_3dfx_mode.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_signed_rgba.spec
    U xenocara/lib/mesa/docs/specs/MESA_image_dma_buf_export.txt
    U xenocara/lib/mesa/docs/specs/MESA_shader_integer_functions.txt
    U xenocara/lib/mesa/docs/specs/MESA_copy_sub_buffer.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_samples_identical.txt
    U xenocara/lib/mesa/docs/specs/MESA_agp_offset.spec
    U xenocara/lib/mesa/docs/specs/MESA_configless_context.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_integer_mix.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_array.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_resize_buffers.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_trace.spec
    U xenocara/lib/mesa/docs/specs/OLD/EGL_MESA_screen_surface.txt
    U xenocara/lib/mesa/docs/specs/OLD/MESA_program_debug.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_sprite_point.spec
    U xenocara/lib/mesa/docs/relnotes/10.5.8.html
    U xenocara/lib/mesa/docs/relnotes/8.0.5.html
    U xenocara/lib/mesa/docs/relnotes/9.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.1
    U xenocara/lib/mesa/docs/relnotes/10.5.0.html
    U xenocara/lib/mesa/docs/relnotes/6.4
    U xenocara/lib/mesa/docs/relnotes/12.0.1.html
    U xenocara/lib/mesa/docs/relnotes/3.2.1
    U xenocara/lib/mesa/docs/relnotes/7.9.1.html
    U xenocara/lib/mesa/docs/relnotes/6.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.html
    U xenocara/lib/mesa/docs/relnotes/11.0.7.html
    N xenocara/lib/mesa/docs/relnotes/13.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.5.html
    U xenocara/lib/mesa/docs/relnotes/7.7.html
    U xenocara/lib/mesa/docs/relnotes/6.5.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.3.html
    U xenocara/lib/mesa/docs/relnotes/6.2.1
    U xenocara/lib/mesa/docs/relnotes/9.2.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.2.html
    U xenocara/lib/mesa/docs/relnotes/3.3
    U xenocara/lib/mesa/docs/relnotes/11.1.3.html
    U xenocara/lib/mesa/docs/relnotes/5.0.2
    U xenocara/lib/mesa/docs/relnotes/3.5
    U xenocara/lib/mesa/docs/relnotes/11.0.5.html
    U xenocara/lib/mesa/docs/relnotes/7.5.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.1.html
    U xenocara/lib/mesa/docs/relnotes/10.5.3.html
    U xenocara/lib/mesa/docs/relnotes/11.0.1.html
    U xenocara/lib/mesa/docs/relnotes/13.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.2.9.html
    U xenocara/lib/mesa/docs/relnotes/6.5.1.html
    U xenocara/lib/mesa/docs/relnotes/7.0.html
    U xenocara/lib/mesa/docs/relnotes/5.0.1
    U xenocara/lib/mesa/docs/relnotes/10.5.1.html
    U xenocara/lib/mesa/docs/relnotes/10.1.5.html
    U xenocara/lib/mesa/docs/relnotes/8.0.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.6.6.html
    U xenocara/lib/mesa/docs/relnotes/6.4.1.html
    U xenocara/lib/mesa/docs/relnotes/7.11.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.8.html
    U xenocara/lib/mesa/docs/relnotes/7.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.10.2.html
    U xenocara/lib/mesa/docs/relnotes/3.4
    U xenocara/lib/mesa/docs/relnotes/10.3.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.4.html
    U xenocara/lib/mesa/docs/relnotes/11.0.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.2.html
    U xenocara/lib/mesa/docs/relnotes/6.3.1
    U xenocara/lib/mesa/docs/relnotes/4.0.1
    U xenocara/lib/mesa/docs/relnotes/7.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.3.2
    U xenocara/lib/mesa/docs/relnotes/10.3.5.html
    U xenocara/lib/mesa/docs/relnotes/7.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.4.html
    U xenocara/lib/mesa/docs/relnotes/6.0
    U xenocara/lib/mesa/docs/relnotes/9.2.3.html
    U xenocara/lib/mesa/docs/relnotes/11.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.3.2.html
    U xenocara/lib/mesa/docs/relnotes/7.10.html
    U xenocara/lib/mesa/docs/relnotes/7.8.html
    U xenocara/lib/mesa/docs/relnotes/7.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.7.html
    U xenocara/lib/mesa/docs/relnotes/6.3
    U xenocara/lib/mesa/docs/relnotes/12.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.1.html
    U xenocara/lib/mesa/docs/relnotes/7.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.3.html
    U xenocara/lib/mesa/docs/relnotes/4.0.2
    U xenocara/lib/mesa/docs/relnotes/13.0.1.html
    U xenocara/lib/mesa/docs/relnotes/6.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.html
    U xenocara/lib/mesa/docs/relnotes/10.4.3.html
    U xenocara/lib/mesa/docs/relnotes/10.5.9.html
    U xenocara/lib/mesa/docs/relnotes/9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.6.html
    U xenocara/lib/mesa/docs/relnotes/10.6.1.html
    U xenocara/lib/mesa/docs/relnotes/11.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.0.1
    U xenocara/lib/mesa/docs/relnotes/7.4.html
    U xenocara/lib/mesa/docs/relnotes/9.2.5.html
    U xenocara/lib/mesa/docs/relnotes/7.4.3.html
    U xenocara/lib/mesa/docs/relnotes/11.2.0.html
    U xenocara/lib/mesa/docs/relnotes/10.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.5.html
    U xenocara/lib/mesa/docs/relnotes/4.0
    U xenocara/lib/mesa/docs/relnotes/6.5.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.2.html
    U xenocara/lib/mesa/docs/relnotes/3.1
    U xenocara/lib/mesa/docs/relnotes/11.2.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.4.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.0.html
    U xenocara/lib/mesa/docs/relnotes/13.0.2.html
    U xenocara/lib/mesa/docs/relnotes/9.0.1.html
    U xenocara/lib/mesa/docs/relnotes/7.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.4.html
    U xenocara/lib/mesa/docs/relnotes/10.4.6.html
    U xenocara/lib/mesa/docs/relnotes/7.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.0.1.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/4.0.3
    U xenocara/lib/mesa/docs/relnotes/10.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.9.html
    U xenocara/lib/mesa/docs/relnotes/3.4.2
    U xenocara/lib/mesa/docs/relnotes/7.11.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.3.html
    U xenocara/lib/mesa/docs/relnotes/9.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.2.html
    U xenocara/lib/mesa/docs/relnotes/7.4.1.html
    U xenocara/lib/mesa/docs/relnotes/9.1.6.html
    U xenocara/lib/mesa/docs/relnotes/12.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.7.html
    U xenocara/lib/mesa/docs/relnotes/4.1
    U xenocara/lib/mesa/docs/relnotes/12.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.8.html
    U xenocara/lib/mesa/docs/relnotes/10.1.6.html
    U xenocara/lib/mesa/docs/relnotes/11.1.0.html
    U xenocara/lib/mesa/docs/relnotes/5.1
    U xenocara/lib/mesa/docs/relnotes/10.1.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.html
    U xenocara/lib/mesa/docs/relnotes/10.3.html
    U xenocara/lib/mesa/docs/relnotes/8.0.html
    U xenocara/lib/mesa/docs/relnotes/9.1.3.html
    U xenocara/lib/mesa/docs/relnotes/3.2
    N xenocara/lib/mesa/docs/relnotes/13.0.5.html
    U xenocara/lib/mesa/docs/relnotes/3.4.1
    U xenocara/lib/mesa/docs/relnotes/11.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.6.html
    U xenocara/lib/mesa/docs/relnotes/7.11.html
    U xenocara/lib/mesa/docs/relnotes/8.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.5.html
    U xenocara/lib/mesa/docs/relnotes/5.0
    U xenocara/lib/mesa/docs/relnotes/10.3.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.5.html
    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/6.2
    U xenocara/lib/mesa/docs/relnotes/7.8.1.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/10.2.8.html
    U xenocara/lib/mesa/docs/relnotes/7.5.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.9.html
    U xenocara/lib/mesa/docs/relnotes/7.0.2.html
    U xenocara/lib/mesa/docs/relnotes/7.7.1.html
    U xenocara/lib/mesa/docs/relnotes/9.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.6.2.html
    U xenocara/lib/mesa/docs/relnotes/10.0.5.html
    U xenocara/lib/mesa/docs/relnotes/7.0.3.html
    U xenocara/lib/mesa/docs/relnotes/13.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.3.html
    U xenocara/lib/mesa/docs/relnotes/6.4.html
    U xenocara/lib/mesa/m4/ax_prog_flex.m4
    U xenocara/lib/mesa/m4/ax_check_gnu_make.m4
    U xenocara/lib/mesa/m4/ltversion.m4
    U xenocara/lib/mesa/m4/ax_gcc_builtin.m4
    U xenocara/lib/mesa/m4/libtool.m4
    U xenocara/lib/mesa/m4/ax_pthread.m4
    U xenocara/lib/mesa/m4/ax_gcc_func_attribute.m4
    U xenocara/lib/mesa/m4/lt~obsolete.m4
    U xenocara/lib/mesa/m4/ltsugar.m4
    U xenocara/lib/mesa/m4/ax_check_python_mako_module.m4
    U xenocara/lib/mesa/m4/ax_prog_bison.m4
    U xenocara/lib/mesa/m4/ltoptions.m4
    U xenocara/lib/mesa/src/Makefile.in
    U xenocara/lib/mesa/src/SConscript
    U xenocara/lib/mesa/src/Makefile.am
    U xenocara/lib/mesa/src/getopt/.editorconfig
    U xenocara/lib/mesa/src/getopt/getopt.h
    U xenocara/lib/mesa/src/getopt/SConscript
    U xenocara/lib/mesa/src/getopt/getopt_long.c
    U xenocara/lib/mesa/src/mapi/mapi_glapi.c
    U xenocara/lib/mesa/src/mapi/entry.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tsd.h
    U xenocara/lib/mesa/src/mapi/Makefile.sources
    U xenocara/lib/mesa/src/mapi/u_current.c
    U xenocara/lib/mesa/src/mapi/entry_x86_tls.h
    U xenocara/lib/mesa/src/mapi/table.c
    U xenocara/lib/mesa/src/mapi/u_execmem.h
    U xenocara/lib/mesa/src/mapi/stub.h
    U xenocara/lib/mesa/src/mapi/u_execmem.c
    C xenocara/lib/mesa/src/mapi/Makefile.in
    U xenocara/lib/mesa/src/mapi/mapi_abi.py
    C xenocara/lib/mesa/src/mapi/Makefile.am
    U xenocara/lib/mesa/src/mapi/entry_x86-64_tls.h
    U xenocara/lib/mesa/src/mapi/u_current.h
    U xenocara/lib/mesa/src/mapi/stub.c
    U xenocara/lib/mesa/src/mapi/entry.c
    U xenocara/lib/mesa/src/mapi/mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/table.h
    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/tests/check_table.cpp
    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/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/glapi/glapi_nop.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86-64.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_gentable.c
    U xenocara/lib/mesa/src/mapi/glapi/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/glapi_sparc.S
    U xenocara/lib/mesa/src/mapi/glapi/glapitable.h
    U xenocara/lib/mesa/src/mapi/glapi/glprocs.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_priv.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_dispatch.c
    U xenocara/lib/mesa/src/mapi/glapi/glapitemp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_getproc.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_entrypoint.c
    U xenocara/lib/mesa/src/mapi/glapi/tests/check_table.cpp
    U xenocara/lib/mesa/src/mapi/glapi/registry/gl.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/typeexpr.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_integer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_genexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GREMEDY_string_marker.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_enums.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_direct_state_access.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_base_instance.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_send.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_program_interface_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_multi_bind.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sample_shading.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_storage_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/static_data.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_procs.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_size.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_indirect_parameters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness_es.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/apiexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.in
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_object_purgeable.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_clip_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_gentable.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86-64_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL3x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_conditional_render.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compressed_texture_pixel_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/INTEL_performance_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/license.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.am
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_context_flush_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sync.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL4x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_subroutine.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_EGL_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rg.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_gather.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_common.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.dtd
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_fp64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_pipeline_statistics_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_recv.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_single_precision.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_viewport_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_primitive_restart.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_window_rectangles.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_SPARC_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_es_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/es_EXT.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_server_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_variable_group_size.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_view.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_fixed_point.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/ARB_clear_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_debug.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/remap_helper.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_debug_output.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_tessellation_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_apitemp.py
    U xenocara/lib/mesa/src/gallium/Automake.inc
    U xenocara/lib/mesa/src/gallium/Makefile.in
    U xenocara/lib/mesa/src/gallium/SConscript
    U xenocara/lib/mesa/src/gallium/Makefile.am
    U xenocara/lib/mesa/src/gallium/README.portability
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/README
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/trace.xsl
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_52.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_50.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_streamout.c
    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_vce_40_2_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_gpu_load.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_buffer_common.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/LLVM_REVISION.txt
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/cayman_msaa.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_util.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_context.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_small_immediates.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_dead_code.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_live_variables.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_register_allocate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_copy_propagation.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_reorder_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_algebraic.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_job.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_qir_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_peephole_sf.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator_validate.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_state.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_lower_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_constant_folding.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_qpu_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_vpm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_emit_uniform_stream_resets.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_drv.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_gem.c
    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_packet.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_main.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_format.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/rbug/README
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/rbug/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_public.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_public.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_immediate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/i915/TODO
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_private.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_fpc.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_static.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batchbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_shader_semantics.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r300/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cs.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_texture_desc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_stencilref.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.h
    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_render_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cb.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_hyperz.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h
    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_compiler_util.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.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_pair.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.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_program.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.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/r300_fragprog_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h
    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.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c
    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/r300_compiler_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/regalloc_tex_1d_swizzle.test
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.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/omod_two_writers.test
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_state.c
    U xenocara/lib/mesa/src/gallium/drivers/noop/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_public.h
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_public.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_descriptors.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/cik_sdma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.py
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r600/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_formats.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreend.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/notes.markdown
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_psi_ops.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_ir.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.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_finalize.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_common.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_rectlist.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_media.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_blt.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen7.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen6.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen8.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_core.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader_ps.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_mi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_bottom.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/intel_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_decode.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_vma.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_blt.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_top.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_media.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_helpers.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_message.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_blitter.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_dynamic.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_isa.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_surface.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_media.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/genhw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_mi.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_regs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.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/virgl_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_protocol.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_public.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs_exec.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs.h
    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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_draw.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/swr/Automake.inc
    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_state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_clear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context_llvm.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_loader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/utils.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/arena.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/fifo.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/blend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/depthstencil.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_conversion.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_types.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa_avx.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tessellator.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs_init.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/conservativeRast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_traits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/ringbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_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/JitManager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/state_llvm.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/JitManager.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_math.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_ir_macros.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_types.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/eventmanager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandlerfile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events.proto
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandler.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/tilingtraits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/ClearTile.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_TileX2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/Convert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_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_Linear2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.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_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_Linear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdintrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simd16intrin.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/swr_assert.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/isa.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_archrast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/ast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pyparser.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/_ast_util.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cache.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lexer.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pygen.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/util.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/filters.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/codegen.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/compat.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/runtime.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/__init__.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cmd.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/exceptions.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/template.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lookup.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/parsetree.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandler_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandlerfile_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_cpp.template
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_framebuffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_backend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_rss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_query.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_mksstats.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_elements.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_streamout.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_misc.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vdecl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_public.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_hw_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_insn.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.py
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_caps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_end.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/includeCheck.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/VGPU10ShaderTokens.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/README
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_dx.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_overlay.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_escape.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_common.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/disasm.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_pm4.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/a3xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c
    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_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/a2xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_lower_if_else.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_sched.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_group.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/instr-a3xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_print.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.py
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/a4xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.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/codegen/nv50_ir_util.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_util.cpp
    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_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_nvc0.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_print.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_emit_nvc0.cpp
    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.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_bb.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_target_nv50.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_emit_gm107.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.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_graph.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_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_inlines.h
    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_target.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.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm
    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/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.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_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/gm107_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_macros.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.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_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h
    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/nvc0_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h
    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/nouveau/nvc0/mme/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_defs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_texture.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_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.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/nv50_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.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/nv50_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.c
    U xenocara/lib/mesa/src/gallium/tools/addr2line.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/tracediff.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/dump.py
    U xenocara/lib/mesa/src/gallium/tools/trace/model.py
    U xenocara/lib/mesa/src/gallium/tools/trace/README.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/dump_state.py
    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/format.py
    U xenocara/lib/mesa/src/gallium/tools/trace/parse.py
    U xenocara/lib/mesa/src/gallium/docs/Makefile
    U xenocara/lib/mesa/src/gallium/docs/llvm-todo.txt
    U xenocara/lib/mesa/src/gallium/docs/make.bat
    U xenocara/lib/mesa/src/gallium/docs/source/screen.rst
    U xenocara/lib/mesa/src/gallium/docs/source/conf.py
    U xenocara/lib/mesa/src/gallium/docs/source/index.rst
    U xenocara/lib/mesa/src/gallium/docs/source/glossary.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso.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/debugging.rst
    U xenocara/lib/mesa/src/gallium/docs/source/intro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/resources.rst
    U xenocara/lib/mesa/src/gallium/docs/source/pipeline.txt
    U xenocara/lib/mesa/src/gallium/docs/source/tgsi.rst
    U xenocara/lib/mesa/src/gallium/docs/source/format.rst
    U xenocara/lib/mesa/src/gallium/docs/source/context.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/profiling.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/knobs.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/faq.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno/ir3-notes.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/rasterizer.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/shader.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/sampler.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/dsa.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/blend.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/velems.rst
    U xenocara/lib/mesa/src/gallium/docs/source/exts/formatting.py
    U xenocara/lib/mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh
    U xenocara/lib/mesa/src/gallium/tests/unit/u_half_test.c
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/unit/u_cache_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/SConscript
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_compatible_test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri.c
    U xenocara/lib/mesa/src/gallium/tests/graw/occlusion-query.c
    U xenocara/lib/mesa/src/gallium/tests/graw/graw_util.h
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-fragcoord.c
    U xenocara/lib/mesa/src/gallium/tests/graw/vs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-gs.c
    U xenocara/lib/mesa/src/gallium/tests/graw/SConscript
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-srgb.c
    U xenocara/lib/mesa/src/gallium/tests/graw/shader-leak.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-frontface.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-swizzle.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-sample.c
    U xenocara/lib/mesa/src/gallium/tests/graw/disasm.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tgsi_dump.gdb
    U xenocara/lib/mesa/src/gallium/tests/graw/clear.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-write-z.c
    U xenocara/lib/mesa/src/gallium/tests/graw/gs-test.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/fragment-shader/frag-mul.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-abs.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-lit.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-face.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-mad-immx.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-max.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-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.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-srcmod-neg.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-mad.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-sge.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-cb-2d.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-lg2.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-rcp.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-ex2.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-min.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-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh
    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/add-mix.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/multi-line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.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-arl.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-frc.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-srcmod-abs.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-add.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-cb-1d.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-srcmod-swz.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-abs.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-mul.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-umul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.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-lrp.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-srcmod-neg.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-slt.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-ex2.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-cb-2d.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-arr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/trivial/tri.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/trivial/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/compute.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri-vdpau.dyn
    U xenocara/lib/mesa/src/gallium/targets/vdpau/target.c
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/vdpau/vdpau.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/xlib.c
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/libgl-xlib.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i965.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/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_msm.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r600.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i915.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/xvmc.sym
    U xenocara/lib/mesa/src/gallium/targets/xvmc/target.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.sym
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.mingw.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/target.c
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.pc.in
    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/dri/target.c
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/dri/SConscript
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri/dri.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/target.c
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/omx/omx.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/graw_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3d.pc.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/drm.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3dadapter9.sym
    C xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/getproc.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/description.c
    U xenocara/lib/mesa/src/gallium/targets/va/target.c
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/va/va.sym
    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/SoftwareRenderer.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/opencl/opencl.sym
    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/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/libgl-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/xa/xa.sym
    U xenocara/lib/mesa/src/gallium/state_trackers/README
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/bitmap.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/query.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/mixer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/decode.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/htab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/presentation.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/preemption.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/vdpau_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/ftab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/output.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/block.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/attributes.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/xvmc_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.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_surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.c
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.h
    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/hgl_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.h
    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/dri2_buffer.h
    C xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/drisw.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri2.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h265.c
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Doxyfile
    C xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/interop.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/transfer.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/object.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/error.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/property.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.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/module.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/compat.hpp
    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/invocation.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen.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/native.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algebra.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/pointer.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/tuple.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/range.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/lazy.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/adaptor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algorithm.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/postproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/va_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/va/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/config.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/display.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg4.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vc1.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/va/image.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/buffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_api.c
    C xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_public.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_defines.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pdata.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/README
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_limits.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.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/authenticatedchannel9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_flags.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.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/volume9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_winsys.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_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_icd.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.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_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_yuv.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/README
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_priv.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa-indent
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tgsi.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_surface.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_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.in
    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/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c
    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_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.am
    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/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h
    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/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
    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/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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.am
    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/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virtgpu_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.am
    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/intel/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/svga_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h
    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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
    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_compiler.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_screen.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_config.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_shader_tokens.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_codec.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_state.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_enums.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_state.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/opencl_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_winsys.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/graw.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_dmabuf.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drisw_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_funcs.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/st_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drm_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/xlibsw_api.h
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/postprocess.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_init.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_celshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_program.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_run.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/ADDING
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.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_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_mman.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_aligned.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_stdc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_thread.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_proto.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_internal.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.c
    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/tgsi/tgsi_iterate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.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_aa_point.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.h
    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/font.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_driver_query.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_sensors_temp.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_fps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_diskstat.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_split_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c
    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_pipe_offset.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.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/translate/translate_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri3.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_rbsp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vlc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_stubs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_types.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pack_color.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pointer.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_format_latc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.csv
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_box.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_video.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_parse.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_rect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_defines.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_string.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dynarray.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pwr8.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_viewport.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_pack.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitcast.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_half.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dual_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/dbghelp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_fifo.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_flags.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_memory.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_range.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py
    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_indices_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.py
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.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_alt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_cached.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.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_action.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c
    U xenocara/lib/mesa/src/hgl/.editorconfig
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.h
    U xenocara/lib/mesa/src/hgl/GLView.cpp
    U xenocara/lib/mesa/src/hgl/SConscript
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.h
    U xenocara/lib/mesa/src/hgl/GLRenderer.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.cpp
    U xenocara/lib/mesa/src/egl/Makefile.sources
    C xenocara/lib/mesa/src/egl/Makefile.in
    U xenocara/lib/mesa/src/egl/SConscript
    U xenocara/lib/mesa/src/egl/Makefile.am
    U xenocara/lib/mesa/src/egl/egl-symbols-check
    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/drivers/dri2/platform_wayland.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_drm.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_surfaceless.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2_fallbacks.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.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/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/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm-protocol.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.xml
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-priv.h
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.pc.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-symbols-check
    U xenocara/lib/mesa/src/egl/main/egllog.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.c
    U xenocara/lib/mesa/src/egl/main/eglsync.c
    U xenocara/lib/mesa/src/egl/main/eglcurrent.h
    U xenocara/lib/mesa/src/egl/main/eglcurrent.c
    U xenocara/lib/mesa/src/egl/main/eglapi.h
    U xenocara/lib/mesa/src/egl/main/eglimage.h
    U xenocara/lib/mesa/src/egl/main/eglglobals.h
    U xenocara/lib/mesa/src/egl/main/egldisplay.c
    U xenocara/lib/mesa/src/egl/main/egllog.h
    U xenocara/lib/mesa/src/egl/main/egldriver.h
    U xenocara/lib/mesa/src/egl/main/egl.pc.in
    U xenocara/lib/mesa/src/egl/main/eglsurface.c
    U xenocara/lib/mesa/src/egl/main/eglglobals.c
    U xenocara/lib/mesa/src/egl/main/egldisplay.h
    U xenocara/lib/mesa/src/egl/main/egldefines.h
    U xenocara/lib/mesa/src/egl/main/egl.def
    U xenocara/lib/mesa/src/egl/main/eglsync.h
    U xenocara/lib/mesa/src/egl/main/eglarray.c
    U xenocara/lib/mesa/src/egl/main/egltypedefs.h
    U xenocara/lib/mesa/src/egl/main/eglarray.h
    U xenocara/lib/mesa/src/egl/main/README.txt
    U xenocara/lib/mesa/src/egl/main/eglimage.c
    U xenocara/lib/mesa/src/egl/main/eglconfig.c
    U xenocara/lib/mesa/src/egl/main/eglapi.c
    U xenocara/lib/mesa/src/egl/main/eglfallbacks.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.h
    U xenocara/lib/mesa/src/egl/main/egldriver.c
    U xenocara/lib/mesa/src/egl/main/eglcompiler.h
    U xenocara/lib/mesa/src/egl/main/eglconfig.h
    U xenocara/lib/mesa/src/egl/main/eglsurface.h
    U xenocara/lib/mesa/src/gbm/Makefile.sources
    U xenocara/lib/mesa/src/gbm/Makefile.in
    U xenocara/lib/mesa/src/gbm/gbm-symbols-check
    U xenocara/lib/mesa/src/gbm/Makefile.am
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_driint.h
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_dri.c
    U xenocara/lib/mesa/src/gbm/main/backend.c
    U xenocara/lib/mesa/src/gbm/main/gbm.c
    U xenocara/lib/mesa/src/gbm/main/gbm.h
    U xenocara/lib/mesa/src/gbm/main/gbmint.h
    U xenocara/lib/mesa/src/gbm/main/gbm.pc.in
    U xenocara/lib/mesa/src/gbm/main/backend.h
    U xenocara/lib/mesa/src/gbm/main/common_drm.h
    U xenocara/lib/mesa/src/compiler/glsl_types.cpp
    U xenocara/lib/mesa/src/compiler/Makefile.sources
    U xenocara/lib/mesa/src/compiler/shader_enums.c
    C xenocara/lib/mesa/src/compiler/Makefile.in
    U xenocara/lib/mesa/src/compiler/shader_enums.h
    U xenocara/lib/mesa/src/compiler/SConscript
    C xenocara/lib/mesa/src/compiler/Makefile.glsl.am
    U xenocara/lib/mesa/src/compiler/Makefile.nir.am
    U xenocara/lib/mesa/src/compiler/Makefile.am
    U xenocara/lib/mesa/src/compiler/SConscript.nir
    U xenocara/lib/mesa/src/compiler/nir_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl_types.h
    U xenocara/lib/mesa/src/compiler/SConscript.glsl
    U xenocara/lib/mesa/src/compiler/nir_types.h
    U xenocara/lib/mesa/src/compiler/builtin_type_macros.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_cfg.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/GLSL.std.450.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_to_nir.c
    U xenocara/lib/mesa/src/compiler/spirv/nir_spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_glsl450.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_variables.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_alu.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_private.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv2nir.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_mat_op_to_vec.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code_local.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_swizzle_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_noop_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packed_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vertex_id.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.cpp
    U xenocara/lib/mesa/src/compiler/glsl/TODO
    U xenocara/lib/mesa/src/compiler/glsl/opt_structure_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.py
    U xenocara/lib/mesa/src/compiler/glsl/ast_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.h
    U xenocara/lib/mesa/src/compiler/glsl/program.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_equals.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_variable.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_packing_builtins.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_redundant_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_offset_array.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_inlining.h
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_vectorize.cpp
    N xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_shared_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/README
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_folding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/cache.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_noise.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_expr.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_named_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_algebraic.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_constant.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_validate.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_instructions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_to_hir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/cache.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_clone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/propagate_invariance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_distance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_array_index.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_tess_level.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation_elements.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_variable_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_ubo_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_initializers.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_texture_projection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_controls.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_flip_matrices.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_output_reads.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.ll
    U xenocara/lib/mesa/src/compiler/glsl/opt_conditional_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_type.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_detect_recursion.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hv_accept.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_array_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_atomics.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_unroll.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_const_arrays_to_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_insert.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_constant_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_set_program_inouts.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard_flow.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast.h
    U xenocara/lib/mesa/src/compiler/glsl/list.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_can_inline.cpp
    U xenocara/lib/mesa/src/compiler/glsl/main.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_optimization.h
    N xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_strings.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_subroutine.cpp
    U xenocara/lib/mesa/src/compiler/glsl/hir_field_selection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_blend_equation_advanced.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_uniform.h
    U xenocara/lib/mesa/src/compiler/glsl/link_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_minmax.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.yy
    U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_rebalance_tree.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_function_inlining.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_tree_grafting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_if_simplification.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.h
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_if_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_derefs.cpp
    N xenocara/lib/mesa/src/compiler/glsl/tests/array_refcount_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/general_ir_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.h
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/cache_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/varyings_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/builtin_variable_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/copy_constant_to_storage_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/sexps.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/set_uniform_initializer_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/compare_ir
    U xenocara/lib/mesa/src/compiler/glsl/tests/sampler_types_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/blob_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/invalidate_locations_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/uniform_initializer_utils.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/varyings_test.Po
    N 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/sampler_types_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/general_ir_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/builtin_variable_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/invalidate_locations_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/glsl_tests_cache_test-cache_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/set_uniform_initializer_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_jumps/create_test_cases.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert.expected
    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/006-gequal.vert.expected
    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/024-shaderout.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert.expected
    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/025-function-parameters.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.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/006-gequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.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/000-basic-test.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert
    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/README
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp.c
    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/glcpp-lex.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.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/111-no-space-operator-after-hash-if.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.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/135-duplicate-parameter.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/034-define-func-self-compose-non-func.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/094-divide-by-zero-short-circuit.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/053-if-divide-and-shift.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.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/136-plus-plus-and-minus-minus.c.expected
    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/079-endif-without-if.c.expected
    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/049-if-expression-precedence.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/077-else-without-if.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/005-define-composite-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.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/098-elif-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c.expected
    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/105-multiline-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.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/121-comment-bug-72686.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/054-if-with-macros.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/084-unbalanced-parentheses.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/094-divide-by-zero-short-circuit.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected
    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/116-disable-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.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/103-garbage-after-else-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.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/134-hash-comment-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c.expected
    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/023-define-extra-whitespace.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/060-left-paren-in-macro-right-paren-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.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/077-else-without-if.c
    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/026-define-func-extra-newlines.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/008-define-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp-test
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c.expected
    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/005-define-composite-chain.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c.expected
    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/006-define-composite-chain-reverse.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/086-reserved-macro-names.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/048-if-nested.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/147-undef-builtin-allowed.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c.expected
    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/002-define-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.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/079-endif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c
    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/029-define-chain-obj-to-func-with-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.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/001-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.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/141-pragma-and-__LINE__.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.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/011-define-func-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c.expected
    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/071-punctuator.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.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/043-if-0-else.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/007-define-composite-recursive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.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/140-null-directive.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/120-undef-builtin.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.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/110-no-space-digits-after-hash-elif.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/067-nested-ifdef-ifndef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.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/139-define-without-macro-name.c.expected
    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/003-define-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.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/097-paste-with-non-function-macro.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/012-define-func-no-args.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/135-duplicate-parameter.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/031-define-chain-func-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c.expected
    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/048-if-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.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/112-no-space-operator-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.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/023-define-extra-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.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/139-define-without-macro-name.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/091-hash-line.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/037-finalize-unexpanded-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.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/106-multiline-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c.expected
    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/038-func-arg-with-commas.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.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/004-define-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.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/064-version.c.expected
    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/000-content-with-spaces.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.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/068-accidental-pasting.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/054-if-with-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/096-paste-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.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/133-eof-without-newline-comment.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/043-if-0-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.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/020-define-func-2-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c
    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/047-if-elif-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.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/039-func-arg-obj-macro-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected
    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/014-define-func-2-arg-unused.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/119-elif-after-else.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/115-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.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/042-if-1.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/127-pragma-empty.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/041-if-0.c.expected
    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/128-space-before-hash.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/133-eof-without-newline-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.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/100-macro-with-colon.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.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/117-line-continuation-and-non-continuation-backslash.c.expected
    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/088-redefine-macro-legitimate.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/078-elif-without-if.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/093-divide-by-zero.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/026-define-func-extra-newlines.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/027-define-chain-obj-to-func.c
    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/125-es-short-circuit-undefined.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/118-comment-becomes-space.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/059-token-pasting-integer.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.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/136-plus-plus-and-minus-minus.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/130-define-comment.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/029-define-chain-obj-to-func-with-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c
    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/126-garbage-after-directive.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/093-divide-by-zero.c
    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/105-multiline-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.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/024-define-chain-to-self-recursion.c
    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/134-hash-comment-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected
    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/022-define-func-arg-with-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/114-paste-integer-tokens.c
    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/glcpp-test-cr-lf
    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/052-if-bitwise.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/061-define-chain-obj-to-func-multi.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clamp_color_outputs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_vla.h
    U xenocara/lib/mesa/src/compiler/nir/nir_search.c
    U xenocara/lib/mesa/src/compiler/nir/nir_validate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_clone.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_two_sided_color.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_ops.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_global_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_inline_functions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_global_vars_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_indirect_derefs.c
    U xenocara/lib/mesa/src/compiler/nir/nir.h
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_temporaries.c
    U xenocara/lib/mesa/src/compiler/nir/nir_normalize_cubemap_coords.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_remove_phis.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip.c
    U xenocara/lib/mesa/src/compiler/nir/nir_metadata.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_dominance.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_tex.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_gcm.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_types.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_gs_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gather_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_system_values.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_propagate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_search.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vars_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bitmap.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dce.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_atomics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.py
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.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_instr_set.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_undef.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_center.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_cse.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_phis_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_c.py
    U xenocara/lib/mesa/src/compiler/nir/nir_search_helpers.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_passthrough_edgeflags.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.h
    U xenocara/lib/mesa/src/compiler/nir/nir_print.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec_to_movs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_sweep.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow_private.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_remove_dead_variables.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_split_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.py
    U xenocara/lib/mesa/src/compiler/nir/nir_propagate_invariant.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_idiv.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.h
    U xenocara/lib/mesa/src/compiler/nir/nir_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_to_source_mods.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_packing.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_ytransform.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_peephole_select.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_load_const_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_liveness.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gs_count_vertices.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_cf.c
    U xenocara/lib/mesa/src/compiler/nir/nir.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_array.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_locals_to_regs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_drawpixels.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_returns.c
    U xenocara/lib/mesa/src/compiler/nir/nir_from_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_repair_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_samplers.c
    U xenocara/lib/mesa/src/compiler/nir/tests/control_flow_tests.cpp
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/nir_tests_control_flow_tests-control_flow_tests.Po
    U xenocara/lib/mesa/src/loader/loader.c
    U xenocara/lib/mesa/src/loader/Makefile.sources
    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/loader_dri3_helper.c
    C xenocara/lib/mesa/src/loader/Makefile.in
    U xenocara/lib/mesa/src/loader/loader_dri3_helper.h
    U xenocara/lib/mesa/src/loader/SConscript
    U xenocara/lib/mesa/src/loader/Makefile.am
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.h
    U xenocara/lib/mesa/src/glx/packsingle.h
    U xenocara/lib/mesa/src/glx/glxconfig.h
    U xenocara/lib/mesa/src/glx/glxconfig.c
    U xenocara/lib/mesa/src/glx/glx_query.c
    U xenocara/lib/mesa/src/glx/dri_glx.c
    U xenocara/lib/mesa/src/glx/glxclient.h
    U xenocara/lib/mesa/src/glx/indirect.h
    U xenocara/lib/mesa/src/glx/glxglvnddispatchfuncs.h
    U xenocara/lib/mesa/src/glx/xfont.c
    U xenocara/lib/mesa/src/glx/clientattrib.c
    U xenocara/lib/mesa/src/glx/glxhash.c
    U xenocara/lib/mesa/src/glx/pixel.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_program.c
    U xenocara/lib/mesa/src/glx/indirect_size.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchindices.h
    U xenocara/lib/mesa/src/glx/indirect_texture_compression.c
    U xenocara/lib/mesa/src/glx/dri2_priv.h
    U xenocara/lib/mesa/src/glx/dri_common_query_renderer.c
    U xenocara/lib/mesa/src/glx/indirect.c
    U xenocara/lib/mesa/src/glx/dri_common_interop.c
    U xenocara/lib/mesa/src/glx/drisw_glx.c
    U xenocara/lib/mesa/src/glx/compsize.c
    U xenocara/lib/mesa/src/glx/glxextensions.h
    U xenocara/lib/mesa/src/glx/dri3_priv.h
    U xenocara/lib/mesa/src/glx/glxcurrent.c
    U xenocara/lib/mesa/src/glx/indirect_size.h
    U xenocara/lib/mesa/src/glx/packrender.h
    U xenocara/lib/mesa/src/glx/dri2.h
    U xenocara/lib/mesa/src/glx/render2.c
    C xenocara/lib/mesa/src/glx/Makefile.in
    U xenocara/lib/mesa/src/glx/glxcmds.c
    U xenocara/lib/mesa/src/glx/create_context.c
    U xenocara/lib/mesa/src/glx/indirect_init.h
    U xenocara/lib/mesa/src/glx/query_renderer.c
    U xenocara/lib/mesa/src/glx/glx_error.h
    U xenocara/lib/mesa/src/glx/XF86dri.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchfuncs.c
    U xenocara/lib/mesa/src/glx/dri_common.c
    U xenocara/lib/mesa/src/glx/indirect_transpose_matrix.c
    U xenocara/lib/mesa/src/glx/clientinfo.c
    U xenocara/lib/mesa/src/glx/single2.c
    U xenocara/lib/mesa/src/glx/SConscript
    U xenocara/lib/mesa/src/glx/glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/singlepix.c
    C xenocara/lib/mesa/src/glx/Makefile.am
    U xenocara/lib/mesa/src/glx/indirect_vertex_array_priv.h
    U xenocara/lib/mesa/src/glx/xf86dristr.h
    U xenocara/lib/mesa/src/glx/dri_sarea.h
    U xenocara/lib/mesa/src/glx/glxextensions.c
    U xenocara/lib/mesa/src/glx/dri_common.h
    U xenocara/lib/mesa/src/glx/indirect_init.c
    U xenocara/lib/mesa/src/glx/dri3_glx.c
    U xenocara/lib/mesa/src/glx/indirect_window_pos.c
    U xenocara/lib/mesa/src/glx/renderpix.c
    U xenocara/lib/mesa/src/glx/xf86dri.h
    U xenocara/lib/mesa/src/glx/glxglvnd.h
    U xenocara/lib/mesa/src/glx/glxhash.h
    U xenocara/lib/mesa/src/glx/driwindows_glx.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.h
    U xenocara/lib/mesa/src/glx/dri2_glx.c
    U xenocara/lib/mesa/src/glx/glxglvnd.c
    U xenocara/lib/mesa/src/glx/glx_error.c
    U xenocara/lib/mesa/src/glx/indirect_glx.c
    U xenocara/lib/mesa/src/glx/drisw_priv.h
    U xenocara/lib/mesa/src/glx/applegl_glx.c
    U xenocara/lib/mesa/src/glx/dri2.c
    U xenocara/lib/mesa/src/glx/vertarr.c
    U xenocara/lib/mesa/src/glx/pixelstore.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.c
    U xenocara/lib/mesa/src/glx/eval.c
    U xenocara/lib/mesa/src/glx/glxext.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.h
    U xenocara/lib/mesa/src/glx/apple/TODO
    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.h
    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_surface.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_stereo.c
    C xenocara/lib/mesa/src/glx/apple/Makefile.in
    U xenocara/lib/mesa/src/glx/apple/RELEASE_NOTES
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_viewport.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.c
    U xenocara/lib/mesa/src/glx/apple/appledri.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.c
    U xenocara/lib/mesa/src/glx/apple/Makefile.am
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_read.c
    U xenocara/lib/mesa/src/glx/apple/appledri.h
    U xenocara/lib/mesa/src/glx/apple/apple_glapi.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.h
    U xenocara/lib/mesa/src/glx/apple/apple_visual.h
    U xenocara/lib/mesa/src/glx/apple/appledristr.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.c
    U xenocara/lib/mesa/src/glx/apple/glx_empty.c
    U xenocara/lib/mesa/src/glx/tests/enum_sizes.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.h
    U xenocara/lib/mesa/src/glx/tests/query_renderer_implementation_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/query_renderer_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/indirect_api.cpp
    U xenocara/lib/mesa/src/glx/tests/Makefile.in
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.cpp
    U xenocara/lib/mesa/src/glx/tests/Makefile.am
    U xenocara/lib/mesa/src/glx/tests/clientinfo_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/mock_xdisplay.h
    U xenocara/lib/mesa/src/glx/tests/create_context_unittest.cpp
    U xenocara/lib/mesa/src/glx/windows/windowsdristr.h
    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/windowsgl.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.c
    U xenocara/lib/mesa/src/glx/windows/windowsgl.h
    C xenocara/lib/mesa/src/glx/windows/Makefile.in
    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/windows_drawable.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.h
    U xenocara/lib/mesa/src/glx/windows/windowsgl_internal.h
    U xenocara/lib/mesa/src/glx/windows/windowsdriproto.pc.in
    U xenocara/lib/mesa/src/gtest/Makefile.in
    U xenocara/lib/mesa/src/gtest/Makefile.am
    U xenocara/lib/mesa/src/gtest/src/gtest-printers.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-port.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-typed-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-test-part.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-death-test.cc
    U xenocara/lib/mesa/src/gtest/src/gtest.cc
    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/include/gtest/gtest-spi.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-typed-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-death-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_pred_impl.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_prod.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-test-part.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-message.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-string.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-port.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-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-param-util-generated.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-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/gtest-type-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h
    U xenocara/lib/mesa/src/util/mesa-sha1.h
    U xenocara/lib/mesa/src/util/Makefile.sources
    U xenocara/lib/mesa/src/util/half_float.h
    U xenocara/lib/mesa/src/util/register_allocate.h
    U xenocara/lib/mesa/src/util/u_atomic_test.c
    U xenocara/lib/mesa/src/util/format_rgb9e5.h
    U xenocara/lib/mesa/src/util/string_to_uint_map.h
    U xenocara/lib/mesa/src/util/ralloc.c
    U xenocara/lib/mesa/src/util/ralloc.h
    U xenocara/lib/mesa/src/util/u_vector.h
    U xenocara/lib/mesa/src/util/u_atomic.h
    U xenocara/lib/mesa/src/util/register_allocate.c
    U xenocara/lib/mesa/src/util/strtod.h
    U xenocara/lib/mesa/src/util/format_srgb.h
    U xenocara/lib/mesa/src/util/set.c
    U xenocara/lib/mesa/src/util/Makefile.in
    U xenocara/lib/mesa/src/util/format_srgb.py
    U xenocara/lib/mesa/src/util/vk_alloc.h
    U xenocara/lib/mesa/src/util/half_float.c
    U xenocara/lib/mesa/src/util/rgtc.c
    U xenocara/lib/mesa/src/util/bitset.h
    U xenocara/lib/mesa/src/util/mesa-sha1.c
    U xenocara/lib/mesa/src/util/u_vector.c
    U xenocara/lib/mesa/src/util/strndup.h
    U xenocara/lib/mesa/src/util/macros.h
    U xenocara/lib/mesa/src/util/SConscript
    U xenocara/lib/mesa/src/util/debug.h
    U xenocara/lib/mesa/src/util/Makefile.am
    U xenocara/lib/mesa/src/util/texcompress_rgtc_tmp.h
    U xenocara/lib/mesa/src/util/hash_table.c
    U xenocara/lib/mesa/src/util/set.h
    U xenocara/lib/mesa/src/util/simple_list.h
    U xenocara/lib/mesa/src/util/list.h
    U xenocara/lib/mesa/src/util/strndup.c
    U xenocara/lib/mesa/src/util/roundeven_test.c
    U xenocara/lib/mesa/src/util/bitscan.h
    U xenocara/lib/mesa/src/util/debug.c
    U xenocara/lib/mesa/src/util/format_r11g11b10f.h
    U xenocara/lib/mesa/src/util/slab.h
    U xenocara/lib/mesa/src/util/format_srgb.c
    U xenocara/lib/mesa/src/util/rgtc.h
    U xenocara/lib/mesa/src/util/rounding.h
    U xenocara/lib/mesa/src/util/string_to_uint_map.cpp
    U xenocara/lib/mesa/src/util/strtod.c
    U xenocara/lib/mesa/src/util/bitscan.c
    U xenocara/lib/mesa/src/util/hash_table.h
    U xenocara/lib/mesa/src/util/u_endian.h
    U xenocara/lib/mesa/src/util/slab.c
    U xenocara/lib/mesa/src/util/tests/hash_table/null_destroy.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/Makefile.in
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_null.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/Makefile.am
    U xenocara/lib/mesa/src/util/tests/hash_table/random_entry.c
    U xenocara/lib/mesa/src/util/tests/hash_table/replacement.c
    U xenocara/lib/mesa/src/util/tests/hash_table/clear.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_many.c
    U xenocara/lib/mesa/src/intel/Makefile.sources
    U xenocara/lib/mesa/src/intel/Makefile.genxml.am
    U xenocara/lib/mesa/src/intel/Makefile.isl.am
    U xenocara/lib/mesa/src/intel/Makefile.common.am
    U xenocara/lib/mesa/src/intel/Makefile.in
    U xenocara/lib/mesa/src/intel/Makefile.am
    U xenocara/lib/mesa/src/intel/Makefile.blorp.am
    U xenocara/lib/mesa/src/intel/tools/decoder.c
    U xenocara/lib/mesa/src/intel/tools/aubinator.c
    U xenocara/lib/mesa/src/intel/tools/Makefile.in
    U xenocara/lib/mesa/src/intel/tools/gen_disasm.h
    U xenocara/lib/mesa/src/intel/tools/decoder.h
    U xenocara/lib/mesa/src/intel/tools/Makefile.am
    U xenocara/lib/mesa/src/intel/tools/disasm.c
    U xenocara/lib/mesa/src/intel/genxml/gen45.xml
    U xenocara/lib/mesa/src/intel/genxml/gen_pack_header.py
    U xenocara/lib/mesa/src/intel/genxml/gen75_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen7_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen75.xml
    U xenocara/lib/mesa/src/intel/genxml/gen4.xml
    U xenocara/lib/mesa/src/intel/genxml/gen5.xml
    U xenocara/lib/mesa/src/intel/genxml/README
    U xenocara/lib/mesa/src/intel/genxml/gen9_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen6_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8.xml
    U xenocara/lib/mesa/src/intel/genxml/gen45_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen5_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen4_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen6.xml
    U xenocara/lib/mesa/src/intel/genxml/gen6_xml.h
    U xenocara/lib/mesa/src/intel/genxml/genX_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen9.xml
    U xenocara/lib/mesa/src/intel/genxml/gen_macros.h
    U xenocara/lib/mesa/src/intel/genxml/gen7.xml
    U xenocara/lib/mesa/src/intel/genxml/gen7_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen75_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen9_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8_xml.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_blit.c
    U xenocara/lib/mesa/src/intel/blorp/blorp.c
    U xenocara/lib/mesa/src/intel/blorp/blorp_clear.c
    U xenocara/lib/mesa/src/intel/blorp/blorp.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_priv.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_genX_exec.h
    U xenocara/lib/mesa/src/intel/common/gen_sample_positions.h
    U xenocara/lib/mesa/src/intel/common/gen_device_info.h
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.c
    U xenocara/lib/mesa/src/intel/common/gen_device_info.c
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.c
    U xenocara/lib/mesa/src/intel/isl/isl.h
    U xenocara/lib/mesa/src/intel/isl/isl_storage_image.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.h
    U xenocara/lib/mesa/src/intel/isl/gen_format_layout.py
    U xenocara/lib/mesa/src/intel/isl/README
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.h
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.c
    U xenocara/lib/mesa/src/intel/isl/isl_surface_state.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.h
    U xenocara/lib/mesa/src/intel/isl/isl_format.c
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.csv
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.h
    U xenocara/lib/mesa/src/intel/isl/isl.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.h
    U xenocara/lib/mesa/src/intel/isl/isl_priv.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.c
    U xenocara/lib/mesa/src/intel/isl/tests/isl_surf_get_image_offset_test.c
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/intel/vulkan/anv_query.c
    U xenocara/lib/mesa/src/intel/vulkan/TODO
    U xenocara/lib/mesa/src/intel/vulkan/gen7_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_state.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_genX.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_allocator.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/gen8_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_dynamic_offsets.c
    U xenocara/lib/mesa/src/intel/vulkan/intel_icd.json.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_push_constants.c
    U xenocara/lib/mesa/src/intel/vulkan/vk_format_info.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_blorp.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_intel.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_image.c
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_batch_chain.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pass.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_pipeline_util.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_private.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.h
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.am
    U xenocara/lib/mesa/src/intel/vulkan/anv_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_dump.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir.h
    U xenocara/lib/mesa/src/intel/vulkan/genX_blorp_exec.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_descriptor_set.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_timestamp.h
    U xenocara/lib/mesa/src/intel/vulkan/gen8_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_formats.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_pipeline_layout.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_device.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem_stubs.c
    U xenocara/lib/mesa/src/intel/vulkan/gen7_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints_gen.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline_cache.c
    U xenocara/lib/mesa/src/intel/vulkan/dev_icd.json.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_util.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/tests/state_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/block_pool_no_free.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_test_helper.h
    U xenocara/lib/mesa/src/amd/Makefile.sources
    U xenocara/lib/mesa/src/amd/Makefile.addrlib.am
    U xenocara/lib/mesa/src/amd/Makefile.in
    U xenocara/lib/mesa/src/amd/Makefile.am
    U xenocara/lib/mesa/src/amd/addrlib/addrinterface.h
    U xenocara/lib/mesa/src/amd/addrlib/addrtypes.h
    U xenocara/lib/mesa/src/amd/addrlib/addrinterface.cpp
    U xenocara/lib/mesa/src/amd/addrlib/inc/lnx_common_defs.h
    U xenocara/lib/mesa/src/amd/addrlib/inc/chip/r800/si_gb_reg.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrobject.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrobject.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrcommon.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/chip/si_ci_vi_merged_enum.h
    U xenocara/lib/mesa/src/amd/common/Makefile.sources
    U xenocara/lib/mesa/src/amd/common/ac_binary.h
    U xenocara/lib/mesa/src/amd/common/r600d_common.h
    U xenocara/lib/mesa/src/amd/common/ac_llvm_helper.cpp
    U xenocara/lib/mesa/src/amd/common/Makefile.in
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.h
    U xenocara/lib/mesa/src/amd/common/sid.h
    U xenocara/lib/mesa/src/amd/common/amd_kernel_code_t.h
    U xenocara/lib/mesa/src/amd/common/Makefile.am
    U xenocara/lib/mesa/src/amd/common/amdgpu_id.h
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.c
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.h
    U xenocara/lib/mesa/src/amd/common/amd_family.h
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.c
    U xenocara/lib/mesa/src/amd/common/ac_binary.c
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.h
    U 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_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints_gen.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_timestamp.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit2d.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_clear.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pass.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fast_clear.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_cs.c
    C xenocara/lib/mesa/src/amd/vulkan/Makefile.in
    U xenocara/lib/mesa/src/amd/vulkan/vk_format.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_parse.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_bufimage.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_device.c
    U xenocara/lib/mesa/src/amd/vulkan/radeon_icd.json.in
    U xenocara/lib/mesa/src/amd/vulkan/radv_private.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_query.c
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.am
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_cache.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_image.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_wayland.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_formats.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_layout.csv
    U xenocara/lib/mesa/src/amd/vulkan/radv_radeon_winsys.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/dev_icd.json.in
    U xenocara/lib/mesa/src/amd/vulkan/si_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_x11.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.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_bo.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.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_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys_public.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_cs.c
    U xenocara/lib/mesa/src/mesa/Makefile.sources
    U xenocara/lib/mesa/src/mesa/gl.pc.in
    U xenocara/lib/mesa/src/mesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/SConscript
    U xenocara/lib/mesa/src/mesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.def
    C xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/dri.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.am
    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/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_image.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_line.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_intrinsics.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_allocator.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cc.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_blend_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_d2x.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sync.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_monitor.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_packed_float.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_sel_peephole.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_tcs_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_disasm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_constant_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_uniforms.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_disable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_conditional_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reset.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_misc_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/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_vs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_pack.cpp
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depthstencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_point.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_dump.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compute.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_curbe.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_batch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_attribute_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_cc.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_eu_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_unfilled.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_defines.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_misc_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ps_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vue_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_combine_constants.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_cache.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_formatquery.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_structs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_cs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_analyze_boolean_resolves.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_iz.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_blorp_exec.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_link.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_l3_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_predicated_break.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_validate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_inst.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_opt_peephole_ffma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_te_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_scissor_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vf_float_conversions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_interpolation_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_texstate.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_fragshader.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_fragprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texblend.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_vtbl.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_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_syncobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.sources
    C xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast_priv.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlconfig.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.am
    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/xmlconfig.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/drirc
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/gen_xmlpool.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/t_options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl/LC_MESSAGES/options.mo
    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_surface.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.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/nouveau_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_generate_mipmap.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa_x.h
    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/glxheader.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/fakeglx.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_line.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.am
    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/glxapi.c
    U xenocara/lib/mesa/src/mesa/sparc/sparc_matrix.h
    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.c
    U xenocara/lib/mesa/src/mesa/sparc/xform.S
    U xenocara/lib/mesa/src/mesa/sparc/norm.S
    U xenocara/lib/mesa/src/mesa/math/m_matrix.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_debug.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_util.h
    U xenocara/lib/mesa/src/mesa/math/m_dotprod_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_translate.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.c
    U xenocara/lib/mesa/src/mesa/math/m_clip_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.h
    U xenocara/lib/mesa/src/mesa/math/m_vector.h
    U xenocara/lib/mesa/src/mesa/math/m_matrix.c
    U xenocara/lib/mesa/src/mesa/math/m_vector.c
    U xenocara/lib/mesa/src/mesa/math/m_norm_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_norm.c
    U xenocara/lib/mesa/src/mesa/math/m_trans_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_clip.c
    U xenocara/lib/mesa/src/mesa/math/m_xform_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_translate.c
    U xenocara/lib/mesa/src/mesa/math/m_copy_tmp.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse.h
    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/x86_xform.c
    U xenocara/lib/mesa/src/mesa/x86/mmx_blendtmp.h
    U xenocara/lib/mesa/src/mesa/x86/x86_cliptest.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.c
    U xenocara/lib/mesa/src/mesa/x86/sse_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/assyntax.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_features.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86.c
    U xenocara/lib/mesa/src/mesa/x86/xform_args.h
    U xenocara/lib/mesa/src/mesa/x86/sse.c
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.h
    U xenocara/lib/mesa/src/mesa/x86/clip_args.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/norm_args.h
    U xenocara/lib/mesa/src/mesa/x86/mmx_blend.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/gen_matypes.c
    U xenocara/lib/mesa/src/mesa/x86/mmx.h
    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/swrast/s_context.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aalinetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.c
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.h
    U xenocara/lib/mesa/src/mesa/swrast/s_linetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/NOTES
    U xenocara/lib/mesa/src/mesa/swrast/s_blit.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.h
    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_aaline.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.h
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.c
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch_tmp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.c
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.h
    U xenocara/lib/mesa/src/mesa/swrast/s_clear.c
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.c
    U xenocara/lib/mesa/src/mesa/swrast/swrast.h
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.c
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.h
    U xenocara/lib/mesa/src/mesa/swrast/s_tritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.h
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.h
    U xenocara/lib/mesa/src/mesa/swrast/s_bitmap.c
    U xenocara/lib/mesa/src/mesa/swrast/s_copypix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texrender.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texture.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.h
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.h
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.h
    U xenocara/lib/mesa/src/mesa/swrast/s_drawpix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.c
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.h
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.h
    U xenocara/lib/mesa/src/mesa/swrast/s_chan.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatritemp.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_dmatmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_tritmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_unfilled.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_inplace.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib_tmp.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_copy.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_rebase.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_eval.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_array.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_minmax_index.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_loopback.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_sampler.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_array.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cache.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gl_api.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels_shader.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_sampler_view.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_builtin.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.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_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_atomicbuf.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_atom_tess.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_depth.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_clip.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_image.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_storagebuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_rasterizer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_framebuffer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_list.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_stipple.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_blend.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.c
    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_syncobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.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/swrast_setup/ss_context.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/swrast_setup.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/NOTES
    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/ss_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_cliptmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_rendertmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_program.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_generic.c
    U xenocara/lib/mesa/src/mesa/tnl/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_draw.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.h
    U xenocara/lib/mesa/src/mesa/tnl/tnl.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texgen.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_points.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_render.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_normals.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texmat.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_light.c
    U xenocara/lib/mesa/src/mesa/tnl/t_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_lighttmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_context.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_sse.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_fog.c
    U xenocara/lib/mesa/src/mesa/main/matrix.c
    U xenocara/lib/mesa/src/mesa/main/shader_query.cpp
    U xenocara/lib/mesa/src/mesa/main/arrayobj.c
    U xenocara/lib/mesa/src/mesa/main/texstore.h
    U xenocara/lib/mesa/src/mesa/main/formats.c
    U xenocara/lib/mesa/src/mesa/main/fbobject.c
    U xenocara/lib/mesa/src/mesa/main/teximage.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.c
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.c
    U xenocara/lib/mesa/src/mesa/main/queryobj.c
    U xenocara/lib/mesa/src/mesa/main/copyimage.c
    U xenocara/lib/mesa/src/mesa/main/texobj.c
    U xenocara/lib/mesa/src/mesa/main/remap.c
    U xenocara/lib/mesa/src/mesa/main/lines.c
    U xenocara/lib/mesa/src/mesa/main/format_pack.py
    U xenocara/lib/mesa/src/mesa/main/framebuffer.h
    U xenocara/lib/mesa/src/mesa/main/api_exec.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.h
    U xenocara/lib/mesa/src/mesa/main/pbo.h
    U xenocara/lib/mesa/src/mesa/main/dispatch.h
    U xenocara/lib/mesa/src/mesa/main/readpix.h
    U xenocara/lib/mesa/src/mesa/main/formatquery.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.h
    U xenocara/lib/mesa/src/mesa/main/texparam.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.c
    U xenocara/lib/mesa/src/mesa/main/extensions.h
    U xenocara/lib/mesa/src/mesa/main/fbobject.h
    U xenocara/lib/mesa/src/mesa/main/format_info.py
    U xenocara/lib/mesa/src/mesa/main/ff_fragment_shader.cpp
    U xenocara/lib/mesa/src/mesa/main/dlist.c
    U xenocara/lib/mesa/src/mesa/main/texgen.c
    U xenocara/lib/mesa/src/mesa/main/execmem.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.h
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.c
    U xenocara/lib/mesa/src/mesa/main/blend.c
    U xenocara/lib/mesa/src/mesa/main/pixel.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.c
    U xenocara/lib/mesa/src/mesa/main/clip.h
    U xenocara/lib/mesa/src/mesa/main/get_hash_params.py
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.c
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.h
    U xenocara/lib/mesa/src/mesa/main/colortab.c
    U xenocara/lib/mesa/src/mesa/main/texenv.c
    U xenocara/lib/mesa/src/mesa/main/bufferobj.h
    U xenocara/lib/mesa/src/mesa/main/blit.c
    U xenocara/lib/mesa/src/mesa/main/shared.c
    U xenocara/lib/mesa/src/mesa/main/atifragshader.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.c
    U xenocara/lib/mesa/src/mesa/main/extensions_table.h
    U xenocara/lib/mesa/src/mesa/main/light.h
    U xenocara/lib/mesa/src/mesa/main/getstring.c
    U xenocara/lib/mesa/src/mesa/main/formats.csv
    U xenocara/lib/mesa/src/mesa/main/mm.c
    U xenocara/lib/mesa/src/mesa/main/points.c
    U xenocara/lib/mesa/src/mesa/main/objectlabel.c
    U xenocara/lib/mesa/src/mesa/main/varray.c
    U xenocara/lib/mesa/src/mesa/main/pack.c
    U xenocara/lib/mesa/src/mesa/main/eval.h
    U xenocara/lib/mesa/src/mesa/main/blend.h
    U xenocara/lib/mesa/src/mesa/main/polygon.c
    U xenocara/lib/mesa/src/mesa/main/fog.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.h
    U xenocara/lib/mesa/src/mesa/main/bbox.h
    U xenocara/lib/mesa/src/mesa/main/bbox.c
    U xenocara/lib/mesa/src/mesa/main/context.c
    U xenocara/lib/mesa/src/mesa/main/errors.h
    U xenocara/lib/mesa/src/mesa/main/teximage.c
    U xenocara/lib/mesa/src/mesa/main/buffers.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/main/formatquery.c
    U xenocara/lib/mesa/src/mesa/main/extensions.c
    U xenocara/lib/mesa/src/mesa/main/state.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.c
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.h
    U xenocara/lib/mesa/src/mesa/main/glheader.h
    U xenocara/lib/mesa/src/mesa/main/texparam.c
    U xenocara/lib/mesa/src/mesa/main/points.h
    U xenocara/lib/mesa/src/mesa/main/mm.h
    U xenocara/lib/mesa/src/mesa/main/texstorage.c
    U xenocara/lib/mesa/src/mesa/main/clip.c
    U xenocara/lib/mesa/src/mesa/main/dlist.h
    U xenocara/lib/mesa/src/mesa/main/format_info.h
    U xenocara/lib/mesa/src/mesa/main/bufferobj.c
    U xenocara/lib/mesa/src/mesa/main/arrayobj.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.c
    U xenocara/lib/mesa/src/mesa/main/light.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.c
    U xenocara/lib/mesa/src/mesa/main/get_hash.h
    U xenocara/lib/mesa/src/mesa/main/state.h
    U xenocara/lib/mesa/src/mesa/main/convolve.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.c
    U xenocara/lib/mesa/src/mesa/main/arbprogram.h
    U xenocara/lib/mesa/src/mesa/main/texcompress.c
    U xenocara/lib/mesa/src/mesa/main/multisample.c
    U xenocara/lib/mesa/src/mesa/main/debug_output.c
    U xenocara/lib/mesa/src/mesa/main/texformat.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.h
    U xenocara/lib/mesa/src/mesa/main/glformats.c
    U xenocara/lib/mesa/src/mesa/main/multisample.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.c
    U xenocara/lib/mesa/src/mesa/main/core.h
    U xenocara/lib/mesa/src/mesa/main/accum.h
    U xenocara/lib/mesa/src/mesa/main/pack.h
    U xenocara/lib/mesa/src/mesa/main/atifragshader.h
    U xenocara/lib/mesa/src/mesa/main/stencil.h
    U xenocara/lib/mesa/src/mesa/main/shaderapi.c
    U xenocara/lib/mesa/src/mesa/main/remap.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.c
    U xenocara/lib/mesa/src/mesa/main/imports.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.py
    U xenocara/lib/mesa/src/mesa/main/get_hash_generator.py
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.c
    U xenocara/lib/mesa/src/mesa/main/texgen.h
    U xenocara/lib/mesa/src/mesa/main/hint.h
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.h
    U xenocara/lib/mesa/src/mesa/main/hash.h
    U xenocara/lib/mesa/src/mesa/main/viewport.h
    U xenocara/lib/mesa/src/mesa/main/dlopen.h
    U xenocara/lib/mesa/src/mesa/main/textureview.h
    U xenocara/lib/mesa/src/mesa/main/blit.h
    U xenocara/lib/mesa/src/mesa/main/errors.c
    U xenocara/lib/mesa/src/mesa/main/version.h
    U xenocara/lib/mesa/src/mesa/main/hash.c
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.c
    U xenocara/lib/mesa/src/mesa/main/texstore.c
    U xenocara/lib/mesa/src/mesa/main/glformats.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.h
    U xenocara/lib/mesa/src/mesa/main/mtypes.h
    U xenocara/lib/mesa/src/mesa/main/objectlabel.h
    U xenocara/lib/mesa/src/mesa/main/condrender.h
    U xenocara/lib/mesa/src/mesa/main/scissor.c
    U xenocara/lib/mesa/src/mesa/main/api_exec.c
    U xenocara/lib/mesa/src/mesa/main/macros.h
    U xenocara/lib/mesa/src/mesa/main/syncobj.h
    U xenocara/lib/mesa/src/mesa/main/image.h
    U xenocara/lib/mesa/src/mesa/main/compute.c
    U xenocara/lib/mesa/src/mesa/main/enable.h
    U xenocara/lib/mesa/src/mesa/main/texgetimage.h
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.c
    U xenocara/lib/mesa/src/mesa/main/syncobj.c
    U xenocara/lib/mesa/src/mesa/main/colortab.h
    U xenocara/lib/mesa/src/mesa/main/extensions_table.c
    U xenocara/lib/mesa/src/mesa/main/debug.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.c
    U xenocara/lib/mesa/src/mesa/main/dd.h
    U xenocara/lib/mesa/src/mesa/main/samplerobj.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.h
    U xenocara/lib/mesa/src/mesa/main/depth.c
    U xenocara/lib/mesa/src/mesa/main/texcompress.h
    U xenocara/lib/mesa/src/mesa/main/context.h
    U xenocara/lib/mesa/src/mesa/main/remap_helper.h
    U xenocara/lib/mesa/src/mesa/main/shared.h
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.c
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.h
    U xenocara/lib/mesa/src/mesa/main/convolve.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.h
    U xenocara/lib/mesa/src/mesa/main/compute.h
    U xenocara/lib/mesa/src/mesa/main/copyimage.h
    U xenocara/lib/mesa/src/mesa/main/formats.h
    U xenocara/lib/mesa/src/mesa/main/enable.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.c
    U xenocara/lib/mesa/src/mesa/main/textureview.c
    U xenocara/lib/mesa/src/mesa/main/shaderobj.h
    U xenocara/lib/mesa/src/mesa/main/feedback.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.c
    U xenocara/lib/mesa/src/mesa/main/vdpau.h
    U xenocara/lib/mesa/src/mesa/main/accum.c
    U xenocara/lib/mesa/src/mesa/main/format_parser.py
    U xenocara/lib/mesa/src/mesa/main/shaderobj.c
    U xenocara/lib/mesa/src/mesa/main/robustness.c
    U xenocara/lib/mesa/src/mesa/main/texgetimage.c
    U xenocara/lib/mesa/src/mesa/main/attrib.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.c
    U xenocara/lib/mesa/src/mesa/main/clear.h
    U xenocara/lib/mesa/src/mesa/main/debug_output.h
    U xenocara/lib/mesa/src/mesa/main/scissor.h
    U xenocara/lib/mesa/src/mesa/main/pixel.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.h
    U xenocara/lib/mesa/src/mesa/main/attrib.c
    U xenocara/lib/mesa/src/mesa/main/texenvprogram.h
    U xenocara/lib/mesa/src/mesa/main/stencil.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.h
    U xenocara/lib/mesa/src/mesa/main/varray.h
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.c
    U xenocara/lib/mesa/src/mesa/main/histogram.c
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.h
    U xenocara/lib/mesa/src/mesa/main/drawtex.c
    U xenocara/lib/mesa/src/mesa/main/shaderapi.h
    U xenocara/lib/mesa/src/mesa/main/condrender.c
    U xenocara/lib/mesa/src/mesa/main/histogram.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.c
    U xenocara/lib/mesa/src/mesa/main/pbo.c
    U xenocara/lib/mesa/src/mesa/main/texenv.h
    U xenocara/lib/mesa/src/mesa/main/imports.h
    U xenocara/lib/mesa/src/mesa/main/feedback.h
    U xenocara/lib/mesa/src/mesa/main/depth.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.h
    U xenocara/lib/mesa/src/mesa/main/queryobj.h
    U xenocara/lib/mesa/src/mesa/main/texobj.h
    U xenocara/lib/mesa/src/mesa/main/readpix.c
    U xenocara/lib/mesa/src/mesa/main/debug.c
    U xenocara/lib/mesa/src/mesa/main/texstorage.h
    U xenocara/lib/mesa/src/mesa/main/colormac.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.c
    U xenocara/lib/mesa/src/mesa/main/clear.c
    U xenocara/lib/mesa/src/mesa/main/uniform_query.cpp
    U xenocara/lib/mesa/src/mesa/main/shaderimage.c
    U xenocara/lib/mesa/src/mesa/main/framebuffer.c
    U xenocara/lib/mesa/src/mesa/main/texstate.h
    U xenocara/lib/mesa/src/mesa/main/image.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.h
    U xenocara/lib/mesa/src/mesa/main/compiler.h
    U xenocara/lib/mesa/src/mesa/main/texstate.c
    U xenocara/lib/mesa/src/mesa/main/polygon.h
    U xenocara/lib/mesa/src/mesa/main/arbprogram.c
    U xenocara/lib/mesa/src/mesa/main/get.h
    U xenocara/lib/mesa/src/mesa/main/fog.c
    U xenocara/lib/mesa/src/mesa/main/texformat.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.h
    U xenocara/lib/mesa/src/mesa/main/shaderimage.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.c
    U xenocara/lib/mesa/src/mesa/main/lines.h
    U xenocara/lib/mesa/src/mesa/main/matrix.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.h
    U xenocara/lib/mesa/src/mesa/main/enums.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.h
    U xenocara/lib/mesa/src/mesa/main/format_unpack.h
    U xenocara/lib/mesa/src/mesa/main/barrier.c
    U xenocara/lib/mesa/src/mesa/main/drawtex.h
    U xenocara/lib/mesa/src/mesa/main/barrier.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.h
    U xenocara/lib/mesa/src/mesa/main/version.c
    U xenocara/lib/mesa/src/mesa/main/hint.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.c
    U xenocara/lib/mesa/src/mesa/main/buffers.c
    U xenocara/lib/mesa/src/mesa/main/viewport.c
    U xenocara/lib/mesa/src/mesa/main/config.h
    U xenocara/lib/mesa/src/mesa/main/eval.c
    U xenocara/lib/mesa/src/mesa/main/enums.h
    U xenocara/lib/mesa/src/mesa/main/get.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.c
    U xenocara/lib/mesa/src/mesa/main/tests/stubs.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/enum_strings.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_formats.cpp
    C xenocara/lib/mesa/src/mesa/main/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/main/tests/program_state_string.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_extensions.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/dispatch_sanity.cpp
    U xenocara/lib/mesa/src/mesa/program/program_parse_extra.c
    U xenocara/lib/mesa/src/mesa/program/program_parser.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.h
    U xenocara/lib/mesa/src/mesa/program/prog_print.c
    U xenocara/lib/mesa/src/mesa/program/program.h
    U xenocara/lib/mesa/src/mesa/program/program_lexer.l
    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.h
    U xenocara/lib/mesa/src/mesa/program/symbol_table.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.y
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.cpp
    U xenocara/lib/mesa/src/mesa/program/program.c
    U xenocara/lib/mesa/src/mesa/program/prog_opt_constant_fold.c
    U xenocara/lib/mesa/src/mesa/program/prog_print.h
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.c
    U xenocara/lib/mesa/src/mesa/program/lex.yy.c
    U xenocara/lib/mesa/src/mesa/program/prog_noise.h
    U xenocara/lib/mesa/src/mesa/program/programopt.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.h
    U xenocara/lib/mesa/src/mesa/program/dummy_errors.c
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.h
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.c
    U xenocara/lib/mesa/src/mesa/program/programopt.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.h
    U xenocara/lib/mesa/src/mesa/program/prog_noise.c
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.c
    U xenocara/lib/mesa/src/mesa/program/symbol_table.c
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.h
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.c
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.sources
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.c
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.in
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.h
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.am
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_queue.h
    U xenocara/lib/mesa/bin/compile
    U xenocara/lib/mesa/bin/depcomp
    U xenocara/lib/mesa/bin/test-driver
    U xenocara/lib/mesa/bin/missing
    U xenocara/lib/mesa/bin/config.guess
    U xenocara/lib/mesa/bin/ar-lib
    U xenocara/lib/mesa/bin/config.sub
    U xenocara/lib/mesa/bin/ltmain.sh
    U xenocara/lib/mesa/bin/install-sh
    U xenocara/lib/mesa/include/c99_math.h
    U xenocara/lib/mesa/include/c99_alloca.h
    U xenocara/lib/mesa/include/no_extern_c.h
    U xenocara/lib/mesa/include/c99_compat.h
    U xenocara/lib/mesa/include/GL/wglext.h
    U xenocara/lib/mesa/include/GL/osmesa.h
    U xenocara/lib/mesa/include/GL/glx_mangle.h
    U xenocara/lib/mesa/include/GL/mesa_glinterop.h
    U xenocara/lib/mesa/include/GL/glx.h
    U xenocara/lib/mesa/include/GL/gl_mangle.h
    U xenocara/lib/mesa/include/GL/glext.h
    U xenocara/lib/mesa/include/GL/glcorearb.h
    U xenocara/lib/mesa/include/GL/gl.h
    U xenocara/lib/mesa/include/GL/glxext.h
    U xenocara/lib/mesa/include/GL/internal/dri_interface.h
    U xenocara/lib/mesa/include/d3dadapter/d3dadapter9.h
    U xenocara/lib/mesa/include/d3dadapter/present.h
    U xenocara/lib/mesa/include/d3dadapter/drm.h
    U xenocara/lib/mesa/include/HaikuGL/README
    U xenocara/lib/mesa/include/HaikuGL/OpenGLKit.h
    U xenocara/lib/mesa/include/HaikuGL/GLView.h
    U xenocara/lib/mesa/include/HaikuGL/GLRenderer.h
    U xenocara/lib/mesa/include/KHR/khrplatform.h
    U xenocara/lib/mesa/include/D3D9/.editorconfig
    U xenocara/lib/mesa/include/D3D9/d3d9types.h
    U xenocara/lib/mesa/include/D3D9/d3d9caps.h
    U xenocara/lib/mesa/include/D3D9/d3d9.h
    U xenocara/lib/mesa/include/GLES2/gl2platform.h
    U xenocara/lib/mesa/include/GLES2/gl2ext.h
    U xenocara/lib/mesa/include/GLES2/gl2.h
    U xenocara/lib/mesa/include/GLES/glplatform.h
    U xenocara/lib/mesa/include/GLES/glext.h
    U xenocara/lib/mesa/include/GLES/gl.h
    U xenocara/lib/mesa/include/GLES/egl.h
    U xenocara/lib/mesa/include/EGL/eglmesaext.h
    U xenocara/lib/mesa/include/EGL/eglextchromium.h
    U xenocara/lib/mesa/include/EGL/eglext.h
    U xenocara/lib/mesa/include/EGL/eglplatform.h
    U xenocara/lib/mesa/include/EGL/egl.h
    U xenocara/lib/mesa/include/CL/cl_gl_ext.h
    U xenocara/lib/mesa/include/CL/cl_d3d10.h
    U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing.h
    U xenocara/lib/mesa/include/CL/cl_gl.h
    U xenocara/lib/mesa/include/CL/cl_d3d11.h
    U xenocara/lib/mesa/include/CL/opencl.h
    U xenocara/lib/mesa/include/CL/cl.h
    U xenocara/lib/mesa/include/CL/cl.hpp
    U xenocara/lib/mesa/include/CL/cl_ext.h
    U xenocara/lib/mesa/include/CL/cl_platform.h
    U xenocara/lib/mesa/include/CL/cl_egl.h
    U xenocara/lib/mesa/include/GLES3/gl31.h
    U xenocara/lib/mesa/include/GLES3/gl3.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/c11/.editorconfig
    U xenocara/lib/mesa/include/c11/threads_posix.h
    U xenocara/lib/mesa/include/c11/threads_win32.h
    U xenocara/lib/mesa/include/c11/threads.h
    U xenocara/lib/mesa/include/vulkan/vk_platform.h
    U xenocara/lib/mesa/include/vulkan/vk_icd.h
    U xenocara/lib/mesa/include/vulkan/vulkan.h
    U xenocara/lib/mesa/include/vulkan/vulkan_intel.h
    U xenocara/lib/mesa/include/pci_ids/virtio_gpu_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeon_pci_ids.h
    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/radeonsi_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i965_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r600_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r300_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/vmwgfx_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r200_pci_ids.h
    U xenocara/lib/mesa/doxygen/gbm.doxy
    U xenocara/lib/mesa/doxygen/common.doxy
    U xenocara/lib/mesa/doxygen/gallium.doc
    U xenocara/lib/mesa/doxygen/README
    U xenocara/lib/mesa/doxygen/tnl_dd.doxy
    U xenocara/lib/mesa/doxygen/swrast.doxy
    U xenocara/lib/mesa/doxygen/i965.doxy
    U xenocara/lib/mesa/doxygen/radeon_subset.doxy
    U xenocara/lib/mesa/doxygen/header_subset.html
    U xenocara/lib/mesa/doxygen/doxy.bat
    U xenocara/lib/mesa/doxygen/vbo.doxy
    U xenocara/lib/mesa/doxygen/nir.doxy
    U xenocara/lib/mesa/doxygen/tnl.doxy
    U xenocara/lib/mesa/doxygen/math.doxy
    U xenocara/lib/mesa/doxygen/swrast_setup.doxy
    U xenocara/lib/mesa/doxygen/main.doxy
    U xenocara/lib/mesa/doxygen/Makefile
    U xenocara/lib/mesa/doxygen/glapi.doxy
    U xenocara/lib/mesa/doxygen/core_subset.doxy
    U xenocara/lib/mesa/doxygen/math_subset.doxy
    U xenocara/lib/mesa/doxygen/glsl.doxy
    U xenocara/lib/mesa/doxygen/header.html
    U xenocara/lib/mesa/doxygen/gallium.doxy
    
    27 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	2017/02/26 05:28:56

Modified files:
	lib/mesa       : Makefile.in configure configure.ac 
	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: glcorearb.h glext.h glxext.h wglext.h 
	lib/mesa/include/GLES: egl.h gl.h glext.h glplatform.h 
	lib/mesa/include/GLES2: gl2.h gl2ext.h gl2platform.h 
	lib/mesa/include/GLES3: gl3.h gl31.h gl3ext.h gl3platform.h 
	lib/mesa/include/KHR: khrplatform.h 
	lib/mesa/src/amd/vulkan: Makefile.in 
	lib/mesa/src/compiler: Makefile.glsl.am Makefile.in 
	lib/mesa/src/egl: Makefile.in 
	lib/mesa/src/gallium/drivers/freedreno: Makefile.in 
	lib/mesa/src/gallium/state_trackers/clover: Makefile.in 
	lib/mesa/src/gallium/state_trackers/dri: Makefile.in 
	lib/mesa/src/gallium/state_trackers/glx/xlib: Makefile.in 
	lib/mesa/src/gallium/targets/d3dadapter9: Makefile.in 
	lib/mesa/src/getopt: getopt.h getopt_long.c 
	lib/mesa/src/glx: Makefile.am Makefile.in 
	lib/mesa/src/glx/apple: Makefile.in 
	lib/mesa/src/glx/windows: Makefile.in 
	lib/mesa/src/loader: Makefile.in 
	lib/mesa/src/mapi: Makefile.am Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i915: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i965: Makefile.am Makefile.in 
	lib/mesa/src/mesa/drivers/dri/r200: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/radeon: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/swrast: Makefile.in 
	lib/mesa/src/mesa/drivers/osmesa: Makefile.in 
	lib/mesa/src/mesa/main/tests: Makefile.in 

Log message:
Merge Mesa 13.0.5


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/02/26 05:35:55

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/26 06:31:57

Modified files:
	databases/mariadb: Makefile 
	emulators/qemu : Makefile 

Log message:
Add aarch64 to ONLY_FOR_ARCHS.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/26 06:34:23

Modified files:
	devel/llvm     : Makefile 
Added files:
	devel/llvm/patches: 
	                    patch-lib_Transforms_Scalar_LoopIdiomRecognize_cpp 

Log message:
Bring in from base:
Disable loop idiom recognition for _libc_memset and _libc_memcpy.  These are
the internal names we use in libc for memset and memcpy and having the
compiler optimize them as calls to memset and memcpy will lead to infinite
recursion.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/26 06:42:10

Modified files:
	devel/cpphs    : Makefile 

Log message:
Make devel/cpphs ghc-only, since nhc98 is gone.

Test build done by Martijn Rijkeboer. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/26 08:20:58

Modified files:
	lib/csu/arm    : md_init.h 

Log message:
Use a long branch (using movw/movt) to implement MD_SECT_CALL_FUNC.
Necessary (but perhaps not suffcient) to build large binaries on arm.

ok guenther@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/26 09:39:22

Modified files:
	app            : Makefile 
	distrib/notes  : README.amd64 README.i386 README.loongson 
	                 README.luna88k README.macppc README.sgi 
	                 README.sparc64 
	distrib/sets/lists/xbase: mi 
	distrib/sets/lists/xetc: mi 
	distrib/sets/lists/xshare: mi 

Log message:
Switch to xenodm(1).

Tested by tb@, Do it now deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	matthieu@cvs.openbsd.org	2017/02/26 09:51:18

Modified files:
	distrib/miniroot: install.sub 
	distrib/sets/lists/base: mi 
	etc            : Makefile rc rc.conf 
	etc/mtree      : BSD.x11.dist 
Added files:
	etc/rc.d       : xenodm 
Removed files:
	etc/rc.d       : xdm 

Log message:
Switch to xenodm(1).

Do it now deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	matthieu@cvs.openbsd.org	2017/02/26 09:58:57

Modified files:
	faq            : current.html 

Log message:
Document xdm(1) -> xenodm(1) transition


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/02/26 11:50:05

Modified files:
	lang/node      : Makefile distinfo 

Log message:
Bump node to the latest. Full changelog:
https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V6.md#6.10.0

OK ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/26 11:54:48

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
makesum: when distinfo changes, display a diff.
okay aja@ landry@

(think multiple distfiles)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2017/02/26 12:32:37

Modified files:
	distrib/sets/lists/xetc: mi 

Log message:
sycn


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:05:12

Modified files:
	lang/go/pkg    : PLIST 

Log message:
unbreak !amd64 packaging, duplicate item in packing-list:

-go/src/cmd/vet/all/whitelist${GOCFG}.txt
+go/src/cmd/vet/all/whitelist/openbsd_amd64.txt


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/26 13:05:36

Modified files:
	audio          : Makefile 
Removed files:
	audio/bladeenc : Makefile distinfo 
	audio/bladeenc/files: Makefile 
	audio/bladeenc/patches: patch-bladeenc_main_c 
	                        patch-bladeenc_samplein_c 
	                        patch-bladeenc_system_h 
	audio/bladeenc/pkg: DESCR PLIST 

Log message:
Remove audio/bladeenc. It has been dead upstream for years, and the
latest version is from 2001. Nothing depends on it.

The main thing it had for it was speed, which is irrelevant on current
hardware. Audio quality was always controversial.

OK juanfra@, bentley@, naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:07:40

Modified files:
	telephony/astmanproxy: Makefile 

Log message:
honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:09:19

Modified files:
	net/vncsnapshot: Makefile 

Log message:
honour CC, CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/26 13:09:32

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	audio/grip/pkg : DESCR 

Log message:
Register removal of bladeenc and remove port mentions in DESCR files.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:11:53

Modified files:
	net/ssvnc      : Makefile 
	net/ssvnc/patches: patch-scripts_util_ss_vncviewer 
Added files:
	net/ssvnc/patches: patch-vncstorepw_Makefile 

Log message:
honour CC, CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:13:05

Modified files:
	security/p0f3  : Makefile 

Log message:
honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:15:35

Modified files:
	comms/zmtx-zmrx: Makefile 

Log message:
honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:16:29

Modified files:
	audio/mp3gain  : Makefile 

Log message:
honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:18:13

Modified files:
	misc/figlet    : Makefile 

Log message:
pass CC for linking (it was already used for compiling, but "gcc" was used
for linking)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:27:21

Modified files:
	converters/html2text: Makefile 
Added files:
	converters/html2text/patches: patch-configure 

Log message:
fix configure script; fails if g++ not available even though build does honour CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/02/26 13:32:12

Added files:
	www/netsurf/netsurf-fb/patches: patch-Makefile 

Log message:
Respect CC when compiling programs used during the build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:36:28

Modified files:
	security/keybase: Makefile 

Log message:
ONLY_FOR_ARCHS=amd64, due to go-ps (bundled) not supporting other arches for OpenBSD.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/02/26 13:45:41

Modified files:
	textproc/heirloom-doctools: Makefile 

Log message:
Respect CXX.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/26 13:49:01

Modified files:
	www/nghttp2    : Makefile distinfo 
	www/nghttp2/patches: patch-Makefile_in 

Log message:
update to nghttp2-1.20.0


CVSROOT:	/cvs
Module name:	www
Changes by:	matthieu@cvs.openbsd.org	2017/02/26 14:25:57

Modified files:
	faq            : current.html 

Log message:
Mention migration of xdm config changes and removing files.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/26 14:52:07

Modified files:
	editors/tweak  : Makefile 

Log message:
Pass CC for linking.

OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	matthieu@cvs.openbsd.org	2017/02/26 15:00:58

Modified files:
	faq            : current.html 

Log message:
More files to remove. From  Raf Czlonka. Thanks.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/26 15:01:36

Modified files:
	faq            : faq6.html index.html 

Log message:
remove much redundant text, self-introspection and unhelpful rambling.
still got a lot to do on this page...

ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/26 15:15:08

Modified files:
	math/aamath    : Makefile 

Log message:
Pass CXX for linking.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/26 15:26:42

Modified files:
	lib/csu/aarch64: md_init.h 
	lib/csu/hppa   : md_init.h 

Log message:
Our certbegin/certend is always PIC, so remove the non-PIC MD_SECT_CALL_FUNC()
implementations.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/26 15:29:58

Modified files:
	games/einstein : Makefile 

Log message:
Pass CXX.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/26 15:55:38

Modified files:
	audio/goattracker: Makefile 
	audio/goattracker/patches: patch-makefile_common 

Log message:
Honour CC and CXX.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/02/26 16:20:09

Modified files:
	usr.sbin/unbound: Makefile.in 

Log message:
Use mkdir -p instead of install -d to create the obj/util directory.
The latter defaults to 755, which doesn't play nicely with BUILDUSER.
Problem reported by jmc and Jan Stary; tested by myself and jmc.

ok ajacoutot


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/26 17:41:31

Modified files:
	faq            : faq6.html index.html 

Log message:
remove many redundant explanations, repeated concepts, campfire stories
about systems with 10mbit nics, etc.

input/ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/02/26 18:42:06

Modified files:
	net/osrtspproxy: Makefile 
	net/osrtspproxy/patches: patch-configure 

Log message:
honour CC, CXX


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/26 19:01:38

Modified files:
	faq            : faq6.html index.html 

Log message:
move nfs section to the end and some minor tweaks.

with tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/02/26 19:28:00

Log message:
    Add a port for the Go fonts.
    
    A family of high-quality WGL4 TrueType fonts, created by the Bigelow &
    Holmes type foundry specifically for the Go project.
    
    The font family, called Go (naturally), includes proportional and
    fixed-width faces in normal, bold, and italic renderings. The fonts have
    been tested for technical uses, particularly programming. Go source code
    looks particularly good when displayed in Go fonts, as its name implies,
    with things like punctuation characters easily distinguishable and
    operators lined up and placed consistently.
    
    ok jturner@ on an earlier version, feedback and ok juanfra@
    
    Status:
    
    Vendor Tag:	jsg
    Release Tags:	jsg_20170227
    
    N ports/fonts/go-fonts/Makefile
    N ports/fonts/go-fonts/distinfo
    N ports/fonts/go-fonts/pkg/DESCR
    N ports/fonts/go-fonts/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/02/26 19:32:22

Modified files:
	fonts          : Makefile 

Log message:
+go-fonts


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/26 23:28:58

Modified files:
	faq            : current.html 

Log message:
Mention the changed autoinstall(8) question, as requested by rpe:
"Do you want the X Window System to be started by xenodm(1)?"
While there, start new sentences on new lines and wrap lines to fit
in 80 columns.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/27 00:13:54

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: archive.c bfd-in.h bfd-in2.h 
	gnu/usr.bin/binutils-2.17/binutils: ar.c 

Log message:
Implement D and U modifiers to ar; with D the uid/gid/mode/time on the updated
archive members are set to deterministic values.  U cancels D.  This should
simplify the syspatch work.

Based on a diff by daniel@
ok millert@ deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/27 00:15:22

Modified files:
	lib/libc/arch/alpha: Symbols.list 
	lib/libc/arch/powerpc: Symbols.list 
	lib/libc/arch/sparc64: Symbols.list 
	lib/librthread : Symbols.map 

Log message:
RELRO means the __{got,plt}_{start,end} symbols are superfluous

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2017/02/27 00:59:54

Modified files:
	audio/grip     : Makefile 

Log message:
Bump REVISION after DESCR change.

Ok aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/27 01:39:25

Modified files:
	sys/dev/fdt    : psci.c 

Log message:
Add support for the older generation spec of PSCI, which supports
shutdown and reset only if the function id is explicitly provided
in the device tree.  For the newer implementations we are supposed
to be using the specified function ids only.

With and ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/27 02:32:09

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-1.4.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/27 02:49:06

Modified files:
	devel/jsoncpp/patches: patch-SConstruct 

Log message:
Honour CXX, do not hardcode "g++"


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/27 03:09:05

Modified files:
	www/cntlm/patches: patch-Makefile 
Added files:
	www/cntlm/patches: patch-configure 

Log message:
Do not hardcode gcc


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/02/27 03:15:11

Modified files:
	distrib/notes/arm64: prep 

Log message:
bump block size for dd; 39x faster on my system.
ok tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/27 03:44:46

Modified files:
	lib/libc/asr   : asr.c asr_private.h getaddrinfo_async.c 
	                 res_search_async.c res_send_async.c 

Log message:
Put a common flags field in the query struct, rather than in some
elements of the union.

This field is for internal asr flags.  The flags in "struct rrset" and
"struct ni" are different kinds of flags.

ok eric@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:02:17

Modified files:
	plan9/drawterm : Makefile 

Log message:
Don't hardcode gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:04:42

Modified files:
	graphics/s10sh : Makefile 

Log message:
Don't harcode gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:13:05

Modified files:
	devel/libutf   : Makefile 

Log message:
Don't hardcode gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:17:29

Modified files:
	devel/premake4 : Makefile 

Log message:
Don't hardcode gcc

...at build time only for now, let's hope that premake doesn't also
hardcode it at runtime.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/02/27 04:18:57

Modified files:
	devel/geany    : Makefile distinfo 
	devel/geany/pkg: PLIST 

Log message:
Update to 1.29
Switch to gtk+3
enable regression tests
ok armani@ (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:27:25

Modified files:
	biology/nutdb  : Makefile 

Log message:
Don't hardcode g++


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/27 04:30:09

Modified files:
	build          : mirrors.dat 

Log message:
openbsd.ipacct.com has https, thanks Boian Bonev


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/27 04:30:35

Modified files:
	.              : ftp.html httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:31:01

Modified files:
	lib/libc/asr   : asr_private.h asr_debug.c 

Log message:
Recognize and allow bits AD and CD in DNS replies.

Needed for RES_USE_DNSSEC support.

ok eric@ gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:38:08

Modified files:
	lib/libc/asr   : asr_private.h asr_utils.c res_mkquery.c 
	                 res_send_async.c 
	lib/libc/net   : resolver.3 

Log message:
Add support for RES_USE_DNSSEC

RES_USE_DNSSEC is implemented by setting the DNSSEC DO bit in outgoing
queries.  The resolver is then supposed to set the AD bit in the reply
if it managed to validate the answer through DNSSEC.  Useful when the
application doesn't implement validation internally.  This scheme
assumes that the validating resolver is trusted and that the
communication channel between the validating resolver and and the client
is secure.

ok eric@ gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/27 04:39:56

Modified files:
	mail/dovecot   : Makefile 

Log message:
Full package spec isn't needed in LIB_DEPENDS-xx/RUN_DEPENDS-xx for subpkgs
depending on the main package, because PKGSPEC is set. Mainly done to simplify
testing RCs. OK Brad (maintainer).


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/02/27 04:42:54

Modified files:
	build          : mirrors.dat 

Log message:
update comment for jaist mirror, we have the CA now, but mirror redirects to http


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/02/27 04:44:23

Modified files:
	usr.sbin/tcpdump: print-domain.c 

Log message:
Print the DNSSEC OKAY flag as "DO", like in upstream tcpdump

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/27 05:07:58

Modified files:
	usr.sbin/vmd   : control.c 

Log message:
Add size checks for imsg received over the control socket.

Additionally, make sure that vmd never fatal()s when receiving an
invalid imsg from an arbitrary user over the control socket.

OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/02/27 06:07:57

Modified files:
	usr.bin/tmux   : cmd-split-window.c tmux.h window.c 

Log message:
If splitw -b is used, insert the new pane before the current one in the
pane list. This means the numbering is in order (for example for
display-panes) and fixes a problem with redrawing the active pane
borders.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/02/27 07:03:53

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddDelete.pm PkgAdd.pm PkgDelete.pm 
	                          PkgSign.pm 

Log message:
framework for some performance stats as a -V... option (like how much
of a package you actually downloaded, or how many packages you touch)
okay aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/27 07:08:16

Modified files:
	net/tinc       : Makefile distinfo 
	net/tinc/patches: patch-doc_tinc_texi 

Log message:
Update to tinc-1.0.31.

from Rafael Sadowski (Maintainer) and tested by Uwe Werler


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/27 07:30:33

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
errant dot; from klemens nanni


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/27 07:37:58

Modified files:
	usr.sbin/vmd   : config.c vmd.c vmd.h 

Log message:
Replace openpty(3) with local function that uses pre-opened /dev/ptm fd

This allows more flexibility for upcoming changes and better pledge.
We also didn't use half of the features of libutil's openpty function.
Additionally, make sure that the ttys are closed correctly on shutdown.

OK gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/02/27 08:05:03

Modified files:
	databases/p5-DBD-mysql: Makefile distinfo 

Log message:
Temporarily switch to a Github snapshot to unbreak sql_lookups in mail/amavisd-new and other software that uses float fields and perl in tainted mode.
More info on the issue fixed: https://github.com/perl5-dbi/DBD-mysql/issues/78
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 08:18:29

Modified files:
	devel/pysvn/patches: patch-Source_setup_configure_py 

Log message:
Don't hardcode gcc/g++


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 08:23:33

Modified files:
	devel/pysvn/patches: patch-Source_setup_configure_py 

Log message:
Show commands used for compilation


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 08:38:02

Modified files:
	chinese/crxvt  : Makefile 

Log message:
Don't harcode gcc, respect CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 08:40:54

Modified files:
	comms/colrdx   : Makefile 
	comms/colrdx/patches: patch-Makefile 

Log message:
Don't hardcode gcc, respect CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 08:47:17

Modified files:
	comms/owx      : Makefile 
	comms/owx/patches: patch-src_Makefile 

Log message:
Respect CXX/CXXFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 08:50:17

Modified files:
	converters/mimepp: Makefile 

Log message:
Don't hardcode g++


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 08:55:30

Modified files:
	converters/lastools: Makefile 

Log message:
Don't hardcode g++


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2017/02/27 08:59:56

Modified files:
	sys/dev/wscons : files.wscons wsconsio.h wsmouse.c 
	                 wsmouseinput.h wsmousevar.h 
Added files:
	sys/dev/wscons : wstpad.c 

Log message:
Handle touchpad input in wsmouse.

The wstpad file contains the core of a touchpad-input driver that
is coupled with wsmouse. It is active in compat-mode if wsmouse has
been configured for it.

ok @matthieu @stsp @mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/02/27 09:21:30

Modified files:
	sys/arch/hppa/conf: Makefile.hppa 

Log message:
Build hppa kernels with -ffreestanding.


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2017/02/27 09:21:47

Modified files:
	sys/dev/pckbc  : pms.c 

Log message:
pms/synaptics: configure wsmouse for handling compat-mode

ok @matthieu @stsp @mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/02/27 09:30:55

Modified files:
	lib/libc/sys   : mount.2 

Log message:
use Dv, for consistency; from bruno flueckiger


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2017/02/27 09:40:10

Modified files:
	sys/dev/pckbc  : pms.c 

Log message:
pms/elantech-v4: configure wsmouse for handling compat-mode

ok @matthieu @stsp @mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/27 09:53:59

Modified files:
	regress/sys/netinet/ipsec: Makefile ipsec.conf 

Log message:
Add IPsec tests for ipip encapsulation.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/27 11:00:26

Modified files:
	faq            : faq8.html index.html 

Log message:
the section on booting into single user mode to change a password somehow
turned into a rant about physical security. remove most of that and just
stick to providing the relevant info.

remove the "why is my clock off by twenty-some seconds?" section.

replace openntpd.org link with openbsd.org/openntpd so it has https.

ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:03:45

Modified files:
	devel/pysvn    : Makefile 
	devel/pysvn/patches: patch-Source_setup_configure_py 

Log message:
Respect CFLAGS/CXXFLAGS

ok stsp@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:25:18

Modified files:
	mail/archiveopteryx/patches: patch-Jamrules 

Log message:
Don't hardcode g++


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:25:50

Added files:
	mail/bmf/patches: patch-configure 

Log message:
Don't hardcode gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:28:14

Modified files:
	misc/xd        : Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:30:43

Modified files:
	misc/randtype  : Makefile 

Log message:
Respect CC/CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:31:07

ports/misc/randtype/patches

Update of /cvs/ports/misc/randtype/patches
In directory cvs.openbsd.org:/tmp/cvs-serv52549/patches

Log Message:
Directory /cvs/ports/misc/randtype/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:32:52

Added files:
	misc/randtype/patches: patch-Makefile 

Log message:
Missed in previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 11:41:38

Modified files:
	multimedia/avinfo: Makefile 

Log message:
Respect CC/CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:13:48

ports/security/foremost/patches

Update of /cvs/ports/security/foremost/patches
In directory cvs.openbsd.org:/tmp/cvs-serv71634/patches

Log Message:
Directory /cvs/ports/security/foremost/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:13:54

Modified files:
	textproc/rman  : Makefile 

Log message:
Respect CC/CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:15:32

Modified files:
	security/foremost: Makefile 
Added files:
	security/foremost/patches: patch-Makefile 

Log message:
Respect CC/CFLAGS


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/02/27 12:16:56

Modified files:
	sys/kern       : uipc_domain.c 
	sys/sys        : sysctl.h 
	sys/netmpls    : mpls.h mpls_input.c mpls_proto.c mpls_raw.c 

Log message:
Retire the AF_MPLS protosw struct. Nothing is using it and the code was super
basic anyway. Simplifies the code a lot also by calling the mpls sysctl no
longer via the protosw but instead directly.
OK mpi@ on a previous diff. Also tested by renato@ who actually found a bug
which is now fixed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:17:12

Modified files:
	security/ipguard: Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:18:19

Modified files:
	sysutils/incron: Makefile 

Log message:
Respect CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 12:27:55

ports/games/blockrage/patches

Update of /cvs/ports/games/blockrage/patches
In directory cvs.openbsd.org:/tmp/cvs-serv72563/patches

Log Message:
Directory /cvs/ports/games/blockrage/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 12:32:35

Modified files:
	games/blockrage: Makefile 
Added files:
	games/blockrage/patches: patch-configure patch-src_Makefile_in 

Log message:
use CC for linking, don't add optimization to CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/27 12:32:43

Log message:
    import gnome-recipes-0.16.0
    
    GNOME Recipes is an easy-to-use application that will help you to
    discover what to cook today, tomorrow, rest of the week and for your
    special occasions.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20172702
    
    N ports/x11/gnome/recipes/distinfo
    N ports/x11/gnome/recipes/Makefile
    N ports/x11/gnome/recipes/pkg/PLIST
    N ports/x11/gnome/recipes/pkg/DESCR
    N ports/x11/gnome/recipes/patches/patch-src_recipes-generated_gresource_xml
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/27 12:33:53

Modified files:
	x11/gnome      : Makefile 

Log message:
+recipes


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/27 12:40:20

Modified files:
	devel/cpp-hocon: Makefile 
	sysutils/ruby-puppet-syntax: Makefile 
	sysutils/facter: Makefile 

Log message:
set maintainer to sebastia@, just like other puppet-related ports

ok sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 12:42:43

Modified files:
	graphics/inkscape: Makefile 

Log message:
autoconf also needs libtool.m4; from maintainer Rafael Sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:46:37

Modified files:
	math/libneural : Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:48:41

Modified files:
	math/minisat   : Makefile 

Log message:
Respect CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:53:23

Modified files:
	math/libtommath: Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 12:58:11

Modified files:
	math/xspread   : Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 13:00:26

Modified files:
	x11/windowlab  : Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 13:02:54

Modified files:
	x11/xmold      : Makefile 

Log message:
Respect CC/CFLAGS


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/27 13:03:58

Modified files:
	build          : mirrors.dat 

Log message:
document that switch.ch will not be implementing https on their mirror.

ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 13:06:12

Modified files:
	games/capitan-sevilla: Makefile 
	games/capitan-sevilla/patches: patch-Makefile 

Log message:
honor CC, CXX


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/27 13:09:53

Modified files:
	faq            : faq11.html 

Log message:
start cleaning up this page. remove much useless text and weird formatting.
try to stay on topic and get right to the point. also replace some outdated
installer text with its current version.

ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 13:16:31

Modified files:
	www/swiggle/patches: patch-Makefile 

Log message:
Don't hardcode gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 13:23:49

Modified files:
	games/gemdropx : Makefile 

Log message:
honor CC, CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 13:26:30

Modified files:
	games/icebreaker: Makefile 

Log message:
honor CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 13:35:08

Modified files:
	games/netris   : Makefile 
Removed files:
	games/netris/patches: patch-Configure 

Log message:
honor CC, simplify


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 13:50:32

Modified files:
	games/sdlpop   : Makefile 
	games/sdlpop/patches: patch-src_Makefile 

Log message:
honor CC, CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 13:51:03

Modified files:
	lang/ocaml     : Makefile 

Log message:
Don't hardcode gcc -c


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 14:01:09

Added files:
	games/typespeed/patches: patch-src_Makefile_in 
	                         patch-testsuite_Makefile_in 

Log message:
do not override CC


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/27 14:13:53

Modified files:
	faq            : faq11.html 

Log message:
the xf86/machdep.allowaperture section isn't valid anymore for platforms
with kms support.

spotted by tb
discussed with and ok matthieu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/27 14:16:05

Modified files:
	distrib/notes  : README.amd64 README.i386 

Log message:
More xenodm. While here promote rcctl(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	matthieu@cvs.openbsd.org	2017/02/27 14:18:01

Modified files:
	distrib/notes  : m4.common 

Log message:
xdm -> xenodm(1)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 14:27:01

Modified files:
	lang/mruby     : Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 14:33:43

Modified files:
	lang/mruby     : Makefile 
Added files:
	lang/mruby/patches: patch-tasks_toolchains_gcc_rake 

Log message:
Show build commands, re-add -W* compile flags

The default is still a debug build.  Is that intended?

"cc" -O2 -pipe -std=gnu99 -Wall -Werror-implicit-function-declaration \
-Wdeclaration-after-statement -Wwrite-strings -g3 -O0 -DMRB_ENABLE_DEBUG_HOOK \
-DMRBGEM_MRUBY_BIN_DEBUGGER_VERSION=0.0.0 ...


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 14:51:01

Modified files:
	lang/libv8     : Makefile 

Log message:
Respect CXX


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/27 14:53:11

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 
	etc            : Makefile changelist 
	usr.sbin/pkg_add: Makefile pkg_add.1 pkg_create.1 pkg_delete.1 
	                  pkg_info.1 
	usr.sbin/pkg_add/OpenBSD: State.pm 
Removed files:
	etc/examples   : pkg.conf 

Log message:
Remove support for pkg.conf in light of the consolidation towards
a single configuration file for the OpenBSD repository location.

The pkg_* tools now use installurl(5) to find the package repository.

NOTE:
/etc/installurl only contains a single URL pointing to a mirror.
Use the PKG_PATH environment variable to specify more than one
package repository.

prodded by and OK deraadt@ aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/27 14:54:20

Modified files:
	emulators/sdlmame: Makefile 
	emulators/sdlmame/patches: patch-makefile 
	emulators/sdlmess: Makefile 
	emulators/sdlmess/patches: patch-makefile 

Log message:
honor CXX for linking


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/27 14:56:09

Modified files:
	regress/sys/net/pflow: Makefile flow.pl 

Log message:
Do not turn on pf in a regression test, require that it has been
enabled before.  Better skip the test than create unexpected side
effects.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/27 15:02:09

Modified files:
	distrib/miniroot: install.sub 

Log message:
Sync comments about install.md variables with reality.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/27 15:24:09

Modified files:
	faq            : current.html 

Log message:
pkg.conf(5) no longer supported

The pkg_* tools now use the installurl(5) file to find the main
package repository. The pkg.conf(5) file should be removed.  Use
the PKG_PATH environment variable in case you need to specify more
than one repository.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/02/27 15:25:58

Modified files:
	usr.sbin/relayd: relayd.conf.5 

Log message:
update an example in the relayd.conf manpage, that was not converted
to the new syntax 2 years ago. Found by Michael W. Lucas, thanks!
ok tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/27 15:26:42

Modified files:
	faq            : current.html 

Log message:
zap <tt> in title


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/27 16:05:21

Modified files:
	regress/sys/net/pf_state: Makefile 

Log message:
This test cannot pass while pf on localhost filters packets statefully.
If the local pf is enabled, write a temporary stateless pass rule
into the regress anchor.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 16:08:14

Modified files:
	math/suitesparse: Makefile 

Log message:
Respect CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 16:32:15

Modified files:
	net/libpsl     : Makefile distinfo 
Removed files:
	net/libpsl/patches: patch-src_psl2c_c patch-src_psl_c 

Log message:
Update to libpsl-0.17.0.

- minor bump for psl_dist_filename and psl_latest
- no more patches needed.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/02/27 16:43:03

Modified files:
	faq            : current.html 

Log message:
slightly improve the explanation, prompting people to create the file
if it is missing.  that is more important than removing the old one.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/02/27 17:07:10

Modified files:
	lang/ghc       : Makefile 

Log message:
Try to work with just /usr/bin/cc (instead of /usr/bin/gcc).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/27 17:21:33

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-html_pages_about_inc_php 
	                      patch-includes_common_php 
	                      patch-includes_defaults_inc_php 
	                      patch-includes_functions_php 
	net/librenms/pkg: PLIST 

Log message:
update to LibreNMS 1.25

- now includes SVG graph support, this can be enabled in the UI from
global settings -> webui settings -> graph settings


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/27 17:33:29

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot/patches: 
	                      patch-doc_example-config_conf_d_10-mail_conf 
	mail/dovecot/pkg: PLIST-server 
Removed files:
	mail/dovecot/patches: 
	                      patch-src_lib-ssl-iostream_dovecot-openssl-common_c 

Log message:
update to Dovecot 2.2.28, ok Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/27 17:33:51

Modified files:
	mail/dovecot-pigeonhole: Makefile distinfo 
	mail/dovecot-pigeonhole/patches: 
	                                 patch-src_managesieve-login_Makefile_in 
	mail/dovecot-pigeonhole/pkg: PLIST 

Log message:
update to dovecot-pigeonhole 0.4.17, ok Brad


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/27 18:05:14

Modified files:
	faq            : current.html 

Log message:
ftp.html contains the exact locations to which installurl should point.
so link to that page and show an example.

from tj, "Yes, that's even better!" deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/27 18:14:59

Modified files:
	faq            : faq15.html 

Log message:
some early spring cleaning for faq15:

trim a ton of extraneous text, explanations no one asked for, off-topic
chatter and repeated thoughts. replace with some right-to-the-point
command examples.

rename "making things easy" to the more informative "selecting a mirror."

clean up and sort the list of pkg tools and their descriptions, adding
pkg_check to the list.

remove overly long "listing installed packages" section.
the one-line description of pkg_info should be enough.

replace outdated pkg/ports command output with their current versions.

remove the following sections:
- how do i tweak ports to have maximum performance
- why is there no package for my top favorite software
- i submitted a new port weeks ago, why isn't it committed
(very little useful information was contained within)

and a few formatting tweaks.

ok tb sthen


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/27 18:30:32

Modified files:
	faq            : faq10.html 

Log message:
fix broken link.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2017/02/27 19:27:41

Modified files:
	plan9/plan9port: Makefile 
	plan9/plan9port/patches: patch-INSTALL 

Log message:
honor CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 19:54:56

Modified files:
	textproc/libxmlbird: Makefile 

Log message:
Respect CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 20:11:37

Modified files:
	x11/goggles    : Makefile 
	x11/goggles/files: config.local 

Log message:
Respect CC/CXX


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/27 21:07:09

Modified files:
	faq            : faq4.html 

Log message:
better link to debian manpage


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/27 21:08:49

Modified files:
	faq            : faq6.html 

Log message:
validation fix: </h2> -> </h3>


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/27 21:13:05

Modified files:
	faq            : faq15.html 

Log message:
validation fix: <None> -> &lt;None&gt;


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/02/27 23:10:08

Modified files:
	usr.bin/ssh    : packet.c 

Log message:
small memleak: free fd_set on connection timeout (though we are heading to
exit anyway). From Tom Rix in bz#2683


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/27 23:31:12

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
Use a do{}while loop with ssize_t return value when calling tls_read()

problem noted by and ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/27 23:49:05

Modified files:
	devel/openmpi  : Makefile 

Log message:
BROKEN on arm, "No atomic primitives available"


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/28 00:02:15

Modified files:
	devel/arm-none-eabi/gcc-linaro: Makefile 

Log message:
Don't hardcode CC to /usr/bin/gcc in the port Makefile


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 00:04:29

Modified files:
	app/xenodm/man : xenodm.man 

Log message:
Remove some remaining XDMCP and remote X servers  references.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/02/28 00:07:07

Modified files:
	sys/netmpls    : mpls.h 

Log message:
Remove mpls_raw_usrreq() prototype, that function is gone.


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2017/02/28 00:27:06

Modified files:
	libressl       : releases.html 

Log message:
Update to the correct year, noted by Brad Smith


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/28 00:32:00

Modified files:
	sys/arch/arm64/conf: GENERIC 

Log message:
build with USER_PCICONF to enable /dev/pci*


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/28 01:35:08

Modified files:
	usr.sbin/vmctl : vmctl.c 

Log message:
Use fmt_scaled(3) in vmctl status output to print curmem/maxmem

This matches the accepted input in vmctl start and vm.conf that
supports using M, G, T etc. instead of a hardcoded MB.  It also allows
to shrink the column size as the unit will be scaled automatically.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/02/28 01:35:56

Modified files:
	usr.sbin/vmd   : vm.conf.5 

Log message:
Sort vm.conf(5) config options alphabetically

OK mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 01:52:26

ports/net/kea/patches

Update of /cvs/ports/net/kea/patches
In directory cvs.openbsd.org:/tmp/cvs-serv47437/patches

Log Message:
Directory /cvs/ports/net/kea/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/28 01:53:07

Modified files:
	devel/pango    : Makefile distinfo 
	devel/pango/pkg: PLIST 

Log message:
Update to pango-1.40.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 01:57:12

Added files:
	net/kea/patches: 
	                 patch-src_bin_dhcp4_tests_dhcp4_process_tests_sh_in 
	                 patch-src_bin_dhcp6_tests_dhcp6_process_tests_sh_in 
Removed files:
	net/kea        : 
	                 patch-src_bin_dhcp4_tests_dhcp4_process_tests_sh_in 
	                 patch-src_bin_dhcp6_tests_dhcp6_process_tests_sh_in 

Log message:
fix brainfart, bad jca

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/28 02:05:09

Modified files:
	emulators/advancemame: Makefile distinfo 

Log message:
Update advancemame to 3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/28 02:08:47

Modified files:
	emulators/advancemess: Makefile distinfo 

Log message:
Update advancemess to 3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/28 02:14:15

Modified files:
	devel/appstream-glib: Makefile distinfo 
	devel/appstream-glib/pkg: PLIST 

Log message:
Update to appstream-glib-0.6.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/02/28 02:24:04

Modified files:
	net/ftpcopy    : Makefile 

Log message:
Respect CC/CFLAGS/LDFLAGS

This port now uses a slashpackage layout.

ok benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/28 02:24:58

Modified files:
	textproc/icu4c : Makefile distinfo 

Log message:
Update to icu4c-58.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/28 02:40:35

Modified files:
	print/texlive  : Makefile.inc 

Log message:
My mirror only has the texmf pregen not the 1800MB of other files,
so remove it from MASTER_SITES (which isn't even used for fetching the
pregen). Fetch problem reported by rsadowski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/28 02:41:17

Modified files:
	sysutils/sysclean: Makefile distinfo 

Log message:
update to sysclean-2.0, from semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/28 02:50:13

Modified files:
	sys/net        : rtable.c art.c art.h 

Log message:
Prevent a MP race in rtable_lookup().

If an ART node is linked to multiple route entries, in the MPATH case,
it is not safe to dereference ``an_dst''.  This non-refcounted pointer
can be changed at any time by another CPU.

So get rid of the pointer and use the first destination of a route entry
when comparing sockaddrs.

This allows us so remove a pointer from 'struct art_node' and save 5Mb of
memory in an IPv4 fullfeed.

ok jmatthew@, claudio@, dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/28 02:52:51

Modified files:
	security/scanssh: Makefile 

Log message:
Drop ftp://ftp.openbsd.org from MASTER_SITES, there is no sense in
switching it to https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/scanssh/
as this directory does not contain latest version.

OK jca@, gonzalo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/02/28 02:58:04

Modified files:
	emulators/fuse : Makefile distinfo 

Log message:
Update fuse to 1.3.3.

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/28 02:59:34

Modified files:
	sys/netinet    : ipsec_input.c 
	sys/netinet6   : ip6_input.c ip6_var.h 

Log message:
Some refactoring in ip6_input() needed to un-KERNEL_LOCK() the IPv6
forwarding path.

Rename ip6_ours() in ip6_local() as this function dispatches packets
to the upper layer.

Introduce ip6_ours() and get rid of 'goto hbhcheck'.  This function
will be later used to enqueue local packets.

As a bonus this reduces differences with IPv4.

Inputs and ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/28 03:16:38

Modified files:
	sys/net        : route.c 

Log message:
Use rtable_match() rather than rtalloc(9) when adding a new route.

rtalloc(9) should be reserved for the hot path otherwise it's hard
to interpret the value of the 'use' counter.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/02/28 03:17:37

Modified files:
	regress/sbin/route: rttest3.ok rttest5.ok rttest6.ok rttest8.ok 

Log message:
Reflect recent net/route.c change.  Adding a conflicting route no
longer increment a 'use' counter.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/28 03:25:11

Modified files:
	devel/p5-Config-Any: Makefile distinfo 

Log message:
Update to p5-Config-Any-0.29.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	natano@cvs.openbsd.org	2017/02/28 03:30:27

Modified files:
	app/xenodm/xenodm: auth.c 

Log message:
Replace the binaryEqual() function with std memcmp().
ok matthieu


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/02/28 03:39:07

Modified files:
	sys/dev/acpi   : acpi.c acpibtn.c acpisony.c acpithinkpad.c 
	                 acpitoshiba.c acpivar.h 

Log message:
Untangle abstract sleep modes from ACPI sleep states. This paves the way
for further work in the area.

idea and ok deraadt
ok mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/02/28 03:49:37

Modified files:
	sys/arch/alpha/alpha: disksubr.c 
	sys/arch/amd64/amd64: disksubr.c 
	sys/arch/arm/arm: disksubr.c 
	sys/arch/arm64/arm64: disksubr.c 
	sys/arch/hppa/hppa: disksubr.c 
	sys/arch/i386/i386: disksubr.c 
	sys/arch/landisk/landisk: disksubr.c 
	sys/arch/loongson/loongson: disksubr.c 
	sys/arch/luna88k/luna88k: disksubr.c 
	sys/arch/macppc/macppc: disksubr.c 
	sys/arch/octeon/octeon: disksubr.c 
	sys/arch/sgi/sgi: disksubr.c 
	sys/arch/socppc/socppc: disksubr.c 
	sys/arch/sparc64/sparc64: disksubr.c 
	sys/kern       : vfs_bio.c 
	sys/sys        : buf.h 

Log message:
Switch geteblks()'s size argument from int to size_t. It's called with
unsigned variables as argument in most places anyway. Decrease the
chance of signedness/range mismatch issues.

ok stefan


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/28 04:32:16

Modified files:
	devel/lua-lgi  : Makefile distinfo 
	devel/lua-lgi/patches: patch-lgi_Makefile patch-lgi_core_c 
	                       patch-lgi_core_lua patch-tests_Makefile 
	devel/lua-lgi/pkg: PLIST 

Log message:
Update to lgi-0.9.1


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/28 04:44:15

Modified files:
	faq            : faq1.html 

Log message:
fix link: snapshots are explained in faq5, not faq4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/28 05:26:01

Modified files:
	x11/gtk+3      : Makefile distinfo 
	x11/gtk+3/pkg  : PLIST-main 

Log message:
Update to gtk+3-3.22.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/02/28 05:47:56

Modified files:
	security/hydra : Makefile distinfo 
	security/hydra/patches: patch-configure 
	security/hydra/pkg: PLIST-main 
Added files:
	security/hydra/patches: patch-Makefile 
	                        patch-hydra-gtk_make_xhydra_sh 
Removed files:
	security/hydra/patches: patch-Makefile_am 
	                        patch-hydra-gtk_src_callbacks_c 
	                        patch-hydra-oracle-listener_c 
	                        patch-hydra-smb_c patch-hydra-snmp_c 

Log message:
Update to hydra-8.4.

from Rafael Sadowski, ok rpointel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/28 06:27:15

Modified files:
	x11/awesome    : Makefile distinfo 
	x11/awesome/patches: patch-CMakeLists_txt 
	                     patch-awesomeConfig_cmake 
	x11/awesome/pkg: MESSAGE PLIST 
Added files:
	x11/awesome/patches: patch-awesomerc_lua 
	                     patch-lib_awful_util_lua 
	                     patch-lib_beautiful_init_lua 
	                     patch-lib_menubar_icon_theme_lua 
	                     patch-lib_menubar_menu_gen_lua 
	                     patch-lib_naughty_core_lua patch-luaa_c 
	                     patch-spawn_c 
	                     patch-themes_default_theme_lua 
	                     patch-themes_xresources_theme_lua 
Removed files:
	x11/awesome/patches: patch-awesome-version-internal_h_in 
	                     patch-awesome_c patch-awesomerc_lua_in 
	                     patch-common_version_c 
	                     patch-lib_awful_util_lua_in 
	                     patch-lib_gears_wallpaper_lua_in 
	                     patch-lib_menubar_menu_gen_lua_in 
	                     patch-lib_menubar_utils_lua_in 
	                     patch-lib_naughty_lua_in 
	                     patch-lib_wibox_widget_systray_lua_in 
	                     patch-themes_default_theme_lua_in 
	                     patch-xwindow_c 

Log message:
Update to awesome v4.0 (Harder, Better, Faster, Stronger)

To migrate a custom rc.lua from version 3.5.x to version 4.0, see
https://awesomewm.org/apidoc/documentation/17-porting-tips.md.html#v4


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/28 07:08:50

Modified files:
	lib/libssl     : ssl_clnt.c ssl_lib.c ssl_locl.h ssl_srvr.c 

Log message:
Stop pretending that MD5 and SHA1 might not exist - rather than locating
"ssl3-md5" and "ssl-sha1", call the EVP_md5() and EVP_sha1() functions
directly.

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/28 07:09:41

Modified files:
	lib/libcrypto/objects: objects.txt 

Log message:
Fix typo in issuingDistributionPoint description.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/28 07:15:37

Modified files:
	lib/libcrypto  : Makefile Symbols.list 
	lib/libcrypto/evp: evp.h 
Added files:
	lib/libcrypto/evp: m_md5_sha1.c 

Log message:
Add an EVP interface that provides concatenated MD5+SHA1 hashes, which are
used in various parts of TLS 1.0/1.1.

This will allow for code simplification in libssl.

The same interface exists in OpenSSL 1.1.

ok beck@ deraadt@ inoguchi@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/02/28 07:17:53

Modified files:
	games/xkobo    : Makefile 
Added files:
	games/xkobo/patches: patch-scenes_h patch-xlbacking_C 
	                     patch-xlbacking_h patch-xlwin_C 
	                     patch-xlwin_h 

Log message:
make the compiler whine less and fix a surprising funny error with llvm,
reported by naddy@:

new C++ rules means that externally visible variables *must* get
type-correct mangled decorations, which  can't work with unnamed types.
lol


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/28 07:22:49

Modified files:
	lib/libcrypto/man: EVP_DigestInit.3 

Log message:
Document EVP_md5_sha1().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/02/28 07:24:41

Modified files:
	lib/libcrypto  : shlib_version 
	lib/libssl     : shlib_version 
	lib/libtls     : shlib_version 

Log message:
Bump minors due to symbol addition.


CVSROOT:	/cvs
Module name:	www
Changes by:	dcoppa@cvs.openbsd.org	2017/02/28 07:35:22

Modified files:
	faq            : current.html 

Log message:
Give a heads up to anyone who may be concerned about the x11/awesome
update to v4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/02/28 07:36:27

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.25.90.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/02/28 08:26:20

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2017/02/28 08:35:02

Modified files:
	sys/net        : if.c 

Log message:
Don't change the up status of the interface when changing its rdomain.
Diff from nagasaka@iij.

ok mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/28 08:35:22

Modified files:
	audio/mumble   : Makefile distinfo 
	audio/mumble/patches: patch-compiler_pri 
	                      patch-src_mumble_main_cpp 

Log message:
Update to mumble-1.2.19


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/02/28 08:36:49

Modified files:
	sys/stand/efi/include: efidevp.h 

Log message:
Update header to clean up defines, add the SATA device path and the
EFI_DEVICE_PATH_TO_TEXT_PROTOCOL protocol.

ok yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/28 09:08:10

Modified files:
	regress/sys/netinet6/frag6: LICENSE Makefile 

Log message:
Fragment reassembly code exists in pf and network stack.  To test
both, run the tests in a loop.  Disable and enable pf on the remote
machine automatically.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 09:13:51

Modified files:
	x11/gnome/calendar: Makefile distinfo 

Log message:
update to gnome-calendar-3.22.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 09:14:02

Modified files:
	x11/gnome/file-roller: Makefile distinfo 

Log message:
update to file-roller-3.22.3


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/28 09:14:36

Modified files:
	regress/sys/netinet6/rh0: Makefile rh0_empty.py rh0_final.py 
	                          rh0_frag2.py rh0_frag_empty.py 
	                          rh0_frag_final.py rh0_frag_route.py 
	                          rh0_none.py rh0_route.py 
Added files:
	regress/sys/netinet6/rh0: LICENSE 

Log message:
IPv6 packets with routing header 0 are dropped by pf, but answered
with ICMP6 parameter problem by the network stack.  This test expects
the ICMP6 packets, so disable pf on the remote machine temporarily.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/02/28 09:15:30

Modified files:
	audio/ncmpcpp  : Makefile 
	audio/ncmpcpp/patches: patch-doc_ncmpcpp_1 patch-src_window_h 

Log message:
window: make key type 64 bits to represent unicode characters
unambiguously (git commit 667e9be00e4ddeeabe322df536e41e499b214371)

+ assorted manpage fixes...


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 09:18:05

Modified files:
	x11/gnome/recipes: Makefile distinfo 
	x11/gnome/recipes/pkg: PLIST 

Log message:
update to gnome-recipes-0.18.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 09:18:47

Modified files:
	textproc/elasticsearch: Makefile distinfo 
	textproc/elasticsearch/pkg: PLIST 

Log message:
update to elasticsearch-5.2.1

ok sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 09:20:18

Modified files:
	sysutils/py-elasticsearch-curator: Makefile 
Added files:
	sysutils/py-elasticsearch-curator/patches: patch-setup_py 

Log message:
loosen dependency on elasticsearch, as also changed upstream

from sebastia@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/02/28 09:20:56

Modified files:
	textproc/py-elasticsearch: Makefile distinfo 
	textproc/py-elasticsearch/pkg: PLIST 

Log message:
update to py-elasticsearch-5.2.0

ok sebastia@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/28 09:46:27

Modified files:
	sys/net        : pfkeyv2.c pfkeyv2.h pfkeyv2_convert.c 
	                 pfkeyv2_parsemessage.c 
	sbin/ipsecctl  : pfkdump.c pfkey.c 
	sbin/iked      : pfkey.c 
	sbin/isakmpd   : pf_key_v2.c 

Log message:
Depending on the addresses, ipsecctl(8) automatically groups sa
bundles together.  Extend the kernel interface to export the bundle
information to userland.  Then ipsecctl -ss -v can show the internal
relations.  Unfortunately the header SADB_X_EXT_PROTOCOL was reused
by SADB_X_GRPSPIS, so it cannot be used to transfer the second sa
type with sysctl.  Introduce a new SADB_X_EXT_SATYPE2 and use it
consistently.
OK hshoexer@ markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 10:40:09

Modified files:
	security/ssh-askpass-fullscreen: Makefile 

Log message:
honor CC, CFLAGS; drop gettext module; sync wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 11:12:14

Modified files:
	x11/roxterm    : Makefile 

Log message:
honor CC, CXX


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 11:24:48

Modified files:
	xserver        : configure.ac 
	xserver/os     : mitauth.c 
	xserver/include: dix-config.h.in os.h 
Added files:
	xserver/os     : timingsafe_memcmp.c 

Log message:
MFC: Use timingsafe_memcmp() to compare MIT-MAGIC-COOKIES
Advisory X41-2017-001: Multiple Vulnerabilities in X.Org.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 11:27:40

Modified files:
	xserver        : configure.ac 
	xserver/include: dix-config.h.in 
	xserver/os     : auth.c 

Log message:
MFC: Use arc4random_buf(3) if available to generate cookies.
Advisory X41-2017-001: Multiple Vulnerabilities in X.Org.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/28 11:32:15

Modified files:
	distrib/miniroot: install.sub 

Log message:
Modify the logic to determine the default answer for the "Location
of sets?" question.  Present 'http' as the default answer if
/etc/installurl exists.  This fixes the issue noted by aja@ and
espie@ that 'cd' was always overriding 'http'.

OK aja@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 11:32:53

Modified files:
	xserver/os     : auth.c osdep.h 

Log message:
auth: remove AuthToIDFunc and associated functions. Not used anymore.
And the current code for MitToId has a use-after-free() issue.
Advisory X41-2017-001: Multiple Vulnerabilities in X.Org


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 11:33:44

Modified files:
	xserver        : configure 
	xserver/include: do-not-use-config.h.in 
	xserver/os     : Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 11:44:56

Modified files:
	lib/libX11     : ChangeLog compile configure configure.ac 
	lib/libX11/nls : locale.dir.pre 
	lib/libX11/specs/libX11: AppC.xml AppD.xml CH02.xml CH03.xml 
	                         CH04.xml CH05.xml CH06.xml CH07.xml 
	                         CH08.xml CH09.xml CH11.xml CH12.xml 
	                         CH13.xml CH14.xml CH15.xml CH16.xml 
	lib/libX11/src : FontNames.c 

Log message:
Update to libX11 1.6.5


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 11:45:48

Modified files:
	app/sessreg    : ChangeLog configure configure.ac sessreg.c 
	app/sessreg/man: Makefile.am Makefile.in 

Log message:
Update to sessreg 1.1.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 11:46:34

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 11:48:54

Modified files:
	audio/gogglesmm: Makefile 

Log message:
honor CXX for linking; drop gettext module


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/02/28 12:36:14

Modified files:
	share/man/man9 : buffercache.9 

Log message:
geteblk() has been switched to size_t.
ok stefan, as part of a larger diff


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/02/28 12:42:38

Modified files:
	distrib/miniroot: install.sub 

Log message:
Create the /etc/installurl file during upgrade too if a mirror was
used and if the file did not yet exist.

discussed with aja@ and deraadt@
OK tb@ aja@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/02/28 13:05:17

Modified files:
	faq            : current.html 

Log message:
slightly rephrase the installurl entry and thin out awesomewm instructions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 13:07:19

Modified files:
	devel/libfmt/files: Make.OpenBSD 

Log message:
honor CC, CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 13:15:52

Added files:
	net/spectrum-tools/patches: patch-Makefile_in 

Log message:
remove spurious use of CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 13:35:18

Modified files:
	geo/osm2go/patches: patch-src_Makefile_in 

Log message:
honor CC


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/02/28 13:42:12

Modified files:
	usr.sbin/crunchgen: crunchgen.c 

Log message:
Make object-in-archive-used identification portable to lld: use --trace
instead of -M and transform the output to a common
/path/to/archive.a(object.o)
syntax.

problem noted by jsg@
ok kettenis@ jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 13:50:12

Modified files:
	devel/libbio/files: Make.OpenBSD 
	devel/libregexp9/files: Make.OpenBSD 

Log message:
honor CC, CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 14:00:12

Modified files:
	misc/wmtimer   : Makefile 
	misc/wmtimer/patches: patch-wmtimer_Makefile 

Log message:
honor CC, CFLAGS; drop gettext module; sync wantlib


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/02/28 14:12:16

Modified files:
	faq            : faq8.html 

Log message:
continue compressing text: remove more overly long backstories in favor
of simple explanations. link to previously-explained topics in other faq
pages instead of rehashing the info. cut out a long example of a problem
and just get right to the solution.

remove section that basically said "to get around reverse dns issues, just
set up a dns server... but we can't tell you about that."

fix nuance between us est and us edt in the time zone section.

sync table of contents with page contents and fix inconsistent formatting.

i don't like these sections that keep putting words in the reader's mouth.

input/ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 14:17:35

Modified files:
	net/dysnomia   : Makefile 

Log message:
honor CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/28 14:29:05

Modified files:
	emulators/dgen-sdl: Makefile 

Log message:
Stop emulators/dgen-sdl from picking up doxygen.

Since doxygen isn't a BUILD_DEPEND (and we don't install any doxygen docs
anyway), it can disappear mid-build during a bulk.

Spotted by, and OK, naddy@. Thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/28 14:31:46

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
Fix a typo in a variable name.

OK espie@, landry@. Thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/28 14:40:03

Modified files:
	devel/libdwarf : Makefile distinfo 
	devel/libdwarf/patches: patch-libdwarf_Makefile_in 
	                        patch-libdwarf_configure 

Log message:
Update to libdwarf-20161124.

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/02/28 14:46:51

Modified files:
	devel/imake    : Makefile 
Added files:
	devel/imake/patches: patch-imakemdep_h 
Removed files:
	devel/imake/files: Makefile 

Log message:
* Switch to tradcpp(1) as the preprocessor.
This is required for clang archs, since imake chokes on the output
of "clang -E -traditional", and doesn't hurt on gcc archs.

* Use the normal autotools build infrastructure instead of rolling our own.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/02/28 15:08:56

Modified files:
	x11/smtube     : Makefile distinfo 

Log message:
Update for SMTube to 17.1.0

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/02/28 15:29:32

Modified files:
	net/openfire   : Makefile distinfo 

Log message:
Update to openfire 4.1.3. From Marc Peters (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/28 15:37:31

Modified files:
	math/gnumeric  : Makefile 

Log message:
mark BROKEN-i386 for now


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/28 15:40:11

Log message:
    Import devel/libvterm, a VT220/xterm/ECMA-48 terminal emulator library.
    
    Needed for neovim.
    
    Input and OK tb@. Thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20170228
    
    N ports/devel/libvterm/Makefile
    N ports/devel/libvterm/distinfo
    N ports/devel/libvterm/pkg/DESCR
    N ports/devel/libvterm/pkg/PLIST
    N ports/devel/libvterm/patches/patch-bin_vterm-ctrl_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/02/28 15:41:29

Modified files:
	devel          : Makefile 

Log message:
Link libvterm.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/02/28 16:05:46

Modified files:
	xserver/os     : mitauth.c rpcauth.c xdmauth.c 

Log message:
Oops, in previous commit I forgot to remove the actual implementation
of the unused *ToID functions(). Spotted by Adam Jackson on xorg-devel
list.  Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/02/28 16:19:42

Modified files:
	share/zoneinfo/datfiles: africa antarctica asia australasia 
	                         backward europe leapseconds 
	                         northamerica southamerica zone.tab 
	                         zone1970.tab 

Log message:
Update to tzdata2017a from ftp.iana.org


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/02/28 16:25:25

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/pkg: PLIST-main 

Log message:
update to vim-8.0.0388


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/28 17:05:21

Modified files:
	regress/sys/netinet6/frag6: Makefile frag6.py frag6_ext.py 
	                            frag6_hop.py frag6_mf0atomic.py 
	                            frag6_mf0long.py frag6_mf0middle.py 
	                            frag6_mf0short.py frag6_mf1end.py 
	                            frag6_opt.py frag6_overatomic.py 
	                            frag6_overdrop.py frag6_overhead.py 
	                            frag6_overhead0.py frag6_overtail.py 
	                            frag6_padding.py frag6_permute.py 
	                            frag6_refrag.py frag6_shortatomic.py 
	                            frag6_timeout.py frag6_udpatomic.py 
	                            frag6_udpheader.py 
	                            frag6_udppayload.py 
	                            frag6_zerofirst.py 
	                            frag6_zerosecond.py 
	regress/sys/netinet6/nd6: Makefile nd6_ar.py nd6_dad.py 
	                          nd6_nud.py nd6_una.py 
	regress/sys/netinet6/rh0: Makefile rh0_empty.py rh0_final.py 
	                          rh0_frag2.py rh0_frag_empty.py 
	                          rh0_frag_final.py rh0_frag_route.py 
	                          rh0_none.py rh0_route.py 
Added files:
	regress/sys/netinet6/nd6: LICENSE 

Log message:
Use consistent address schema with local and remote machine.  Fill
variables with example IPs from my daily test run.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/28 17:40:39

Modified files:
	regress/sys/arch/hppa: Makefile 
	regress/sys/arch/m88k: Makefile 
	regress/sys/arch/sparc64: Makefile 

Log message:
Print SKIPPED if the architecture dependent regression tests are
executed on the wrong machine.  This allows to distinguish their
result from a passed test.


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2017/02/28 17:50:12

Modified files:
	usr.sbin/ldapd : ldapd.c 

Log message:
move up getpid() and getpwnam(LDAP USER) checks
to fail earlier and also make them consistent with
other daemons.

while here:
- fix getpwnam(LDAPD_USER) errx()
- no need to skip_chroot

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2017/02/28 17:53:39

Modified files:
	usr.sbin/ldapd : imsgev.c imsgev.h 

Log message:
add missing rcsid


CVSROOT:	/cvs
Module name:	src
Changes by:	gsoares@cvs.openbsd.org	2017/02/28 17:56:30

Modified files:
	usr.sbin/ntpd  : util.c 

Log message:
*nargv[] holds an array of pointers, so it should be
terminated by a null pointer.

ok rzalamena@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/02/28 17:58:22

Modified files:
	regress/sys/netinet6/frag6: Makefile 
	regress/sys/netinet6/rh0: Makefile 

Log message:
Avoid warnings from ssh -t, check remote SUDO at beginning.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2017/02/28 17:59:59

Modified files:
	plan9/plan9port: Makefile 
Added files:
	plan9/plan9port/patches: patch-bin_9c patch-bin_9l 

Log message:
teach 9c and 9l how honor CC.
fixes plan9/devdrawserver's build spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/28 18:06:54

Modified files:
	share/man/man4 : pci.4 

Log message:
mention pciecam on arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/28 18:24:34

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Remove SYSCALL_DEBUG arm64 has been multiuser for a while now.
ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2017/02/28 19:11:24

Modified files:
	sys/arch/amd64/stand/efiboot: efiboot.c 

Log message:
Fix the code which preserves the device path of the loaded image if
booting from a disk.  It had a typo.  Also tweak the code which finds
the blkio of the boot disk to show how it is matching the device path
nodes clearly.  found by and discussed with patrick@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/28 21:34:09

Modified files:
	sys/arch/armv7/omap: edma.c files.omap 
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Dynamically attach edma(4) using the FDT.
From Ian Sutton.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/28 21:36:45

Modified files:
	sys/arch/armv7/omap: omap.c am335x.c 

Log message:
remove remaining parts of the table driven approach to attaching edma


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/28 21:39:57

Modified files:
	share/man/man4/man4.armv7: omap.4 edma.4 

Log message:
edma attaches to fdt now


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/02/28 22:10:05

Modified files:
	sys/arch/armv7/omap: am335x.c omap3.c omap4.c 

Log message:
Remove unused table driven omgpio bits.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/01 00:43:33

Modified files:
	usr.sbin/vmd   : config.c control.c parse.y vm.conf.5 vmd.c 
	                 vmd.h 
	usr.sbin/vmctl : main.c vmctl.c 

Log message:
Add "owner" option to set a user/group ownership for pre-configured VMs

This allows matching users to start or stop VMs that they "own" and to
access the console accordingly.

OK mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/01 01:31:42

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.19.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/01 01:32:00

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.56.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/01 01:53:46

Modified files:
	multimedia/x264: Makefile 
	multimedia/x264/patches: patch-common_osdep_h 
	multimedia/x265: Makefile 

Log message:
Use atomic ops on aarch64.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/01 01:55:28

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Basic_Targets_cpp 

Log message:
Fix types for OpenBSD/mips64.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/01 02:32:07

Modified files:
	sys/net        : switchofp.c 

Log message:
Remove a misleading comment asking if a timeout needs a LOCK, it doesn't.

ok goda@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/01 03:15:27

Modified files:
	games/roadfighter: Makefile 

Log message:
honor CXX


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/01 03:35:24

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddDelete.pm PackageLocator.pm 
	                          PkgSign.pm State.pm 
	usr.sbin/pkg_add/OpenBSD/ProgressMeter: Term.pm 

Log message:
scrape most of the config framework
okay aja@, rpe@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/01 03:41:40

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
gc really old stuff that's not actually in use anymore


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/01 03:58:27

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/01 04:56:05

Modified files:
	devel/cvsweb   : Makefile 
	devel/cvsweb/pkg: README 

Log message:
update chroot instructions for perl 5.24.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/01 05:23:10

Modified files:
	archivers/p5-Archive-Extract: Makefile distinfo 

Log message:
Update to p5-Archive-Extract-0.80.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/01 05:29:06

Modified files:
	usr.sbin/vmd   : vm.conf.5 

Log message:
tweak previous; ok reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/01 05:43:07

Modified files:
	sys/arch/amd64/stand/libsa: dev_i386.c 

Log message:
Don't try to access the com(4) hardware to set up the console speed
on efiboot(8), as it can crash the EFI application.

ok tom@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/01 06:04:15

Modified files:
	x11/smplayer   : Makefile distinfo 
	x11/smplayer/patches: patch-Makefile 
	x11/smplayer/pkg: PLIST 
Added files:
	x11/smplayer/patches: patch-webserver_Makefile 

Log message:
Update for SMPlayer to 17.2.0

Tested by: Josh, thanks as always

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/01 06:11:07

Modified files:
	converters/p5-JSON-MaybeXS: Makefile distinfo 

Log message:
update p5-JSON-MaybeXS to 1.003009


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/01 06:43:24

Modified files:
	databases/p5-DBIx-XHTML_Table: Makefile distinfo 

Log message:
Update to p5-DBIx-XHTML_Table-1.49.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/01 06:52:46

Modified files:
	devel/p5-autobox: Makefile distinfo 

Log message:
Update to p5-autobox-2.85.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/01 06:53:58

Modified files:
	lib/libcrypto/evp: c_all.c 

Log message:
Include EVP_md5_sha1() via OpenSSL_add_all_digests().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/01 06:54:02

Modified files:
	regress/lib/libcrypto/evp: evptests.txt 

Log message:
Add EVP test for MD5-SHA1.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/01 07:01:24

Modified files:
	lib/libssl     : ssl_algs.c ssl_clnt.c ssl_srvr.c 

Log message:
Convert ssl3_{get,send}_server_key_exchange() to EVP_md5_sha1().

ok inoguchi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/01 07:12:56

Modified files:
	devel/p5-Class-Virtual: Makefile distinfo 

Log message:
Update to p5-Class-Virtual-0.08.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/01 07:33:21

Modified files:
	net/py-idna    : Makefile distinfo 

Log message:
update to py-idna-2.3


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 08:39:53

Modified files:
	faq            : faq8.html 

Log message:
fix typo; spotted by peter wens


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/01 08:47:01

Modified files:
	x11/girara     : Makefile distinfo 
	x11/girara/pkg : PLIST 

Log message:
Update to girara 0.2.7.

Fixes dozens of warnings on the console when starting zathura since Gtk 3.22 update.
(ie https://github.com/pwmt/girara/commit/949c879aa84e9496fabc7d3602060e29f9dc42a1)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/01 09:56:50

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_nano_1 

Log message:
update to 2.7.5 for various bug fixes and small improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/01 10:08:01

Modified files:
	share/man/man8 : afterboot.8 

Log message:
xdm -> xenodm; from jan stary


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/03/01 10:14:41

Modified files:
	x11/isomaster  : Makefile 

Log message:
Honour $CC


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/01 10:52:00

Modified files:
	usr.sbin/pkg_add/OpenBSD: Paths.pm 

Log message:
Remove pkg.conf leftover.

OK espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/01 11:00:50

Modified files:
	usr.sbin/vmd   : Makefile vmd.h vmm.c 
Added files:
	usr.sbin/vmd   : vm.c 

Log message:
Split vmm.c into two files: vm.c for the VM child, vmm.c for the parent

As discussed with mlarkin@, it makes it easier to maintain the file.

OK mlarkin@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 11:57:15

Modified files:
	faq            : faq15.html 

Log message:
unbreak pkg.conf manpage links.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2017/03/01 12:22:36

Modified files:
	xserver        : configure configure.ac 
	xserver/include: do-not-use-config.h.in 
	xserver/os     : auth.c 

Log message:
Fix arc4random_buf(3) detection. Noticed by Eric Engestrom on
the xorg-devel list. Thanks


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 12:23:03

Modified files:
	faq            : faq1.html 

Log message:
replace platform table with a much simpler list of items.

remove sqlite from list of third party software in base and switch
the other items to https links.

remove "how do i write my own manpages" section that was only two words.

remove section about not getting in os flame wars on the internet.

merge and dedupe two very similar paragraphs about man pages.

more simplifying of long explanations and some improved wording.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 12:26:49

Modified files:
	.              : errata59.html errata60.html 

Log message:
release net80211 errata; from stsp


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/01 12:28:48

Modified files:
	sys/net80211   : ieee80211_input.c ieee80211_node.h 
	                 ieee80211_pae_input.c ieee80211_pae_output.c 
	                 ieee80211_proto.c 

Log message:
Fix a bug allowing a man-in-the-middle attack against WPA wireless clients.
A malicious AP could trick clients into connecting to the malicious AP
instead of the desired AP. All frames would then be sent in the clear.
This problem was found and reported by Mathy Vanhoef who also provided
an initial patch which we improved together.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2017/03/01 12:34:08

Modified files:
	.              : errata59.html errata60.html 

Log message:
Use the same wording as used in patch files to describe today's errata.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2017/03/01 12:42:51

Modified files:
	.              : errata59.html errata60.html 

Log message:
fix spelling; french people can stop laughing now


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 13:15:39

Modified files:
	.              : ftp.html goals.html 
	build/mirrors  : ftp.html.head 
	faq            : faq15.html faq4.html faq5.html 

Log message:
begin removing mentions of the cd sets...


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/01 13:20:46

Modified files:
	sys/net80211   : ieee80211_pae_input.c 

Log message:
Fix some DPRINTFs I just added to ieee80211_pae_input.c.
No fnuctional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/01 13:42:57

Modified files:
	games/teeworlds: Makefile 
Added files:
	games/teeworlds/patches: patch-configure_lua 

Log message:
honor CC, from maintainer Donovan Watteau


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/01 13:43:06

Modified files:
	audio/quodlibet: Makefile 

Log message:
fix RUN_DEPENDS, breakage reported by Lars <lists-openbsd at srdn.de>


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/01 13:48:12

Modified files:
	distrib/miniroot: install.sub 

Log message:
Comments ...


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/01 13:48:14

Modified files:
	.              : alpha.html amd64.html arm64.html armish.html 
	                 armv7.html aviion.html hp300.html hppa.html 
	                 i386.html landisk.html loongson.html 
	                 luna88k.html macppc.html mvme68k.html 
	                 mvme88k.html octeon.html sgi.html socppc.html 
	                 sparc.html sparc64.html vax.html zaurus.html 

Log message:
minor cleanup to reduce tj's 6.1 diff


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/01 13:57:29

Modified files:
	sys/net80211   : Tag: OPENBSD_5_9 ieee80211_input.c 
	                 ieee80211_node.h ieee80211_pae_input.c 
	                 ieee80211_pae_output.c ieee80211_proto.c 

Log message:
MFC: Fix a bug allowing a man-in-the-middle attack against WPA wireless clients.
A malicious AP could trick clients into connecting to the malicious AP
instead of the desired AP. All frames would then be sent in the clear.
This problem was found and reported by Mathy Vanhoef who also provided
an initial patch which we improved together.
(OpenBSD 6.0 errata 18, Mar 1, 2017)
by and ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/01 13:57:51

Modified files:
	sys/net80211   : Tag: OPENBSD_6_0 ieee80211_input.c 
	                 ieee80211_node.h ieee80211_pae_input.c 
	                 ieee80211_pae_output.c ieee80211_proto.c 

Log message:
MFC: Fix a bug allowing a man-in-the-middle attack against WPA wireless clients.
A malicious AP could trick clients into connecting to the malicious AP
instead of the desired AP. All frames would then be sent in the clear.
This problem was found and reported by Mathy Vanhoef who also provided
an initial patch which we improved together.
(OpenBSD 5.9 errata 35, Mar 1, 2017)
by and ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/01 14:15:26

Modified files:
	usr.sbin/vmctl : main.c vmctl.c vmctl.h 

Log message:
unbreak vmctl build by renaming a function that now conflicts with
something from vmd.h . Temporary fix until the original committer can
fix it the way he desires.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/01 14:22:57

Modified files:
	usr.sbin/vmctl : main.c vmctl.c vmctl.h 

Log message:
Rename start_vm_complete to vm_start_complete for consistency.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 14:35:40

Modified files:
	faq            : faq15.html 

Log message:
remove two duplicate sentences.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/01 14:58:53

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
add CLANG_ARCHS to PROPERTIES


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/01 15:02:56

Modified files:
	net/gophernicus: Makefile distinfo 

Log message:
Update gophernicus to 2.4.

OK juanfra@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/01 15:25:52

Modified files:
	regress/sys/arch/hppa: Makefile 
	regress/sys/arch/m88k: Makefile 
	regress/sys/arch/sparc64: Makefile 

Log message:
Print message why tests are skipped.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jmatthew@cvs.openbsd.org	2017/03/01 15:54:13

Modified files:
	databases/riak : Makefile 
	databases/riak/patches: 
	                        patch-deps_eleveldb_c_src_leveldb_build_config_mk 

Log message:
honor CC and CXX


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 15:56:48

Modified files:
	.              : index.html 

Log message:
change orders link to openbsdstore and tweak cd-related text.

discussed with deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/01 16:13:38

Modified files:
	.              : orders.html lyrics.html 

Log message:
tweak cd-related text.

discussed with deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/03/01 16:17:22

Added files:
	.              : 61.html 

Log message:
prototype for 6.1


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/01 18:08:12

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/01 19:34:56

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Refactor cpuid exit handler to make it easier to bolt on SVM support
shortly (instead of having two nearly identical functions.)

ok reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/01 19:57:35

Modified files:
	sys/arch/i386/i386: vmm.c 
	sys/arch/amd64/amd64: vmm.c 

Log message:
reduce differences in vmm between amd64 and i386 (i386 picks up a handful
of recent fixes for SVM that were missed). No functional change on amd64
(just an added comment)


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/01 20:09:50

Modified files:
	sys/net        : if_mpw.c route.c 
	sys/netmpls    : mpls_input.c 

Log message:
Allow MPLS switching and VPLS across rdomains.

OK claudio@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/01 20:21:44

Modified files:
	sys/arch/i386/i386: vmm.c 
	sys/arch/amd64/amd64: vmm.c 

Log message:
reduce some more differences in vmm between i386 and amd64 that didn't
get picked up previously. i386 gets some changes relating to EFER
treatment and amd64 gets a whitespace fix.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/02 00:26:31

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
log attempts to access cpuid leaf function 0x03, "processor serial number".

matches other log messages for other unimplemented cpuid leaf functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/02 00:27:13

Modified files:
	sys/arch/i386/i386: vmm.c 

Log message:
refactor cpuid exit handler for easier merge with upcoming SVM version.
Matches amd64 commit made yesterday.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/02 00:33:37

Modified files:
	usr.sbin/vmd   : config.c parse.y priv.c virtio.c virtio.h vm.c 
	                 vm.conf.5 vmd.c vmd.h 

Log message:
Add "locked lladdr" option to prevent VMs from spoofing MAC addresses.

This is especially useful when multiple VMs share a switch, the
implementation is independent from the underlying switch or bridge.

no objections mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/02 01:58:24

Modified files:
	sys/kern       : uipc_proto.c 
	sys/net        : pfkey.c rtsock.c 
	sys/netinet    : in_proto.c 
	sys/netinet6   : in6_proto.c 
	sys/netmpls    : mpls_proto.c 

Log message:
Convert domain declarations to C99 initializers.

ok dhill@, florian@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/02 02:06:59

Modified files:
	sys/netinet6   : icmp6.c 

Log message:
Use the routing table rather than the global list of IPv6 address.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/02 02:24:02

Modified files:
	sys/netinet6   : nd6.c 

Log message:
Prefer the global list of interfaces to the dying global list of IPv6
addresses in nd6_timer().

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/03/02 02:29:53

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
close ftp(1)'s output file to avoid leaking one FD per request.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/02 02:37:05

Modified files:
	sys/net        : rtsock.c 

Log message:
Fix a rtentry leak in error path.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/02 02:41:27

Modified files:
	sys/net80211   : ieee80211_proto.c 

Log message:
Initialize 'ni' pointer in ieee80211_keyrun(). Fallout from last minute
changes I made to my WPA security patch. Affects WPA enterprise only.
Problem found by patrick@
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 02:41:30

Modified files:
	www/mhonarc/patches: patch-examples_mha-preview 
	                     patch-examples_mhasiteinit_pl 
	                     patch-lib_mhopt_pl 

Log message:
regen patches


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/02 02:46:10

Modified files:
	share/man/man4 : re.4 

Log message:
8168 support jumbo frames;


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/02 02:47:32

Modified files:
	sys/net80211   : Tag: OPENBSD_6_0 ieee80211_proto.c 

Log message:
Merge ieee80211_proto.c r1.74 to 6.0-stable:
Initialize 'ni' pointer in ieee80211_keyrun(). Fallout from last minute
changes I made to my WPA security patch. Affects WPA enterprise only.
Problem found by patrick@
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 02:47:40

Modified files:
	www/mhonarc    : Makefile 
Added files:
	www/mhonarc/patches: patch-lib_mhamain_pl 

Log message:
Fix MHonArc following the perl update, there is another case of "Can't use
'defined(%hash)'" which is now an error ("Compilation failed in require")
rather than just a warning.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/02 02:48:37

Modified files:
	sys/net80211   : Tag: OPENBSD_5_9 ieee80211_proto.c 

Log message:
Merge ieee80211_proto.c r1.74 to 5.9-stable:
Initialize 'ni' pointer in ieee80211_keyrun(). Fallout from last minute
changes I made to my WPA security patch. Affects WPA enterprise only.
Problem found by patrick@
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 03:12:02

Modified files:
	textproc/wkhtmltopdf: Makefile 
Added files:
	textproc/wkhtmltopdf/patches: patch-qt_configure 
	                              patch-qt_mkspecs_openbsd-g++_qmake_conf 

Log message:
honour CC/CXX, from maintainer Frank Groeneveld


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/03/02 03:38:10

Modified files:
	etc/etc.amd64  : sysctl.conf 
	etc/etc.i386   : sysctl.conf 
	etc/etc.loongson: sysctl.conf 
	sbin/init      : init.c 
	sbin/reboot    : reboot.c 
	sys/arch/amd64/amd64: machdep.c 
	sys/arch/amd64/include: cpu.h 
	sys/arch/arm/include: cpu.h 
	sys/arch/i386/i386: machdep.c 
	sys/arch/i386/include: cpu.h 
	sys/arch/loongson/loongson: machdep.c 
	sys/arch/mips64/include: cpu.h 
	sys/dev/acpi   : acpi.c acpibtn.c 
	sys/dev/isa    : aps.c 

Log message:
Add a new sysctl machdep.lidaction. The sysctl works as follows:

machdep.lidaction=0	# do nothing
machdep.lidaction=1	# suspend
machdep.lidaction=2	# hibernate

lidsuspend is just an alias for lidaction, so if you change one, the
other one will have the same value. The plan is to remove
machdep.lidsuspend eventually when people have upgraded their
/ets/sysctl.conf.

discussed with deraadt, who came up with the new MIB name
no objections mlarkin
ok stsp halex jcs


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/02 04:05:50

Modified files:
	lib/libtls/man : tls_config_verify.3 

Log message:
fix error in Dt; from robert klein


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 04:25:01

Modified files:
	mail/dovecot   : Makefile 
Added files:
	mail/dovecot/patches: patch-src_plugins_trash_trash-plugin_c 

Log message:
backport fix for dovecot's trash plugin, "Panic: file mail-namespace.c:
line 709 (mail_namespace_find): assertion failed: (ns != NULL)". ok brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 05:04:54

Modified files:
	sysutils/raspberrypi-firmware: Makefile distinfo 
	sysutils/raspberrypi-firmware/pkg: PLIST 

Log message:
update to raspberrypi-firmware 1.20170215, ok jsg


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/02 05:19:22

Modified files:
	lang/fpc       : Makefile distinfo 
	lang/fpc/pkg   : PLIST 
Removed files:
	lang/fpc/patches: patch-fpcsrc_rtl_openbsd_ptypes_inc 

Log message:
Update to FPC 3.0.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 06:27:45

Modified files:
	net/olsrd      : Makefile 

Log message:
honour CC, sync WANTLIB while there


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/02 06:56:46

Modified files:
	textproc/hs-libxml-sax: Makefile 

Log message:
Fix hardcoded gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/02 07:12:02

Modified files:
	security/lynis : Makefile distinfo 

Log message:
Update for Lynix to 2.4.4.

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/02 07:27:31

Modified files:
	share/zoneinfo/datfiles: africa 

Log message:
Silence a warning from zic about a too long zone name (POSIX limits TZ to 6 characters)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 07:32:31

Modified files:
	sysutils/symon : Makefile distinfo 

Log message:
update to symon-2.88, a noop for us but keeps portroach happy


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 07:34:11

Modified files:
	net/py-idna    : Makefile distinfo 

Log message:
update to py-idna-2.4, "Restore IDNAError to be a subclass of
UnicodeError, as some users of this library are only looking for the
latter to catch invalid strings."


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/02 08:10:15

Modified files:
	devel/py-sip   : Makefile 
	devel/py-sip/patches: patch-specs_openbsd-g++ 

Log message:
unhardcode the gcc/g++ names


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/02 08:31:15

Modified files:
	distrib/notes/octeon: install prep 

Log message:
Document some installation quirks for the EdgeRouter Lite in INSTALL.octeon:
How to deal with USB sticks which are not detected during power up.
How to enable both CPU cores (this also applies to other octeon SMP systems).
ok pirofti@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 09:10:02

Log message:
    import dicepassc, from maintainer/upstream Andre Stoebe, ok danj@
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20170302
    
    N ports/security/dicepassc/distinfo
    N ports/security/dicepassc/Makefile
    N ports/security/dicepassc/pkg/PLIST
    N ports/security/dicepassc/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 09:10:27

Modified files:
	security       : Makefile 

Log message:
+dicepassc


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/02 09:22:35

Modified files:
	faq            : faq14.html 

Log message:
we can't boot from raid5, so remove a misleading comment about it.

ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/02 09:36:08

Modified files:
	devel/lazarus  : Makefile distinfo 
	devel/lazarus/pkg: PLIST 

Log message:
Update to lazarus 1.6.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/02 10:09:21

Modified files:
	sbin/route     : route.c 
	sys/net        : route.h rtsock.c 

Log message:
Implement a new routing message RTM_PROPOSAL that communicates
information that can be used to configure an interface and
related network components.

ok bluhm@, ok for various older versions mpi@ florian@ claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/02 10:13:49

Modified files:
	x11/xfce4/parole: Makefile distinfo 
Removed files:
	x11/xfce4/parole/patches: patch-src_parole-player_c 

Log message:
Update to parole 0.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/02 10:24:44

Modified files:
	x11/xfce4/xfce4-whiskermenu: Makefile distinfo 
	x11/xfce4/xfce4-whiskermenu/pkg: PLIST 

Log message:
Update to xfce4-whiskermenu 1.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/02 10:30:15

Modified files:
	www/phantomjs  : Makefile 
	www/phantomjs/patches: patch-src_qt_src_corelib_global_qglobal_h 
Added files:
	www/phantomjs/patches: 
	                       patch-src_qt_mkspecs_openbsd-g++_qmake_conf 

Log message:
unhardcode g++
regen other patch, bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 10:42:28

Modified files:
	mail/neomutt   : Makefile distinfo 
Added files:
	mail/neomutt/patches: patch-getdomain_c patch-mutt_h 

Log message:
update to neomutt-20170225


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/02 10:44:32

Modified files:
	sbin/ipsecctl  : ipsecctl.c pfkdump.c 

Log message:
Now that the kernel provides information about IPsec SA bundles,
print them by default.
OK hshoexer@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 12:05:08

Modified files:
	net/olsrd      : Makefile 

Log message:
fix REVISION bump, spotted by naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/02 12:54:22

Modified files:
	usr.sbin/bgpd  : pfkey.c 

Log message:
Fix breakage of md5 authentication.

The previous commit (rev 1.47) added a missing htonl in pfkey_send() but
didn't add a corresponding ntohl in pfkey_reply(). This patch fixes this.

Found the hard way by benno@, who also suggested the rename of spip
to spi.

OK benno@ claudio@ henning@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/02 14:42:56

Modified files:
	faq            : current.html 

Log message:
also remove pkg.conf.5. spotted by jan stary


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/02 14:50:43

Modified files:
	net/tor        : Makefile distinfo 

Log message:
Update to tor 0.2.9.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/02 15:12:02

Modified files:
	lib/libc/sys   : connect.2 

Log message:
document EPERM error when connect(2)ing.
ok bluhm@ jmc@ renato@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/03/02 15:44:06

Modified files:
	lang/ghc       : ghc.port.mk 

Log message:
Workaround: add --with-gcc=${CC} to hs-ports using cabal.

This should be fixed for real in libraries/Cabal (in the ghc
source tree), but I'm not going to do this for ghc-7.10.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 16:02:18

Added files:
	net/bird/patches: patch-sysdep_bsd_setkey_h 
	                  patch-sysdep_bsd_sysio_h 

Log message:
Add WIP patch to adapt BIRD's freebsd pfkey interface code (for setting tcpmd5 SAs)
to openbsd. Doesn't handle SPIs correctly (ends up setting them all to 0x00001000
as is done on freebsd) so currently disabled though it does actually mostly work
despite this.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/03/02 16:23:28

Modified files:
	lang/ghc       : ghc.port.mk 

Log message:
Add quotes. Just in case someoen sets CC="my beloved C compiler".


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/02 17:05:38

Modified files:
	net/bird/patches: patch-sysdep_bsd_setkey_h 

Log message:
more tweaks to bird setkey (still disabled)
- don't send authkey with SADB_DELETE, it's not accepted by pfkey
- no need to reorder extension headers to match bgpd's


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/02 18:53:04

Modified files:
	sys/arch/armv7/conf: RAMDISK 
	sys/arch/arm64/conf: RAMDISK 

Log message:
enable FFS2 on armv7 and arm64 ramdisks


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/03/02 20:27:28

Modified files:
	sysutils/u-boot: Makefile distinfo 
	sysutils/u-boot/patches: 
	                         patch-configs_Sinovoip_BPI_M2_plus_defconfig 
	sysutils/u-boot/pkg: PFRAG.arm 
Removed files:
	sysutils/u-boot/patches: patch-scripts_Makefile_lib 

Log message:
update u-boot to 2017.03-rc3

Fixes data aborts reported by Daniel Bolgheroni when reading a dtb off
mmc on two different allwinner systems (Banana Pi and Orange Pi One)
with 2017.01.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/02 23:08:07

Modified files:
	databases/ruby-sequel: Makefile distinfo 
	databases/ruby-sequel/pkg: PLIST 

Log message:
Update to Sequel 4.44.0


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/02 23:13:11

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
fix ssh-keygen -H accidentally corrupting known_hosts that contained
already-hashed entries. HKF_MATCH_HOST_HASHED is only set by
hostkeys_foreach() when hostname matching is in use, so we need to look
for the hash marker explicitly.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/03 01:00:36

Modified files:
	sys/net        : if_ppp.c 

Log message:
Remove non longer needed splsoftnet()/splx() dances.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/03 01:01:41

Modified files:
	sys/netinet6   : nd6_rtr.c 

Log message:
Iterate over the global list of interfaces instead of using the global
list of IPv6 addresses.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/03 01:01:59

Modified files:
	sys/netinet6   : nd6.c 

Log message:
Iterate over the global list of interfaces instead of using the global
list of IPv6 addresses.

ok bluhm@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/03 01:19:54

Modified files:
	faq            : current.html 

Log message:
kill /etc/examples/pkg.conf, too. suggested by nils reusse


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2017/03/03 01:56:18

Modified files:
	sys/arch/amd64/stand/efiboot: efiboot.c 

Log message:
Delete "comspeed" which had been mistakenly added as a int value.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/03 02:12:40

Modified files:
	usr.sbin/vmctl : vmctl.c 

Log message:
Undefined behavior: Variable 'user' was used as parameter and
destination in snprintf().  Use a temporary variable instead.

Found and OK by jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 02:24:31

Modified files:
	sysutils/packer: Makefile distinfo 

Log message:
Update to packer-0.12.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 02:24:55

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.8.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 02:25:41

Modified files:
	security/vault : Makefile distinfo 

Log message:
Update to vault-0.6.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 02:29:35

Modified files:
	security/libgpg-error: Makefile distinfo 
	security/libgpg-error/pkg: PLIST 

Log message:
Update to libgpg-error-1.27.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 02:30:38

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-146.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 02:33:35

Modified files:
	security/cvechecker: Makefile distinfo 

Log message:
Update to cvechecker-3.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/03 02:41:02

Modified files:
	textproc/zathura/core: Makefile distinfo 
	textproc/zathura/plugins/cb: Makefile distinfo 
	textproc/zathura/plugins/djvu: Makefile distinfo 
	textproc/zathura/plugins/mupdf: Makefile distinfo 
	textproc/zathura/plugins/poppler: Makefile distinfo 
	textproc/zathura/plugins/ps: Makefile distinfo 
Removed files:
	textproc/zathura/plugins/mupdf/patches: patch-config_mk 
	                                        patch-document_c 
	                                        patch-image_c 
	                                        patch-index_c 
	                                        patch-links_c 
	                                        patch-page_c 
	                                        patch-plugin_h 
	                                        patch-render_c 
	                                        patch-search_c 
	                                        patch-utils_c 

Log message:
Update to zathura 0.3.7 (and its associated plugins)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/03 02:41:20

Modified files:
	sys/kern       : uipc_socket.c 
	sys/nfs        : nfs_socket.c 

Log message:
Prevent a recursion in the socket layer.

Always defere soreceive() to an nfsd(8) process instead of doing it in
the 'softnet' thread.  Avoiding this recursion ensure that we do not
introduce a new sleeping point by releasing and grabbing the netlock.

Tested by many, committing now in order to find possible performance
regression.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/03 03:02:13

Removed files:
	net/tor/patches: patch-src_test_test_tortls_c 

Log message:
forgot to remove this patch


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2017/03/03 03:39:07

Modified files:
	lib/libcrypto/hmac: hmac.c 
	regress/lib/libcrypto/hmac: hmactest.c 

Log message:
Ensure MD and key initialized before processing HMAC

Ensure both MD and key have been initialized before processing HMAC.
Releasing HMAC_CTX in error path of HMAC().
In regress test, added test 4,5,6 and cleaned up the code.

ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/03 03:45:48

Removed files:
	x11/gnome/recipes/patches: 
	                           patch-src_recipes-generated_gresource_xml 

Log message:
Remove patch that was adding a missing file; file is now included and build
fails with patch present.


CVSROOT:	/cvs
Module name:	www
Changes by:	natano@cvs.openbsd.org	2017/03/03 04:17:32

Modified files:
	faq            : current.html 

Log message:
sysctl machdep.lidsuspend renamed to machdep.lidaction
ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/03 04:49:33

Modified files:
	usr.bin/mandoc : roff.c 

Log message:
Fix previous: do not access the byte before the string if the string
is empty; found by jsg@ with afl(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/03 05:43:10

Modified files:
	x11/qt3        : Makefile 
	x11/qt3/patches: patch-mkspecs_openbsd-g++_qmake_conf 

Log message:
remove hardcoded gcc, bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 06:01:26

Modified files:
	x11/gnome/gdm  : Makefile distinfo 
	x11/gnome/gdm/patches: patch-configure_ac 
	                       patch-daemon_gdm-display_c 
	                       patch-daemon_gdm-local-display-factory_c 
	                       patch-daemon_gdm-manager_c 
	                       patch-daemon_gdm-session-worker_c 
	                       patch-daemon_gdm-session_c 

Log message:
Update to gdm-3.22.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/03 06:10:55

Modified files:
	usr.bin/mandoc : mansearch.c 

Log message:
A missing initialization could randomly cause regular expression
searches to be case-insensitive that ought to be case sensitive.
Found by jsg@ with scan-build.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/03 06:19:41

Modified files:
	sys/netinet6   : icmp6.c 

Log message:
Replace a panic with a compile time assert in icmp6_reflect().
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/03 06:41:28

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
Fix a copy-and-paste error that caused man(7) manuals without
a section number in .TH to be misinterpreted as preformatted.
Found by jsg@ with cppcheck.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/03 06:55:06

Modified files:
	usr.bin/mandoc : man.c mdoc.c mdoc_html.c roff.c 

Log message:
remove a few redundant conditions that jsg@ found with cppcheck


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/03 07:02:15

Modified files:
	x11/qt4        : Makefile 
	x11/qt4/patches: patch-mkspecs_openbsd-g++4_qmake_conf 
	                 patch-mkspecs_openbsd-g++_qmake_conf 

Log message:
unhardcode gcc/g++


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/03 07:06:32

Modified files:
	usr.sbin/pkg_add/OpenBSD: Add.pm PackingElement.pm 

Log message:
pass @sysctl into old stuff
okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/03 07:13:58

Modified files:
	usr.sbin/pkg_add: pkg_create.1 
	usr.sbin/pkg_add/pod: OpenBSD::PackingElement.pod 

Log message:
spring cleanup, remove sysctl from doc, and finally gc some older annotations
which don't even exist in the PackingElement hierarchy anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/03 07:21:41

Modified files:
	usr.bin/mandoc : Makefile main.c main.h mandoc.1 
Added files:
	usr.bin/mandoc : mdoc_markdown.c 

Log message:
new -mdoc -Tmarkdown output mode; OK millert@ reyk@ tb@;
thanks to reyk@ and to Vsevolod at FreeBSD for suggesting it


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/03 07:22:40

Modified files:
	sys/net        : rtsock.c 

Log message:
It is allowed to sleep in route_output() as we run in process context
and do no critical operations on global structures or per socket.
The route entry we are working on is reference counted.  Call
malloc(9) with M_WAITOK and remove the NULL result checks.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	tom@cvs.openbsd.org	2017/03/03 07:54:02

Modified files:
	sys/arch/arm/include: cpu.h 

Log message:
Fix the lidsuspend sysctl name in arm/include/cpu.h

From Markus Hennecke, thanks


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/03 08:04:51

Modified files:
	usr.bin/mandoc : mdoc_argv.c 

Log message:
Markdown output mode helped us to find the first parser bug (as such,
this bug could cause wrong output in other modes as well):
Do not misinterpret tab characters as .Ta macros when they appear
on non-column .It lines in non-column .Bl lists that are nested
inside a parent .Bl -column list.  (Admittedly, such constructions
are not very useful; don't use them!)
Found by tb@ with afl(1) because the resulting tree corruption
triggered an assertion in the markdown output module.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 08:22:15

Modified files:
	x11/gnome/autoar: Makefile distinfo 

Log message:
Update to gnome-autoar-0.2.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/03 08:48:02

Modified files:
	sys/net        : pfkey.c raw_usrreq.c route.h rtsock.c 
	sys/netinet    : ip_var.h raw_ip.c 
	sys/netinet6   : ip6_var.h raw_ip6.c 
	sys/sys        : protosw.h 

Log message:
Convert the variable argument list of the pr_output functions to
fixed parameters.
OK mpi@ claudio@ dhill@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/03 08:53:40

Modified files:
	x11/gnome/totem: Makefile distinfo 
	x11/gnome/totem/pkg: PLIST 

Log message:
Update to totem-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 10:01:25

Modified files:
	textproc       : Makefile 
Removed files:
	textproc/pilot_makedoc: Makefile distinfo 
	textproc/pilot_makedoc/files: Makefile 
	textproc/pilot_makedoc/pkg: DESCR PLIST 

Log message:
Remove pilot_makedoc, a converter for the Doc format used by Palm devices

Hardcodes gcc at build time.  Let's remove it, probably not useful any
more and no license so can't be shipped on ftp servers anyway.

ok sthen@ naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 10:04:10

Modified files:
	net            : Makefile 
Removed files:
	net/clog       : Makefile distinfo 
	net/clog/pkg   : DESCR PLIST 

Log message:
Remove clog, a TCP connection logger.

The port doesn't respect CC.  Let's remove it instead of fixing it.  The
code is clean but doesn't support IPv6 and runs as root.  Better use
tcpdump and a post-processing script.

ok sthen@ krw@ naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 10:06:50

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register the removal of textproc/pilot_makedoc and net/clog.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/03 11:29:07

Modified files:
	usr.sbin/pkg_add/pod: OpenBSD::PackingElement.pod 

Log message:
Remove a "=over 4" after the corresponding "=back" has been removed
in the previous commit.  Makes pod2man compile again.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 12:57:04

Modified files:
	devel/ocaml-curses: Makefile 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 12:57:19

ports/devel/ocaml-curses/patches

Update of /cvs/ports/devel/ocaml-curses/patches
In directory cvs.openbsd.org:/tmp/cvs-serv36819/patches

Log Message:
Directory /cvs/ports/devel/ocaml-curses/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 12:57:49

Added files:
	devel/ocaml-curses/patches: patch-curses_ml 

Log message:
Missed in previous


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/03 13:26:23

Modified files:
	usr.sbin/ldapd : evbuffer_tls.c 
	usr.sbin/syslogd: evbuffer_tls.c 

Log message:
Internally libssl uses 16k buffer, the libevent TLS wrapper uses
4k read buffer.  This can hang ldapd(8).  Setting both to 16k
improves the situation.
report Seiya Kawashima; feedback Robert Klein; test and OK gsoares@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 13:26:32

Modified files:
	devel/cil/patches: patch-configure_in 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 13:26:41

Modified files:
	devel/cil      : Makefile 
Added files:
	devel/cil/patches: patch-Makefile_in 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/03 13:38:34

Modified files:
	textproc/hs-libxml-sax: Makefile 

Log message:
Remove local hack now that the workaround is into ghc.port.mk


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/03 13:49:47

Modified files:
	sys/arch/amd64/amd64: db_interface.c trap.c 
	sys/arch/i386/i386: db_interface.c trap.c 

Log message:
Whan an amd64 machine got an NMI, the current process in user land
was killed with SIGBUS.  Better drop to ddb regardless wether a
user process is currently scheduled or not.  NMI signals hardware
failure or a debug button.  The code in i386 trap() has always been
that way.  The switch in db_ktrap() must also not depend on the
fact wether kernel or user land is running.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/03/03 13:56:56

Modified files:
	devel/fossil   : Makefile distinfo 

Log message:
Update fossil to 2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 14:03:32

Modified files:
	games/tome4    : Makefile 

Log message:
Let this build on archs without /usr/bin/gcc

gcc is still used for the build, but symlinks are added to ${WRKDIR}/bin
by the gcc4 module.  devel/premake4 is probably the source of the
hardcoded "gcc" use.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 14:09:08

Modified files:
	devel/radare2/main: Makefile 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 14:25:19

Modified files:
	games/wordwarvi: Makefile 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 14:29:00

Modified files:
	games/tome4    : Makefile 

Log message:
Add a comment that tome4 hardcodes the use of "gcc"


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/03 14:34:14

Modified files:
	regress/sys/net/pflow: Makefile flow.pl template.pl 
Removed files:
	regress/sys/net/pflow/Net: Flow.pm 

Log message:
Do not use an obsolete copy of a Perl module from CPAN for testing.
Require that the p5-Net-Flow package is installed and use it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/03/03 15:52:26

Modified files:
	games/ioquake3 : Makefile distinfo 

Log message:
Update ioquake3 to the latest.
Fix static calls to gcc.

OK awolk@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:30:57

Modified files:
	usr.sbin/ldpd  : control.c control.h ldpd.8 ldpd.c ldpd.h ldpe.c 
	                 ldpe.h 

Log message:
Allow to specify an alternate control socket.

This is required to run multiple instances of ldpd.

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:36:06

Modified files:
	usr.sbin/ldpd  : interface.c kroute.c ldpd.c ldpd.conf.5 ldpd.h 
	                 parse.y printconf.c 

Log message:
Allow to run on a non-default rdomain.

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:41:27

Modified files:
	usr.sbin/ldpd  : interface.c kroute.c labelmapping.c lde.c lde.h 
	                 lde_lib.c ldp.h ldpe.c parse.y 

Log message:
Minor tweaks.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:44:35

Modified files:
	usr.sbin/ldpd  : address.c init.c labelmapping.c ldpe.h 
	                 notification.c packet.c 

Log message:
Kill send_notification_nbr().

Be more clever and trigger the PDU SENT event inside send_notification()
when tcp->nbr is set. This way we can eliminate send_notification_nbr()
and always use send_notification() instead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/03/03 16:46:25

Modified files:
	sysutils/u-boot: Makefile 
Added files:
	sysutils/u-boot/patches: patch-tools_Makefile 

Log message:
Fix build when swig is installed.

Patch out 'python' in a Makefile for ${MODPY_BIN} and add swig to
BUILD_DEPENDS so any related problems will be caught in future.

Problem reported by naddy and espie.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:47:41

Modified files:
	usr.sbin/ldpd  : notification.c 

Log message:
Provide more detailed output when logging notification messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:50:45

Modified files:
	usr.sbin/ldpd  : address.c labelmapping.c notification.c 

Log message:
Create helper functions to log sent/received messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:53:50

Modified files:
	usr.sbin/ldpd  : address.c 

Log message:
Send correct status code on error condition.

The Unknown TLV status code is reserved for cases where we don't know
how to process a given TLV and its Unknown TLV bit is not set.

In the case of Address Messages, the Address List TLV is mandatory and
should appear before any optional TLV in the message. If that doesn't
happen the correct status notification to send is "Missing Message
Parameters" (non-fatal error).

Also, add a missing htons when creating an Address List TLV. Since the
value of TLV_TYPE_ADDRLIST is 0x0101 this missing htons wasn't noticed
earlier.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:56:54

Modified files:
	usr.sbin/ldpd  : ldp.h 

Log message:
The PW Status is an unknown TLV.

Without this fix, any LDP speaker that doesn't implement RFC 4447 will
shut down the session upon receipt of a PWid Label Mapping (unless the
use of the PW-Status TLV is disabled via configuration).


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 16:59:58

Modified files:
	usr.sbin/ldpd  : lde_lib.c 

Log message:
Fix processing of Label Withdraw messages.

Whenever we receive a Label Withdraw message with an optional Label
TLV, we should check if this label matches the label previously
received from this neighbor for this FEC. If they don't match then we
shouldn't uninstall the previous label from the kernel. This fixes a
misinterpretation from the "Receive Label Withdraw" algorithm described
in the A.1.5 section of RFC 5036.

Also, simplify the check of pending withdraws in lde_check_release()
and lde_check_release_wcard().


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 17:03:04

Modified files:
	usr.sbin/ldpd  : l2vpn.c lde.c lde.h lde_lib.c logmsg.c 

Log message:
Implement support for PWid group wildcards.

This was missing from our original RFC 4447 VPLS implementation. Now
ldpd understands group wildcards as mandated by the RFC, but we still
don't send them ourselves. I can't see any case in which sending a group
wildcard would be useful, but nonetheless this patch provides a function
called lde_send_labelwithdraw_pwid_wcard() which is ready to be used in
the future anytime we feel like it might be useful.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 17:06:10

Modified files:
	usr.sbin/ldpd  : init.c labelmapping.c ldp.h ldpd.8 ldpd.h 
	                 ldpe.h logmsg.c notification.c packet.c 

Log message:
Implement RFC 5561 (LDP Capabilities).

This patch per-se doesn't introduce any useful functionality, but prepares
the ground for new enhancements to ldpd (i.e. implementation of new RFCs
that make use of LDP capabilities).


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 17:09:17

Modified files:
	usr.sbin/ldpd  : init.c labelmapping.c lde.c lde.h lde_lib.c 
	                 ldp.h ldpd.8 ldpd.h ldpe.h logmsg.c 

Log message:
Implement RFC 5918 (Typed Wildcard FEC).


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 17:12:26

Modified files:
	usr.sbin/ldpd  : l2vpn.c labelmapping.c lde.c lde.h lde_lib.c 
	                 ldp.h ldpd.8 ldpd.h logmsg.c 

Log message:
Implement RFC 6667 (Typed Wildcard FEC for PWid).


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 17:15:35

Modified files:
	usr.sbin/ldpd  : init.c labelmapping.c lde.c lde.h lde_lib.c 
	                 ldp.h ldpd.8 ldpe.h logmsg.c neighbor.c 
	                 notification.c 

Log message:
Implement RFC 5919 (LDP End-of-LIB).


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 17:18:43

Modified files:
	usr.sbin/ldpd  : address.c 

Log message:
Fix parsing of optional tlvs in address messages.

We were aborting the session upon receipt of MAC Address Withdrawal
messages. Now make the parser aware that optional TLVs are possible in
address messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	renato@cvs.openbsd.org	2017/03/03 17:21:48

Modified files:
	usr.sbin/ldpd  : address.c kroute.c l2vpn.c lde.h ldp.h ldpd.h 
	                 ldpe.c ldpe.h 

Log message:
Send VPLS MAC withdrawals.

RFC 4762 says that MAC address withdrawal messages can be used to
improve convergence time in VPLS networks. This patch makes ldpd send
MAC withdrawals whenever a non-pseudowire interface pertaining to a
VPLS goes down. The processing of received MAC withdrawals will be
implemented later.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 19:03:55

Modified files:
	lang/squeak/vm : Makefile 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/03 20:17:06

Modified files:
	graphics/birdfont: Makefile 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/03 22:09:15

Modified files:
	lang/mruby     : Makefile 
	lang/mruby/pkg : PLIST 
Added files:
	lang/mruby/patches: patch-build_config_rb 

Log message:
Disable debug build by default.

Also, only build the version shipping with the package, instead of also
building other versions.

OK jca@


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2017/03/03 23:01:02

Modified files:
	.              : 61.html 

Log message:
Zap zaurus.


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2017/03/03 23:05:56

Modified files:
	.              : 61.html 

Log message:
Add mips64 pmap changes.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	bentley@cvs.openbsd.org	2017/03/03 23:10:03

Modified files:
	app/xenodm/man : xenodm.man 

Log message:
Convert xenodm manual to mdoc(7).

ok matthieu@, plus some tweak from jmc@


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2017/03/03 23:11:52

Modified files:
	.              : 61.html 

Log message:
Mention octmmc(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/04 00:26:42

Modified files:
	sbin/disklabel : disklabel.c editor.c extern.h 

Log message:
Allow R (resize auto-partition) after A as well as when started with -A.
This ability was lost in editor.c 1.264; noted by ajacoutot@; ok krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/04 03:46:46

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-2.2.5
dissector crashes and infinite loops, file parser crashes and some other fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/04 03:51:00

Modified files:
	textproc/icu4c : Makefile 

Log message:
Needs a shared_libs bump.
reported by jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/04 04:04:25

Modified files:
	games/wordwarvi: Makefile 

Log message:
link wants BUILD_CC unhardcode gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/04 04:35:06

Modified files:
	net/wireshark  : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
update -stable to wireshark-2.0.11
dissector crashes and infinite loops, file parser crashes and some other fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/04 04:38:42

Modified files:
	cad/qcad       : Makefile 
Added files:
	cad/qcad/patches: patch-dxflib_Makefile_in 
	                  patch-fparser_Makefile_in 

Log message:
let qcad build without the gcc/g++ links
ironically enough, this has nothing to do with qmake.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/04 05:42:04

Modified files:
	games/nethack/files: qt-config 
	games/nethack/patches: patch-sys_unix_Makefile_src 

Log message:
unhardcode g++ in nethack,qt


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/04 05:43:38

Modified files:
	regress/lib/libssl/ssl: ssltest.c 

Log message:
Remove handling for SSLv2.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/04 05:44:27

Modified files:
	sys/net80211   : ieee80211_node.c ieee80211_node.h 

Log message:
In 11n hostap mode, dynamically adjust HT protection settings based on
the presence of non-HT nodes in the node cache.
OpenBSD 11n APs will now disable HT protection if it is not necessary.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/04 05:47:45

Modified files:
	regress/lib/libssl/ssl: ssltest.c 

Log message:
Remove commented out code and fix indentation of surrounding statements.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/04 05:53:14

Modified files:
	regress/lib/libssl/ssl: ssltest.c 

Log message:
Treat "ERROR in STARTUP" as an actual error, rather than failing without
exiting non-zero (which has been masking a DTLS related issue). Also make
the message consistent with other errors.

Spotted by inogochi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 07:01:08

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Unhook ocaml-mlgmp from build prepatory to removing. Archaic version,
unused by anything.

ok edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 07:12:34

Removed files:
	devel/ocaml-mlgmp: Makefile distinfo 
	devel/ocaml-mlgmp/files: META 
	devel/ocaml-mlgmp/patches: patch-Makefile patch-config_h 
	devel/ocaml-mlgmp/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove. Archaic version, unused by anything.

ok edd@ (maintainer)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tb@cvs.openbsd.org	2017/03/04 08:48:32

Modified files:
	app/xenodm/man : xenodm.man 

Log message:
Don't mention the unsupported Kerberos credentials cache.

ok matthieu


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:08:55

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	graphics       : Makefile 
	security       : Makefile 
	textproc       : Makefile 

Log message:
Unhook unused, older library versions from build. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/04 09:11:10

Added files:
	etc/signify    : openbsd-62-base.pub 

Log message:
6.2 key for the future


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/04 09:15:02

Modified files:
	lib/libssl     : ssl_clnt.c 

Log message:
Call ssl3_handshake_write() instead of ssl3_do_write() - this was missed
when ssl3_send_client_certificate() was converted to the standard handshake
functions in r1.150 of s3_clnt.c.

This has no impact on TLS, however it causes the DTLS client to fail if the
server sends a certificate request, since the TLS MAC is calculated on a
non-populated DTLS header.

Issue reported by umokk on github.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/04 09:15:57

Modified files:
	emulators/virtualjaguar: Makefile 

Log message:
Honour CC/CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/04 09:16:32

Modified files:
	emulators/virtualjaguar: Makefile 

Log message:
Show build commands


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:20:41

Removed files:
	devel/ocaml-calendar: Makefile distinfo 
	devel/ocaml-calendar/patches: patch-Makefile_in 
	devel/ocaml-calendar/pkg: DESCR PFRAG.dynlink-native 
	                          PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:22:57

Removed files:
	devel/ocaml-batteries: Makefile distinfo 
	devel/ocaml-batteries/pkg: DESCR PFRAG.dynlink-native 
	                           PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:25:22

Removed files:
	devel/ocaml-net: Makefile distinfo 
	devel/ocaml-net/patches: patch-src_equeue_uq_engines_compat_ml 
	                         patch-src_netsys_netlog_ml 
	devel/ocaml-net/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:26:49

Removed files:
	devel/ocaml-bitstring: Makefile distinfo 
	devel/ocaml-bitstring/patches: patch-Makefile_in 
	devel/ocaml-bitstring/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:28:44

Removed files:
	devel/ocaml-curses: Makefile distinfo 
	devel/ocaml-curses/pkg: DESCR PFRAG.native PLIST 
	devel/ocaml-curses/patches: patch-curses_ml 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/04 09:32:00

Modified files:
	lib/libssl     : d1_both.c s3_lib.c ssl_locl.h 

Log message:
Drop the second argument of dtls1_set_message_header() and make it a void
function. Nothing makes use of the return value and the second argument
was only used to produce the return value...


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:32:26

Removed files:
	graphics/ocaml-camlimages: Makefile distinfo 
	graphics/ocaml-camlimages/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:34:29

Removed files:
	security/ocaml-cryptokit: Makefile distinfo 
	security/ocaml-cryptokit/pkg: DESCR PFRAG.dynlink-native 
	                              PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/04 09:36:00

Modified files:
	misc/rocrail   : Makefile 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:37:19

Removed files:
	textproc/ocaml-rss: Makefile distinfo 
	textproc/ocaml-rss/patches: patch-Makefile 
	textproc/ocaml-rss/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/04 09:38:16

Modified files:
	graphics/ipe   : Makefile 

Log message:
Honour CXX


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:39:09

Removed files:
	textproc/ocaml-xml-light: Makefile distinfo 
	textproc/ocaml-xml-light/patches: patch-Makefile 
	textproc/ocaml-xml-light/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:41:32

Removed files:
	textproc/ocaml-xmlm: Makefile distinfo 
	textproc/ocaml-xmlm/pkg: DESCR PFRAG.dynlink-native PFRAG.native 
	                         PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:43:13

Removed files:
	textproc/ocaml-csv: Makefile distinfo 
	textproc/ocaml-csv/pkg: DESCR PFRAG.dynlink-native PFRAG.native 
	                        PLIST 

Log message:
Remove unused, older library versions. Current ones
available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/04 09:45:09

Modified files:
	productivity/wyrd/patches: patch-Makefile_in 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/04 09:45:17

Modified files:
	productivity/wyrd: Makefile 
Added files:
	productivity/wyrd/patches: patch-curses_curses_ml 

Log message:
Honour CC


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/04 09:52:47

Modified files:
	sys/sys        : param.h 
	sys/conf       : newvers.sh 
	etc/root       : root.mail 
	share/mk       : sys.mk 
	sys/arch/macppc/stand/tbxidata: bsd.tbxi 

Log message:
crank to 6.1-beta


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/04 09:52:59

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.socppc md.sparc64 
	distrib/sets/lists/comp: md.alpha md.amd64 md.armv7 md.hppa 
	                         md.i386 md.landisk md.loongson 
	                         md.luna88k md.macppc md.octeon md.sgi 
	                         md.socppc md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 09:56:28

Modified files:
	databases      : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Remove obsolete library versions with dead hompages/master sites.
Current ones available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 10:00:34

Removed files:
	databases/ocaml-postgresql: Makefile distinfo 
	databases/ocaml-postgresql/files: README 
	databases/ocaml-postgresql/pkg: DESCR PFRAG.dynlink-native 
	                                PFRAG.native PLIST 

Log message:
Remove obsolete library versions with dead hompages/master sites.
Current ones available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/04 10:02:29

Removed files:
	databases/ocaml-sqlite3: Makefile distinfo 
	databases/ocaml-sqlite3/patches: patch-lib_sqlite3_stubs_c 
	databases/ocaml-sqlite3/pkg: DESCR PFRAG.dynlink-native 
	                             PFRAG.native PLIST 

Log message:
Remove obsolete library versions with dead hompages/master sites.
Current ones available via normal Ocaml ecosystem (a.k.a. opam).

ok chrisz@ avsm@ (maintainers)


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/03/04 10:11:09

Log message:
    Import lua-bitop.
    
    ---8<---
    Lua BitOp is a C extension module for Lua 5.1/5.2 which adds bitwise operations
    on numbers.
    --->8---
    
    Needed for neovim.
    
    OK abieber@, tb@. Thanks.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20170304
    
    N ports/devel/lua-bitop/Makefile
    N ports/devel/lua-bitop/distinfo
    N ports/devel/lua-bitop/pkg/PLIST
    N ports/devel/lua-bitop/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/03/04 10:14:58

Modified files:
	devel          : Makefile 

Log message:
Link lua-bitop.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/04 10:17:17

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
Make the description of -K autodetection easer to understand.
Basic idea suggested by jmc@, OK jmc@.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/04 10:24:02

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/03/04 10:40:23

Modified files:
	sbin/sysctl    : sysctl.8 

Log message:
Add machdep.lidaction to list of sysctls.

prodded by Stefan Wollny via tb
ok tb jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/04 10:51:20

Modified files:
	usr.sbin/tcpdump: print-802_11.c 

Log message:
Make tcpdump show HT protection settings consistently. Previously, nothing
was displayed if HT protection was disabled. Now it displays as "htprot none".
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/04 11:17:24

Modified files:
	sys/arch/armv7/conf: GENERIC 
	sys/arch/armv7/exynos: exclock.c exdog.c exehci.c exesdhc.c 
	                       exmct.c expower.c exsysreg.c files.exynos 

Log message:
Convert a few exynos drivers to attach using the FDT.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2017/03/04 11:34:14

Modified files:
	net/ruby-msgpack: Makefile distinfo 
	net/ruby-msgpack/pkg: PLIST 

Log message:
update to 1.1.0, works fine with Puppet, package creation
also verified for ruby 2.4


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/03/04 13:38:34

Added files:
	etc/signify    : openbsd-62-fw.pub 

Log message:
6.2 key for future firmware


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/03/04 14:09:04

Modified files:
	lang/myrddin   : Makefile distinfo 

Log message:
Update myrddin to 0.1 release.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/04 14:22:45

Modified files:
	faq            : faq4.html faq8.html faq14.html 

Log message:
use a slightly more modern machine for the bootloader examples


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/04 14:40:45

Modified files:
	etc/root       : root.mail 

Log message:
fix date and mention installurl way of pkg_add


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/04 14:41:13

Modified files:
	usr.bin/mandoc : mdoc_man.c mdoc_markdown.c 

Log message:
Remove a redundant condition in .%T handling, no functional change.
Found by jsg@ with scan-build.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/03/04 14:55:13

Modified files:
	.              : 61.html 

Log message:
signify keys


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/04 14:59:56

Modified files:
	lang/g77       : Makefile 
	lang/gcc/4.6   : Makefile 
	lang/gcc/4.9   : 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 ports with openbsd version number in filenames


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/03/04 15:02:16

Modified files:
	gnu/usr.bin/perl: installperl 

Log message:
Better avoid installing versioned perl, makes perlivp happy


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/04 15:09:43

Modified files:
	mail/postfix/stable: Makefile distinfo 
	mail/postfix/stable/patches: patch-conf_main_cf 
	                             patch-conf_master_cf 
	                             patch-src_posttls-finger_posttls-finger_c 
	                             patch-src_tls_tls_client_c 
	                             patch-src_tls_tls_dane_c 
	                             patch-src_tls_tls_h 
	                             patch-src_tls_tls_server_c 
Added files:
	mail/postfix/stable/patches: patch-src_tls_tls_dh_c 

Log message:
update postfix/stable to 3.2.0, from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/04 15:11:37

Modified files:
	sys/arch/armv7/conf: RAMDISK 

Log message:
matching commit for RAMDISK: Convert a few exynos drivers to attach using the FDT.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/04 15:12:19

Modified files:
	devel/jdk/1.7  : Makefile 

Log message:
Honour CC/CXX


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2017/03/04 15:46:20

Modified files:
	distrib/notes  : INSTALL packages 
	distrib/notes/i386: install 
	distrib/notes/landisk: xfer 
	distrib/notes/macppc: prep 
	distrib/notes/sparc64: install xfer 

Log message:
remove/tweak some cd-related text.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/04 17:26:08

Modified files:
	gnu/usr.bin/binutils-2.17: Makefile.bsd-wrapper 

Log message:
Go back to only specifying --target when building cross.

The OpenBSD triple includes the OpenBSD version.  When this recently
changed binutils started building prefixed tools when moving to a new
OpenBSD version which isn't what we want.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/04 17:45:31

Modified files:
	sys/kern       : exec_elf.c 
	sys/uvm        : uvm_extern.h uvm_unix.c 

Log message:
Generating a coredump requires walking the map twice; change
uvm_coredump_walkmap() to do both with a callback in between
so it can hold locks/change state across the two.

ok stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/04 17:55:01

Modified files:
	sys/uvm        : uvm_unix.c 

Log message:
Handle unshared amaps in uvm_coredump_walkmap() such that untouched pages
don't get written out to the core file but rather are represented via
segments which have memory size greater than their file size.  This shrinks
core files and eliminates a case where core dumping fails with EFAULT.
This can still happen in the shared amap case.

Based on a problem report from (and testing by) semarie@
ok stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/04 18:02:48

Modified files:
	sys/arch/amd64/amd64: db_disasm.c 
	sys/arch/i386/i386: db_disasm.c 

Log message:
Teach the ddb disassembler about most of the vm* instructions

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/04 19:47:38

Log message:
    import py-wheel-0.30.0a0 needed for a incoming update for py-argcomplete
    from jsg@/sthen@
    
    ok/tweaks shadchin@
    
    A wheel is a ZIP-format archive with a specially formatted filename and
    the .whl extension. It is designed to contain all the files for a PEP
    376 compatible install in a way that is very close to the on-disk
    format. Many packages will be properly installed with only the “Unpack”
    step (simply extracting the file onto sys.path), and the unpacked
    archive preserves enough information to “Spread” (copy data and scripts
    to their final locations) at any later time.
    
    Status:
    
    Vendor Tag:	danj
    Release Tags:	danj_20170304
    
    N ports/devel/py-wheel/distinfo
    N ports/devel/py-wheel/Makefile
    N ports/devel/py-wheel/pkg/PLIST
    N ports/devel/py-wheel/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/04 19:51:05

Modified files:
	devel          : Makefile 

Log message:
+ py-wheel
+ py-wheel,python3


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/03/04 20:54:34

Modified files:
	faq            : faq4.html faq8.html 

Log message:
Obviously, UTC stands for Coordinated Universal Time not Universal
Coordinated Time

https://www.nist.gov/pml/time-and-frequency-division/nist-time-frequently-asked-questions-faq#cut

While there, kill two trailing spaces

ok tb@ tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2017/03/04 21:07:57

Modified files:
	share/locale/ctype: en_US.UTF-8.src 

Log message:
Update to unicode 8

OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/04 23:40:18

Modified files:
	sys/sys        : proc.h 

Log message:
We've fixed PID handling, so update the comment describing ps_mainproc


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2017/03/05 02:55:16

Modified files:
	sys/dev/ic     : ahci.c 

Log message:
When we're unable to determine which NCQ command failed, fail all active
commands rather than proceeding to an assertion failure.  This matches
how we handle the same condition with non-queued commands, and the
behaviour of every other ahci driver I can find.  Add a printf there so
we might get some idea of how often this condition arises and what happens
afterwards.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/05 04:01:46

Modified files:
	devel/py-wheel : Makefile 

Log message:
Properly format COMMENT.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/05 04:52:43

Modified files:
	devel/libf2c   : Makefile 

Log message:
Missing REVISION bump, libf2c also has OSREV in PLIST..


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/03/05 06:12:44

Modified files:
	build          : mirrors.pl mirrors.dat 

Log message:
since /etc/examples/pkg.conf was removed, get rid of the code that generates it


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/05 07:13:04

src/regress/lib/libssl/server

Update of /cvs/src/regress/lib/libssl/server
In directory cvs.openbsd.org:/tmp/cvs-serv65946/server

Log Message:
Directory /cvs/src/regress/lib/libssl/server added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/05 07:15:53

Modified files:
	regress/lib/libssl: Makefile 
Added files:
	regress/lib/libssl/server: Makefile servertest.c 

Log message:
Add an initial regress test that covers the server-side of libssl, by
providing SSL_accept() with fixed ClientHello messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/05 07:24:12

Modified files:
	lib/libssl     : d1_srvr.c ssl_both.c ssl_clnt.c ssl_srvr.c 

Log message:
Convert various handshake message generation functions to CBB.

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/05 07:39:53

Modified files:
	lib/libssl     : Makefile s3_lib.c ssl_ciph.c ssl_clnt.c 
	                 ssl_locl.h ssl_srvr.c t1_enc.c 
Added files:
	lib/libssl     : t1_hash.c 

Log message:
Provide a rolling handshake hash that commences as soon as the cipher
suite has been selected, and convert the final finish MAC to use this
handshake hash.

This is a first step towards cleaning up the current handshake
buffer/digest code.

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2017/03/05 08:06:31

Modified files:
	.              : 61.html 

Log message:
crank unbound & nsd version numbers


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/05 08:06:36

Modified files:
	devel/py-gobject3: Makefile 

Log message:
Bump REVISION, also has OSREV in PLIST


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2017/03/05 08:07:09

Modified files:
	.              : 61.html 

Log message:
we no longer include sqlite


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/03/05 08:08:03

Modified files:
	etc/root       : root.mail 

Log message:
bump one more 2016


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2017/03/05 08:08:06

Modified files:
	.              : 61.html 

Log message:
perl is at 5.24.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/05 08:11:52

Modified files:
	editors/xemacs21/stable: Makefile 

Log message:
Bump REVISION, also has OSREV in PLIST (prodded by naddy@)


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2017/03/05 08:15:53

Modified files:
	.              : 61.html 

Log message:
mention acme-client(1)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/05 08:22:00

Modified files:
	net/openafs    : Makefile 
	net/openafs/patches: patch-src_config_afs_sysnames_h 

Log message:
recognize OpenBSD 6.1


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2017/03/05 08:39:51

Modified files:
	.              : 61.html 

Log message:
someone merged ping and ping6


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2017/03/05 08:42:34

Added files:
	etc/signify    : openbsd-62-pkg.pub 

Log message:
6.2 key for future packages


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/05 09:09:44

Modified files:
	lib/libssl     : ssl_packet.c 

Log message:
Correctly convert an SSLv2 challenge into an SSLv3/TLS client random by
truncating or left zero padding.

ok beck@ inoguchi@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/03/05 09:28:14

Modified files:
	sysutils/u-boot: Makefile 

Log message:
Strip the hyphen in the distname version from the package name.
espie and naddy directed me to packages-specs(7), an rc suffix
is allowed only if there is no hyphen.

This commit doesn't include bumping EPOCH, but that may be needed.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/05 09:51:18

Modified files:
	sys/arch/armv7/exynos: exuart.c 

Log message:
The current code in exuartcnputc() that tries to make sure the character
written is actually transmitted doesn't seem to work.  Instead, wait until
there is room in the TX FIFO before writing the character.  This works only
in FIFO mode, but that's how u-boot configures the chip.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/05 10:10:41

Modified files:
	textproc/lowdown: Makefile distinfo 
	textproc/lowdown/pkg: PLIST 

Log message:
Update to lowdown-0.1.9

From new maintainer Anton Lindqvist


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/05 11:16:50

Modified files:
	devel/py-typing: Makefile distinfo 

Log message:
Update to py-typing 3.5.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/05 11:18:24

Modified files:
	devel/py-jsonschema: Makefile distinfo 
	devel/py-jsonschema/pkg: PLIST 

Log message:
Update to py-jsonschema 2.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/05 11:25:25

Modified files:
	devel/py-jedi  : Makefile distinfo 
	devel/py-jedi/pkg: PLIST 

Log message:
Update to py-jedi 0.10.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/05 11:56:57

Modified files:
	sys/arch/armv7/exynos: exuart.c 

Log message:
Clear pending interrupts and mask them all.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/05 12:31:15

Modified files:
	distrib/miniroot: install.sub 

Log message:
Stop using and copying the on-disk /etc/hosts file to the bsd.rd
/tmp dir during upgrade.

Create and use a minimal hosts file instead to avoid that a big
hosts file fills up the small bsd.rd / filesystem as reported
recently by Ted Roby.

Note that network interface configuration using hostnames instead
of ip addresses in hostname.if(5) relies on the on-disk /etc/hosts
file which is not used anymore during upgrade.

discussed with many
ok tb@, halex@
'sure' deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/05 12:57:35

Modified files:
	regress/usr.bin/mandoc: Makefile.inc Makefile.sub 

Log message:
Infrastructure for -T markdown tests.

This is needed because -T marksdown is expected to receive less
maintenance than -T ascii, so we need automation to make sure
that regular parser maintenance doesn't break this output mode.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/05 12:59:26

Modified files:
	regress/usr.bin/mandoc/mdoc/Ad: Makefile 
	regress/usr.bin/mandoc/mdoc/Ap: Makefile 
	regress/usr.bin/mandoc/mdoc/Aq: Makefile 
	regress/usr.bin/mandoc/mdoc/Ar: Makefile 
	regress/usr.bin/mandoc/mdoc/At: Makefile 
	regress/usr.bin/mandoc/mdoc/Bl: Makefile 
	regress/usr.bin/mandoc/mdoc/Brq: Makefile 
	regress/usr.bin/mandoc/mdoc/Bx: Makefile 
	regress/usr.bin/mandoc/mdoc/Cd: Makefile 
	regress/usr.bin/mandoc/mdoc/Cm: Makefile 
	regress/usr.bin/mandoc/mdoc/Dd: Makefile 
	regress/usr.bin/mandoc/mdoc/Dl: Makefile 
	regress/usr.bin/mandoc/mdoc/Dq: Makefile 
	regress/usr.bin/mandoc/mdoc/Dt: Makefile 
	regress/usr.bin/mandoc/mdoc/Dv: Makefile 
	regress/usr.bin/mandoc/mdoc/Em: Makefile 
	regress/usr.bin/mandoc/mdoc/Eo: Makefile 
	regress/usr.bin/mandoc/mdoc/Er: Makefile 
	regress/usr.bin/mandoc/mdoc/Ev: Makefile 
	regress/usr.bin/mandoc/mdoc/Ex: Makefile 
	regress/usr.bin/mandoc/mdoc/Fd: Makefile 
	regress/usr.bin/mandoc/mdoc/Fl: Makefile 
	regress/usr.bin/mandoc/mdoc/Fo: Makefile 
	regress/usr.bin/mandoc/mdoc/Ft: Makefile 
	regress/usr.bin/mandoc/mdoc/Ic: Makefile 
	regress/usr.bin/mandoc/mdoc/In: Makefile 
	regress/usr.bin/mandoc/mdoc/Lb: Makefile 
	regress/usr.bin/mandoc/mdoc/Li: Makefile 
	regress/usr.bin/mandoc/mdoc/Lk: Makefile 
	regress/usr.bin/mandoc/mdoc/Ms: Makefile 
	regress/usr.bin/mandoc/mdoc/Mt: Makefile 
	regress/usr.bin/mandoc/mdoc/Nd: Makefile 
	regress/usr.bin/mandoc/mdoc/Nm: Makefile 
	regress/usr.bin/mandoc/mdoc/No: Makefile 
	regress/usr.bin/mandoc/mdoc/Ns: Makefile 
	regress/usr.bin/mandoc/mdoc/Oo: Makefile 
	regress/usr.bin/mandoc/mdoc/Op: Makefile 
	regress/usr.bin/mandoc/mdoc/Os: Makefile 
	regress/usr.bin/mandoc/mdoc/Ox: Makefile 
	regress/usr.bin/mandoc/mdoc/Pa: Makefile 
	regress/usr.bin/mandoc/mdoc/Pf: Makefile 
	regress/usr.bin/mandoc/mdoc/Pp: Makefile 
	regress/usr.bin/mandoc/mdoc/Qq: Makefile 
	regress/usr.bin/mandoc/mdoc/Rs: Makefile 
	regress/usr.bin/mandoc/mdoc/Rv: Makefile 
	regress/usr.bin/mandoc/mdoc/Sh: Makefile 
	regress/usr.bin/mandoc/mdoc/Sm: Makefile 
	regress/usr.bin/mandoc/mdoc/Sq: Makefile 
	regress/usr.bin/mandoc/mdoc/St: Makefile 
	regress/usr.bin/mandoc/mdoc/Sx: Makefile 
	regress/usr.bin/mandoc/mdoc/Sy: Makefile 
	regress/usr.bin/mandoc/mdoc/Tn: Makefile 
	regress/usr.bin/mandoc/mdoc/Ud: Makefile 
	regress/usr.bin/mandoc/mdoc/Ux: Makefile 
	regress/usr.bin/mandoc/mdoc/Va: Makefile 
	regress/usr.bin/mandoc/mdoc/Vt: Makefile 
	regress/usr.bin/mandoc/mdoc/Xr: Makefile 
	regress/usr.bin/mandoc/mdoc/blank: Makefile 
	regress/usr.bin/mandoc/mdoc/break: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Ad: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ap: eos.out_markdown 
	                                middle.out_markdown 
	regress/usr.bin/mandoc/mdoc/Aq: empty.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ar: font.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/At: invalid.out_markdown 
	regress/usr.bin/mandoc/mdoc/Bl: bareIt.out_markdown 
	                                bareTa.out_markdown 
	                                breakingTa.out_markdown 
	                                bullet.out_markdown 
	                                dash.out_markdown 
	                                diag.out_markdown 
	                                empty.out_markdown 
	                                emptyitem.out_markdown 
	                                enum.out_markdown 
	                                item.out_markdown 
	                                multitype.out_markdown 
	                                notype.out_markdown 
	                                ohang.out_markdown 
	                                unclosed.out_markdown 
	regress/usr.bin/mandoc/mdoc/Brq: empty.out_markdown 
	regress/usr.bin/mandoc/mdoc/Bx: args.out_markdown 
	regress/usr.bin/mandoc/mdoc/Cd: eos.out_markdown 
	                                font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Cm: basic.out_markdown 
	                                font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Dd: badarg.out_markdown 
	                                dupe.out_markdown 
	                                late.out_markdown 
	                                long.out_markdown 
	                                manarg.out_markdown 
	                                order.out_markdown 
	regress/usr.bin/mandoc/mdoc/Dl: spacing.out_markdown 
	regress/usr.bin/mandoc/mdoc/Dq: empty.out_markdown 
	regress/usr.bin/mandoc/mdoc/Dt: case.out_markdown 
	                                dupe.out_markdown 
	                                fourargs.out_markdown 
	                                late.out_markdown 
	                                missing.out_markdown 
	                                noarg.out_markdown 
	                                nobody.out_markdown 
	                                nosec.out_markdown 
	                                order.out_markdown 
	regress/usr.bin/mandoc/mdoc/Dv: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Em: font.out_markdown 
	                                noarg.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Eo: break.out_markdown 
	                                obsolete.out_markdown 
	                                unclosed.out_markdown 
	regress/usr.bin/mandoc/mdoc/Er: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ev: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ex: args.out_markdown 
	                                noname.out_markdown 
	                                nostd.out_markdown 
	regress/usr.bin/mandoc/mdoc/Fd: break.out_markdown 
	                                eos.out_markdown 
	                                font.out_markdown 
	regress/usr.bin/mandoc/mdoc/Fl: font.out_markdown 
	                                multiarg.out_markdown 
	                                noarg.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Fo: basic.out_markdown 
	                                break.out_markdown 
	                                eos.out_markdown 
	                                font.out_markdown 
	                                noarg.out_markdown 
	                                nohead.out_markdown 
	                                obsolete.out_markdown 
	                                punct.out_markdown 
	                                section.out_markdown 
	                                warn.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ft: font.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ic: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/In: eos.out_markdown 
	                                font.out_markdown 
	regress/usr.bin/mandoc/mdoc/Lb: badargs.out_markdown 
	                                break.out_markdown 
	                                eos.out_markdown 
	regress/usr.bin/mandoc/mdoc/Li: font.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Lk: link.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ms: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Mt: simple.out_markdown 
	regress/usr.bin/mandoc/mdoc/Nd: hyph.out_markdown 
	                                noarg.out_markdown 
	                                par.out_markdown 
	regress/usr.bin/mandoc/mdoc/Nm: break.out_markdown 
	                                broken.out_markdown 
	                                empty.out_markdown 
	                                font.out_markdown 
	                                long.out_markdown 
	                                par.out_markdown 
	                                parns.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/No: punct.out_markdown 
	                                spacing.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ns: position.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Oo: punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Op: break.out_markdown 
	                                broken.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Os: dupe.out_markdown 
	                                late.out_markdown 
	                                long.out_markdown 
	                                missing.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ox: keep.out_markdown 
	regress/usr.bin/mandoc/mdoc/Pa: font.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Pf: spacing.out_markdown 
	regress/usr.bin/mandoc/mdoc/Pp: arg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Qq: empty.out_markdown 
	regress/usr.bin/mandoc/mdoc/Rs: allch.out_markdown 
	                                args.out_markdown 
	                                break.out_markdown 
	                                empty.out_markdown 
	                                three_authors.out_markdown 
	regress/usr.bin/mandoc/mdoc/Rv: args.out_markdown 
	                                nostd.out_markdown 
	regress/usr.bin/mandoc/mdoc/Sh: badNAME.out_markdown 
	                                before.out_markdown 
	                                empty.out_markdown 
	                                emptyNAME.out_markdown 
	                                first.out_markdown 
	                                nohead.out_markdown 
	                                order.out_markdown 
	                                orderNAME.out_markdown 
	                                punctNAME.out_markdown 
	                                subbefore.out_markdown 
	regress/usr.bin/mandoc/mdoc/Sm: badarg.out_markdown 
	                                noarg.out_markdown 
	                                spacing-No.out_markdown 
	                                spacing-Op.out_markdown 
	                                twoarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Sq: empty.out_markdown 
	regress/usr.bin/mandoc/mdoc/St: badargs.out_markdown 
	                                call.out_markdown 
	regress/usr.bin/mandoc/mdoc/Sx: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Sy: font.out_markdown 
	                                noarg.out_markdown 
	                                punct.out_markdown 
	regress/usr.bin/mandoc/mdoc/Tn: font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ud: arg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ux: eos.out_markdown 
	                                spacing.out_markdown 
	regress/usr.bin/mandoc/mdoc/Va: basic.out_markdown 
	                                font.out_markdown 
	                                noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Vt: child.out_markdown 
	                                font.out_markdown 
	                                noarg.out_markdown 
	                                spacing.out_markdown 
	regress/usr.bin/mandoc/mdoc/Xr: args.out_markdown 
	regress/usr.bin/mandoc/mdoc/blank: comment.out_markdown 
	                                   list.out_markdown 
	regress/usr.bin/mandoc/mdoc/break: brokenbreaker.out_markdown 
	                                   notopen.out_markdown 
	                                   twice.out_markdown 
	                                   two.out_markdown 

Log message:
first batch of -T markdown tests


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/05 13:53:19

Modified files:
	sys/arch/armv7/conf: GENERIC 
	sys/arch/armv7/exynos: exehci.c exesdhc.c exgpio.c exiic.c 
	                       files.exynos 
Removed files:
	sys/arch/armv7/exynos: exgpiovar.h 

Log message:
Turn exgpio(4) into a pinctrl driver.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/05 14:03:18

Modified files:
	sys/arch/armv7/conf: RAMDISK 

Log message:
match GENERIC


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/05 14:09:09

Log message:
    Import py-qtconsole 4.2.1, ok and tweak danj@
    
    Qt-based console for Jupyter with support for rich media output.
    
    Status:
    
    Vendor Tag:	shadchin
    Release Tags:	shadchin_20170306
    
    N ports/shells/py-qtconsole/Makefile
    N ports/shells/py-qtconsole/distinfo
    N ports/shells/py-qtconsole/pkg/DESCR
    N ports/shells/py-qtconsole/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/05 14:13:27

Modified files:
	shells         : Makefile 

Log message:
+py-qtconsole
+py-qtconsole,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/05 14:35:47

Modified files:
	devel/py-uncompyle6: Makefile distinfo 
	devel/py-uncompyle6/pkg: PLIST 

Log message:
Update to py-uncompyle6 2.9.10


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/05 16:19:47

Modified files:
	.              : 61.html 

Log message:
bump a few 60 -> 61 and a 5.9 -> 6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/05 17:44:51

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
linenum is unsigned long so use %lu in log formats.  ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/05 19:03:20

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
Check l->hosts before dereferencing; fixes potential null pointer deref.
ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/05 23:44:46

Modified files:
	sys/arch/armv7/imx: imxiic.c 

Log message:
Remove unused unit number from softc.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/05 23:50:47

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/exynos: crosec.c exiic.c files.exynos tps65090.c 
Removed files:
	sys/arch/armv7/exynos: exiicvar.h 

Log message:
Attach exiic(4) using the FDT.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/03/06 00:33:29

Modified files:
	net/munin      : Makefile distinfo 

Log message:
Bugfix update to munin-2.0.33


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/06 00:41:58

Modified files:
	sys/arch/armv7/armv7: platform.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/exynos: files.exynos 
Removed files:
	sys/arch/armv7/exynos: exynos.c exynos4.c exynos5.c 

Log message:
De-platformize exynos.  Disable exdisplay(4) for now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/06 01:06:46

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-1.4.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/06 01:10:10

Modified files:
	x11/gnome/libmediaart: Makefile distinfo 
	x11/gnome/libmediaart/pkg: PLIST 

Log message:
Update to libmediaart-1.9.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/06 01:16:24

Modified files:
	usr.sbin/sysmerge: sysmerge.sh 

Log message:
Just exit 1 instead of printing usage on error.

prodded by deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/06 01:53:56

Modified files:
	www/minitube   : Makefile 
Added files:
	www/minitube/patches: patch-src_playlistitemdelegate_cpp 
	                      patch-src_video_cpp 

Log message:
Fix VEVO videos (from upstream git)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 01:56:39

Modified files:
	sys/net        : bfd.c if.c route.c route.h rtsock.c 
	sys/netinet    : if_ether.c in_pcb.c 
	sys/netinet6   : nd6_rtr.c 

Log message:
Prefix functions dealing with routing messages with 'rtm_' and keep
them all in net/rtsock.c.

This allows to easily spot which functions are doing a copyout(9)
when dealing with the routing midlayer.

ok phessler@, bluhm@, dhill@, krw@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 01:59:07

Modified files:
	sys/netinet    : in_pcb.c 
	sys/netinet6   : in6.c in6_var.h ip6_input.c 

Log message:
Kill global list of IPv6 addresses.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/06 02:02:36

Modified files:
	usr.bin/tmux   : screen-write.c 

Log message:
When redrawing a combined UTF-8 characters in its existing position,
need to save and restore the cursor so that the next character goes into
the right place.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/06 02:02:59

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Collect strings correctly when on terminals that don't support UTF-8.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 02:04:58

Modified files:
	sys/dev/usb    : usbdi.c 

Log message:
It is unsafe to dereference ``xfer'' after calling the callback as it
might free it.

Prevent a use-after-free in various aynchronous cases.  Found while
looking at another user-after-free pointed out by ehrhardt@.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 02:06:20

Modified files:
	sys/dev/pckbc  : pms.c 

Log message:
Use nitems() when passing all known parameters to wsmouse_configure().

ok bru@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 02:08:45

Modified files:
	sys/dev/wscons : wsemulvar.h wsmouse.c wstpad.c 

Log message:
Use 'inline' rather than _any of_ __the __other__ variants__.

ok bru@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 02:53:01

Modified files:
	sys/dev/wscons : wsmouseinput.h wsmousevar.h 

Log message:
Guard headers to make sure userland do not look at them.

ok bru@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 03:19:17

Modified files:
	sys/net        : rtsock.c 

Log message:
Move the guts of route_output() meesing with the routing table in their
own function.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 03:48:16

Modified files:
	sys/kern       : init_main.c 

Log message:
domaininit() doesn't need splnet().

At this stage the scheduler isn't setup, which means the 'softnet'
isn't running yet, so input packets aren't processed.

Prodded by a question from guenther@, ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/06 05:13:58

Modified files:
	sys/dev/usb    : usbdi.c 

Log message:
Do not print uninitialized variable in DPRINTFN().

From Christian Ludwig.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/03/06 07:12:20

Modified files:
	lang/myrddin   : Makefile distinfo 

Log message:
Update myrddin to 0.1.1 and add TEST_TARGET


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/06 07:40:24

Modified files:
	x11/smplayer   : Makefile distinfo 

Log message:
Upgrade for SMPlayer to 17.3.0

OK benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	okan@cvs.openbsd.org	2017/03/06 07:40:33

Modified files:
	productivity/wyrd: Makefile 
Added files:
	productivity/wyrd/patches: patch-curses_Makefile_in 

Log message:
Honour CFLAGS; noted by and OK naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/06 07:50:44

Modified files:
	faq            : faq1.html 

Log message:
break up a long list item into smaller, more logical points.
sync "buy openbsd products" wording with the home page.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/06 07:57:44

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Rs: allch.out_markdown 

Log message:
URIs need different escaping; reported by reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/06 08:08:57

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
Clean up and simplify the tls1_PRF() implementation now that we have a
single EVP MD for the PRF hash.

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/06 09:02:57

Modified files:
	devel/p5-Test-Script: Makefile distinfo 

Log message:
update p5-Test-Script to 1.16


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/03/06 09:04:22

Modified files:
	net/unison     : Makefile 
Added files:
	net/unison/patches: patch-patch-bytearray_stubs_c 

Log message:
Fix rare SIGSEGV when transferring large replicas.
from Alex Markley via Davide Gerhard


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/06 10:25:24

Modified files:
	usr.bin/mandoc : mandoc.1 mandoc.h mdoc_validate.c read.c 
	regress/usr.bin/mandoc/mdoc/Nd: broken.out_lint 

Log message:
Using .Nd only makes sense in the NAME section.
Warn if that macro occurs elsewhere.
Triggered by a question from Dag-Erling Smoergrav <des @ FreeBSD>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/06 11:03:57

Modified files:
	devel/cpp-hocon: Makefile 

Log message:
adding BDEP on gettext-tools; spotted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/06 11:14:41

Modified files:
	lib/libc/net   : inet_net_pton.c 

Log message:
Pull in a change from the bind 8 resolver that fixes a potential
crash when given a large hex number as part of the dotted quad.
OK deraadt@ jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/06 11:16:27

Modified files:
	lib/libc/net   : inet_net_pton.c 

Log message:
size is unsigned so using ==0 not <=0 when checking for buffer exhaustion


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/06 11:26:34

Modified files:
	x11/gnome/recipes: Makefile 

Log message:
prevent picking up git during configure. instead of registering it as a
BDEP just override GIT to true(1).

reported by naddy@ and several others


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/06 11:44:21

Modified files:
	lib/libc       : Symbols.list 
	lib/libc/hidden: stdlib.h 
	lib/libc/stdlib: Makefile.inc malloc.3 
Added files:
	lib/libc/stdlib: recallocarray.c 

Log message:
Introducing recallocarray(3), a blend of calloc(3) and reallocarray(3)
with the added feature that released memory is cleared. Much input from various
developers. ok deraadt@ tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/06 11:44:56

Modified files:
	lib/libc       : shlib_version 

Log message:
recallocarray bump


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/06 11:50:28

Modified files:
	include        : stdlib.h 

Log message:
Introducing recallocarray(3), a blend of calloc(3) and reallocarray(3)
with the added feature that released memory is cleared. Much input from various
developers. ok deraadt@ tom@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/06 12:26:09

Modified files:
	.              : mail.html 

Log message:
replace zaurus mention with armv7.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/06 12:55:02

Modified files:
	.              : httpslist 
	build          : mirrors.dat 

Log message:
ucr.ac.cr now has https and adheres to the /pub/openbsd directory layout.


CVSROOT:	/cvs
Module name:	www
Changes by:	matthieu@cvs.openbsd.org	2017/03/06 12:59:38

Modified files:
	.              : 61.html 

Log message:
update version numbers


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/06 13:07:32

Modified files:
	devel/py-parsing: Makefile distinfo 

Log message:
Update to py-parsing 2.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/06 13:36:45

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/06 14:19:20

Modified files:
	java/jna       : Makefile 
Added files:
	java/jna/patches: patch-native_Makefile 

Log message:
Honour CC/CFLAGS


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/03/06 14:41:56

Modified files:
	.              : 61.html 

Log message:
mandoc 1.14.1, some UTF-8 stuff, and mention the sqlite3 port


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/06 15:10:14

Modified files:
	distrib/miniroot: install.sub 

Log message:
Localize the 'hn' and 'if' variables in enable_network().
Document why renaming the 'if' variable in ifstart() is not allowed.

OK tb@, krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/06 15:30:17

Modified files:
	regress/lib/libcrypto/hmac: hmactest.c 

Log message:
Use an unsigned loop variable to avoid a comparison between signed
and unsigned.  Makes the test compile again.
OK inoguchi@


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/03/06 15:34:15

Modified files:
	.              : 61.html 

Log message:
New items found in the /usr/src/etc/ ChangeLog.
Nothing to do with respect to /usr/src/bin/.


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2017/03/06 16:16:09

Modified files:
	.              : 61.html 

Log message:
some ripd/ospfd/ospf6d improvements


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2017/03/06 16:18:37

Modified files:
	.              : 61.html 

Log message:
asr support for RES_USE_EDNS0 and RES_USE_DNSSEC

filed under "other userland network improvements", maybe RES_USE_DNSSEC
should be considered a security improvement


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/06 16:42:55

Modified files:
	net/pidgin     : Makefile 

Log message:
honor CXX for linking, too


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2017/03/06 18:29:53

Modified files:
	sys/net        : hfsc.c ifq.c ifq.h 

Log message:
deprecate ifq_enqueue_try, and let backends drop arbitrary mbufs.

mikeb@ wants priq to be able to drop lower priority packets if the
current one is high. because ifq avoids freeing an mbuf while an
ifq mutex is held, he needs a way for a backend to return an arbitrary
mbuf to drop rather than signal that the current one needs to be
dropped.

this lets the backends return the mbuf to be dropped, which may or
may not be the current one.

to support this ifq_enqueue_try has to be dropped because it can
only signal about the current mbuf. nothing uses it (except
ifq_enqueue), so we can get rid of it. it wasnt even documented.

this diff includes some tweaks by mikeb@ around the statistics
gathered in ifq_enqueue when an mbuf is dropped.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/06 19:27:02

Modified files:
	sys/dev/acpi   : acpisbs.c 

Log message:
move a TODO to the top


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/06 19:48:15

Modified files:
	sys/dev/pci/drm/i915: i915_reg.h intel_drv.h intel_panel.c 

Log message:
Setup backlight pwm alternate increment on backlight enable

On at least the MacBookAir7,1 (Broadwell), upon S3 resume, the
backlight value was treated as 0 or 100 despite reporting
intermediate values, so if the backlight value was anything other
than 100 at suspend time, the screen would stay off upon resume.

This is backported from Linux commits
32b421e79e6b546da1d469f1229403ac9142d695 and
e29aff05f239f8dd24e9ee7816fd96726e20105a which were noted in
freedesktop.org bug 67454.

ok jsg


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/06 20:07:12

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
enable vioscsi(4)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/03/06 20:40:34

Modified files:
	xserver        : configure configure.ac 
	xserver/hw/xfree86/os-support/bsd: Makefile.am Makefile.in 
Added files:
	xserver/hw/xfree86/os-support/bsd: arm64_video.c 

Log message:
make xserver build on arm64
ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/06 23:07:50

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
Some tweaks from jmc@ and describe better what recallocarray does;
help and ok from tom@ and deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/06 23:58:56

Modified files:
	sys/net        : rtsock.c 

Log message:
Since route_input is no longer part of the protosw struct it is possible to
pass the socket to it and do the SO_USELOOPBACK check there. This removes
a the nasty hack in the output function where the sp_family is set to 0
temporarily.
OK bluhm@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2017/03/07 01:00:23

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
tls_close() can return TLS_WANT_POLLIN/TLS_WANT_POLLOUT, handle them
appropriately.

Ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/03/07 01:53:17

Modified files:
	security/password-store: Makefile distinfo 
	security/password-store/patches: patch-Makefile patch-man_pass_1 
	                                 patch-src_password-store_sh 
	security/password-store/pkg: DESCR PLIST 
Added files:
	security/password-store/patches: patch-src_platform_openbsd_sh 
	                                 patch-tests_tr 
Removed files:
	security/password-store/files: openbsd.sh 

Log message:
Update to password-store-1.7.

From David Dalhlberg (maintainer). Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/07 02:12:48

Modified files:
	mail/neomutt   : Makefile distinfo 
Removed files:
	mail/neomutt/patches: patch-getdomain_c patch-mutt_h 

Log message:
update to neomutt-20170306


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/07 02:23:27

Modified files:
	sys/net        : raw_usrreq.c route.h rtsock.c 
	sys/kern       : uipc_socket.c uipc_socket2.c 

Log message:
Do not grab the NET_LOCK() for routing sockets operations.

The only function that need the lock is rtm_output() as it messes with
the routing table.  So grab the lock there since it is safe to sleep
in a process context.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/07 02:29:40

Modified files:
	sys/kern       : kern_sysctl.c 
	sys/net        : pf.c 

Log message:
Enforce that tcbtable and udbtable must be accessed with the NET_LOCK().

Get rid of the old splnet()/splx() dances.  What's protecting them right
now is the KERNEL_LOCK().  but since pf(4) look at these tables we want
to protect them in another way, hence the NET_LOCK(), at least as hint.

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/03/07 03:07:13

Modified files:
	security/libbde: Makefile distinfo 

Log message:
update libbde to 20170204 and force use awk in base.
ok benoit@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/03/07 03:07:58

Modified files:
	sysutils/libfwsi: Makefile distinfo 

Log message:
update libfwsi to 20170117.
ok benoit@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/03/07 03:08:45

Modified files:
	sysutils/libmsiecf: Makefile distinfo 

Log message:
update libmsiecf to 20170116.
ok benoit@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/03/07 03:09:37

Modified files:
	sysutils/libsigscan: Makefile distinfo 

Log message:
update libsigscan to 20170124.
ok benoit@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/03/07 03:10:43

Modified files:
	security/py-dfvfs: Makefile distinfo 
	security/py-dfvfs/pkg: PLIST 

Log message:
update py-dfvfs to 20170116.
ok benoit@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2017/03/07 03:11:27

Modified files:
	sysutils/py-tsk: Makefile distinfo 

Log message:
update py-tsk to 20170128.
ok benoit@.


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2017/03/07 03:44:50

Modified files:
	.              : 61.html 

Log message:
Additional stuff I've been involved in.

Move the RES_USE_*flags to "Assorted improvements" instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/03/07 04:49:42

Modified files:
	sys/arch/amd64/amd64: machdep.c 
	sys/arch/i386/i386: machdep.c 
	sys/arch/loongson/loongson: machdep.c 

Log message:
Disallow setting machdep.lidaction to any other value but [0,2].

suggested by halex
ok deraadt millert


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/07 05:00:32

Modified files:
	sys/netinet    : in_pcb.c 

Log message:
Initially in_pcballoc() hooked all new inpcb, including the IPv6
ones, into the IPv4 hash.  They cannot be used before bind(2) anyway
and then they are rehashed and rehooked, so this was not noticed.
Nevertheless put IPv6 PCBs into the IPv6 hash from the beginning.
OK jca@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/07 05:29:31

Modified files:
	regress/lib/libtls/gotls: tls.go 

Log message:
We no longer need to keep pointers following tls_config_set_*() calls.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/07 05:32:42

Modified files:
	regress/lib/libtls/gotls: tls.go 

Log message:
libtls errors are much more descriptive these days - return them directly
and avoid adding redundant/duplicate information.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/07 05:38:25

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Fd: Makefile 
	regress/usr.bin/mandoc/mdoc/In: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Fd: empty.out_markdown 
	regress/usr.bin/mandoc/mdoc/In: break.out_markdown 
	                                noarg.out_markdown 

Log message:
Fix .In formatting in the SYNOPSIS:
No &zwnj; in the middle of **, please.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/07 05:49:35

Modified files:
	telephony/stuntman: Makefile 

Log message:
no idea where this g++ comes from but it's easy to fix


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/07 05:52:14

Modified files:
	regress/lib/libtls/gotls: tls.go tls_test.go 

Log message:
Add handling for errors on the TLS config and properly check/handle
failures when setting the CA file.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/07 05:58:02

Modified files:
	regress/lib/libtls/gotls: tls.go 

Log message:
Provide support for libtls protocols and allow for protocols to be set on
a TLS config. The ConnVersion function now also returns a protocol version
instead of a string.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/07 06:00:25

Modified files:
	regress/lib/libtls/gotls: tls.go 

Log message:
Allow ciphers to be set on the TLS config.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/07 06:09:08

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/An: Makefile 
	regress/usr.bin/mandoc/mdoc/Aq: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/An: break.out_markdown 
	regress/usr.bin/mandoc/mdoc/Aq: author.out_markdown 

Log message:
implement .An -split and -nosplit


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/07 06:22:39

Modified files:
	regress/lib/libtls/gotls: tls_test.go 

Log message:
Add a test that covers a libtls client talking to a Go TLS server with
varying minimum and maximum protocol versions. This gives us protocol
version test coverage against an independent TLS stack.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/07 06:27:58

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Fl: Makefile noarg.out_markdown 
Added files:
	regress/usr.bin/mandoc/mdoc/Fl: parsed.out_markdown 

Log message:
fix spacing after empty .Fl


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/07 06:37:03

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
Correctly handle TLS PRF with MD5+SHA1 - the secret has to be partitioned
and each hash processed separately.

Tested by tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/07 06:47:56

Modified files:
	usr.bin/tmux   : grid.c 

Log message:
If moving cells outside the current used count, update it.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/07 06:48:28

Modified files:
	usr.bin/tmux   : screen-write.c 

Log message:
Need to flush before writing out cells we are not collecting, also add
some extra logging.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/07 06:58:01

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.6.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/03/07 06:59:51

Modified files:
	sys/arch/amd64/amd64: mutex.S 

Log message:
Make the slow path similar to i386's by checking mutex owner
on every iteration.

OK mikeb@, kettenis@, mpi@, tom@, mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/03/07 07:03:22

Modified files:
	sys/arch/amd64/amd64: mutex.S 
	sys/arch/i386/i386: mutex.S 

Log message:
Use the pause instruction on the slow path. This improves
performance a bit.

OK mikeb@, kettenis@, mpi@, tom@, mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/07 07:03:56

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Eo: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Eo: empty.out_markdown 

Log message:
fix completely empty .Eo: no blank line wanted


CVSROOT:	/cvs
Module name:	www
Changes by:	bluhm@cvs.openbsd.org	2017/03/07 07:13:44

Modified files:
	.              : 61.html 

Log message:
Add network and syslog improvements.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/07 07:15:09

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocation.pm 

Log message:
error message bugfix: forgot to pass object around, so
parse_problems would report unspecific repository issues instead of trouble
with a given package.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/07 07:19:32

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 

Log message:
more error streamlining:
- if we don't have an object for fetch, then we're grabbing a list for http
"not found" means it's not a proper package directory.
- report once for "empty" repositories, and we know the difference between
an empty dir and a non existing directory

- if we have an object, save we already reported an error to avoiding
cascading error reports


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/07 07:20:01

Modified files:
	usr.sbin/pkg_add/OpenBSD: Handle.pm 

Log message:
get rid of redundant "Can't find CONTENTS" if the location already twitted


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/07 07:21:20

Modified files:
	print/gtklp    : Makefile distinfo 
Removed files:
	print/gtklp/patches: patch-gtklp_file_c patch-gtklp_gtklp_c 
	                     patch-include_defaults_h 
	                     patch-libgtklp_libgtklp_c 
	                     patch-libgtklp_libgtklp_h 

Log message:
Update to gtklp-1.3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/07 07:22:15

Modified files:
	telephony/stuntman: Makefile 

Log message:
better fix, don't commit before coffee
thx aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/07 07:35:40

Modified files:
	usr.sbin/pkg_add/OpenBSD: Handle.pm PkgAdd.pm 

Log message:
if we reported "Can't find CONTENTS", we know it's a bad package,
so no need to say it again


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/03/07 07:41:57

Modified files:
	sys/arch/amd64/amd64: lock_machdep.c 
	sys/arch/i386/i386: lock_machdep.c 
	sys/arch/sparc64/sparc64: lock_machdep.c 

Log message:
Keep on trying to grab the lock after leaving ddb after lock spin-out.
This restores the behaviour that preceded ticket locks. The feature can
be useful in some debug cases where the system is not totally borken.

OK guenther@, dlg@, mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/07 08:16:01

Modified files:
	sys/net        : ifq.c 

Log message:
Convert priority queue lists to mbuf_lists

This simplifies the code quite a bit making it easier to reason about.
dlg@ has begrudgingly submitted to populism, OK bluhm, mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/07 08:23:20

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Bump dependency to sqlite >= 3.17.0 for upcoming mozilla 52 updates.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/07 08:26:41

Modified files:
	www/seamonkey  : Makefile 
	devel/xulrunner/24: Makefile 

Log message:
Bump REVISION for mozilla.port.mk LDEP change


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/07 08:31:18

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Bl: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Bl: inset.out_markdown 

Log message:
Escape blanks at the end of markdown lines
such that they don't look like output line breaks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/07 08:31:39

Modified files:
	www/firefox-i18n: Makefile.inc distinfo 
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/patches: patch-browser_installer_Makefile_in 
	                             patch-intl_icu_source_Makefile_in 
	                             patch-storage_mozStorageConnection_cpp 
	www/mozilla-firefox/pkg: PLIST 
Removed files:
	www/mozilla-firefox/patches: patch-widget_gtk_nsWindow_cpp 

Log message:
Update mozilla-firefox to 52.0.

See https://www.mozilla.org/en-US/firefox/52.0/releasenotes/

Remove patch for #1335827, merged upstream.

Note that this release removes support for NPAPI plugins (java, etc..) -
users relying on those should migrate to firefox-esr, where NPAPI
plugins will be supported for the lifetime of 52esr branch.

Tested by several, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/07 08:36:46

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr/patches: patch-browser_installer_Makefile_in 
	                         patch-intl_icu_source_Makefile_in 
	                         patch-storage_mozStorageConnection_cpp 
	www/firefox-esr/pkg: PLIST 
	www/firefox-esr-i18n: Makefile Makefile.inc distinfo 
Added files:
	www/firefox-esr/patches: 
	                         patch-browser_installer_allowed-dupes_mn 
Removed files:
	www/firefox-esr/patches: patch-gfx_skia_moz_build 
	                         patch-gfx_skia_skia_src_opts_SkBlitRow_opts_SSE4_h 
	                         patch-js_src_jit_ExecutableAllocator_cpp 
	                         patch-toolkit_components_protobuf_src_google_protobuf_stubs_atomicops_h 
	www/firefox-esr-i18n/be: Makefile 

Log message:
Update firefox-esr to 52.0.

See https://www.mozilla.org/en-US/firefox/52.0esr/releasenotes/

This release switches to Gtk3 by default, following upstream. It also
still supports NPAPI plugins (java etc..) for the 52esr lifetime (around
1 year).

This way, 6.1 will ship with a supported branch of esr instead of the
soon-to-be-dead 45 branch.

Discussed with naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/07 08:38:11

Modified files:
	sys/arch/armv7/armv7: platform.c 

Log message:
Unbreak the tree by removing the  "exynos.h" include and associated prototype.
Found the hard way by florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/07 08:40:00

Modified files:
	mail/mozilla-thunderbird: Makefile distinfo 
	mail/thunderbird-i18n: Makefile.inc distinfo 

Log message:
Update to mozilla-thunderbird 45.8.0.

See https://www.mozilla.org/en-US/thunderbird/45.8.0/releasenotes/

Note that 52.0 is around the corner, and hopefully will make 6.1 so that
we ship with a supported branch for its lifetime.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/07 08:40:44

Modified files:
	x11/gnome/photos: Makefile distinfo 

Log message:
Update to gnome-photos-3.22.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/07 08:42:02

Modified files:
	sys/net        : ifq.c 

Log message:
Change priq enqueue policy to drop lower priority packets

The new priority queueing enqueue policy is such that when the
aggregate queue depth of an outgoing queue is exceeded we attempt
to find a non-empty queue of packets with lower priority than the
priority of a packet we're trying to enqueue and if there's such
queue, we drop the first packet from it.

This ensures that high priority traffic will almost always find
the place on the queue and low priority bulk traffic gets a better
chance at regulating its throughput.  There's no change in the
behavior if altered priorities are not used (e.g. via "set prio"
Pf directive, VLAN priorities and so on).

With a correction from dlg@, additional tests by dhill@
OK bluhm, mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/07 08:46:34

Removed files:
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_js_src_jit_ExecutableAllocator_cpp 

Log message:
Remove patch for #1215479, mmap address for executable code has been
randomized on all posix platforms in bug #1334933, which got merged to
esr45.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/07 08:54:05

Modified files:
	devel/boost    : Makefile 

Log message:
Honor CXX, CXXFLAGS.
(1) Pass CXX and CXXFLAGS to the configure script run.
(2) Split out the build of the bjam tool from the bootstrap procedure.
(3) Tell the main build to use CXX via user-config.jam.

ok Brad, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/07 09:11:08

Modified files:
	usr.sbin/pkg_add/OpenBSD: md5.pm 

Log message:
Digest::SHA is nasty: it shows an incomplete error message if the
file can't be read properly (got a Read error on delete),
so stop trying to do things ourselves, just wrap the error to inject
a decent error message, catching inexistent files and read errors in
the process.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/07 09:11:18

Modified files:
	sys/arch/arm/cortex: ampintc.c 

Log message:
Record the target mask for the boot CPU when we attach and use that to pick
the target CPU interface when establishing an interrupt.  Makes interrupts
work on machines that boot up on a CPU that is attached to a CPU interface
that isn't zero.

Discussed with Dale Rahn.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2017/03/07 09:11:34

Modified files:
	regress/sys/crypto/gmac: gmac_test.c 

Log message:
Add test vectors to regress gmac_test.c
ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/07 09:21:28

Modified files:
	usr.sbin/pkg_add/OpenBSD: Handle.pm 

Log message:
okay "can't find" means error reported as well


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/07 09:28:37

Modified files:
	sys/net        : pf.c 

Log message:
Don't overwrite the flow ID once it's set

Output processing may split, encapsulate or obfuscate a single
stream which makes the changed flow ID less useful for purposes
of flow control, for instance fair sharing of bandwidth.

OK dlg


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/07 09:59:40

Modified files:
	sys/netinet    : in_pcb.c 
	sys/netinet6   : in6_pcb.c 

Log message:
When the inpcb queue and hash lists are traversed or modified we
need netlock.  Remove the obsolete splnet.
OK mpi@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/07 10:09:24

Modified files:
	.              : ftp.html 
	build/mirrors  : ftp.html.end 

Log message:
remove mentions of zaurus, sparc and armish. mention https as an option.
use shorter man page links. minor text tweaks.

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/07 10:10:35

Removed files:
	usr.sbin/pkg_add: pkg.conf.5 

Log message:
somehow it didn't get removed even though it's no longer installed


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/07 10:57:44

Modified files:
	.              : 61.html 

Log message:
remove socppc; based on a diff from denis fondras


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/07 11:25:22

Modified files:
	faq            : faq14.html 

Log message:
remove a confusing sentence about how adding or removing a disk may
influence disk numbers in openbsd

prompted by diffs by marcus merighi, thanks


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/07 11:30:54

Modified files:
	.              : arc.html armish.html aviion.html hp300.html 
	                 mvme68k.html mvme88k.html sparc.html vax.html 
	                 zaurus.html 

Log message:
"the latest supported release is/was" -> "the last supported release was"


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/07 11:33:27

Modified files:
	devel/lua-bitop: Makefile 

Log message:
new port hardcodes gcc, bad edd@ :)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/07 11:34:09

Modified files:
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/07 11:43:58

Modified files:
	openntpd       : portable.html 

Log message:
sync, missed in previous


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/07 12:03:21

Modified files:
	.              : 61.html 

Log message:
remove/reword cd-related text.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	bru@cvs.openbsd.org	2017/03/07 12:07:56

Modified files:
	driver/xf86-input-synaptics/src: wsconscomm.c 

Log message:
Don't use stale coordinates in the hysteresis filter.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/07 12:08:07

Modified files:
	lib/libc/termios: tcsetpgrp.3 

Log message:
If tcsetpgrp() is called by a background process and there is a
SIGTTOU handler installed without SA_RESTART set, tcsetpgrp() will
return -1 and set errno to EINTR.  OK deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	rpe@cvs.openbsd.org	2017/03/07 12:48:12

Modified files:
	.              : want.html 

Log message:
Disks needed for mirror operation in Vienna.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/07 13:00:02

Modified files:
	usr.bin/mandoc : read.c 
	regress/usr.bin/mandoc/roff/de: Makefile 
Added files:
	regress/usr.bin/mandoc/roff/de: infinite.in infinite.out_ascii 
	                                infinite.out_lint 

Log message:
If a user-defined macro is aborted because it exceeds the stack
limit, usually due to infinite recursion, discard whatever remains
in all those open stack levels.  Otherwise, insane constructions
like the following could generate macros of enormous size, causing
mandoc(1) to die from memory exhaustion:

.de m  \" original macro definition
.m     \" recursion to blow up the stack
.de m  \" definition to be run during the call of .m marked (*)
very long plain text (some kilobytes)
.m     \" expand the above a thousand times while unwinding the stack
..     \" end of the original definition
.m     \" (*) recursively generate a ridiculously large macro
..     \" end of recursively generated definition
.m     \" execute the giant macro, exhausting memory

Very creative abuse found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/07 13:14:20

Modified files:
	sys/arch/armv7/exynos: exuart.c 

Log message:
Make this actually work as a tty.  Everything except for the most basic
tx and rx functionality is still missing.


CVSROOT:	/cvs
Module name:	src
Changes by:	dhill@cvs.openbsd.org	2017/03/07 13:22:37

Modified files:
	sys/kern       : kern_tc.c 

Log message:
Drop unused variable from ntp_update_second().

ok jca@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/07 14:21:20

Modified files:
	lang/moarvm    : Makefile distinfo 
	lang/moarvm/patches: patch-Configure_pl patch-build_Makefile_in 
	lang/moarvm/pkg: PLIST 
Added files:
	lang/moarvm/patches: patch-build_setup_pm 
Removed files:
	lang/moarvm/patches: patch-build_probe_pm 

Log message:
Update to MoarVM 2017.02.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/07 14:21:34

Modified files:
	lang/nqp       : Makefile distinfo 

Log message:
Update to NQP 2017.02.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/07 14:21:51

Modified files:
	lang/rakudo    : Makefile distinfo 
	lang/rakudo/pkg: PLIST 
Added files:
	lang/rakudo/patches: patch-tools_build_Makefile-Moar_in 

Log message:
Update to Rakudo 2017.02.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	naddy@cvs.openbsd.org	2017/03/07 14:35:58

Modified files:
	app/xlockmore  : Makefile.bsd-wrapper 
	share/mk       : bsd.xorg.mk 

Log message:
pass CC, CXX, CXXFLAGS to the xenocara build; ok matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/07 14:49:22

Modified files:
	graphics/blender: Makefile distinfo 

Log message:
Update to blender 2.78c.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/07 16:35:06

Modified files:
	sys/net        : if_etherip.c 
	sys/netinet    : ip_ether.c ip_ether.h 
	usr.bin/netstat: inet.c 

Log message:
Rename struct etheripstat members for consistency, move them all to 64bits

Will make transition to percpu counters easier.  ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/07 19:22:14

Modified files:
	multimedia/libvpx: Makefile 

Log message:
No need to force CC/CXX/LD any more

ok Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/07 19:39:44

Log message:
    Import py-atomicwrites-1.1.5 from Remi Locherer, ok/tweaks sthen@
    
    Atomic file writes for Python:
    * Race-free assertion that the target file doesn't yet exist.
    * Simple high-level API that wraps a very flexible class-based API.
    * Consistent error handling across platforms.
    
    Status:
    
    Vendor Tag:	danj
    Release Tags:	danj_20170307
    
    N ports/devel/py-atomicwrites/Makefile
    N ports/devel/py-atomicwrites/distinfo
    N ports/devel/py-atomicwrites/pkg/DESCR
    N ports/devel/py-atomicwrites/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/07 19:40:41

Log message:
    Import py-click-log-0.1.8 from Remi Locherer, ok/tweaks sthen@
    
    Logging integration for Python Click.
    
    Status:
    
    Vendor Tag:	danj
    Release Tags:	danj_20170307
    
    N ports/devel/py-click-log/Makefile
    N ports/devel/py-click-log/distinfo
    N ports/devel/py-click-log/pkg/DESCR
    N ports/devel/py-click-log/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/07 19:42:34

Log message:
    Import py-click-threading-0.4.3 from Remi Locherer, ok/tweaks sthen@
    
    Utility for multithreading in Python click.
    
    Status:
    
    Vendor Tag:	danj
    Release Tags:	danj_20170307
    
    N ports/devel/py-click-threading/Makefile
    N ports/devel/py-click-threading/distinfo
    N ports/devel/py-click-threading/pkg/DESCR
    N ports/devel/py-click-threading/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/07 19:48:10

Modified files:
	devel          : Makefile 

Log message:
+ py-atomicwrites
+ py-atomicwrites,python3
+ py-click-log
+ py-click-log,python3
+ py-click-threading
+ py-click-threading,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	drahn@cvs.openbsd.org	2017/03/07 23:28:12

Modified files:
	lib/libc/arch/aarch64/gen: setjmp.S 

Log message:
Correct arm64 sigprocmask parameter passing in setjmp/longjmp calls.
Always return nonzero as the return code from longjmp.
ok guenther@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/07 23:50:38

Modified files:
	sys/net        : if_etherip.h 

Log message:
Sync struct etheripstat decl with netinet/ip_ether.h


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/08 01:09:28

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.21.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/08 01:09:49

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.58.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/08 01:11:48

Modified files:
	security/gnutls: Makefile distinfo 
	security/gnutls/pkg: PLIST 

Log message:
Update to gnutls-3.5.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/08 01:48:02

Modified files:
	sys/arch/arm64/arm64: intr.c 
	sys/arch/arm64/include: intr.h 

Log message:
Establish API to route interrupts to specific CPU cores.
Based on and ok drahn@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/08 01:57:16

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable em(4), ahci(4), nvme(4) and USB controllers attached to pci(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/08 02:19:45

Modified files:
	sys/net        : if.c 

Log message:
Do not unset IFF_UP twice.

ok stsp@, claudio@, mikeb@, dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/08 02:23:06

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable ix(4).  Requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/08 02:33:04

Modified files:
	distrib/arm64/ramdisk: install.md 

Log message:
copy rpi3 u-boot to the installed disk

Even though this can't be the SD card at the moment, it is possible to
boot off USB if an OTP bit has been set.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/08 02:34:43

Modified files:
	sys/netinet6   : nd6.c 

Log message:
Always invalidate ND entries in nd6_free().

This way RTF_CACHED entries are properly flushed.  Fix a regression
reported by weerd@ and also tested by matthieu@.

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/03/08 02:39:40

Modified files:
	security/qtkeychain: Makefile distinfo 

Log message:
Update to qtkeychain-0.7.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	sobrado@cvs.openbsd.org	2017/03/08 02:41:40

Modified files:
	usr.sbin/switchd: switchd.conf.5 

Log message:
argument to the document description (Nd) macro should be lowercase.

ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/08 02:44:03

Modified files:
	sysutils/parallel: Makefile distinfo 
	sysutils/parallel/patches: patch-src_Makefile_in 
	sysutils/parallel/pkg: PLIST 

Log message:
Update to GNU parallel 20170222.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/08 03:05:30

Modified files:
	usr.sbin/tcpdump: print-etherip.c 

Log message:
Fix etherip version parsing, ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/08 03:51:08

Modified files:
	www/midori/patches: patch-CMakeLists_txt 

Log message:
remove hidden dependency on execinfo
okay landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/03/08 04:12:22

Modified files:
	mail/evolution-rss: Makefile 

Log message:
unhardcode the g++ name, builds fine.
the author of the change doesn't quite remember what went wrong, seems
it was libtool being fussy or something.
From Lucian Langa:
> I'm not 100% I remember this entirely, but I think g++ was required
> only for some  building script (libtool perhaps? I do not remember),
> but not for the code itself. At certain part there were some c++
> parts but not entirely sure they are in current code base. Evolution
> code base went through major changes quite a few times since 2007
> so obviously this code changed in the meanwhile too.

we'll see how it fares with clang later.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/08 04:35:34

Modified files:
	sys/net        : if_ppp.c 

Log message:
No need to clear IFF_UP after calling if_down().


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/08 04:38:08

Modified files:
	sys/dev/usb    : if_umb.c 

Log message:
Do not clear IFF_UP, even in the error path.

This flag should only be set by the stack, drivers shouldn't
mess with it.

Discussed with dlg@ and mikeb@, ok gerhard@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/08 04:41:11

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable re(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/08 04:45:23

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable eephy(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/08 04:47:07

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable msk(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/08 05:02:41

Modified files:
	sys/dev/pci    : if_de.c if_ipw.c if_iwi.c if_iwm.c if_iwn.c 
	                 if_wpi.c 
	sys/dev/ic     : ar5008.c ar9003.c 
	sys/arch/macppc/dev: if_bm.c 

Log message:
Do not clear IFF_UP, even in the error path, clearing IFF_RUNNING
is enough.

This flag should only be set by the stack, drivers shouldn't mess
with it.

Discussed with dlg@ and mikeb@, ok mikeb@, stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/08 05:07:47

Modified files:
	usr.bin/ssh    : ssh.c 

Log message:
quote [host]:port in generated ProxyJump commandline; the [ / ]
characters can confuse some shells (e.g. zsh).
Reported by Lauri Tirkkonen via bugs@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 06:17:28

Modified files:
	usr.bin/mandoc : roff.c 
	regress/usr.bin/mandoc/roff/de: infinite.in infinite.out_ascii 
	                                infinite.out_lint 

Log message:
prevent infinite recursion while expanding the arguments
of a user-defined macro; issue found by tb@ with afl(1)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/08 06:36:12

Modified files:
	usr.bin/tmux   : cmd-attach-session.c cmd-break-pane.c 
	                 cmd-if-shell.c cmd-new-session.c 
	                 cmd-new-window.c cmd-run-shell.c 
	                 cmd-split-window.c control-notify.c format.c 
	                 tmux.h window-copy.c 

Log message:
Add a helper function for the most common format_create/defaults/expand
pattern.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 07:19:00

Modified files:
	sbin/dhclient  : dhclient.c options.c packet.c 

Log message:
Add comments to #endif's to allow easy differentiation between many
incoming #ifdef's.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 07:28:44

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Shuffle some declarations. Both more style(9)'ish and make future diff
smaller.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 07:29:49

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 

Log message:
Add a blank after ">" when quoting.
If is allowed by markdown syntax and more human-readable.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/08 07:34:35

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Always send smkx to the terminal outside, the keys we get from terminfo
are the keys when it is on.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 07:36:19

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Split a declaration to make the later insertion of #ifdef easier.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/08 07:43:40

Modified files:
	usr.bin/tmux   : options.c 

Log message:
Handle empty options correctly.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 07:45:33

Modified files:
	regress/usr.bin/mandoc/mdoc/Bd: Makefile 
	regress/usr.bin/mandoc/mdoc/Bl: Makefile 
	regress/usr.bin/mandoc/mdoc/D1: Makefile 
	regress/usr.bin/mandoc/mdoc/Sm: Makefile 
	regress/usr.bin/mandoc/mdoc/break: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Bd: badargs.out_markdown 
	                                beforeNAME.out_markdown 
	                                blank.out_markdown 
	                                break.out_markdown 
	                                broken.out_markdown 
	                                centered.out_markdown 
	                                empty.out_markdown 
	                                nested.out_markdown 
	                                offset-empty.out_markdown 
	                                offset-neg.out_markdown 
	                                spacing.out_markdown 
	                                unclosed.out_markdown 
	regress/usr.bin/mandoc/mdoc/Bl: badargs.out_markdown 
	                                breakingIt.out_markdown 
	                                broken.out_markdown 
	                                emptyhead.out_markdown 
	                                emptytag.out_markdown 
	                                extend.out_markdown 
	                                hang.out_markdown 
	                                multitag.out_markdown 
	                                nested.out_markdown 
	                                noIt.out_markdown 
	                                offset.out_markdown 
	                                secstart.out_markdown 
	                                tag.out_markdown 
	regress/usr.bin/mandoc/mdoc/D1: spacing.out_markdown 
	regress/usr.bin/mandoc/mdoc/Sm: scope.out_markdown 
	regress/usr.bin/mandoc/mdoc/break: tail.out_markdown 

Log message:
enable -T markdown tests of filled displays and tagged lists


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 07:55:21

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Shuffle some functions around to group together functions that will
later be #ifdef'd in or out.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/08 08:07:10

Modified files:
	sys/arch/sgi/hpc: if_sq.c 

Log message:
Fix logic in the driver preventing it to receive broadcast frames
before configuring an address.

Make dhclient(8) work on sq(4).

Problem reported by Frank Scheiner, diff from miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 08:07:32

Modified files:
	sbin/dhclient  : kroute.c 

Log message:
Move ROUNDUP() to top of file, outside of warring #ifdef's to come.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 08:08:17

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Bl: Makefile 
Added files:
	regress/usr.bin/mandoc/mdoc/Bl: colNoIt.out_markdown 
	                                column.out_markdown 

Log message:
.Bl -column never gets blank lines between rows


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 08:34:44

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Move a line of code to group together code that will be mediated
by #ifdef's.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 08:46:36

Modified files:
	sbin/dhclient  : dispatch.c 

Log message:
Stray #endif w/o comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/08 08:54:54

Added files:
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_js_src_jit_ExecutableAllocator_h 
	                                  patch-mozilla_js_src_jit_Lowering_cpp 
	                                  patch-mozilla_js_src_jit_ProcessExecutableMemory_cpp 
	                                  patch-mozilla_js_src_jit_ProcessExecutableMemory_h 

Log message:
Fix build breakage by shoplifting a patch from tor-browser (see
https://trac.torproject.org/projects/tor/ticket/21514) - patch pointed
at by Jan De Mooij@mozilla.

In bug #1334933, as part of a security fix the code for W^X not
merged/rearranged, but was removed - thus triggering mmap protection
during build on OpenBSD, as reported by naddy@. My bad for not spotting
this.

The tor-browser patch just reinstates some W^X bits, instead of marking
TB as needing wxallowed. This is only temporary for 45, 52 won't need
that anyway.

Tested building and working fine.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/08 09:32:26

Modified files:
	lang/jruby     : Makefile distinfo 
	lang/jruby/pkg : PLIST 
Added files:
	lang/jruby/patches: patch-jruby-launcher_Makefile 
	                    patch-jruby-launcher_inc_Makefile-conf_mk 

Log message:
Update to JRuby 9.1.8.0

Fix hardcoding of gcc and g++.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/08 09:54:13

Modified files:
	.              : socppc.html plat.html 
	faq            : faq1.html 

Log message:
move socppc to the discontinued platform list.

ok mpi deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/08 10:02:13

Modified files:
	mail/rspamd    : Makefile distinfo 
	mail/rspamd/patches: patch-CMakeLists_txt 
	                     patch-contrib_aho-corasick_CMakeLists_txt 
	                     patch-contrib_hiredis_CMakeLists_txt 
	                     patch-contrib_http-parser_CMakeLists_txt 
	                     patch-contrib_lc-btrie_CMakeLists_txt 
	                     patch-contrib_libottery_CMakeLists_txt 
	                     patch-contrib_linenoise_CMakeLists_txt 
	                     patch-contrib_lpeg_CMakeLists_txt 
	                     patch-contrib_xxhash_CMakeLists_txt 
	                     patch-contrib_zstd_CMakeLists_txt 
	                     patch-src_CMakeLists_txt 
	                     patch-src_rspamadm_CMakeLists_txt 
	mail/rspamd/pkg: PLIST 

Log message:
update to rspamd-1.5.2, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/08 10:05:34

Modified files:
	mail/exim      : Makefile distinfo 

Log message:
update to exim-4.89


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/08 10:17:14

Modified files:
	math/fann      : Makefile distinfo 
	math/fann/pkg  : PLIST 

Log message:
update to fann-2.2.0, move to github, update license marker


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/08 10:23:25

Modified files:
	net/freeradius3: Makefile distinfo 
	net/freeradius3/patches: patch-raddb_certs_Makefile 
	                         patch-src_main_detail_c 
	net/freeradius3/pkg: PLIST-main 
Added files:
	net/freeradius3/patches: patch-src_main_tls_c 

Log message:
update to freeradius-3.0.13


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 10:40:17

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 

Log message:
Do not increment .Bl -enum list markers beyond two digits.
Otherwise, we would indent subsequent paragraphs less than
the CommonMark specification requires, harming portability.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/08 10:41:04

Modified files:
	math/fann      : Makefile 

Log message:
add tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/08 10:41:30

ports/math/fann/patches

Update of /cvs/ports/math/fann/patches
In directory cvs.openbsd.org:/tmp/cvs-serv87953/patches

Log Message:
Directory /cvs/ports/math/fann/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/08 10:41:42

Added files:
	math/fann/patches: patch-examples_Makefile 

Log message:
add tests


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 10:51:30

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 

Log message:
The CommonMark specification allows list markers fo the form "number) "
as well as "number. ", so escape closing parentheses after leading digits
to improve portability.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 11:17:06

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Dv: font.out_markdown 
	regress/usr.bin/mandoc/mdoc/Er: font.out_markdown 
	regress/usr.bin/mandoc/mdoc/Ev: font.out_markdown 
	regress/usr.bin/mandoc/mdoc/Li: font.out_markdown 
	regress/usr.bin/mandoc/mdoc/Tn: font.out_markdown 

Log message:
According to the CommonMark specification, backslash escapes
and markdown markup do not work inside code spans.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/08 11:42:28

Modified files:
	regress/sys/kern/fchdir: fchdir.c 

Log message:
fix comment block


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 12:23:23

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 

Log message:
The CommonMark specification wants that opening parentheses
inside link destinations be escaped.
While here, remove the obsolete ESC_PAR.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/08 12:25:00

Modified files:
	regress/sys/kern/wait: wait.c 

Log message:
don't use __syscall to emulate _exit, just call _exit


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/08 12:28:47

Modified files:
	regress/sys/kern/getpeereid: getpeereid_test.c 
	regress/sys/kern/nanosleep: nanosleep.c 
	regress/sys/kern/unixsock: unixsock_test.c 

Log message:
warning cleanups; ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/08 12:33:12

Modified files:
	regress/sys/crypto/cmac: cmac_test.c 

Log message:
format string mishandling


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 12:40:46

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
Document that -T markdown produces ASCII output, and the implied
limitations.  Of course, we could write UTF-8 output instead,
but even the CommonMark specification doesn't require parsers
to support that, so portability would be doubtful.

While here, provide a link to the CommonMark specification.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 12:43:42

Modified files:
	sbin/dhclient  : privsep.c 

Log message:
Shuffle another bit of code closer to its friends.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/08 13:05:25

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Skip over padding cells when moving the cursor left or right.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 13:11:00

Modified files:
	sbin/dhclient  : privsep.h 

Log message:
Shuffle, shuffle, shuffle.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 13:33:20

Modified files:
	sbin/dhclient  : dhcpd.h 

Log message:
Shuffle, shuffle, shuffle.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/08 13:54:30

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Shuffle, shuffle, shuffle.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 15:53:36

Modified files:
	regress/usr.bin/mandoc: Makefile.inc 
	regress/usr.bin/mandoc/char: Makefile.inc 
	regress/usr.bin/mandoc/eqn: Makefile.inc 
	regress/usr.bin/mandoc/man: Makefile.inc 
	regress/usr.bin/mandoc/mdoc/Ad: Makefile 
	regress/usr.bin/mandoc/mdoc/An: Makefile 
	regress/usr.bin/mandoc/mdoc/Ap: Makefile 
	regress/usr.bin/mandoc/mdoc/Aq: Makefile 
	regress/usr.bin/mandoc/mdoc/Ar: Makefile 
	regress/usr.bin/mandoc/mdoc/At: Makefile 
	regress/usr.bin/mandoc/mdoc/Bd: Makefile 
	regress/usr.bin/mandoc/mdoc/Bf: Makefile 
	regress/usr.bin/mandoc/mdoc/Bk: Makefile 
	regress/usr.bin/mandoc/mdoc/Bl: Makefile 
	regress/usr.bin/mandoc/mdoc/Brq: Makefile 
	regress/usr.bin/mandoc/mdoc/Bx: Makefile 
	regress/usr.bin/mandoc/mdoc/Cd: Makefile 
	regress/usr.bin/mandoc/mdoc/Cm: Makefile 
	regress/usr.bin/mandoc/mdoc/D1: Makefile 
	regress/usr.bin/mandoc/mdoc/Db: Makefile 
	regress/usr.bin/mandoc/mdoc/Dd: Makefile 
	regress/usr.bin/mandoc/mdoc/Dl: Makefile 
	regress/usr.bin/mandoc/mdoc/Dq: Makefile 
	regress/usr.bin/mandoc/mdoc/Dt: Makefile 
	regress/usr.bin/mandoc/mdoc/Dv: Makefile 
	regress/usr.bin/mandoc/mdoc/Em: Makefile 
	regress/usr.bin/mandoc/mdoc/Eo: Makefile 
	regress/usr.bin/mandoc/mdoc/Er: Makefile 
	regress/usr.bin/mandoc/mdoc/Ev: Makefile 
	regress/usr.bin/mandoc/mdoc/Ex: Makefile 
	regress/usr.bin/mandoc/mdoc/Fd: Makefile 
	regress/usr.bin/mandoc/mdoc/Fl: Makefile 
	regress/usr.bin/mandoc/mdoc/Fo: Makefile 
	regress/usr.bin/mandoc/mdoc/Ft: Makefile 
	regress/usr.bin/mandoc/mdoc/Ic: Makefile 
	regress/usr.bin/mandoc/mdoc/In: Makefile 
	regress/usr.bin/mandoc/mdoc/Lb: Makefile 
	regress/usr.bin/mandoc/mdoc/Li: Makefile 
	regress/usr.bin/mandoc/mdoc/Lk: Makefile 
	regress/usr.bin/mandoc/mdoc/Ms: Makefile 
	regress/usr.bin/mandoc/mdoc/Mt: Makefile 
	regress/usr.bin/mandoc/mdoc/Nd: Makefile 
	regress/usr.bin/mandoc/mdoc/Nm: Makefile 
	regress/usr.bin/mandoc/mdoc/No: Makefile 
	regress/usr.bin/mandoc/mdoc/Ns: Makefile 
	regress/usr.bin/mandoc/mdoc/Oo: Makefile 
	regress/usr.bin/mandoc/mdoc/Op: Makefile 
	regress/usr.bin/mandoc/mdoc/Os: Makefile 
	regress/usr.bin/mandoc/mdoc/Ox: Makefile 
	regress/usr.bin/mandoc/mdoc/Pa: Makefile 
	regress/usr.bin/mandoc/mdoc/Pf: Makefile 
	regress/usr.bin/mandoc/mdoc/Pp: Makefile 
	regress/usr.bin/mandoc/mdoc/Qq: Makefile 
	regress/usr.bin/mandoc/mdoc/Rs: Makefile 
	regress/usr.bin/mandoc/mdoc/Rv: Makefile 
	regress/usr.bin/mandoc/mdoc/Sh: Makefile 
	regress/usr.bin/mandoc/mdoc/Sm: Makefile 
	regress/usr.bin/mandoc/mdoc/Sq: Makefile 
	regress/usr.bin/mandoc/mdoc/St: Makefile 
	regress/usr.bin/mandoc/mdoc/Sx: Makefile 
	regress/usr.bin/mandoc/mdoc/Sy: Makefile 
	regress/usr.bin/mandoc/mdoc/Tn: Makefile 
	regress/usr.bin/mandoc/mdoc/Ud: Makefile 
	regress/usr.bin/mandoc/mdoc/Ux: Makefile 
	regress/usr.bin/mandoc/mdoc/Va: Makefile 
	regress/usr.bin/mandoc/mdoc/Vt: Makefile 
	regress/usr.bin/mandoc/mdoc/Xr: Makefile 
	regress/usr.bin/mandoc/mdoc/blank: Makefile 
	regress/usr.bin/mandoc/mdoc/break: Makefile 
	regress/usr.bin/mandoc/roff: Makefile.inc 
	regress/usr.bin/mandoc/tbl: Makefile.inc 

Log message:
Now that markdown output is tested for almost everything, test all
input files in -T markdown output mode by default and only mark
those files with SKIP_MARKDOWN that are not to be tested.
Much easier to read, and almost minus 40 lines of Makefile code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/03/08 18:56:52

Modified files:
	lang/racket-minimal: Makefile 
	lang/racket-minimal/pkg: README 

Log message:
Unbreak Racket on arm.


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/03/08 19:26:54

Modified files:
	.              : 61.html 

Log message:
list various new drivers and one new function
found while looking through the lib/ and share/ ChangeLogs


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/08 19:44:48

Modified files:
	.              : 61.html 

Log message:
correct architecture name of arm packages


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/08 21:07:10

Modified files:
	.              : 61.html 

Log message:
remove arm drivers which existed in 6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/03/08 22:18:44

Modified files:
	math/R         : Makefile distinfo 
	math/R/patches : patch-configure 
	math/R/pkg     : PLIST README 

Log message:
Update to R 3.3.3

OK pirofti@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/08 22:30:33

Modified files:
	x11/gnome/nautilus: Makefile distinfo 
	x11/gnome/nautilus/patches: 
	                            patch-src_nautilus-canvas-container_c 

Log message:
Update to nautilus-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/08 22:45:23

Modified files:
	x11/gnome/session: Makefile distinfo 

Log message:
Update to gnome-session-3.22.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/08 22:47:28

Modified files:
	sys/net        : pf.c 

Log message:
Prevent integer overflow in PF when calculating the adaptive timeout.
Mainly states of established TCP connections whould be affected resulting
in immediate state removal once the numer of states is bigger than
adaptive.start.  Disabling adative timeouts is a workaround to avoid this bug.
Issue found and initial diff by Mathieu Blanc (mathieu.blanc at cea dot fr)
OK mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/08 22:50:57

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.22.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/08 22:51:17

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.59.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/08 23:28:48

Modified files:
	devel/intellij : Makefile distinfo 

Log message:
Update to intellij-2016.3.5.

from Caspar Schutijser (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/09 00:08:24

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
As was done with nss/nspr/sqlite/icu4c, add boilerplate to allow
building against bundled hunspell - firefox 53 requires 1.5.4, 54/55
requires 1.6.0, and we're at 1.3.2. No change for consumer ports, they'd
have to define MOZILLA_USE_BUNDLED_HUNSPELL to do so.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/03/09 00:56:38

Modified files:
	regress/lib/libc/asr/bin: res_query.c 

Log message:
missing include


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/03/09 01:26:42

Modified files:
	regress/lib/libc/asr/bin/res_query: Makefile 
	regress/lib/libc/asr/bin/res_mkquery: Makefile 

Log message:
remove bogus variable expansion


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/09 02:36:32

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	2017/03/09 02:56:44

Modified files:
	emulators/advancemame: Makefile distinfo 

Log message:
Update advancemame to 3.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/09 02:58:15

Modified files:
	emulators/advancemess: Makefile distinfo 

Log message:
Update advancemess to 3.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/03/09 03:10:41

Modified files:
	math/R         : Makefile 

Log message:
Remove devel/libidn from LIB_DEPENDS.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/03/09 03:13:03

Modified files:
	include        : bsd_auth.h pwd.h unistd.h 

Log message:
As per style.9, prototypes should not have variable names associated
with the types.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/09 06:26:37

Modified files:
	security/sqlmap: Makefile distinfo 
	security/sqlmap/pkg: PLIST 

Log message:
Update for SQLmap to 1.1.2

OK rpointel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/03/09 06:33:52

Modified files:
	net/owncloudclient: Makefile distinfo 
	net/owncloudclient/patches: patch-CMakeLists_txt 
	                            patch-csync_src_std_c_private_h 
	                            patch-src_gui_application_cpp 
	                            patch-src_libsync_utility_cpp 
	net/owncloudclient/pkg: PLIST 

Log message:
Update to owncloudclient-2.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/09 06:58:00

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
The netcat server did not print the correct TLS error message if
the handshake after accept had failed.  Use the context of the
accepted TLS connection.
OK beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 07:23:59

Modified files:
	sys/arch/arm64/include: intr.h 
	sys/arch/arm64/arm64: intr.c 

Log message:
Change the interrupt routing API to take a pointer to a "struct cpu_info"
instead of a cpu number.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/09 07:33:32

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocator.pm State.pm 

Log message:
tweak installurl code to return a single string that gets parsed
so that we don't have to write the same thing twice later.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/09 08:27:52

Modified files:
	usr.bin/mandoc : roff.c 

Log message:
Fix blunder in previous:  we must keep the line parse buffer
consistent even when aborting the parsing of the line.  That buffer
is not our own, but owned and reused by mparse_buf_r(), read.c.
Returning without cleanup leaked memory and caused write overruns
of the old, typically much smaller buffer in mparse_buf_r().
Promptly noticed by tb@ with afl(1), using MALLOC_OPTIONS=C.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/09 08:36:14

Modified files:
	usr.sbin/pkg_add/OpenBSD: Delete.pm 

Log message:
take the checksum part out of line.

Fix the "no checksum" part: pass thru do_not_delete, and do it even if
quick is set.

Simplify the error messages in case realname and fullname are identical
(which is the most common case)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 08:36:52

Modified files:
	sys/arch/armv7/include: intr.h 
	sys/arch/armv7/armv7: intr.c 

Log message:
Add interrupt routing API like we have on arm64.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/09 09:53:20

Modified files:
	sys/net        : rtsock.c 

Log message:
Remove unecessary splsoftnet()/splx() dances.

ok bluhm@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/09 10:02:38

Modified files:
	usr.bin/tmux   : cmd-respawn-pane.c cmd-respawn-window.c 
	                 cmd-split-window.c environ.c job.c server-fn.c 
	                 session.c tmux.h 

Log message:
Move server_fill_environ into environ.c and move some other common code
into it.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/09 10:06:35

Modified files:
	usr.bin/tmux   : cmd-display-panes.c server-client.c server-fn.c 
	                 tmux.h 

Log message:
Move the client identify (display-panes) code into server-client.c.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/09 10:09:40

Modified files:
	.              : 61.html 

Log message:
fix a few misspellings


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/09 10:15:19

Modified files:
	gnu/llvm/tools/clang/include/clang/Frontend: 
	                                             CompilerInvocation.h 

Log message:
Disable colored diagnostics in the clang frontend.

Requested by deraadt@, millert@ and some more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/09 10:16:33

Modified files:
	devel/py-appdirs: Makefile distinfo 

Log message:
Update to py-appdirs 1.4.3


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/03/09 10:17:36

Modified files:
	.              : 61.html 

Log message:
mention mandoc -T markdown


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/09 10:22:08

Modified files:
	x11/ratpoison  : Makefile 

Log message:
Take maintainership

After all, I'm upstream...

ok william@ (former maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/09 10:43:50

Modified files:
	sys/net        : Tag: OPENBSD_6_0 pf.c 

Log message:
OpenBSD 6.0 errata 19
MFC sys/net/pf.c rev 1.1018 claudio
Prevent integer overflow in PF when calculating the adaptive timeout.
Mainly states of established TCP connections whould be affected resulting
in immediate state removal once the numer of states is bigger than
adaptive.start.  Disabling adative timeouts is a workaround to avoid this bug.
Issue found and initial diff by Mathieu Blanc (mathieu.blanc at cea dot fr)
OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/09 10:44:29

Modified files:
	sys/net        : Tag: OPENBSD_5_9 pf.c 

Log message:
OpenBSD 5.9 errata 36
MFC sys/net/pf.c rev 1.1018 claudio
Prevent integer overflow in PF when calculating the adaptive timeout.
Mainly states of established TCP connections whould be affected resulting
in immediate state removal once the numer of states is bigger than
adaptive.start.  Disabling adative timeouts is a workaround to avoid this bug.
Issue found and initial diff by Mathieu Blanc (mathieu.blanc at cea dot fr)
OK mikeb@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/09 11:05:03

Modified files:
	.              : errata59.html errata60.html 

Log message:
release pf errata.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/09 11:31:18

Modified files:
	databases/py-psycopg2: Makefile distinfo 
	databases/py-psycopg2/pkg: PLIST 

Log message:
Update to py-psycopg2 2.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/09 11:44:29

Modified files:
	devel/libgdata : Makefile distinfo 
	devel/libgdata/pkg: PLIST 

Log message:
update to libgdata-0.17.7

tested in a bulk and ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/09 11:55:47

Modified files:
	benchmarks/netperf-wrapper: Makefile distinfo 
	benchmarks/netperf-wrapper/patches: patch-setup_py 
Added files:
	benchmarks/netperf-wrapper/patches: patch-flent_build_info_py 
	benchmarks/netperf-wrapper/pkg: DESCR-gui DESCR-main PLIST-gui 
	                                PLIST-main 
Removed files:
	benchmarks/netperf-wrapper/patches: 
	                                    patch-netperf_wrapper_build_info_py 
	benchmarks/netperf-wrapper/pkg: DESCR PLIST 

Log message:
update/rename netperf-wrapper-0.9.1 to flent-1.0.1, split -gui to a separate
package


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/09 11:56:07

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
handle netperf-wrapper -> flent rename


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 12:26:39

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : xhci_fdt.c 

Log message:
Glue to attach xhci(4) using the device tree.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/09 12:42:05

Modified files:
	usr.bin/signify: signify.1 

Log message:
show how to verify the next release after 6.1


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 13:01:10

Added files:
	sys/dev/ofw    : ofw_misc.c ofw_misc.h 

Log message:
Add a "regmap" interface that allows devices to provide access to their
registers to devices that live elsewhere in the device tree.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 13:04:21

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : syscon.c 

Log message:
Add syscon(4), a driver that provides reboot/poweroff functionality through
the generic "regmap" interface.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 13:07:35

Modified files:
	sys/arch/armv7/exynos: exdog.c 

Log message:
Only set cpuresetfn if it isn't set already such that other reboot mechanisms
(like psci or syscon) are preferred over letting the watchdog fire.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 13:13:12

Modified files:
	sys/arch/armv7/exynos: expower.c 
	sys/arch/armv7/conf: files.armv7 

Log message:
Provide access to our registers through the regmap interface.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/09 13:15:36

Modified files:
	sys/dev/pv     : if_xnf.c 

Log message:
Fix an off by one when updating the TX consumer event index

The transmit completion notification is posted when the consumer index
becomes equal to the consumer event index. The code attempted to save
up on an update if the current value of the consumer index was below
its event index, but incorrectly handled the situation when they were
equal: the consumer event index wouldn't be advanced and the ring would
stall.

With help from Jan Schreiber who asked some good questions.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/09 13:18:40

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Enable syscon(4) such that I can actually reboot the Odroid XU4.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/09 13:27:41

Modified files:
	sys/uvm        : uvm_unix.c 

Log message:
Don't take the vmmap lock when dumping core: it's not actually necessary
and it creates a lock-order-reversal with inode locks

ok stefan@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/09 13:31:41

Modified files:
	sys/arch/i386/i386: trap.c 

Log message:
There are no compat emulations left so we never do errno mapping:
eliminate the last use of e_errno.

ok tom@ mpi@ kettenis@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/03/09 14:25:01

Modified files:
	usr.bin/doas   : doas.c 

Log message:
exit test for -L was reversed. spotted by Michael Forney


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/09 14:25:50

Modified files:
	net/freeradius3: Makefile 

Log message:
fix PKGNAME-freetds and bump REVISION-iodbc; copy-and-past-o.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/09 15:00:46

Modified files:
	usr.bin/tmux   : server-client.c 

Log message:
Clear the bracket paste mode when in the command prompt.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/09 15:46:55

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/03/09 18:38:07

Modified files:
	sys/net        : bfd.c bfd.h 

Log message:
move receiving and processing the BFD packet into a task


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2017/03/09 19:12:46

Modified files:
	sys/net        : bfd.c bfd.h 

Log message:
move clearing the bfd config to a task.  while here, fix a typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2017/03/09 19:21:22

Modified files:
	devel/jdk/1.8  : Makefile 
	devel/jdk/1.8/pkg: DESCR-jre DESCR-main PLIST-jre PLIST-main 
	                   README-jre README-main 
Added files:
	devel/jdk/1.8/patches: 
	                       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_java_props_md_c 

Log message:
Eliminiate with_ipv6 FLAVOR. ipv6 will be included in the main package
by default now. However ipv4 will continue to be the default address
family in the package. To enable ipv6 (and disable ipv4 in the process),
see package README's. okay sthen@ with feedback from ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/09 19:59:51

Modified files:
	usr.bin/ssh    : digest-openssl.c 

Log message:
Validate digest arg in ssh_digest_final; from jjelen at redhat.com via
bz#2687, ok djm@


CVSROOT:	/cvs
Module name:	www
Changes by:	lteo@cvs.openbsd.org	2017/03/09 20:11:57

Modified files:
	.              : 61.html 

Log message:
Update/fix version numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 20:15:58

Modified files:
	usr.bin/ssh    : log.c 

Log message:
don't truncate off \r\n from long stderr lines; bz#2688, reported by
Brian Dyson; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 20:18:24

Modified files:
	usr.bin/ssh    : ssh-keyscan.c 

Log message:
correctly hash hosts with a port number. Reported by Josh Powers in
bz#2692; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/09 20:22:40

Modified files:
	usr.bin/ssh    : sshconnect.c 

Log message:
Plug descriptor leaks of auth_sock.  From jjelen at redhat.com via
bz#2687, ok djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/09 20:23:29

Modified files:
	print/cups     : Makefile 
Added files:
	print/cups/patches: patch-scheduler_client_c 
	                    patch-scheduler_conf_c 
Removed files:
	print/cups/patches: patch-conf_cupsd_conf_in 

Log message:
Allow "Negotiate" as an AuthType/DefaultAuthType instead of locally
patching cupsd.conf (from upstream).


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/09 20:24:48

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
Plug mem leak on GLOB_NOMATCH case.  From jjelen at redhat.com via
bz#2687, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/09 20:27:50

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
enable amphy(4) for udav(4) and urlphy(4) for url(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/09 20:45:40

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
Plug some mem leaks mostly on error paths.  From jjelen at redhat.com
via bz#2687, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/09 20:48:57

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
Check for NULL argument to sshkey_read.  Patch from jjelen at redhat.com
via bz#2687, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 20:52:48

Modified files:
	usr.bin/ssh    : match.c 

Log message:
reword a comment to make it fit 80 columns


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/09 20:53:11

Modified files:
	usr.bin/ssh    : sshconnect1.c 

Log message:
Check for NULL return value from key_new.  Patch from jjelen at redhat.com
via bz#2687, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 21:07:20

Modified files:
	usr.bin/ssh    : kex.c ssh.c sshkey.c sshkey.h 

Log message:
fix regression in 7.4 server-sig-algs, where we were accidentally
excluding SHA2 RSA signature methods. bz#2680, patch from Nuno
Goncalves; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/09 21:11:00

Modified files:
	usr.bin/ssh    : servconf.c 

Log message:
Remove old null check from config dumper.  Patch from jjelen at redhat.com
vi bz#2687, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 21:24:55

Modified files:
	usr.bin/ssh    : match.c 

Log message:
make hostname matching really insensitive to case; bz#2685,
reported by Petr Cerny; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 21:26:06

Modified files:
	usr.bin/ssh    : hostfile.c ssh-keygen.c ssh-keyscan.c 

Log message:
ensure hostname is lower-case before hashing it; bz#2591 reported by
Griff Miller II; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 21:27:32

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
better match sshd config parser behaviour: fatal() if line is overlong,
increase line buffer to match sshd's; bz#2651 reported by Don Fong;
ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/09 22:01:13

Modified files:
	usr.bin/ssh    : clientloop.c 

Log message:
When updating hostkeys, accept RSA keys if HostkeyAlgorithms contains
any RSA keytype. Previously, ssh could ignore RSA keys when any of the
ssh-rsa-sha2-* methods was enabled in HostkeyAlgorithms nit ssh-rsa
(SHA1 signatures) was not. bz#2650 reported by Luis Ressel;
ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/09 22:49:08

Modified files:
	distrib/arm64/miniroot: Makefile 
	distrib/arm64/ramdisk: install.md 

Log message:
The SoftIron OverDrive 3000 boots to an EFI shell.  Create a startup.nsh
file on the ESP to explicitly load bootaa64.efi so it will load without
manual intervention.

Suggested by patrick@ verified by deraadt@ ok kettenis@

The partition type of the ESP remains 0x0c rather than 0xef as it
should be as otherwise the rpi3 won't boot.  The AMI EDK2 based UEFI
on the other hand can handle the ESP partition type being 0x0c or 0xef.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/10 00:18:32

Modified files:
	usr.bin/ssh    : krl.c 

Log message:
krl.c


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/10 00:29:25

Modified files:
	sys/netinet    : in_proto.c ip_ipip.c ip_ipip.h 

Log message:
percpu counters for ip_ipip.c

ok bluhm@ dhill@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 01:38:12

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c 

Log message:
Lookup the /memory node again after we reinit the FDT.  This makes adding
additional memory segments provided by the device tree actually work.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 01:42:08

Modified files:
	sys/arch/armv7/include: vmparam.h 

Log message:
Set VM_PHYSSEG_MAX to 32 and use VM_PSTRAT_BSEARCH as the sort/search option
like we do on macppc and sparc64.  This makes our kernel recognize all the
memory on the Odroid XU4.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/10 02:14:06

Modified files:
	sys/dev/usb    : usbdi.c ehci.c ohci.c uhci.c xhci.c 
	sys/dev/usb/dwc2: dwc2.c 

Log message:
Move per HC polling code to the stack.

This code contains a use-after-free which be addressed in an upcoming
diff.

This fix xhci(4) polling mode.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/10 04:18:48

Modified files:
	sys/dev/usb    : ehci.c ohci.c uhci.c usbdi.c xhci.c 
	sys/dev/usb/dwc2: dwc2.c 

Log message:
Fix a use-after-free when sending root hub control transfers.

*_root_ctrl_start() routines are synchronous and all end up calling
usb_transfer_complete() in the non-error case.  After calling this
function it is unsafe to dereference ``xfer'' since the transfer
callback has been called.  So returning USBD_IN_PROGRESS is wrong in
this case since transfers are always completed at this point.

So return USBD_NORMAL_COMPLETION or the corresponding error code if
something wrong happen.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 05:05:28

Modified files:
	sys/arch/armv7/exynos: files.exynos 
Added files:
	sys/arch/armv7/exynos: exdwusb.c 

Log message:
Add glue to attach xhci(4) on exynos.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 06:54:48

Removed files:
	sys/arch/armv7/exynos: exynos_machdep.c 

Log message:
Missed this file in the deplatformization commit.


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/03/10 07:12:52

Modified files:
	.              : want.html 

Log message:
looking for a fast laptop or desktop for ports development


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/10 08:03:59

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
Make tls1_PRF() non-static so it can be regress tested.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/10 08:06:15

Modified files:
	regress/lib/libssl/unit: Makefile 
Added files:
	regress/lib/libssl/unit: tls_prf.c 

Log message:
Add a unit test for tls1_PRF().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/10 08:08:49

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
First pass at cleaning up the tls1_P_hash() function - remove a pointless
EVP_DigestSignInit() call and avoid the need for ctx_tmp by reordering the
code slightly.

ok inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/10 08:16:20

Modified files:
	lib/libssl     : bs_cbb.c 

Log message:
Switch CBB to use recallocarray() - this ensures that we do not leak
secrets via realloc().

ok inoguchi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2017/03/10 08:39:38

Modified files:
	multimedia/libv4l: Makefile distinfo 
	multimedia/libv4l/patches: patch-lib_libv4lconvert_Makefile_in 
	                           patch-lib_libv4lconvert_control_libv4lcontrol_c 
Removed files:
	multimedia/libv4l/patches: patch-configure_ac 
	                           patch-lib_include_libv4l1-videodev_h 
	                           patch-lib_include_libv4l2rds_h 
	                           patch-lib_include_libv4lconvert_h 
	                           patch-lib_libv4l-mplane_libv4l-mplane_c 
	                           patch-lib_libv4l1_libv4l1_c 
	                           patch-lib_libv4l2_log_c 
	                           patch-lib_libv4l2_v4l2convert_c 
	                           patch-lib_libv4l2rds_libv4l2rds_c 
	                           patch-lib_libv4lconvert_jpeg_memsrcdest_c 
	                           patch-lib_libv4lconvert_jpeg_memsrcdest_h 
	                           patch-lib_libv4lconvert_libv4lsyscall-priv_h 
	                           patch-lib_libv4lconvert_processing_libv4lprocessing_h 

Log message:
Update to libv4l 1.12.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/10 08:48:23

Modified files:
	www/seamonkey  : Makefile 
	www/seamonkey/pkg: PLIST-main 

Log message:
Revert seamonkey 2.46 to build against Gtk+2 as upstream does.

Requested by Misu Moldovan who's apparently the last user of seamonkey
on OpenBSD :)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/10 09:03:27

Modified files:
	lib/libssl     : d1_srvr.c s3_lib.c ssl_ciph.c ssl_clnt.c 
	                 ssl_locl.h ssl_srvr.c t1_enc.c 

Log message:
Remove the handshake digests and related code, replacing remaining uses
with the handshake hash. For now tls1_digest_cached_records() is retained
to release the handshake buffer.

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/10 09:32:29

Log message:
    Import fonts/sgi-fonts.
    
    Bitmap fonts from SGI, coming from the SGI ProPack for Linux.
    
    OK benoit@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20170310
    
    N ports/fonts/sgi-fonts/Makefile
    N ports/fonts/sgi-fonts/distinfo
    N ports/fonts/sgi-fonts/pkg/PLIST
    N ports/fonts/sgi-fonts/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/10 09:34:14

Modified files:
	fonts          : Makefile 

Log message:
Add sgi-fonts.


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/03/10 09:44:38

Modified files:
	.              : 61.html 

Log message:
fix pasto; diff from Hiltjo Posthuma <hiltjo at codemadness dot org>


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/03/10 10:23:48

Modified files:
	regress/lib/libc/asr: Makefile regress.sh regress.subr 

Log message:
refresh the test infrastructure a bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/10 10:40:26

Modified files:
	distrib/miniroot: install.sub 

Log message:
Always create the installurl(5) file during installation and upgrade
if it does not yet exist. Before it was created only when a mirror
server was used.

suggested by deraadt@
OK halex@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/10 10:41:36

Modified files:
	share/man/man5 : installurl.5 

Log message:
Reflect the installer change in the manual page.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/10 11:28:11

Modified files:
	share/man/man5 : hostname.if.5 

Log message:
update the autoconfiguration section for ip6 to use "autoconf" rather
than "rtsol": the former is the new way to do things and showing two
ways to do this is just confusing;

ok bluhm


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/10 11:49:43

Modified files:
	print/gtklp    : Makefile 

Log message:
Needs devel/gettext-tools.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/10 12:04:17

Modified files:
	distrib/miniroot: install.sub 

Log message:
Explain more accurately why to remember the sets location.

noted by tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/10 12:25:38

Modified files:
	x11/awesome    : Makefile 
Added files:
	x11/awesome/patches: patch-utils_awesome-client 

Log message:
Fix hardcoded '/bin/bash' used in the awesome-client script.

Spotted by florian@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/10 13:07:24

Modified files:
	archivers/libarchive: Makefile distinfo 
	archivers/libarchive/patches: patch-configure patch-tar_bsdtar_1 
Added files:
	archivers/libarchive/patches: 
	                              patch-libarchive_archive_openssl_evp_private_h 
	                              patch-libarchive_archive_openssl_hmac_private_h 

Log message:
Update to 3.3.1.  No list of changes available, but fixes many
security problems.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/10 13:09:50

Modified files:
	graphics/inkscape: Makefile 

Log message:
Add dependency on graphics/potrace, which was already picked up by
configure if installed.  From maintainer Rafael Sadowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/10 14:04:35

Modified files:
	usr.sbin/relayd: relay_http.c 

Log message:
DELETE can have a body.

Fix by Rivo Nurges, fixes a problem with Atlassian JIRA

OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/10 14:06:43

Modified files:
	usr.sbin/httpd : server_http.c 

Log message:
Sync from relayd: DELETE can have a body.

Fix by Rivo Nurges, fixes a problem with Atlassian JIRA

OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 14:26:19

Modified files:
	sys/arch/armv7/exynos: exehci.c expower.c 
Removed files:
	sys/arch/armv7/exynos: expowervar.h 

Log message:
Use regmap interface to power up the PHY block.


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/10 15:02:59

Modified files:
	distrib/miniroot: install.sub 

Log message:
Search case-insensitive for HTTP_SERVER in the ftplist.cgi output.
This ensures that ftp.OpenBSD.org is detected as mirror if
ftp.openbsd.org is specified as set location.

noticed by tj@
joint work with and OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/10 15:11:28

Modified files:
	distrib/miniroot: install.sub 

Log message:
In a scenario, where the distribution sets are fetched from a mirror
and the siteXX.tgz file is fetched from a local server, ensure that
the mirror server ends up in /etc/installurl.

joint work with and OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/10 15:34:09

Modified files:
	distrib/miniroot: install.sub 

Log message:
Add a comment why INSTALL_MIRROR must not become a local variable
although it's only used in install_http() now.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 17:11:47

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : exrtc.c 

Log message:
Add exrtc(4), a driver for the RTC found on Samsung Exynos SoCs.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 17:13:48

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Enable exrtc(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/10 17:18:43

Modified files:
	sys/dev/fdt    : exrtc.c 

Log message:
Oops, make this actually compile.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/10 17:22:27

Modified files:
	x11/gnome/gdm  : Makefile distinfo 
	x11/gnome/gdm/patches: patch-daemon_gdm-manager_c 
	                       patch-daemon_gdm-session-worker_c 
	                       patch-daemon_gdm-session_c 

Log message:
Update to gdm-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/10 17:48:17

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.23.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/10 17:48:45

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.60.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/03/10 19:01:36

Modified files:
	devel/fossil   : Makefile distinfo 

Log message:
Update fossil to 2.1


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/10 19:56:18

Modified files:
	faq            : faq1.html faq10.html 

Log message:
remove the redundant "managing users and groups" section; instead move rmuser
manpage link next to its adduser counterpart in faq1.

trim some sudo backstory from the doas section.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/10 19:57:05

Modified files:
	faq            : faq4.html faq13.html 

Log message:
merge "problems with signatures" text into the main signify section.
remove some ugly formatting in section titles.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/10 19:57:23

Modified files:
	faq            : faq8.html 

Log message:
better wording in the ntpd section.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/10 19:57:40

Modified files:
	faq            : index.html 

Log message:
sync index and bump copyright.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2017/03/10 19:58:21

Modified files:
	.              : 61.html 

Log message:
news from the wireless department


CVSROOT:	/cvs
Module name:	www
Changes by:	phessler@cvs.openbsd.org	2017/03/10 20:28:52

Modified files:
	.              : events.html 
Added files:
	papers         : asiabsdcon2017-bfd-paper.pdf 
	                 asiabsdcon2017-bfd.pdf 

Log message:
add slides and paper for my AsiaBSDCon 2017 talk


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2017/03/10 20:43:55

Modified files:
	.              : 61.html 

Log message:
mention RELRO


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/10 21:09:32

Modified files:
	distrib/miniroot: makeconf.awk 

Log message:
link libraries in a more canonical form (libc at the end)


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2017/03/10 21:35:08

Modified files:
	.              : 61.html 

Log message:
More libc improvements


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2017/03/10 22:43:45

Modified files:
	.              : 61.html 

Log message:
correct the manpage link for sha512_256


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/10 22:54:30

Modified files:
	lib/libc/sys   : mmap.2 mprotect.2 

Log message:
repair Xr, and point to sysctl(8) instead because sysctl(3) fails to
document kern.wxabort
from michael reed


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2017/03/10 23:17:15

Modified files:
	.              : 61.html 

Log message:
Mention malloc() and ld.so improvements


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2017/03/10 23:55:04

Modified files:
	.              : 61.html 

Log message:
Mention doas persist, removal of usermount, and kdumping of pipe fds


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/10 23:55:15

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.24.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/10 23:55:40

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.61.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/11 00:03:38

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
kern_pledge.c


CVSROOT:	/cvs
Module name:	www
Changes by:	guenther@cvs.openbsd.org	2017/03/11 00:32:41

Modified files:
	.              : 61.html 

Log message:
Mention HW thread register on arm; fix my own grammar


CVSROOT:	/cvs
Module name:	www
Changes by:	otto@cvs.openbsd.org	2017/03/11 01:01:47

Modified files:
	.              : 61.html 

Log message:
malloc canaries improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/11 02:09:14

Modified files:
	sys/arch/arm64/stand/efiboot: efiboot.c 
	sys/arch/armv7/stand/efiboot: efiboot.c 

Log message:
Set EVT_NOTIFY_SIGNAL when calling boot services CreateEvent().
The UEFI specification states this is required to have the notification
function called.  U-Boot's EFI loader calls the notification function
without the flag set but the EDK2 implementation of UEFI requires the
flag.

With this change the timer ticks and autoboot works on the OverDrive
3000.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/03/11 03:12:45

Modified files:
	sys/dev        : audio.c audio_if.h 

Log message:
AUDIO_ENCODING_{S,U}LINEAR constants are neither used by low level
drivers nor exposed to user-land. Remove definitions and code to
handle convertions.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/11 04:25:01

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 
	usr.sbin/pkg_add/OpenBSD/PackageRepository: Installed.pm 

Log message:
tweak %m to expand to %c, and make %c more magical:
on a -stable system, %c/packages will expand to
two directories in support of packages-stable,
with the -stable directory being "silent".

Also add a -Dsnap option that forces %c to be snapshots
so that the last weeks of testing of release are less
painful.

okay aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/11 04:42:10

Modified files:
	usr.sbin/pkg_add: pkg_add.1 pkg_delete.1 

Log message:
document recent changes.
acknowledge that installurl requires some internal treatment
explain how %c works now.
Document -Dsnap and -V
Remove the pesky spaces in -Dname, since no-one types the space ever


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/11 04:55:03

Modified files:
	sbin/sysctl    : sysctl.8 
	sys/arch/amd64/amd64: machdep.c 
	sys/arch/amd64/include: cpu.h 
	sys/arch/i386/i386: machdep.c 
	sys/arch/i386/include: cpu.h 
	sys/dev/hid    : hidkbd.c 
	sys/dev/hil    : hilkbd.c 
	sys/dev/ic     : pckbc.c pckbcvar.h 
	sys/dev/usb    : ukbd.c 
	sys/dev/wscons : wskbd.c 

Log message:
Introduce a new knob to force the first USB keyboard as console input.

By setting "machdep.forceukbd=1" you can now use your USB keyboard in
ddb(4) even if your BIOS emulates a pckbd(4).

ok tom@, kettenis@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/03/11 05:15:35

Modified files:
	sys/arch/luna88k/cbus: nec86hw.c 

Log message:
Fix uninitilized variables (confusion between enc and p->encoding
and between prec and p->precision). Found by jsg@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/11 05:28:30

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCheck.pm 

Log message:
compute_digest already clones object's class, no need to ref here.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/11 05:35:40

Modified files:
	usr.bin/mandoc : mdoc_markdown.c 
	regress/usr.bin/mandoc/mdoc/Aq: author.out_markdown 
	regress/usr.bin/mandoc/mdoc/Lk: noarg.out_markdown 
	regress/usr.bin/mandoc/mdoc/Mt: simple.out_markdown 
	regress/usr.bin/mandoc/mdoc/Rs: allch.out_markdown 

Log message:
In markdown, autolinks are dangerous.  Different compilers disagree
with respect to what constitutes a valid autolink, and if a compiler
deems an autolink invalid, the input turns into an unintended and
potentially harmful raw HTML tag.  So, never write autolinks.
Instead of <link>, write [link](link).
Instead of <addr>, write [addr](mailto:addr).

Issue pointed out by bentley@, who also agrees with the general
direction of the change.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/03/11 05:55:47

Modified files:
	bin/pax        : ar_io.c pax.c 

Log message:
switch pax to using pledge tape instead of ioctl.

ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/11 06:00:35

Modified files:
	net/openmdns   : Makefile distinfo 
Removed files:
	net/openmdns/patches: patch-mdnsd_mdns_h 

Log message:
Update for openmdns to 0.7

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2017/03/11 06:07:35

Modified files:
	usr.bin/ssh    : packet.c 

Log message:
Don't count the initial block twice when computing how many bytes
to discard for the work around for the attacks against CBC-mode.
ok djm@; report from Jean Paul, Kenny, Martin and Torben @ RHUL


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/11 06:21:16

Modified files:
	sys/net        : if_pfsync.c 

Log message:
Add a detachhook to pfsync(4) which deals with the syncdev going away.
Fixes a panic observed by douple-p (aka pb@) when destroying the syncdev.
tweak & ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/11 06:22:36

Modified files:
	sbin/ifconfig  : ifconfig.c 
	sys/net80211   : ieee80211_ioctl.c ieee80211_ioctl.h 

Log message:
Make 'ifconfig scan' display AP encryption correctly if WEP is configured
on the local wifi interface. ifconfig was mistakenly showing the common
supported subset of client and AP, rather than showing the AP's capabilities.
Exposes WPA protocol capabilities in struct ieee80211_nodereq, which means
ifconfig must be recompiled to run on a new kernel.
ok deraadt@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/11 06:40:46

Modified files:
	sys/dev/mii    : rgephy.c 
	sys/dev/usb    : if_ure.c if_urereg.h 

Log message:
Add support for RTL8153 devices.  Heavily based on changes made by Kevin Lo
to the FreeBSD driver.

This driver will attach instead of cdce(4), which doesn't expose a PHY and
doesn't work with my 5c20 revision of the chip.

ok jimatthew@, jcs@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/11 06:52:32

Modified files:
	share/man/man4 : ure.4 

Log message:
Update for RTL8153 support.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/11 07:26:37

Modified files:
	mail/roundcubemail: Makefile distinfo 
	mail/roundcubemail/pkg: PLIST 

Log message:
update to roundcubemail-1.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/11 07:27:41

Modified files:
	mail/roundcubemail: Tag: OPENBSD_6_0 Makefile distinfo 
	mail/roundcubemail/patches: Tag: OPENBSD_6_0 
	                            patch-config_defaults_inc_php 
	mail/roundcubemail/pkg: Tag: OPENBSD_6_0 PLIST README 

Log message:
update to roundcubemail-1.2.4


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/11 08:16:08

Modified files:
	usr.bin/tmux   : cmd-find.c 

Log message:
Only look for window and pane parts of target as a sesson and window if
they look like an ID.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/11 08:16:35

Modified files:
	usr.bin/tmux   : layout.c 

Log message:
Fix calculation of size for full size splits.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/11 08:42:03

Modified files:
	usr.bin/mandoc : eqn.c 

Log message:
Improve detection of recursive eqn(7) "define" statements:
Do not only catch "define key 'key other stuff'",
but also "define key 'other stuff key'".
Fixing infinite loop found by tb@ with afl(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/11 09:03:24

Modified files:
	regress/usr.bin/mandoc/eqn/define: Makefile 
Added files:
	regress/usr.bin/mandoc/eqn/define: infinite.in 
	                                   infinite.out_ascii 
	                                   infinite.out_lint 

Log message:
test infinite recursion in eqn(7) "define" statements


CVSROOT:	/cvs
Module name:	www
Changes by:	otto@cvs.openbsd.org	2017/03/11 09:31:23

Modified files:
	.              : 61.html 

Log message:
typo


CVSROOT:	/cvs
Module name:	www
Changes by:	otto@cvs.openbsd.org	2017/03/11 09:33:30

Modified files:
	.              : 61.html 

Log message:
include link


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/11 09:54:54

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
pax conversion was missed; give this another week


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/11 10:06:27

Modified files:
	sys/arch/armv7/exynos: exgpio.c 

Log message:
Hook up exgpio(4) to the gpio framework.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/11 10:31:02

Modified files:
	faq            : faq15.html 

Log message:
remove "the latest version of my top favorite software is not available!"
and "why is there no port/package of my top favorite software?" sections.

what little useful information they contained is already present elsewhere.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/11 10:34:40

Modified files:
	usr.sbin/pkg_add: pkg_add.1 

Log message:
Make spacing after -D consistent.
Manual pages should only use .Fl X Ns Ar in the unusual case that no
space is allowed between the option letter and the option argument.

See POSIX for details:
http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html

OK espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/11 10:59:31

Log message:
    Import sysutils/yank.
    
    Read input from stdin and display a selection interface that allows a
    field to be selected and copied to the clipboard.
    
    From Anton Lindqvist.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20170311
    
    N ports/sysutils/yank/Makefile
    N ports/sysutils/yank/distinfo
    N ports/sysutils/yank/pkg/DESCR
    N ports/sysutils/yank/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/11 11:00:29

Modified files:
	sysutils       : Makefile 

Log message:
Add sysutils/yank.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/11 11:24:55

Modified files:
	usr.sbin/pkg_add: pkg_create.1 pkg_delete.1 

Log message:
more consistency on .Fl ... Ns Ar lines, requested by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/11 11:33:21

Modified files:
	usr.bin/lastcomm: lastcomm.c 

Log message:
Use sizeof directly instead of a macro from the scary <struct.h>

ok visa@ mpi@ millert@ kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/11 11:46:47

Modified files:
	faq            : faq4.html 

Log message:
mention wireless firmware in the pre-installation checklist.

input/ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/11 12:17:22

Modified files:
	faq            : faq5.html 

Log message:
start reworking faq5.html for 6.1; streamline and shorten introductory
blurb. reduce opinionated advice; shorten overview over build process;
zap an ugly table whose whole content is a short sentence: in short,
the usual minor polishing.

joint work with & ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/11 14:11:33

Modified files:
	faq            : faq4.html index.html 

Log message:
remove "booting the install media" section; instead just reference plat.html
for architecture-specific boot instructions.

remove section on creating floppies.

move disk encryption link to the disk section.

few other minor wording tweaks.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/11 14:46:32

Modified files:
	sys/dev/acpi   : acpiec.c 

Log message:
Revert 1.54, go back to always trying to enable burst mode

Selectively enabling burst mode seems to have broken more machines
than it helped.  On MacBooks, EC_STAT_OBF occasionally won't show up
when trying to read a byte of data when bursting hasn't been
enabled, so acpiec_wait can spin forever.

This again breaks on ECs that don't do burst at all, like the Chrome
EC, but those are much more scarce than MacBooks at this time.  A
machine/bios-dependent check could be added later to disable
bursting on certain machines.

Discussed with deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/11 15:58:46

Modified files:
	lib/libc/sys   : mmap.2 mprotect.2 

Log message:
shuffle back: wxabort is described in sysctl(3);


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/11 16:37:23

Modified files:
	lib/libutil    : fmt_scaled.c 

Log message:
fix signed integer overflow in scan_scaled. Found by Nicolas Iooss
using AFL against ssh_config. ok deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/11 16:40:26

Modified files:
	usr.bin/ssh    : sshconnect2.c 

Log message:
allow ssh to use certificates accompanied by a private key file but no
corresponding plain *.pub public key. bz#2617 based on patch from
Adam Eijdenberg; ok dtucker@ markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/11 16:44:16

Modified files:
	regress/usr.bin/ssh: cert-file.sh 

Log message:
regress tests for loading certificates without public keys;
bz#2617 based on patch from Adam Eijdenberg; ok markus@ dtucker@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/11 18:08:50

Modified files:
	faq            : faq4.html 

Log message:
shorten the overview and don't implore the readers to consult the
INSTALL.$ARCH files. simply point out their existence. merge some parts
into other sections where they fit better.

lots of help & ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/11 18:21:32

Modified files:
	share/man/man1 : clang-local.1 

Log message:
Colour diagnostic messages are now disabled by default.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/11 20:13:50

Modified files:
	sys/net80211   : ieee80211_input.c ieee80211_ioctl.c 
	                 ieee80211_node.h 

Log message:
Introduce separate fields for supported WPA protocols and AKMs in struct
ieee80211_node. Pass these fields to 'ifconfig scan' instead of giving it
currently configured/enabled settings.
Fixes display of AP WPA capabilities in 'ifconfig scan' while the wifi
interface is not configured to use WPA (my previous commit attempted to
fix the same problem but didn't make it work in all cases).
ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/11 20:18:57

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
Make ifconfig scan display both wpa1 and wpa2 if both are supported.
ok henning@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/11 20:25:35

Modified files:
	devel/vte      : Makefile 
	devel/vte3     : Makefile 
	x11/gnome/gucharmap: Makefile 
	x11/gnome/librsvg: Makefile 
	www/libcroco   : Makefile 

Log message:
Fix comment: -Bsymbolic -> -Bsymbolic-functions

from Brad


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/11 21:00:55

Modified files:
	faq            : faq4.html index.html 

Log message:
unify/merge similar sections, improve wording and formatting, dedupe some
redundant text.

input/ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/12 04:13:49

Modified files:
	audio/mpd      : Makefile distinfo 
	audio/mpd/patches: patch-src_command_CommandError_cxx 

Log message:
Update to mpd-0.20.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 05:28:25

Modified files:
	geo/libchamplain: Makefile distinfo 

Log message:
update to libchamplain-0.12.15


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 05:29:12

Modified files:
	lang/vala      : Makefile 
	lang/vala/pkg  : PLIST 

Log message:
update to vala-0.34.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 05:39:34

Modified files:
	textproc/elasticsearch: Makefile distinfo 

Log message:
update to elasticsearch-5.2.2

from Pavel Korovin, also tested by sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 05:40:19

Modified files:
	www/kibana     : Makefile distinfo 
	www/kibana/patches: patch-bin_kibana-plugin 
	www/kibana/pkg : PLIST 

Log message:
update to kibana-5.2.2

from Pavel Korovin (MAINTAINER), additional testing by sebastia@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 05:44:42

Modified files:
	sys/dev/ofw    : fdt.c ofw_clock.c ofw_pinctrl.c openfirm.h 

Log message:
Introduce OF_getindex() API and use it to replace multiple instances of
pretty much identical code.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 05:46:22

Modified files:
	sys/dev/fdt    : xhci_fdt.c 

Log message:
Add code to initialize the USB 3 PHY on Exynos 5.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 06:32:04

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Enable exdwusb(4) and xhci(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 06:44:35

Modified files:
	sys/arch/armv7/exynos: exclock.c 
	sys/arch/armv7/conf: GENERIC RAMDISK 

Log message:
Hook exclock(4) up to the clock framework using a dummy implementation that
prints the clock ids it is being called for.  This allows us to identify
which clocks need to be implemented.

Attach early such that clocks are available when needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	nigel@cvs.openbsd.org	2017/03/12 06:58:03

Modified files:
	x11/gnome/gdm/patches: patch-daemon_gdm-session-worker_c 

Log message:
fix to allow building
Ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 08:35:37

Modified files:
	net/apache-activemq: Makefile distinfo 

Log message:
- update to apache-activemq-5.14.4
- drop maintainership


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 08:37:53

Modified files:
	www/qutebrowser: Makefile distinfo 

Log message:
update to qutebrowser-0.10.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 08:44:15

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 

Log message:
update to gnome-online-accounts-3.22.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 08:44:27

Modified files:
	net/uhttpmock  : Makefile distinfo 
	net/uhttpmock/pkg: PLIST 

Log message:
update to uhttpmock-0.5.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:02:07

Modified files:
	devel          : Makefile 
	security       : Makefile 
	textproc       : Makefile 

Log message:
Unhook utop, the ports that exist only to support utop, and
dependencies that exist only to support *them*.

If you are writing programs in Ocaml, you build these things from
opam to keep current.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:08:17

Modified files:
	devel/quirks/files: Quirks.pm 

Log message:
Record upcoming removal of utop and dependency tree.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/12 09:09:43

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Bugfix update to NSS 3.29.3.

See
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.29.2_release_notes
and
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.29.3_release_notes

Fixes mostly #1342358 and #1340841


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:13:48

Removed files:
	devel/ocaml-ppx-tools: Makefile distinfo 
	devel/ocaml-ppx-tools/patches: patch-Makefile 
	devel/ocaml-ppx-tools/pkg: DESCR PFRAG.dynlink-native 
	                           PFRAG.native PLIST 

Log message:
Remove port used only by lwt, which is used only by ocaml-lambda-term,
which is used only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:15:25

Removed files:
	security/ocaml-ssl: Makefile distinfo 
	security/ocaml-ssl/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove port used only by lwt, which is used only by ocaml-lambda-term,
which is used only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:17:51

Removed files:
	textproc/ocaml-text: Makefile distinfo 
	textproc/ocaml-text/patches: patch-setup_ml 
	                             patch-src_ml_text_bigarray_c 
	                             patch-src_ml_text_c 
	textproc/ocaml-text/pkg: DESCR PFRAG.dynlink-native PLIST 

Log message:
Remove port used only by lwt, which is used only by ocaml-lambda-term,
which is used only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:19:38

Removed files:
	devel/ocaml-react: Makefile distinfo 
	devel/ocaml-react/pkg: DESCR PFRAG.dynlink-native PFRAG.native 
	                       PLIST 

Log message:
Remove port used only by lwt, which is used only by ocaml-lambda-term,
which is used only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 09:22:31

Modified files:
	devel/quirks   : Makefile 

Log message:
missed bump after removal of utop and friends


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:22:48

Removed files:
	devel/ocaml-lwt: Makefile distinfo 
	devel/ocaml-lwt/pkg: DESCR PFRAG.dynlink-native PFRAG.native 
	                     PLIST 

Log message:
Remove port which is used only by ocaml-lambda-term, which is used
only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:25:02

Removed files:
	devel/ocaml-lambda-term: Makefile distinfo 
	devel/ocaml-lambda-term/pkg: DESCR PFRAG.dynlink-native 
	                             PFRAG.native PLIST 

Log message:
Remove port which is used only only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 09:26:32

Removed files:
	devel/utop     : Makefile distinfo 
	devel/utop/pkg : DESCR PFRAG.dynlink-native PFRAG.native PLIST 

Log message:
Remove port which is used only only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/12 10:28:00

Modified files:
	graphics/iec16022: Makefile distinfo 
Added files:
	graphics/iec16022/patches: patch-Makefile_am 

Log message:
update to iec16022-0.2.7 and take MAINTAINER


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 10:35:09

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Simplify pmap_proc_iflush(); there is no need for the per-page logic if we
are flushing by using the virtual address.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 10:35:56

Modified files:
	sys/arch/arm64/include: pmap.h 

Log message:
Remove some unused cruft.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 11:29:19

Removed files:
	devel/ocaml-zed: Makefile distinfo 
	devel/ocaml-zed/pkg: DESCR PFRAG.dynlink-native PFRAG.native 
	                     PLIST 

Log message:
Remove port which was used only by ocaml-lambda-term which was used
only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 11:32:12

Removed files:
	textproc/ocaml-text/pkg: PFRAG.native 

Log message:
Remove port which was used only by ocaml-lwt which was only used
by ocaml-lambda-term which was used only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2017/03/12 11:54:55

Modified files:
	net/stem       : Makefile distinfo 
	net/stem/pkg   : PLIST 

Log message:
Update to stem 1.5.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/03/12 11:55:36

Modified files:
	devel/ipython  : Makefile 

Log message:
devel/ipython: Fix a dependency race condition when built under dpb.

Reported by naddy@. OK naddy@, shadchin@. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 11:57:12

Modified files:
	sys/arch/arm64/arm64: sig_machdep.c 
	sys/arch/arm64/include: signal.h 
	sys/arch/arm/arm: sig_machdep.c 

Log message:
Bring SROP mitigation to arm64.  Make some small modifications to the arm
code as well to improve diffability.  Changes the types used in the arm64
"struct sigcontext" to avoid having to include <sys/types.h>.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/12 12:34:40

Modified files:
	lang/vala      : distinfo 

Log message:
i ended up with a distinfo.orig and no distinfo...commit the missing part of
the 0.34.6 update

spotted by nigel@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/12 13:37:20

Modified files:
	faq            : faq15.html index.html 

Log message:
merge a trimmed version of the mini pkg faq into more relevant sections.

input/ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/12 14:45:24

Modified files:
	faq            : faq1.html faq14.html faq4.html faq5.html 
	                 index.html 

Log message:
despite its name, the faq has very few <h2> titles written in the form
of a question. rename these last survivors to the standard "topic" title.
zap a short blurb about df while here.

ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 14:52:10

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Unhook and note the demise of ocaml-camomile. Last of the utop
dependencies.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 14:54:16

Removed files:
	devel/ocaml-camomile: Makefile distinfo 
	devel/ocaml-camomile/patches: patch-Camomile_Makefile_in 
	devel/ocaml-camomile/pkg: DESCR PFRAG.native PLIST 

Log message:
Remove port which was used only by ocaml-zed which was only used
by ocaml-lwt which was only used by ocaml-lambda-term which was
used only by utop.

ok chrisz@ avsm@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/12 15:05:25

Modified files:
	sys/arch/arm64/arm64: cpufunc_asm.S 

Log message:
Add a "dsm ishst" barrier before TLB maintenance instructions.  The ARMv8
architecture reference manual says this is required (D4.7 under "Ordering
and completion of TLB maintenance instructions" to guarantee that the
translation table walk can observe previous store to the page tables.  It
also has a note that says

In all cases in this section, where a DMB or DSB is referred to, it
refers to a DMB or DSB whose required access type is both loads and
stores.

But both Linux and FreeBSD use a Store-Store barrier here.

Sadly this doesn't fix the arm64 stability problems (or at least not all
of them).

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/12 15:11:51

Modified files:
	devel/ipython  : Makefile 

Log message:
fix dependency path: www/py-mako


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/12 15:30:44

Modified files:
	sys/dev/acpi   : acpi.c acpibat.c acpireg.h acpisbs.c acpivar.h 

Log message:
try to attach acpisbs first and if successful, don't attach acpibat


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/12 15:31:18

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
enable acpisbs


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/12 15:41:48

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0229


CVSROOT:	/cvs
Module name:	src
Changes by:	jung@cvs.openbsd.org	2017/03/12 15:48:56

Modified files:
	sys/dev/acpi   : acpisbs.c 

Log message:
add const to struct cfattach

ok jcs


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/12 16:09:27

Modified files:
	www/p5-WWW-Mechanize: Makefile distinfo 
Removed files:
	www/p5-WWW-Mechanize/patches: patch-t_dump_t 

Log message:
update p5-WWW-Mechanize to 1.84
patch for testing with Perl 5.20.3 no longer needed


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/12 16:19:50

Modified files:
	net/samba/pkg  : PLIST-ldb PLIST-main PLIST-tevent 

Log message:
Regen PLIST to use MODPY_PYOEXTENSION


CVSROOT:	/cvs
Module name:	www
Changes by:	mlarkin@cvs.openbsd.org	2017/03/12 17:14:07

Modified files:
	.              : events.html 
Added files:
	papers         : asiabsdcon2017-vmm-slides.pdf 

Log message:
vmm(4) updates talk given at AsiaBSDcon/bhyvecon 09 Mar 2017


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/12 17:28:14

Modified files:
	include        : Makefile 
	distrib/sets/lists/comp: mi 
Removed files:
	include        : struct.h 

Log message:
<struct.h> is unused and should not be used.  Delete it.

ok millert@ deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	krw@cvs.openbsd.org	2017/03/12 17:31:32

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Oops. Missing comma.

Pointed out by Nigel Taylor. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/12 17:55:26

Log message:
    Import www/p5-CGI-Fast 2.12
    from maintainer Mikolaj Kucharski; OK jca@ sthen@
    
    Comment:
    CGI interface for FastCGI
    
    Description:
    CGI::Fast is a subclass of the CGI object created by CGI.pm. It is
    specialized to work with the FCGI module, which greatly speeds up CGI
    scripts by turning them into persistently running server processes.
    Scripts that perform time-consuming initialization processes, such as
    loading large modules or opening persistent database connections, will
    see large performance improvements.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170313
    
    N ports/www/p5-CGI-Fast/Makefile
    N ports/www/p5-CGI-Fast/distinfo
    N ports/www/p5-CGI-Fast/pkg/DESCR
    N ports/www/p5-CGI-Fast/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/12 17:57:43

Modified files:
	www            : Makefile 

Log message:
+p5-CGI-Fast


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/12 18:45:56

Modified files:
	faq            : faq4.html 

Log message:
we only need to explain the install files once, so trim dupe examples.
move a few paragraphs around for better clarity and unify the two sha256
example commands.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/12 18:53:56

Modified files:
	sys/arch/arm64/arm64: machdep.c 

Log message:
Don't limit physmem to 2GB confirmed to work with 16GB by deraadt@.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/12 19:00:15

Modified files:
	sys/dev/pv     : if_hvn.c if_xnf.c xbf.c xen.c xenstore.c 

Log message:
Fixup format string and type issues found by cppcheck


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/12 19:10:03

Modified files:
	sys/dev/pv     : if_hvn.c if_xnf.c xbf.c xenstore.c 

Log message:
Fixup format strings in debug messages found by cppcheck


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/12 19:31:20

Modified files:
	security/botan : Makefile distinfo 

Log message:
- update botan to 1.10.15; from Rafael Sadowski
CVE-2015-7827 CVE-2016-2194 CVE-2016-2195 CVE-2016-2849 CVE-2016-9132
- take maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/12 19:50:49

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
allow ramdisks to build; ok jcs


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/12 19:53:19

Added files:
	devel/monotone/patches: patch-test_unit_tests_merge_3way_cc 

Log message:
Fix include, makes the tests compile, unfortunately they still fail.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/12 20:33:34

Modified files:
	sys/dev/acpi   : acpisbs.c 

Log message:
Register for notifications on the subsystem (parent device) instead
of the HID device, gets SCI events working properly.

But still keep ACPIDEV_POLL enabled just in case some systems never
generate these, like acpibat does.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/12 20:47:49

Modified files:
	faq            : faq4.html 

Log message:
convert two ugly bullet lists into definition lists because that's what
they are.

ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/12 23:08:39

Modified files:
	faq            : faq4.html 

Log message:
all other examples use amd64, so switch this one, too


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/13 01:44:10

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
Make 'ifconfig scan' show WPA information for other APs correctly while
the interface operates in hostap mode.
test & ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/13 02:39:13

Modified files:
	net/lftp       : Makefile distinfo 
	net/lftp/patches: patch-configure 

Log message:
Update to lftp-4.7.7.

from Rafael Sadowski (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 02:42:14

Modified files:
	graphics/babl  : Makefile distinfo 
	graphics/babl/pkg: PLIST 

Log message:
Update to babl-0.1.24.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 02:42:29

Modified files:
	graphics/gegl03: Makefile distinfo 

Log message:
Update to gegl03-0.3.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/13 02:47:27

Modified files:
	net/tintin++   : Makefile distinfo 

Log message:
Update to tintin-2.01.2.

from Ted Roby (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 02:52:09

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-1.4.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 03:11:59

Modified files:
	x11/gnome/documents: Makefile distinfo 
	x11/gnome/documents/pkg: PLIST 

Log message:
Update to gnome-documents-3.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/13 03:42:57

Modified files:
	sysutils/bacula: Makefile distinfo 
Added files:
	sysutils/bacula/patches: patch-src_filed_xacl_c 

Log message:
update to bacula-7.4.6


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/13 04:53:32

Modified files:
	usr.bin/tmux   : cmd-find.c 

Log message:
Revert previous, breaks normal short targets, reported by Theo Buehler.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/13 04:57:00

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/pkg: PLIST-server PLIST-tests 

Log message:
update to MariaDB 10.0.30, from Brad. Fixes CVE-2017-3302 and CVE-2017-3313.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/13 05:36:23

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgAdd.pm PkgDelete.pm 

Log message:
fix usage order, as reminded by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/13 06:34:49

Modified files:
	lib/libc/gen   : sysctl.3 

Log message:
for each sysctl name, attach the variable name as seen by sysctl(8);
includes some fixes from schwarze, as well as some general tweaking;

ok deraadt schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 07:26:52

Modified files:
	devel/meson    : Makefile distinfo 

Log message:
Update to meson-0.39.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/13 08:19:08

Modified files:
	sbin/iked      : policy.c 

Log message:
We need to call policy_ref() for policies that have refcounting
enabled. Refcounting is enabled when a policy is removed during
'ikectl reload' and still has SAs point to it. On IKESA rekeying
such a policy will be referenced by the new IKESA, so we need to
adjust the refcount -- otherwise the policies get free()d too
early and we will crash at some point.

ok markus@ mikeb@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/13 08:33:33

Modified files:
	sbin/iked      : iked.h ikev2.c policy.c 

Log message:
flow_cmp() must compare the same flow-attributes as the kernel,
otherwise we never can keep the in-daemon and the in-kernel idea
of flows in sync and iked ends up deleting flows that are still
in use.  Make use of flow_cmp() and a new flow_equal() instead
of handcrafting the compare in an if.

ok markus@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/13 08:44:37

Modified files:
	sys/dev/acpi   : acpials.c 

Log message:
Don't attach on Apple hardware, asmc(4) is already providing an
ambient light sensor.

ok jung


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/13 08:50:52

Modified files:
	sbin/iked      : ikev2.c ikev2_pld.c 

Log message:
Improve reporting of authentication errors

From and OK markus, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/13 08:57:55

Modified files:
	sbin/iked      : iked.h ikev2.c 

Log message:
Fix and improve the IKE SA rekeying timeout, add a randomized jitter.

Diff from markus@ with a small tweak from me.

OK mikeb@ patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/13 09:00:39

Log message:
    import botan2 2.0.1
    input and OK jca@
    
    Comment:
    crypto and TLS for C++11
    
    Description:
    Botan (Japanese for peony) is a cryptography library written in
    C++11 and released under the permissive Simplified BSD license.
    Botan's goal is to be the best option for cryptography in new C++
    code by offering the tools necessary to implement a range of practical
    systems, such as TLS/DTLS, PKIX certificate handling, PKCS#11 and
    TPM hardware support, password hashing, and post quantum crypto
    schemes.  In addition to the C++, botan has a C89 API specifically
    designed to be easy to call from other languages.  A Python binding
    using ctypes calling the C89 API is included.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170313
    
    N ports/security/botan2/Makefile
    N ports/security/botan2/distinfo
    N ports/security/botan2/pkg/DESCR
    N ports/security/botan2/pkg/PLIST
    N ports/security/botan2/patches/patch-src_tests_test_name_constraint_cpp
    N ports/security/botan2/patches/patch-src_build-data_os_openbsd_txt
    N ports/security/botan2/patches/patch-src_scripts_install_py
    N ports/security/botan2/patches/patch-configure_py
    N ports/security/botan2/patches/patch-src_build-data_cc_gcc_txt
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/13 09:01:59

Modified files:
	sbin/iked      : policy.c 

Log message:
When freeing a Child SA make sure it's peer no longer points to it

From and OK markus, OK reyk


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/13 09:02:48

Modified files:
	security       : Makefile 

Log message:
+botan2


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/13 09:06:51

Modified files:
	sbin/iked      : iked.h ikev2.c pfkey.c 

Log message:
When setting up IPcomp flows for the networks 'A' and 'B' between
gateways 'a' and 'b', we replace the ESP flow "A->B ESP" with an
IPCOMP flow "A->B IPCOMP" and add a matching (transport mode) ESP
flow between the gateways "a->b ESP".  The later is now marked with
flow_ipcomp so it is not translated into "a->b IPCOMP" on rekeying.

When SAs get deleted we do an extra loop to figure out if matching
IPcomp SAs can now be removed, too.  This allows faster expiry of
unused IPcomp SAs.

Disable bytes lifetime for IP compression.

ok markus@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/13 09:07:51

Modified files:
	sbin/iked      : iked.conf.5 

Log message:
Clarify iked.conf(5) manpage in regards to IP compression.

ok markus@ reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/13 09:13:54

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0230


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 09:27:55

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.22.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 09:28:18

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.22.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/13 09:28:33

Modified files:
	mail/evolution-ews: Makefile distinfo 

Log message:
Update to evolution-ews-3.22.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/13 09:38:24

Modified files:
	devel/uthash   : Makefile distinfo 
	devel/uthash/patches: patch-tests_Makefile 
	devel/uthash/pkg: PLIST 

Log message:
Update uthash to 2.0.1.

Notable changes:

- Upstream moved to GitHub
- HTML documentation is not bundled in release tarballs anymore, and
must be generated with asciidoc, so only ship plain text documentation
to avoid adding a build dependency

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/13 10:26:44

Modified files:
	devel/p5-Class-Method-Modifiers: Makefile distinfo 

Log message:
update p5-Class-Method-Modifiers to 2.12
from maintainer Sergey Bronnikov


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/13 11:08:31

Modified files:
	distrib/miniroot: install.sub 

Log message:
Remove leading slashes from response to ensure a proper url.

Feedback and OK halex@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/13 11:20:11

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Log where panes are created.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/13 11:23:45

Modified files:
	sbin/iked      : iked.h ikev2.c 

Log message:
Don't rekey acquired Child SAs

From and OK markus, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/13 11:41:14

Modified files:
	sbin/iked      : ikev2.c ikev2_msg.c pfkey.c 

Log message:
NAT-T improvements

Move repeated creation of the NAT-T payload into a function, remove
erroneous msg_offset, and improve NAT-T handling.

From and OK markus, OK mikeb


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/13 12:28:02

Modified files:
	sbin/iked      : iked.h ikev2.c 

Log message:
Make sure that proposal contains a DH group when rekeying with PFS enabled

Via markus, OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/13 12:48:16

Modified files:
	sbin/iked      : iked.h ikev2.c ikev2_pld.c policy.c 

Log message:
Resolve simultaneous IKE SA rekeying

From and OK markus, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/13 12:49:20

Modified files:
	sbin/iked      : config.c iked.h ikev2.c 

Log message:
Resolve simultaneous Child SA rekeying

From and OK markus, OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/13 13:01:14

Modified files:
	usr.bin/mandoc : html.c mdoc_html.c 

Log message:
Print title="..." in addition to id="..." attributes for macro keys
that can be searched for by apropos(1), such that you see the
semantic function in a tooltip when hovering with the mouse.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/13 13:39:11

Modified files:
	devel/p5-ExtUtils-Helpers: Makefile distinfo 

Log message:
update p5-ExtUtils-Helpers to 0.026
from maintainer Sergey Bronnikov


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/13 14:18:21

Modified files:
	sys/kern       : uipc_proto.c uipc_socket.c uipc_socket2.c 
	                 uipc_usrreq.c 
	sys/net        : pfkey.c raw_usrreq.c rtsock.c 
	sys/netinet    : in_proto.c ip_divert.c ip_divert.h ip_var.h 
	                 raw_ip.c tcp_usrreq.c tcp_var.h udp_usrreq.c 
	                 udp_var.h 
	sys/netinet6   : in6_proto.c ip6_divert.c ip6_divert.h ip6_var.h 
	                 raw_ip6.c 
	sys/sys        : protosw.h socketvar.h unpcb.h 

Log message:
Move PRU_ATTACH out of the pr_usrreq functions into pr_attach.
Attach is quite a different thing to the other PRU functions and
this should make locking a bit simpler. This also removes the ugly
hack on how proto was passed to the attach function.
OK bluhm@ and mpi@ on a previous version


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/13 14:22:11

Modified files:
	usr.bin/mandoc : mandoc.css mdoc_html.c 

Log message:
Port ctags-style, less(1) :t internal searching from terminal output
to HTML output.  For certain macros appearing at the beginning of .It
heads, write HTML id="..." attributes such that deep linking works.
Write HTML <a> attributes such that you can easily copy out link
targets with the mouse.  Try: http://man.openbsd.org/vmctl.8#create

Feature suggested by <guettliml at Thomas dash Guettler dot de>,
some details of the design and implementation by me.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/13 14:32:58

Modified files:
	usr.bin/mg     : buffer.c 

Log message:
When aborting switch-to-buffer keep current buffer instead of
switching to *scratch*. (Which seems to be the least useful thing to
do.)
This brings mg in line with emacs.
OK lum; deraadt@ was bugged by this, too


CVSROOT:	/cvs
Module name:	ports
Changes by:	jung@cvs.openbsd.org	2017/03/13 14:35:47

Modified files:
	mail/opensmtpd-extras: Makefile distinfo 

Log message:
update to newer (bugfix) snapshot from today


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/13 15:20:56

Modified files:
	usr.sbin/route6d: log.c log.h 

Log message:
Add OpenBSD RCS id.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/13 15:32:51

Modified files:
	www/ruby-passenger: Makefile 

Log message:
Mark as BROKEN on arm, undefined reference to __sync_val_compare_and_swap_4

The __sync_val_compare_and_swap_4 reference comes from the internal
libuv copy.  Using lang/gcc doesn't seem to help.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/13 15:48:07

Modified files:
	usr.sbin/radiusd: radiusd.conf.5 

Log message:
Fix typo in FILES section

from Pierre Emeriaud


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/03/13 16:25:14

Modified files:
	net/unison     : Makefile 
Added files:
	net/unison/patches: patch-bytearray_stubs_c 
Removed files:
	net/unison/patches: patch-patch-bytearray_stubs_c 

Log message:
patch the correct file
spotted and fixed by Caspar Shutijs


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/13 16:47:31

Modified files:
	lib/libc/gen   : sysctl.3 

Log message:
- no KERN_RND: from schwarze
- remove some XXX i no longer need


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/13 17:06:36

Modified files:
	faq            : faq4.html 

Log message:
more cleanup:
* convert one more bullet list into a definition list
* don't mention boot loaders that died 10-20 years ago
* no longer mention some cumbersome dual booting options
* vista will officially be dead before 6.1 is out, so stop mentioning it
* compress dual booting with windows section: it's pining for the fjords
* purge fdisk walkthrough that ended up with a 5GB partition for windows

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/13 17:20:12

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
When we do an ASID rollover, we unassign all ASIDs and do a complete
TLB flush to remove any cached translations.  The problem is that we
do this while we're still running with the page tables of the old
process.  Even if we don't actually reference any userland pages, the
CPU can speculatively load translations into the TLB.  And those might
survive until we reassign the ASID of the old process to a new
process.  This new process will then see the wrong physical page,
which inevitably leads to corruption of some sorts.

Fix this issue by delaying the TLB flush until after we switch to the
page tables and ASID of the new process.

ok patrick@, drahn@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/13 18:09:02

Modified files:
	faq            : faq4.html 

Log message:
when asking for dmesg mails, ask nicely for plain text, no html and no
forced line breaks.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/13 18:25:03

Modified files:
	usr.bin/ssh    : misc.c 

Log message:
Check for integer overflow when parsing times in convtime().  Reported by
nicolas.iooss at m4x.org, ok djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/13 18:43:28

Modified files:
	security/py-crypto/patches: patch-lib_Crypto_Hash___init___py 
	                            patch-lib_Crypto_SelfTest_Cipher___init___py 
	                            patch-lib_Crypto_SelfTest_Hash___init__py 

Log message:
Regen patches

prodded by jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/13 18:54:07

src/regress/usr.bin/ssh/unittests/conversion

Update of /cvs/src/regress/usr.bin/ssh/unittests/conversion
In directory cvs.openbsd.org:/tmp/cvs-serv1617/conversion

Log Message:
Directory /cvs/src/regress/usr.bin/ssh/unittests/conversion added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/13 18:55:37

Modified files:
	usr.bin/ssh    : misc.c 

Log message:
Fix convtime() overflow test on boundary condition, spotted by & ok djm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/13 18:56:48

Modified files:
	security/py-crypto: Makefile 
Added files:
	security/py-crypto/patches: 
	                            patch-lib_Crypto_SelfTest_Cipher_common_py 
	                            patch-src_block_template_c 

Log message:
Backport patches adapted from upstream by Sevan Janiyan for CVE-2013-7459

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/13 19:01:38

Modified files:
	security/py-crypto: Tag: OPENBSD_6_0 Makefile 
Added files:
	security/py-crypto/patches: Tag: OPENBSD_6_0 
	                            patch-lib_Crypto_SelfTest_Cipher_common_py 
	                            patch-src_block_template_c 

Log message:
Backport patches adapted from upstream by Sevan Janiyan for CVE-2013-7459

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/13 19:10:07

Modified files:
	regress/usr.bin/ssh/unittests/test_helper: test_helper.c 
	                                           test_helper.h 

Log message:
Add ASSERT_LONG_* helpers.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/13 19:20:29

Modified files:
	regress/usr.bin/ssh/unittests: Makefile 
Added files:
	regress/usr.bin/ssh/unittests/conversion: Makefile tests.c 

Log message:
Add unit test for convtime().


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/13 19:34:57

Modified files:
	usr.bin/mandoc : html.c mdoc_html.c 

Log message:
Slightly increase widths calculated from string lengths (mainly
for .Bl -tag lists and SYNOPSIS .Nm blocks), such that the text
still fits even if it is printed in bold font.
This is an ugly band aid - but implementing font-dependent width
measurements would be a major project and even more difficult
for HTML than for PostScript.

Issue reported by Jan Stary <hans at stare dot cz>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/13 19:35:52

Modified files:
	net/ucspi-tools: Makefile 
Added files:
	net/ucspi-tools/patches: patch-config_mk 

Log message:
Honour CC/CFLAGS


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/13 19:53:25

Modified files:
	faq            : faq15.html 

Log message:
this page repeatedly says "NOTE" or "IMPORTANT NOTE" a total of seven times.

NOTE: i removed them


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/13 20:36:36

Modified files:
	misc/zzuf      : Makefile 

Log message:
Use lang/gcc on arm


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/13 20:43:18

Added files:
	misc/zzuf/patches: patch-configure 

Log message:
Honour CFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/13 20:57:27

Modified files:
	graphics/libraw: Makefile 

Log message:
Use lang/gcc for atomic builtins on arm


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/13 21:06:34

Modified files:
	faq            : faq10.html index.html 

Log message:
add a quick link to 'keeping openbsd updated' and shuffle the other links
around so that the order makes a bit more sense. add some air to breathe.

idea/ok tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/14 00:27:23

Modified files:
	net/mosh       : Makefile 

Log message:
Only disable forced PIE, let the port use other flags like -fno-strict-overflow


CVSROOT:	/cvs
Module name:	www
Changes by:	mlarkin@cvs.openbsd.org	2017/03/14 00:40:10

Modified files:
	.              : 61.html 

Log message:
vmm(4)/vmd(8) updates


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/14 01:19:08

Modified files:
	usr.bin/ssh    : servconf.c sshd_config sshd_config.5 

Log message:
Mark the sshd_config UsePrivilegeSeparation option as deprecated,
effectively making privsep mandatory in sandboxing mode.
ok markus@ deraadt@

(note: this doesn't remove the !privsep code paths, though that will
happen eventually).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 02:01:05

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/14 02:08:15

Log message:
    Import LLVM 4.0.0 release including clang and lld.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LLVM_4_0_0
    
    U src/gnu/llvm/LICENSE.TXT
    U src/gnu/llvm/CREDITS.TXT
    U src/gnu/llvm/README.txt
    U src/gnu/llvm/.clang-tidy
    U src/gnu/llvm/RELEASE_TESTERS.TXT
    U src/gnu/llvm/.gitignore
    U src/gnu/llvm/configure
    U src/gnu/llvm/.arcconfig
    U src/gnu/llvm/.clang-format
    U src/gnu/llvm/llvm.spec.in
    U src/gnu/llvm/CMakeLists.txt
    U src/gnu/llvm/CODE_OWNERS.TXT
    U src/gnu/llvm/LLVMBuild.txt
    U src/gnu/llvm/tools/CMakeLists.txt
    U src/gnu/llvm/tools/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-shlib/libllvm.cpp
    U src/gnu/llvm/tools/llvm-shlib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
    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-size/llvm-size.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-cxxfilt/llvm-cxxfilt.cpp
    U src/gnu/llvm/tools/llvm-cxxfilt/CMakeLists.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-cat/LLVMBuild.txt
    U src/gnu/llvm/tools/obj2yaml/elf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/coff2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/macho2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/Error.cpp
    U src/gnu/llvm/tools/obj2yaml/CMakeLists.txt
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.h
    U src/gnu/llvm/tools/obj2yaml/dwarf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/Error.h
    U src/gnu/llvm/tools/llvm-rtdyld/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-nm/CMakeLists.txt
    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-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-opt-report/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-opt-report/OptReport.cpp
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2010.targets
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
    U src/gnu/llvm/tools/msbuild/toolset-vs2014.targets
    U src/gnu/llvm/tools/msbuild/install.bat
    U src/gnu/llvm/tools/msbuild/toolset-vs2014_xp.targets
    U src/gnu/llvm/tools/msbuild/toolset-vs2013_xp.targets
    U src/gnu/llvm/tools/msbuild/uninstall.bat
    U src/gnu/llvm/tools/msbuild/toolset-vs2013.targets
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012.targets
    U src/gnu/llvm/tools/msbuild/Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets
    U src/gnu/llvm/tools/msbuild/CMakeLists.txt
    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/llvm-config/BuildVariables.inc.in
    U src/gnu/llvm/tools/llvm-config/llvm-config.cpp
    U src/gnu/llvm/tools/llvm-config/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-xray/xray-account.h
    U src/gnu/llvm/tools/llvm-xray/func-id-helper.h
    U src/gnu/llvm/tools/llvm-xray/xray-extract.cc
    U src/gnu/llvm/tools/llvm-xray/xray-sleds.h
    U src/gnu/llvm/tools/llvm-xray/func-id-helper.cc
    U src/gnu/llvm/tools/llvm-xray/xray-registry.h
    U src/gnu/llvm/tools/llvm-xray/llvm-xray.cc
    U src/gnu/llvm/tools/llvm-xray/xray-extract.h
    U src/gnu/llvm/tools/llvm-xray/xray-registry.cc
    U src/gnu/llvm/tools/llvm-xray/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-xray/xray-account.cc
    U src/gnu/llvm/tools/llvm-xray/xray-record-yaml.h
    U src/gnu/llvm/tools/llvm-xray/xray-converter.h
    U src/gnu/llvm/tools/llvm-xray/xray-converter.cc
    U src/gnu/llvm/tools/llvm-c-test/calc.c
    U src/gnu/llvm/tools/llvm-c-test/module.c
    U src/gnu/llvm/tools/llvm-c-test/helpers.c
    U src/gnu/llvm/tools/llvm-c-test/echo.cpp
    U src/gnu/llvm/tools/llvm-c-test/object.c
    U src/gnu/llvm/tools/llvm-c-test/disassemble.c
    U src/gnu/llvm/tools/llvm-c-test/include-all.c
    U src/gnu/llvm/tools/llvm-c-test/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-c-test/metadata.c
    U src/gnu/llvm/tools/llvm-c-test/diagnostic.c
    U src/gnu/llvm/tools/llvm-c-test/main.c
    U src/gnu/llvm/tools/llvm-c-test/llvm-c-test.h
    U src/gnu/llvm/tools/llvm-c-test/targets.c
    U src/gnu/llvm/tools/llvm-c-test/attributes.c
    U src/gnu/llvm/tools/sancov/sancov.cc
    U src/gnu/llvm/tools/sancov/coverage-report-server.py
    U src/gnu/llvm/tools/sancov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-symbolizer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2elf.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2macho.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2dwarf.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2coff.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.h
    U src/gnu/llvm/tools/yaml2obj/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/MachODumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/COFFImportDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ELFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.h
    U src/gnu/llvm/tools/llvm-readobj/StackMapPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
    U src/gnu/llvm/tools/llvm-readobj/COFFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.h
    U src/gnu/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.h
    U src/gnu/llvm/tools/llvm-readobj/Error.cpp
    U src/gnu/llvm/tools/llvm-readobj/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/CodeView.h
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.cpp
    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/ARMAttributeParser.h
    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-modextract/llvm-modextract.cpp
    U src/gnu/llvm/tools/llvm-modextract/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-modextract/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/llvm-jitlistener/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dis/llvm-dis.cpp
    U src/gnu/llvm/tools/llvm-dis/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dis/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto2/llvm-lto2.cpp
    U src/gnu/llvm/tools/llvm-lto2/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-lto2/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.h
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.h
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.h
    U src/gnu/llvm/tools/llvm-cov/llvm-cov.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageViewOptions.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.h
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageExporterJson.cpp
    U src/gnu/llvm/tools/llvm-cov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
    U src/gnu/llvm/tools/llvm-cov/gcov.cpp
    U src/gnu/llvm/tools/llvm-cov/CodeCoverage.cpp
    U src/gnu/llvm/tools/llvm-cov/TestingSupport.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/LLVMBuild.txt
    U src/gnu/llvm/tools/sanstats/sanstats.cpp
    U src/gnu/llvm/tools/sanstats/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-stress/llvm-stress.cpp
    U src/gnu/llvm/tools/llvm-stress/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-stress/LLVMBuild.txt
    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-as-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-as-fuzzer/llvm-as-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-mc/Disassembler.h
    U src/gnu/llvm/tools/llvm-mc/Disassembler.cpp
    U src/gnu/llvm/tools/llvm-mc/CMakeLists.txt
    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-as/llvm-as.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-mcmarkup/llvm-mcmarkup.cpp
    U src/gnu/llvm/tools/llvm-mcmarkup/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mcmarkup/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwp/DWPError.h
    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/llvm-dwp.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/YamlTypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyVariableDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/OutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbdump/YAMLOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyEnumDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LLVMOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbdump/YAMLOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/YamlTypeDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyTypeDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyTypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LinePrinter.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-pdbdump/YamlSymbolDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyEnumDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.h
    U src/gnu/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyVariableDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PdbYaml.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/PdbYaml.h
    U src/gnu/llvm/tools/llvm-pdbdump/YamlSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.h
    U src/gnu/llvm/tools/llvm-pdbdump/YamlSerializationContext.h
    U src/gnu/llvm/tools/llvm-pdbdump/fuzzer/llvm-pdbdump-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-pdbdump/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objdump/WasmDump.cpp
    U src/gnu/llvm/tools/llvm-objdump/llvm-objdump.cpp
    U src/gnu/llvm/tools/llvm-objdump/MachODump.cpp
    U src/gnu/llvm/tools/llvm-objdump/COFFDump.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.h
    U src/gnu/llvm/tools/llvm-objdump/LLVMBuild.txt
    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-cxxdump/Error.cpp
    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/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/dsymutil/DebugMap.cpp
    U src/gnu/llvm/tools/dsymutil/dsymutil.cpp
    U src/gnu/llvm/tools/dsymutil/MachOUtils.cpp
    U src/gnu/llvm/tools/dsymutil/dsymutil.h
    U src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.h
    U src/gnu/llvm/tools/dsymutil/MachODebugMapParser.cpp
    U src/gnu/llvm/tools/dsymutil/CMakeLists.txt
    U src/gnu/llvm/tools/dsymutil/DebugMap.h
    U src/gnu/llvm/tools/dsymutil/DwarfLinker.cpp
    U src/gnu/llvm/tools/dsymutil/MachOUtils.h
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.cpp
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.h
    U src/gnu/llvm/tools/dsymutil/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-go/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-go/llvm-go.go
    U src/gnu/llvm/tools/lto/LTODisassembler.cpp
    U src/gnu/llvm/tools/lto/lto.exports
    U src/gnu/llvm/tools/lto/CMakeLists.txt
    U src/gnu/llvm/tools/lto/lto.cpp
    U src/gnu/llvm/tools/bugpoint/ExtractFunction.cpp
    U src/gnu/llvm/tools/bugpoint/FindBugs.cpp
    U src/gnu/llvm/tools/bugpoint/ListReducer.h
    U src/gnu/llvm/tools/bugpoint/Miscompilation.cpp
    U src/gnu/llvm/tools/bugpoint/BugDriver.cpp
    U src/gnu/llvm/tools/bugpoint/BugDriver.h
    U src/gnu/llvm/tools/bugpoint/CrashDebugger.cpp
    U src/gnu/llvm/tools/bugpoint/ExecutionDriver.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.h
    U src/gnu/llvm/tools/bugpoint/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint/bugpoint.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.cpp
    U src/gnu/llvm/tools/bugpoint/OptimizerDriver.cpp
    U src/gnu/llvm/tools/bugpoint/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-diff/llvm-diff.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffLog.h
    U src/gnu/llvm/tools/llvm-diff/DiffLog.cpp
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.cpp
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
    U src/gnu/llvm/tools/llvm-diff/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.h
    U src/gnu/llvm/tools/llvm-diff/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto/llvm-lto.cpp
    U src/gnu/llvm/tools/llvm-lto/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-lto/LLVMBuild.txt
    U src/gnu/llvm/tools/bugpoint-passes/TestPasses.cpp
    U src/gnu/llvm/tools/bugpoint-passes/bugpoint.exports
    U src/gnu/llvm/tools/bugpoint-passes/CMakeLists.txt
    U src/gnu/llvm/tools/lli/lli.cpp
    U src/gnu/llvm/tools/lli/OrcLazyJIT.h
    U src/gnu/llvm/tools/lli/RemoteJITUtils.h
    U src/gnu/llvm/tools/lli/CMakeLists.txt
    U src/gnu/llvm/tools/lli/OrcLazyJIT.cpp
    U src/gnu/llvm/tools/lli/LLVMBuild.txt
    U src/gnu/llvm/tools/lli/ChildTarget/CMakeLists.txt
    U src/gnu/llvm/tools/lli/ChildTarget/ChildTarget.cpp
    U src/gnu/llvm/tools/lli/ChildTarget/LLVMBuild.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/opt/NewPMDriver.cpp
    U src/gnu/llvm/tools/opt/BreakpointPrinter.h
    U src/gnu/llvm/tools/opt/NewPMDriver.h
    U src/gnu/llvm/tools/opt/AnalysisWrappers.cpp
    U src/gnu/llvm/tools/opt/PassPrinters.cpp
    U src/gnu/llvm/tools/opt/opt.cpp
    U src/gnu/llvm/tools/opt/PrintSCC.cpp
    U src/gnu/llvm/tools/opt/PassPrinters.h
    U src/gnu/llvm/tools/opt/CMakeLists.txt
    U src/gnu/llvm/tools/opt/BreakpointPrinter.cpp
    U src/gnu/llvm/tools/opt/GraphPrinters.cpp
    U src/gnu/llvm/tools/opt/LLVMBuild.txt
    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-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/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/xcode-toolchain/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-split/CMakeLists.txt
    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-mc-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mc-fuzzer/llvm-mc-fuzzer.cpp
    U src/gnu/llvm/tools/lld/LICENSE.TXT
    U src/gnu/llvm/tools/lld/README.md
    U src/gnu/llvm/tools/lld/.gitignore
    U src/gnu/llvm/tools/lld/.arcconfig
    U src/gnu/llvm/tools/lld/.clang-format
    U src/gnu/llvm/tools/lld/CMakeLists.txt
    U src/gnu/llvm/tools/lld/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/lld/tools/lld/lld.cpp
    U src/gnu/llvm/tools/lld/tools/lld/CMakeLists.txt
    U src/gnu/llvm/tools/lld/cmake/modules/FindVTune.cmake
    U src/gnu/llvm/tools/lld/cmake/modules/AddLLD.cmake
    U src/gnu/llvm/tools/lld/COFF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/COFF/README.md
    U src/gnu/llvm/tools/lld/COFF/InputFiles.cpp
    U src/gnu/llvm/tools/lld/COFF/Strings.h
    U src/gnu/llvm/tools/lld/COFF/Strings.cpp
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/COFF/InputFiles.h
    U src/gnu/llvm/tools/lld/COFF/Memory.h
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.h
    U src/gnu/llvm/tools/lld/COFF/Writer.h
    U src/gnu/llvm/tools/lld/COFF/ICF.cpp
    U src/gnu/llvm/tools/lld/COFF/ModuleDef.cpp
    U src/gnu/llvm/tools/lld/COFF/Driver.cpp
    U src/gnu/llvm/tools/lld/COFF/Driver.h
    U src/gnu/llvm/tools/lld/COFF/Error.cpp
    U src/gnu/llvm/tools/lld/COFF/PDB.h
    U src/gnu/llvm/tools/lld/COFF/Chunks.h
    U src/gnu/llvm/tools/lld/COFF/CMakeLists.txt
    U src/gnu/llvm/tools/lld/COFF/DLL.cpp
    U src/gnu/llvm/tools/lld/COFF/Options.td
    U src/gnu/llvm/tools/lld/COFF/Symbols.cpp
    U src/gnu/llvm/tools/lld/COFF/Librarian.cpp
    U src/gnu/llvm/tools/lld/COFF/Symbols.h
    U src/gnu/llvm/tools/lld/COFF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/COFF/Writer.cpp
    U src/gnu/llvm/tools/lld/COFF/PDB.cpp
    U src/gnu/llvm/tools/lld/COFF/Error.h
    U src/gnu/llvm/tools/lld/COFF/Chunks.cpp
    U src/gnu/llvm/tools/lld/COFF/Config.h
    U src/gnu/llvm/tools/lld/COFF/DLL.h
    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/Core/DefinedAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SymbolTable.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Writer.h
    U src/gnu/llvm/tools/lld/include/lld/Core/LLVM.h
    U src/gnu/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Node.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Resolver.h
    U src/gnu/llvm/tools/lld/include/lld/Core/LinkingContext.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Parallel.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reader.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Instrumentation.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Atom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reference.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/TODO.txt
    U src/gnu/llvm/tools/lld/include/lld/Core/PassManager.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reproduce.h
    U src/gnu/llvm/tools/lld/include/lld/Core/File.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Error.h
    U src/gnu/llvm/tools/lld/include/lld/Support/Memory.h
    U src/gnu/llvm/tools/lld/include/lld/Config/Version.inc.in
    U src/gnu/llvm/tools/lld/include/lld/Config/Version.h
    U src/gnu/llvm/tools/lld/include/lld/Driver/Driver.h
    U src/gnu/llvm/tools/lld/ELF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/ELF/README.md
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.cpp
    U src/gnu/llvm/tools/lld/ELF/Thunks.h
    U src/gnu/llvm/tools/lld/ELF/InputFiles.cpp
    U src/gnu/llvm/tools/lld/ELF/Strings.h
    U src/gnu/llvm/tools/lld/ELF/Strings.cpp
    U src/gnu/llvm/tools/lld/ELF/SyntheticSections.h
    U src/gnu/llvm/tools/lld/ELF/LTO.h
    U src/gnu/llvm/tools/lld/ELF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/ELF/InputFiles.h
    U src/gnu/llvm/tools/lld/ELF/Memory.h
    U src/gnu/llvm/tools/lld/ELF/Target.cpp
    U src/gnu/llvm/tools/lld/ELF/InputSection.cpp
    U src/gnu/llvm/tools/lld/ELF/Relocations.h
    U src/gnu/llvm/tools/lld/ELF/SymbolTable.h
    U src/gnu/llvm/tools/lld/ELF/Writer.h
    U src/gnu/llvm/tools/lld/ELF/ICF.cpp
    U src/gnu/llvm/tools/lld/ELF/Thunks.cpp
    U src/gnu/llvm/tools/lld/ELF/GdbIndex.cpp
    U src/gnu/llvm/tools/lld/ELF/ICF.h
    U src/gnu/llvm/tools/lld/ELF/LinkerScript.h
    C src/gnu/llvm/tools/lld/ELF/Driver.cpp
    U src/gnu/llvm/tools/lld/ELF/Relocations.cpp
    U src/gnu/llvm/tools/lld/ELF/OutputSections.h
    C src/gnu/llvm/tools/lld/ELF/SyntheticSections.cpp
    U src/gnu/llvm/tools/lld/ELF/Driver.h
    U src/gnu/llvm/tools/lld/ELF/Error.cpp
    U src/gnu/llvm/tools/lld/ELF/LinkerScript.cpp
    U src/gnu/llvm/tools/lld/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lld/ELF/Threads.h
    U src/gnu/llvm/tools/lld/ELF/OutputSections.cpp
    U src/gnu/llvm/tools/lld/ELF/Mips.cpp
    C src/gnu/llvm/tools/lld/ELF/Options.td
    U src/gnu/llvm/tools/lld/ELF/EhFrame.cpp
    U src/gnu/llvm/tools/lld/ELF/GdbIndex.h
    C src/gnu/llvm/tools/lld/ELF/Symbols.cpp
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.h
    U src/gnu/llvm/tools/lld/ELF/Symbols.h
    U src/gnu/llvm/tools/lld/ELF/Target.h
    U src/gnu/llvm/tools/lld/ELF/LTO.cpp
    U src/gnu/llvm/tools/lld/ELF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/ELF/InputSection.h
    U src/gnu/llvm/tools/lld/ELF/Writer.cpp
    U src/gnu/llvm/tools/lld/ELF/Error.h
    U src/gnu/llvm/tools/lld/ELF/EhFrame.h
    C src/gnu/llvm/tools/lld/ELF/Config.h
    U src/gnu/llvm/tools/lld/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
    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/MachOTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
    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/CoreTests/ParallelTest.cpp
    U src/gnu/llvm/tools/lld/unittests/CoreTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/docs/index.rst
    U src/gnu/llvm/tools/lld/docs/README.txt
    U src/gnu/llvm/tools/lld/docs/make.bat
    U src/gnu/llvm/tools/lld/docs/NewLLD.rst
    U src/gnu/llvm/tools/lld/docs/hello.png
    U src/gnu/llvm/tools/lld/docs/C++11.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/sphinx_intro.rst
    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/conf.py
    U src/gnu/llvm/tools/lld/docs/open_projects.rst
    U src/gnu/llvm/tools/lld/docs/Driver.rst
    U src/gnu/llvm/tools/lld/docs/windows_support.rst
    U src/gnu/llvm/tools/lld/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/lld/docs/Readers.rst
    U src/gnu/llvm/tools/lld/docs/AtomLLD.rst
    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/navigation.png
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/llvm.css
    U src/gnu/llvm/tools/lld/docs/_static/favicon.ico
    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/lib/CMakeLists.txt
    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/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOPasses.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
    U src/gnu/llvm/tools/lld/lib/Core/LinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/Core/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/lib/Core/DefinedAtom.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Resolver.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Error.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Reproduce.cpp
    U src/gnu/llvm/tools/lld/lib/Core/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Core/File.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Reader.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Writer.cpp
    U src/gnu/llvm/tools/lld/lib/Config/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Config/Version.cpp
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdOptions.td
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
    U src/gnu/llvm/tools/lld/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/LICENSE.TXT
    U src/gnu/llvm/tools/clang/README.txt
    U src/gnu/llvm/tools/clang/.clang-tidy
    U src/gnu/llvm/tools/clang/ModuleInfo.txt
    U src/gnu/llvm/tools/clang/NOTES.txt
    U src/gnu/llvm/tools/clang/INSTALL.txt
    U src/gnu/llvm/tools/clang/.gitignore
    U src/gnu/llvm/tools/clang/.arcconfig
    U src/gnu/llvm/tools/clang/.clang-format
    U src/gnu/llvm/tools/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/clang/tools/CMakeLists.txt
    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/diag-build/diag-build.sh
    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/driver/Info.plist.in
    U src/gnu/llvm/tools/clang/tools/driver/cc1as_main.cpp
    U src/gnu/llvm/tools/clang/tools/driver/cc1_main.cpp
    U src/gnu/llvm/tools/clang/tools/driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/driver/driver.cpp
    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-sublime.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-diff.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format.el
    U src/gnu/llvm/tools/clang/tools/clang-format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/git-clang-format
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-bbedit.applescript
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp
    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/clang-check/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-check/ClangCheck.cpp
    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/scan-build-py/README.md
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/ear.c
    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/__init__.py
    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/src/emit-one.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/broken-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/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/broken-two.c
    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/functional/src/compilation_database/build_regular.json.in
    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/build/Makefile
    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_cdb.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_create_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/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/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/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_runner.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_report.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/analyze.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/clang.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/runner.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/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/libscanbuild/resources/sorttable.js
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/scan-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-c++
    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++.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc.bat
    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-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-cc.bat
    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-c++.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-c++
    U src/gnu/llvm/tools/clang/tools/scan-build/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build/man/scan-build.1
    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/libexec/c++-analyzer.bat
    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/ccc-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/bin/set-xcode-analyzer
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ClangFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.h
    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/CIndexer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexInclusionStack.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexUSRs.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.cpp
    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/CLog.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndex.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCodeCompletion.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/CXString.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXTranslationUnit.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/Indexing.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexHigh.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.h
    U src/gnu/llvm/tools/clang/tools/libclang/CursorVisitor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.h
    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/CXString.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXStoredDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/scan-view/CMakeLists.txt
    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/FileRadar.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/GetRadarVersion.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/startfile.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/Reporter.py
    U src/gnu/llvm/tools/clang/tools/scan-view/bin/scan-view
    U src/gnu/llvm/tools/clang/tools/diagtool/ShowEnabledWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/diagtool_main.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.h
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/ListWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.h
    U src/gnu/llvm/tools/clang/tools/diagtool/TreeView.cpp
    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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat.sln
    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/packages.config
    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/Guids.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/ClangFormat.csproj
    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/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/VSPackage.resx
    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/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/INPUTS/cfg-long-chain2.c
    U src/gnu/llvm/tools/clang/INPUTS/c99-intconst-1.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/cfg-nested-var-scopes.cpp
    U src/gnu/llvm/tools/clang/INPUTS/cfg-big-switch.c
    U src/gnu/llvm/tools/clang/INPUTS/all-std-headers.cpp
    U src/gnu/llvm/tools/clang/INPUTS/carbon_h.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/macro_pounder_fn.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain3.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-nested-switches.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain1.c
    U src/gnu/llvm/tools/clang/www/features.html
    U src/gnu/llvm/tools/clang/www/hacking.html
    U src/gnu/llvm/tools/clang/www/menu.html.incl
    U src/gnu/llvm/tools/clang/www/cxx_dr_status.html
    U src/gnu/llvm/tools/clang/www/compatibility.html
    U src/gnu/llvm/tools/clang/www/menu.css
    U src/gnu/llvm/tools/clang/www/get_started.html
    U src/gnu/llvm/tools/clang/www/comparison.html
    U src/gnu/llvm/tools/clang/www/cxx_compatibility.html
    U src/gnu/llvm/tools/clang/www/favicon.ico
    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/clang_video-07-25-2007.html
    U src/gnu/llvm/tools/clang/www/feature-memory1.png
    U src/gnu/llvm/tools/clang/www/builtins.py
    U src/gnu/llvm/tools/clang/www/feature-compile1.png
    U src/gnu/llvm/tools/clang/www/diagnostics.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.4-clang0x.patch
    U src/gnu/llvm/tools/clang/www/UniversalDriver.html
    U src/gnu/llvm/tools/clang/www/clang_video-05-25-2007.html
    U src/gnu/llvm/tools/clang/www/related.html
    U src/gnu/llvm/tools/clang/www/carbon-compile.png
    U src/gnu/llvm/tools/clang/www/robots.txt
    U src/gnu/llvm/tools/clang/www/libstdc++4.7-clang11.patch
    U src/gnu/llvm/tools/clang/www/make_cxx_dr_status
    U src/gnu/llvm/tools/clang/www/index.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.6-clang11.patch
    U src/gnu/llvm/tools/clang/www/OpenProjects.html
    U src/gnu/llvm/tools/clang/www/content.css
    U src/gnu/llvm/tools/clang/www/get_involved.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/latest_checker.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/faq.html
    U src/gnu/llvm/tools/clang/www/analyzer/checker_dev_manual.html
    U src/gnu/llvm/tools/clang/www/analyzer/xcode.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/implicit_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/annotations.html
    U src/gnu/llvm/tools/clang/www/analyzer/index.html
    U src/gnu/llvm/tools/clang/www/analyzer/open_projects.html
    U src/gnu/llvm/tools/clang/www/analyzer/installation.html
    U src/gnu/llvm/tools/clang/www/analyzer/filing_bugs.html
    U src/gnu/llvm/tools/clang/www/analyzer/release_notes.html
    U src/gnu/llvm/tools/clang/www/analyzer/scan-build.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/images/example_use_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_null_pointer.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_ns_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_xcode.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_custom_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained_gc.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_html.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_attribute_nonnull.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/scan_build_cmd.png
    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/arrows_dark.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_dark.gif
    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/demo/cathead.png
    U src/gnu/llvm/tools/clang/www/demo/index.cgi
    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/what is this directory.txt
    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/enumerations.py
    U src/gnu/llvm/tools/clang/bindings/python/clang/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/util.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_cdb.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_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/__init__.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_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_tokens.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_translation_unit.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_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/INPUTS/hello.cpp
    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/include.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/header2.h
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/parse_arguments.c
    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/xml/comment-xml-schema.rng
    U src/gnu/llvm/tools/clang/utils/find-unused-diagnostics.sh
    U src/gnu/llvm/tools/clang/utils/modfuzz.py
    U src/gnu/llvm/tools/clang/utils/CmpDriver
    U src/gnu/llvm/tools/clang/utils/CaptureCmd
    U src/gnu/llvm/tools/clang/utils/FuzzTest
    U src/gnu/llvm/tools/clang/utils/token-delta.py
    U src/gnu/llvm/tools/clang/utils/ClangDataFormat.py
    U src/gnu/llvm/tools/clang/utils/builtin-defines.c
    U src/gnu/llvm/tools/clang/utils/FindSpecRefs
    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/ubiviz
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestAdd.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestBuild.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/VtableTest/check-ztt
    U src/gnu/llvm/tools/clang/utils/VtableTest/gen.cc
    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/ABITest/build-and-summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize-all.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/build.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/TypeGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/Makefile.test.common
    U src/gnu/llvm/tools/clang/utils/ABITest/Enumeration.py
    U src/gnu/llvm/tools/clang/utils/ABITest/ABITestGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-32/Makefile
    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/check_cfc/setup.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/obj_diff.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/check_cfc/check_cfc.cfg
    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/deep-stack.py
    U src/gnu/llvm/tools/clang/utils/TestUtils/pch-test.pl
    U src/gnu/llvm/tools/clang/utils/CIndex/completion_logger_server.py
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
    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/CMakeLists.txt
    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/ClangAttrEmitter.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/utils/perf-training/README.txt
    U src/gnu/llvm/tools/clang/utils/perf-training/lit.cfg
    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.site.cfg.in
    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/examples/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/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/README.txt
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/main.cpp
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/CMakeLists.txt
    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/analyzer-plugin/SampleAnalyzerPlugin.exports
    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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage-base.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/README.txt
    U src/gnu/llvm/tools/clang/cmake/caches/DistributionExample.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/DistributionExample-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2-instrumented.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage1.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2.cmake
    U src/gnu/llvm/tools/clang/include/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFG.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/CFGStmtMap.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CodeInjector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CallGraph.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisContext.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/Support/BumpVector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.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/ThreadSafetyOps.def
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.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/OSLog.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexSymbol.h
    U src/gnu/llvm/tools/clang/include/clang/Index/USRGeneration.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CommentToXML.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Specifiers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_neon.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/VersionTuple.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Cuda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceLocation.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Linkage.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
    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/Attributes.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attr.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.inc.in
    U src/gnu/llvm/tools/clang/include/clang/Basic/PlistSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/StmtNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
    C src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Lambda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/CharInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Visibility.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DeclNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandards.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.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/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.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/ASTUnit.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandard.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroArgs.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/PreprocessorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PTHManager.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Lexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PTHLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Token.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Pragma.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Overload.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Sema.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaLambda.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DeclSpec.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Designator.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Weak.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Scope.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Sema/LoopHint.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AttributeList.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Template.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Initialization.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Ownership.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/ParseAST.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.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/RefactoringCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Tooling.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring.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/Core/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/QualTypeNames.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/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/StaticAnalyzer/Frontend/ModelConsumer.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/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/CheckerManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.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/SValBuilder.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/LoopWidening.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/ProgramStateTrait.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/SymbolManager.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/DynamicTypeInfo.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/Regions.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.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/SValVisitor.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/TaintTag.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/SVals.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/CoreEngine.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/APSIntType.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/StoreRef.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/SubEngine.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/SummaryManager.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/SymExpr.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/TaintManager.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/BugReporterVisitor.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/BugReporter.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
    U src/gnu/llvm/tools/clang/include/clang/FrontendTool/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Format/Format.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclGroup.h
    U src/gnu/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
    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/ASTTypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LambdaCapture.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OpenMPClause.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Expr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTVector.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecordLayout.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclFriend.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Type.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AST.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td
    U src/gnu/llvm/tools/clang/include/clang/AST/Mangle.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTFwd.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BaseSubobject.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/NSAPI.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclarationName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Availability.h
    U src/gnu/llvm/tools/clang/include/clang/AST/GlobalDecl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LocInfoType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentSema.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Attr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AttrIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLoc.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RawCommentList.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTLambda.h
    U src/gnu/llvm/tools/clang/include/clang/AST/APValue.h
    U src/gnu/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/AST/VTableBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentLexer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CXXInheritance.h
    U src/gnu/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeOrdering.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclLookups.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTImporter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ParentMap.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Decl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Stmt.h
    U src/gnu/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CharUnits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CanonicalType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommands.td
    U src/gnu/llvm/tools/clang/include/clang/AST/Redeclarable.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.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/Rewrite/Core/DeltaTree.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
    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/Serialization/SerializationDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTReader.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/Registry.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/FileOffset.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/Commit.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.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/SwiftCallingConv.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
    U src/gnu/llvm/tools/clang/include/clang/Config/config.h.cmake
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Options.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Util.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Phases.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.def
    U src/gnu/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/SanitizerArgs.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/Driver.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Compilation.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/ToolChain.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Job.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Driver/CC1Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Distro.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Tool.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Action.h
    U src/gnu/llvm/tools/clang/include/clang-c/Index.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXErrorCode.h
    U src/gnu/llvm/tools/clang/include/clang-c/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang-c/BuildSystem.h
    U src/gnu/llvm/tools/clang/include/clang-c/Documentation.h
    U src/gnu/llvm/tools/clang/include/clang-c/Platform.h
    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/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/Analysis/CFGTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CMakeLists.txt
    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/VirtualFileSystemTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/DiagnosticTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CodeGenActionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Frontend/FrontendActionTest.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/HeaderMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Lex/PPCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Sema/ExternalSemaSourceTest.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/Tooling/RefactoringTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestTypeLocVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CommentHandlerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTestContext.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestCallVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementTest.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/LookupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CompilationDatabaseTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/FixItTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/TestVisitor.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestDeclVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ToolingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Tooling/QualTypeNamesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestExprVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementsYamlTest.cpp
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/AnalyzerOptionsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CleanupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortImportsTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestUtils.h
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestSelective.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortIncludesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestObjC.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJava.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestProto.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTImporterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/MatchVerifier.h
    U src/gnu/llvm/tools/clang/unittests/AST/ASTTypeTraitsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/PostOrderASTVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTVectorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/SourceLocationTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ExternalASTSourceTest.cpp
    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/StmtPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTContextParentMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/AST/EvaluateAsRValueTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/NamedDeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Rewrite/RewriteBufferTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.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/ASTMatchersNodeTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTest.h
    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/ASTMatchers/Dynamic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/VariantValueTest.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/Driver/DistroTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/ToolChainTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/MultilibTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/docs/LibASTMatchers.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/LTOVisibility.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersReference.html
    U src/gnu/llvm/tools/clang/docs/ClangFormatStyleOptions.rst
    U src/gnu/llvm/tools/clang/docs/UndefinedBehaviorSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ObjectiveCLiterals.rst
    U src/gnu/llvm/tools/clang/docs/SafeStack.rst
    U src/gnu/llvm/tools/clang/docs/index.rst
    U src/gnu/llvm/tools/clang/docs/README.txt
    U src/gnu/llvm/tools/clang/docs/Modules.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerStats.rst
    U src/gnu/llvm/tools/clang/docs/SourceBasedCodeCoverage.rst
    U src/gnu/llvm/tools/clang/docs/LibTooling.rst
    U src/gnu/llvm/tools/clang/docs/make.bat
    U src/gnu/llvm/tools/clang/docs/PCHLayout.png
    U src/gnu/llvm/tools/clang/docs/PTHInternals.rst
    U src/gnu/llvm/tools/clang/docs/doxygen-mainpage.dox
    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/AttributeReference.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrity.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/ThreadSafetyAnalysis.rst
    U src/gnu/llvm/tools/clang/docs/ClangFormat.rst
    U src/gnu/llvm/tools/clang/docs/MemorySanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrityDesign.rst
    U src/gnu/llvm/tools/clang/docs/Makefile.sphinx
    U src/gnu/llvm/tools/clang/docs/DiagnosticsReference.rst
    U src/gnu/llvm/tools/clang/docs/DriverArchitecture.png
    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/ItaniumMangleAbiTags.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizerDesign.rst
    U src/gnu/llvm/tools/clang/docs/ExternalClangExamples.rst
    U src/gnu/llvm/tools/clang/docs/BlockLanguageSpec.rst
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.txt
    U src/gnu/llvm/tools/clang/docs/Toolchain.rst
    U src/gnu/llvm/tools/clang/docs/UsersManual.rst
    U src/gnu/llvm/tools/clang/docs/PCHInternals.rst
    U src/gnu/llvm/tools/clang/docs/ClangTools.rst
    U src/gnu/llvm/tools/clang/docs/IntroductionToTheClangAST.rst
    U src/gnu/llvm/tools/clang/docs/LibFormat.rst
    U src/gnu/llvm/tools/clang/docs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/docs/conf.py
    U src/gnu/llvm/tools/clang/docs/doxygen.cfg.in
    U src/gnu/llvm/tools/clang/docs/LeakSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersTutorial.rst
    U src/gnu/llvm/tools/clang/docs/ThinLTO.rst
    U src/gnu/llvm/tools/clang/docs/HowToSetupToolingForLLVM.rst
    U src/gnu/llvm/tools/clang/docs/CrossCompilation.rst
    U src/gnu/llvm/tools/clang/docs/MSVCCompatibility.rst
    U src/gnu/llvm/tools/clang/docs/ClangCheck.rst
    U src/gnu/llvm/tools/clang/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerCoverage.rst
    U src/gnu/llvm/tools/clang/docs/RAVFrontendAction.rst
    U src/gnu/llvm/tools/clang/docs/LanguageExtensions.rst
    U src/gnu/llvm/tools/clang/docs/PCHLayout.graffle
    U src/gnu/llvm/tools/clang/docs/JSONCompilationDatabase.rst
    U src/gnu/llvm/tools/clang/docs/AutomaticReferenceCounting.rst
    U src/gnu/llvm/tools/clang/docs/Tooling.rst
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.rst
    U src/gnu/llvm/tools/clang/docs/InternalsManual.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/index.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/make.bat
    U src/gnu/llvm/tools/clang/docs/analyzer/DebugChecks.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/RegionStore.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/IPA.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/conf.py
    U src/gnu/llvm/tools/clang/docs/analyzer/nullability.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/docs/CommandGuide/index.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/clang.rst
    U src/gnu/llvm/tools/clang/lib/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFG.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyLogical.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/FormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Dominators.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Consumed.cpp
    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/BodyFarm.h
    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/ScanfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/OSLog.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.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/UninitializedValues.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexSymbol.cpp
    U src/gnu/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.cpp
    U src/gnu/llvm/tools/clang/lib/Index/SimpleFormatContext.h
    U src/gnu/llvm/tools/clang/lib/Index/USRGeneration.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexBody.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.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/CommentToXML.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.h
    U src/gnu/llvm/tools/clang/lib/Basic/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Sanitizers.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CharInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileSystemStatCache.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/LangOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Attributes.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Warnings.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Basic/TokenKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceLocation.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileManager.cpp
    C src/gnu/llvm/tools/clang/lib/Basic/Targets.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Version.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Cuda.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/VersionTuple.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Headers/x86intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdatomic.h
    U src/gnu/llvm/tools/clang/lib/Headers/altivec.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/ia32intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/msa.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/rtmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
    U src/gnu/llvm/tools/clang/lib/Headers/ammintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/unwind.h
    U src/gnu/llvm/tools/clang/lib/Headers/inttypes.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmxlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512bwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fma4intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/wmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
    U src/gnu/llvm/tools/clang/lib/Headers/opencl-c.h
    U src/gnu/llvm/tools/clang/lib/Headers/immintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
    U src/gnu/llvm/tools/clang/lib/Headers/xopintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fxsrintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cpuid.h
    U src/gnu/llvm/tools/clang/lib/Headers/popcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdnoreturn.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
    U src/gnu/llvm/tools/clang/lib/Headers/smmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xtestintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/arm_acle.h
    U src/gnu/llvm/tools/clang/lib/Headers/xmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdbool.h
    U src/gnu/llvm/tools/clang/lib/Headers/float.h
    U src/gnu/llvm/tools/clang/lib/Headers/tmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512cdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512fintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/f16cintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/s390intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/nmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmiintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/module.modulemap
    U src/gnu/llvm/tools/clang/lib/Headers/fmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512pfintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/prfchwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/clflushoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
    U src/gnu/llvm/tools/clang/lib/Headers/rdseedintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/adxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mwaitxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
    U src/gnu/llvm/tools/clang/lib/Headers/emmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pkuintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm3dnow.h
    U src/gnu/llvm/tools/clang/lib/Headers/limits.h
    U src/gnu/llvm/tools/clang/lib/Headers/intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdarg.h
    U src/gnu/llvm/tools/clang/lib/Headers/tbmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512dqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stddef.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdint.h
    U src/gnu/llvm/tools/clang/lib/Headers/iso646.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm_malloc.h
    U src/gnu/llvm/tools/clang/lib/Headers/tgmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/avxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/lzcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/shaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdalign.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/armintr.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512erintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vadefs.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h
    U src/gnu/llvm/tools/clang/lib/Headers/varargs.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavesintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/new
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/complex
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/algorithm
    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/PrintPreprocessedOutput.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.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/SerializedDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CompilerInstance.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/MultiplexConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendActions.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/CreateInvocationFromCommandLine.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.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/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Lexer.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/Preprocessor.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCaching.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
    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/PTHLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderMap.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPExpressions.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPDirectives.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaChecking.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AttributeList.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Sema.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaInit.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DeclSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLambda.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOverload.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAccess.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLookup.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Scope.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaType.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TreeTransform.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCast.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTentative.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/RAIIObjectsForParser.h
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.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/ParsePragma.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseObjc.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseAST.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseInit.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FixIt.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Tooling.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/QualTypeNames.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.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/TransGCCalls.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
    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/TransAPIUses.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Internals.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMT.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/CheckerRegistration.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.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/HTMLDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.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/ProgramState.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.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/ObjCContainersASTChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.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/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/MPIBugReporter.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.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/Format/Encoding.h
    U src/gnu/llvm/tools/clang/lib/Format/Comments.cpp
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
    U src/gnu/llvm/tools/clang/lib/Format/Comments.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/Format.cpp
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.h
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.h
    U src/gnu/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclarationName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Mangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/AttrImpl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclGroup.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypeLoc.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Stmt.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypePrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Expr.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTableBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Decl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTTBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ParentMap.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Type.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprClassification.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentSema.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/OpenMPClause.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXABI.h
    U src/gnu/llvm/tools/clang/lib/AST/StmtIterator.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NSAPI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclFriend.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/AST/ExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTImporter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/APValue.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDumper.cpp
    U src/gnu/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtProfile.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayout.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTContext.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXInheritance.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Comment.cpp
    U src/gnu/llvm/tools/clang/lib/AST/InheritViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RawCommentList.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/Rewrite/HTMLRewrite.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/Serialization/GlobalModuleIndex.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderStmt.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/Serialization/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
    U src/gnu/llvm/tools/clang/lib/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReader.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/VariantValue.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/Registry.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
    U src/gnu/llvm/tools/clang/lib/Edit/Commit.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/EditedSource.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ConstantBuilder.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGException.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/README.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.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/CodeGenModule.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/Address.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuilder.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGValue.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ABIInfo.h
    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/ModuleBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.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/CGObjC.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGClass.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDABuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Tools.h
    U src/gnu/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Types.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/Tools.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Tool.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Phases.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Job.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Distro.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Compilation.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Action.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Driver.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/DriverOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Driver/Multilib.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains.h
    U src/gnu/llvm/tools/clang/lib/Driver/InputInfo.h
    U src/gnu/llvm/runtimes/CMakeLists.txt
    U src/gnu/llvm/runtimes/Components.cmake.in
    U src/gnu/llvm/resources/windows_version_resource.rc
    U src/gnu/llvm/bindings/README.txt
    U src/gnu/llvm/bindings/LLVMBuild.txt
    U src/gnu/llvm/bindings/python/README.txt
    U src/gnu/llvm/bindings/python/llvm/bit_reader.py
    U src/gnu/llvm/bindings/python/llvm/core.py
    U src/gnu/llvm/bindings/python/llvm/enumerations.py
    U src/gnu/llvm/bindings/python/llvm/__init__.py
    U src/gnu/llvm/bindings/python/llvm/object.py
    U src/gnu/llvm/bindings/python/llvm/disassembler.py
    U src/gnu/llvm/bindings/python/llvm/common.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/python/llvm/tests/test.bc
    U src/gnu/llvm/bindings/python/llvm/tests/test_core.py
    U src/gnu/llvm/bindings/python/llvm/tests/base.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_object.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_file
    U src/gnu/llvm/bindings/go/README.txt
    U src/gnu/llvm/bindings/go/build.sh
    U src/gnu/llvm/bindings/go/conftest.go
    U src/gnu/llvm/bindings/go/llvm/string.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/executionengine.go
    U src/gnu/llvm/bindings/go/llvm/transforms_scalar.go
    U src/gnu/llvm/bindings/go/llvm/ir_test.go
    U src/gnu/llvm/bindings/go/llvm/ir.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/bitwriter.go
    U src/gnu/llvm/bindings/go/llvm/transforms_pmbuilder.go
    U src/gnu/llvm/bindings/go/llvm/executionengine_test.go
    U src/gnu/llvm/bindings/go/llvm/support.go
    U src/gnu/llvm/bindings/go/llvm/string_test.go
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.h
    U src/gnu/llvm/bindings/go/llvm/transforms_ipo.go
    U src/gnu/llvm/bindings/go/llvm/analysis.go
    U src/gnu/llvm/bindings/go/llvm/dibuilder.go
    U src/gnu/llvm/bindings/go/llvm/linker.go
    U src/gnu/llvm/bindings/go/llvm/llvm_dep.go
    U src/gnu/llvm/bindings/go/llvm/DIBuilderBindings.h
    U src/gnu/llvm/bindings/go/llvm/llvm_config.go.in
    U src/gnu/llvm/bindings/go/llvm/version.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.h
    U src/gnu/llvm/bindings/go/llvm/bitreader.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.h
    U src/gnu/llvm/bindings/go/llvm/target.go
    U src/gnu/llvm/bindings/go/llvm/DIBuilderBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/transforms_instrumentation.go
    U src/gnu/llvm/bindings/ocaml/README.txt
    U src/gnu/llvm/bindings/ocaml/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.mli
    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.ml
    U src/gnu/llvm/bindings/ocaml/bitwriter/bitwriter_ocaml.c
    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/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/backends/backend_ocaml.c
    U src/gnu/llvm/bindings/ocaml/backends/META.llvm_backend.in
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.ml.in
    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/target/target_ocaml.c
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.ml
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.mli
    U src/gnu/llvm/bindings/ocaml/target/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.ml
    U src/gnu/llvm/bindings/ocaml/analysis/analysis_ocaml.c
    U src/gnu/llvm/bindings/ocaml/analysis/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.mli
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.mli
    U src/gnu/llvm/bindings/ocaml/all_backends/all_backends_ocaml.c
    U src/gnu/llvm/bindings/ocaml/all_backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.ml
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.mli
    U src/gnu/llvm/bindings/ocaml/llvm/META.llvm.in
    U src/gnu/llvm/bindings/ocaml/llvm/llvm_ocaml.c
    U src/gnu/llvm/bindings/ocaml/llvm/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.ml
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.mli
    U src/gnu/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
    U src/gnu/llvm/bindings/ocaml/executionengine/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.ml
    U src/gnu/llvm/bindings/ocaml/transforms/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.ml
    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/vectorize_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/ipo_ocaml.c
    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/ipo/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/utils/llvm_transform_utils.mli
    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/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/llvm_passmgr_builder.ml
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.ml
    U src/gnu/llvm/bindings/ocaml/bitreader/bitreader_ocaml.c
    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/linker/llvm_linker.ml
    U src/gnu/llvm/bindings/ocaml/linker/llvm_linker.mli
    U src/gnu/llvm/bindings/ocaml/linker/linker_ocaml.c
    U src/gnu/llvm/bindings/ocaml/linker/CMakeLists.txt
    U src/gnu/llvm/utils/llvm.grm
    U src/gnu/llvm/utils/llvmdo
    U src/gnu/llvm/utils/codegen-diff
    U src/gnu/llvm/utils/findoptdiff
    U src/gnu/llvm/utils/clang-parse-diagnostics-file
    U src/gnu/llvm/utils/create_ladder_graph.py
    U src/gnu/llvm/utils/shuffle_fuzz.py
    U src/gnu/llvm/utils/schedcover.py
    U src/gnu/llvm/utils/sort_includes.py
    U src/gnu/llvm/utils/llvmgrep
    U src/gnu/llvm/utils/llvm-native-gxx
    U src/gnu/llvm/utils/DSAclean.py
    U src/gnu/llvm/utils/countloc.sh
    U src/gnu/llvm/utils/llvm-compilers-check
    U src/gnu/llvm/utils/findsym.pl
    U src/gnu/llvm/utils/update_llc_test_checks.py
    U src/gnu/llvm/utils/prepare-code-coverage-artifact.py
    U src/gnu/llvm/utils/check-each-file
    U src/gnu/llvm/utils/test_debuginfo.pl
    U src/gnu/llvm/utils/DSAextract.py
    U src/gnu/llvm/utils/findmisopt
    U src/gnu/llvm/utils/update_test_checks.py
    U src/gnu/llvm/utils/UpdateCMakeLists.pl
    U src/gnu/llvm/utils/extract_symbols.py
    U src/gnu/llvm/utils/GetSourceVersion
    U src/gnu/llvm/utils/makellvm
    U src/gnu/llvm/utils/bisect
    U src/gnu/llvm/utils/lldbDataFormatters.py
    U src/gnu/llvm/utils/GenLibDeps.pl
    U src/gnu/llvm/utils/wciia.py
    U src/gnu/llvm/utils/getsrcs.sh
    U src/gnu/llvm/utils/GetRepositoryPath
    U src/gnu/llvm/utils/LLVMBuild.txt
    U src/gnu/llvm/utils/emacs/tablegen-mode.el
    U src/gnu/llvm/utils/emacs/llvm-mode.el
    U src/gnu/llvm/utils/emacs/README
    U src/gnu/llvm/utils/emacs/emacs.el
    U src/gnu/llvm/utils/FileCheck/FileCheck.cpp
    U src/gnu/llvm/utils/FileCheck/CMakeLists.txt
    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/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/vim/ftplugin/llvm.vim
    U src/gnu/llvm/utils/vim/ftplugin/tablegen.vim
    U src/gnu/llvm/utils/release/export.sh
    U src/gnu/llvm/utils/release/build_llvm_package.bat
    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/merge.sh
    U src/gnu/llvm/utils/release/tag.sh
    U src/gnu/llvm/utils/PerfectShuffle/CMakeLists.txt
    U src/gnu/llvm/utils/PerfectShuffle/PerfectShuffle.cpp
    U src/gnu/llvm/utils/Misc/zkill
    U src/gnu/llvm/utils/Target/ARM/analyze-match-table.py
    U src/gnu/llvm/utils/llvm-lit/llvm-lit.in
    U src/gnu/llvm/utils/llvm-lit/CMakeLists.txt
    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/main.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/__init__.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/componentinfo.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/configutil.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/remove_trailing_whitespace.sh
    U src/gnu/llvm/utils/lint/common_lint.py
    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/yaml-bench/YAMLBench.cpp
    U src/gnu/llvm/utils/yaml-bench/CMakeLists.txt
    U src/gnu/llvm/utils/not/CMakeLists.txt
    U src/gnu/llvm/utils/not/not.cpp
    U src/gnu/llvm/utils/opt-viewer/style.css
    U src/gnu/llvm/utils/opt-viewer/opt-viewer.py
    U src/gnu/llvm/utils/LLVMVisualizers/CMakeLists.txt
    U src/gnu/llvm/utils/LLVMVisualizers/llvm.natvis
    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/jedit/README
    U src/gnu/llvm/utils/jedit/tablegen.xml
    U src/gnu/llvm/utils/kate/README
    U src/gnu/llvm/utils/kate/llvm.xml
    U src/gnu/llvm/utils/count/count.c
    U src/gnu/llvm/utils/count/CMakeLists.txt
    U src/gnu/llvm/utils/KillTheDoctor/KillTheDoctor.cpp
    U src/gnu/llvm/utils/KillTheDoctor/CMakeLists.txt
    U src/gnu/llvm/utils/bugpoint/RemoteRunSafely.sh
    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/lit/setup.py
    U src/gnu/llvm/utils/lit/lit.py
    U src/gnu/llvm/utils/lit/README.txt
    U src/gnu/llvm/utils/lit/MANIFEST.in
    U src/gnu/llvm/utils/lit/tests/shtest-shell.py
    U src/gnu/llvm/utils/lit/tests/shtest-output-printing.py
    U src/gnu/llvm/utils/lit/tests/unittest-adaptor.py
    U src/gnu/llvm/utils/lit/tests/max-failures.py
    U src/gnu/llvm/utils/lit/tests/shtest-format.py
    U src/gnu/llvm/utils/lit/tests/lit.cfg
    U src/gnu/llvm/utils/lit/tests/.coveragerc
    U src/gnu/llvm/utils/lit/tests/googletest-upstream-format.py
    U src/gnu/llvm/utils/lit/tests/progress-bar.py
    U src/gnu/llvm/utils/lit/tests/googletest-timeout.py
    U src/gnu/llvm/utils/lit/tests/googletest-format.py
    U src/gnu/llvm/utils/lit/tests/discovery.py
    U src/gnu/llvm/utils/lit/tests/test-output.py
    U src/gnu/llvm/utils/lit/tests/shtest-encoding.py
    U src/gnu/llvm/utils/lit/tests/xunit-output.py
    U src/gnu/llvm/utils/lit/tests/test-data.py
    U src/gnu/llvm/utils/lit/tests/usage.py
    U src/gnu/llvm/utils/lit/tests/shtest-timeout.py
    U src/gnu/llvm/utils/lit/tests/shell-parsing.py
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-two.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/progress-bar/test-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg
    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/shtest-format/xpass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-feature.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-present.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/argv0.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/requires-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-target.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/no-test-line.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/fail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/pass.txt
    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/shtest-format/external_shell/lit.local.cfg
    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.sh
    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/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-in-tree/obj/lit.site.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest
    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
    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-timeout/slow.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/quick_then_slow.py
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-two.txt
    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/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/test-two.txt
    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/exec-discovery/lit.site.cfg
    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/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/metrics.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/redirects.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.sh
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.sh
    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/lit/utils/check-sdist
    U src/gnu/llvm/utils/lit/utils/README.txt
    U src/gnu/llvm/utils/lit/utils/check-coverage
    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
    U src/gnu/llvm/utils/lit/lit/util.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/__init__.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/LitConfig.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/LitTestCase.py
    U src/gnu/llvm/utils/lit/lit/ShCommands.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/formats/__init__.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/base.py
    U src/gnu/llvm/utils/lit/lit/ExampleTests.ObjDir/lit.site.cfg
    U src/gnu/llvm/utils/fpcmp/fpcmp.cpp
    N src/gnu/llvm/utils/sanitizers/ubsan_blacklist.txt
    U src/gnu/llvm/utils/testgen/mc-bundling-x86-gen.py
    U src/gnu/llvm/utils/TableGen/CallingConvEmitter.cpp
    U src/gnu/llvm/utils/TableGen/GlobalISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CTagsEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenMapTable.cpp
    U src/gnu/llvm/utils/TableGen/Types.h
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.h
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.h
    U src/gnu/llvm/utils/TableGen/DAGISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SearchableTableEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherGen.cpp
    U src/gnu/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
    U src/gnu/llvm/utils/TableGen/Types.cpp
    U src/gnu/llvm/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.cpp
    U src/gnu/llvm/utils/TableGen/FastISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.cpp
    U src/gnu/llvm/utils/TableGen/IntrinsicEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.h
    U src/gnu/llvm/utils/TableGen/AsmMatcherEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.h
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
    U src/gnu/llvm/utils/TableGen/CodeEmitterGen.cpp
    U src/gnu/llvm/utils/TableGen/Attributes.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.h
    U src/gnu/llvm/utils/TableGen/CodeGenIntrinsics.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.cpp
    U src/gnu/llvm/utils/TableGen/tdtags
    U src/gnu/llvm/utils/TableGen/SequenceToOffsetTable.h
    U src/gnu/llvm/utils/TableGen/DisassemblerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
    U src/gnu/llvm/utils/TableGen/InstrInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.h
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.h
    U src/gnu/llvm/utils/TableGen/X86DisassemblerShared.h
    U src/gnu/llvm/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.h
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.h
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.h
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.cpp
    U src/gnu/llvm/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/utils/TableGen/OptParserEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/RegisterInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterEmitter.cpp
    U src/gnu/llvm/utils/TableGen/LLVMBuild.txt
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
    U src/gnu/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
    U src/gnu/llvm/utils/unittest/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/LLVMBuild.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/src/gtest-all.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-filepath.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-typed-test.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-port.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-internal-inl.h
    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-printers.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-test-part.cc
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-typed-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-message.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-death-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_pred_impl.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-spi.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-param-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-printers.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-test-part.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-death-test-internal.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-arch.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-port.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-type-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-linked_ptr.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/include/gtest/internal/custom/gtest.h
    U src/gnu/llvm/utils/unittest/UnitTestMain/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/UnitTestMain/TestMain.cpp
    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/src/gmock-all.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-matchers.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-spec-builders.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-internal-utils.cc
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-more-actions.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-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-spec-builders.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-cardinalities.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-nice-strict.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-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/git/find-rev
    U src/gnu/llvm/utils/abtest/mark_armfns.py
    U src/gnu/llvm/utils/abtest/mark_aarch64fns.py
    U src/gnu/llvm/utils/abtest/abtest.py
    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/gdb-scripts/prettyprinters.py
    U src/gnu/llvm/examples/CMakeLists.txt
    U src/gnu/llvm/examples/LLVMBuild.txt
    U src/gnu/llvm/examples/BrainF/BrainFDriver.cpp
    U src/gnu/llvm/examples/BrainF/BrainF.h
    U src/gnu/llvm/examples/BrainF/CMakeLists.txt
    U src/gnu/llvm/examples/BrainF/BrainF.cpp
    U src/gnu/llvm/examples/Fibonacci/fibonacci.cpp
    U src/gnu/llvm/examples/Fibonacci/CMakeLists.txt
    U src/gnu/llvm/examples/ExceptionDemo/ExceptionDemo.cpp
    U src/gnu/llvm/examples/ExceptionDemo/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/CMakeLists.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/MCJIT/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/toy.cpp
    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/cached/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
    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/lazy/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/README.txt
    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/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/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/BuildingAJIT/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/server.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/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/include/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/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/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/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/ParallelJIT/CMakeLists.txt
    U src/gnu/llvm/examples/ParallelJIT/ParallelJIT.cpp
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/_tags
    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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/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/Chapter3/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/_tags
    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/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/codegen.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/Chapter4/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/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/Chapter5/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/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/Chapter6/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/codegen.ml
    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/HowToUseJIT/HowToUseJIT.cpp
    U src/gnu/llvm/examples/HowToUseJIT/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/cmake/nsis_icon.ico
    U src/gnu/llvm/cmake/config-ix.cmake
    U src/gnu/llvm/cmake/README
    U src/gnu/llvm/cmake/config.guess
    U src/gnu/llvm/cmake/dummy.cpp
    U src/gnu/llvm/cmake/nsis_logo.bmp
    U src/gnu/llvm/cmake/platforms/Android.cmake
    U src/gnu/llvm/cmake/platforms/iOS.cmake
    U src/gnu/llvm/cmake/modules/AddOCaml.cmake
    U src/gnu/llvm/cmake/modules/LLVM-Config.cmake
    U src/gnu/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
    U src/gnu/llvm/cmake/modules/FindSphinx.cmake
    U src/gnu/llvm/cmake/modules/CheckAtomic.cmake
    U src/gnu/llvm/cmake/modules/DetermineGCCCompatible.cmake
    U src/gnu/llvm/cmake/modules/FindOCaml.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMOptions.cmake
    U src/gnu/llvm/cmake/modules/GetHostTriple.cmake
    U src/gnu/llvm/cmake/modules/VersionFromVCS.cmake
    U src/gnu/llvm/cmake/modules/CheckLinkerFlag.cmake
    U src/gnu/llvm/cmake/modules/CMakeLists.txt
    U src/gnu/llvm/cmake/modules/AddSphinxTarget.cmake
    U src/gnu/llvm/cmake/modules/GenerateVersionFromCVS.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfig.cmake.in
    U src/gnu/llvm/cmake/modules/GetSVN.cmake
    U src/gnu/llvm/cmake/modules/ChooseMSVCCRT.cmake
    U src/gnu/llvm/cmake/modules/AddLLVMDefinitions.cmake
    U src/gnu/llvm/cmake/modules/LLVMInstallSymlink.cmake
    U src/gnu/llvm/cmake/modules/CrossCompile.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMStdlib.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfigVersion.cmake.in
    U src/gnu/llvm/cmake/modules/LLVMProcessSources.cmake
    U src/gnu/llvm/cmake/modules/CheckCompilerVersion.cmake
    U src/gnu/llvm/cmake/modules/AddLLVM.cmake
    U src/gnu/llvm/cmake/modules/TableGen.cmake
    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/lto.h
    U src/gnu/llvm/include/llvm-c/BitReader.h
    U src/gnu/llvm/include/llvm-c/Core.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/OrcBindings.h
    U src/gnu/llvm/include/llvm-c/module.modulemap
    U src/gnu/llvm/include/llvm-c/LinkTimeOptimizer.h
    U src/gnu/llvm/include/llvm-c/TargetMachine.h
    U src/gnu/llvm/include/llvm-c/ExecutionEngine.h
    U src/gnu/llvm/include/llvm-c/Analysis.h
    U src/gnu/llvm/include/llvm-c/BitWriter.h
    U src/gnu/llvm/include/llvm-c/Linker.h
    U src/gnu/llvm/include/llvm-c/Target.h
    U src/gnu/llvm/include/llvm-c/Initialization.h
    U src/gnu/llvm/include/llvm-c/Support.h
    U src/gnu/llvm/include/llvm-c/IRReader.h
    U src/gnu/llvm/include/llvm-c/Transforms/IPO.h
    U src/gnu/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm-c/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm-c/Transforms/Vectorize.h
    U src/gnu/llvm/include/llvm/LinkAllPasses.h
    U src/gnu/llvm/include/llvm/PassRegistry.h
    U src/gnu/llvm/include/llvm/module.modulemap.build
    U src/gnu/llvm/include/llvm/module.modulemap
    U src/gnu/llvm/include/llvm/PassInfo.h
    U src/gnu/llvm/include/llvm/CMakeLists.txt
    U src/gnu/llvm/include/llvm/Pass.h
    U src/gnu/llvm/include/llvm/PassAnalysisSupport.h
    U src/gnu/llvm/include/llvm/LinkAllIR.h
    U src/gnu/llvm/include/llvm/PassSupport.h
    U src/gnu/llvm/include/llvm/InitializePasses.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolution.h
    U src/gnu/llvm/include/llvm/Analysis/CFG.h
    U src/gnu/llvm/include/llvm/Analysis/InlineCost.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.def
    U src/gnu/llvm/include/llvm/Analysis/CFGPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/GlobalsModRef.h
    U src/gnu/llvm/include/llvm/Analysis/RegionIterator.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalIterator.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/DependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/PtrUseVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/CGSCCPassManager.h
    U src/gnu/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpander.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/PostDominators.h
    U src/gnu/llvm/include/llvm/Analysis/Loads.h
    U src/gnu/llvm/include/llvm/Analysis/LoopPass.h
    U src/gnu/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryBuiltins.h
    U src/gnu/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryLocation.h
    U src/gnu/llvm/include/llvm/Analysis/CaptureTracking.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/AliasSetTracker.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
    U src/gnu/llvm/include/llvm/Analysis/Lint.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/CallPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAnalysisManager.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalPartition.h
    U src/gnu/llvm/include/llvm/Analysis/Interval.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfo.h
    U src/gnu/llvm/include/llvm/Analysis/SparsePropagation.h
    U src/gnu/llvm/include/llvm/Analysis/AssumptionCache.h
    U src/gnu/llvm/include/llvm/Analysis/IVUsers.h
    U src/gnu/llvm/include/llvm/Analysis/DivergenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LoopIterator.h
    U src/gnu/llvm/include/llvm/Analysis/TypeMetadataUtils.h
    U src/gnu/llvm/include/llvm/Analysis/EHPersonalities.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/DemandedBits.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCInstKind.h
    U src/gnu/llvm/include/llvm/Analysis/PHITransAddr.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ConstantFolding.h
    U src/gnu/llvm/include/llvm/Analysis/TargetFolder.h
    U src/gnu/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraphSCCPass.h
    U src/gnu/llvm/include/llvm/Analysis/Passes.h
    U src/gnu/llvm/include/llvm/Analysis/OrderedBasicBlock.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/Trace.h
    U src/gnu/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
    U src/gnu/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
    U src/gnu/llvm/include/llvm/Analysis/LazyValueInfo.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPass.h
    U src/gnu/llvm/include/llvm/Analysis/LazyCallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/ValueTracking.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfo.h
    U src/gnu/llvm/include/llvm/Analysis/InstructionSimplify.h
    U src/gnu/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
    U src/gnu/llvm/include/llvm/Analysis/DomPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/VectorUtils.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
    U src/gnu/llvm/include/llvm/Bitcode/BitCodes.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeReader.h
    U src/gnu/llvm/include/llvm/Bitcode/LLVMBitCodes.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamReader.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriter.h
    U src/gnu/llvm/include/llvm/Transforms/PGOInstrumentation.h
    U src/gnu/llvm/include/llvm/Transforms/InstrProfiling.h
    U src/gnu/llvm/include/llvm/Transforms/GCOVProfiler.h
    U src/gnu/llvm/include/llvm/Transforms/SampleProfile.h
    U src/gnu/llvm/include/llvm/Transforms/ObjCARC.h
    U src/gnu/llvm/include/llvm/Transforms/IPO.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation.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/Coroutines.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionImport.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PartialInlining.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/Inliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/Internalize.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Local.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LCSSA.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CtorUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Evaluator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/MemorySSA.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Cloning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SplitModule.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ValueMapper.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Reassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/BDCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Float2Int.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LICM.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Sink.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/NewGVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SROA.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ADCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.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/LoopIdiomRecognize.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
    U src/gnu/llvm/include/llvm/LibDriver/LibDriver.h
    U src/gnu/llvm/include/llvm/Target/CostTable.h
    U src/gnu/llvm/include/llvm/Target/TargetRegisterInfo.h
    U src/gnu/llvm/include/llvm/Target/Target.td
    U src/gnu/llvm/include/llvm/Target/TargetInstrInfo.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/TargetOpcodes.def
    U src/gnu/llvm/include/llvm/Target/TargetLowering.h
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.td
    U src/gnu/llvm/include/llvm/Target/TargetGlobalISel.td
    U src/gnu/llvm/include/llvm/Target/TargetMachine.h
    U src/gnu/llvm/include/llvm/Target/TargetSubtargetInfo.h
    U src/gnu/llvm/include/llvm/Target/GenericOpcodes.td
    U src/gnu/llvm/include/llvm/Target/TargetOpcodes.h
    U src/gnu/llvm/include/llvm/Target/TargetOptions.h
    U src/gnu/llvm/include/llvm/Target/TargetLoweringObjectFile.h
    U src/gnu/llvm/include/llvm/Target/TargetFrameLowering.h
    U src/gnu/llvm/include/llvm/Target/TargetSchedule.td
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.h
    U src/gnu/llvm/include/llvm/Target/TargetIntrinsicInfo.h
    U src/gnu/llvm/include/llvm/Demangle/Demangle.h
    U src/gnu/llvm/include/llvm/Object/ELF.h
    U src/gnu/llvm/include/llvm/Object/Binary.h
    U src/gnu/llvm/include/llvm/Object/Wasm.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/IRObjectFile.h
    U src/gnu/llvm/include/llvm/Object/SymbolSize.h
    U src/gnu/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
    U src/gnu/llvm/include/llvm/Object/Archive.h
    U src/gnu/llvm/include/llvm/Object/COFFImportFile.h
    U src/gnu/llvm/include/llvm/Object/SymbolicFile.h
    U src/gnu/llvm/include/llvm/Object/MachOUniversal.h
    U src/gnu/llvm/include/llvm/Object/RelocVisitor.h
    U src/gnu/llvm/include/llvm/Object/Decompressor.h
    U src/gnu/llvm/include/llvm/Object/StackMapParser.h
    U src/gnu/llvm/include/llvm/Object/MachO.h
    U src/gnu/llvm/include/llvm/Object/ELFObjectFile.h
    U src/gnu/llvm/include/llvm/Object/ModuleSymbolTable.h
    U src/gnu/llvm/include/llvm/Object/ELFTypes.h
    U src/gnu/llvm/include/llvm/Object/ArchiveWriter.h
    U src/gnu/llvm/include/llvm/Object/Error.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITEventListener.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/MCJIT.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectCache.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITSymbol.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/GenericValue.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Interpreter.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.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/RPCSerialization.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.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/OrcRemoteTargetServer.h
    U src/gnu/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
    U src/gnu/llvm/include/llvm/IR/CFG.h
    U src/gnu/llvm/include/llvm/IR/Instruction.h
    U src/gnu/llvm/include/llvm/IR/ConstantRange.h
    U src/gnu/llvm/include/llvm/IR/GlobalObject.h
    U src/gnu/llvm/include/llvm/IR/PatternMatch.h
    U src/gnu/llvm/include/llvm/IR/ModuleSummaryIndex.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicInst.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsPowerPC.td
    U src/gnu/llvm/include/llvm/IR/Function.h
    U src/gnu/llvm/include/llvm/IR/GlobalIndirectSymbol.h
    U src/gnu/llvm/include/llvm/IR/ValueHandle.h
    U src/gnu/llvm/include/llvm/IR/IRPrintingPasses.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
    U src/gnu/llvm/include/llvm/IR/ConstantFolder.h
    U src/gnu/llvm/include/llvm/IR/OperandTraits.h
    U src/gnu/llvm/include/llvm/IR/ValueMap.h
    U src/gnu/llvm/include/llvm/IR/Metadata.h
    U src/gnu/llvm/include/llvm/IR/Type.h
    U src/gnu/llvm/include/llvm/IR/Statepoint.h
    U src/gnu/llvm/include/llvm/IR/SymbolTableListTraits.h
    U src/gnu/llvm/include/llvm/IR/DataLayout.h
    U src/gnu/llvm/include/llvm/IR/ModuleSlotTracker.h
    U src/gnu/llvm/include/llvm/IR/GlobalAlias.h
    U src/gnu/llvm/include/llvm/IR/Attributes.h
    U src/gnu/llvm/include/llvm/IR/DerivedTypes.h
    U src/gnu/llvm/include/llvm/IR/ValueSymbolTable.h
    U src/gnu/llvm/include/llvm/IR/Attributes.td
    U src/gnu/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticPrinter.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.td
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
    U src/gnu/llvm/include/llvm/IR/IntrinsicsXCore.td
    U src/gnu/llvm/include/llvm/IR/Module.h
    U src/gnu/llvm/include/llvm/IR/InlineAsm.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsX86.td
    U src/gnu/llvm/include/llvm/IR/GlobalValue.h
    U src/gnu/llvm/include/llvm/IR/DebugInfo.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsHexagon.td
    U src/gnu/llvm/include/llvm/IR/Constants.h
    U src/gnu/llvm/include/llvm/IR/TypeFinder.h
    U src/gnu/llvm/include/llvm/IR/MDBuilder.h
    U src/gnu/llvm/include/llvm/IR/InstVisitor.h
    U src/gnu/llvm/include/llvm/IR/DebugLoc.h
    U src/gnu/llvm/include/llvm/IR/DIBuilder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsARM.td
    U src/gnu/llvm/include/llvm/IR/LegacyPassManager.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/Operator.h
    U src/gnu/llvm/include/llvm/IR/InstrTypes.h
    U src/gnu/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
    U src/gnu/llvm/include/llvm/IR/Value.def
    U src/gnu/llvm/include/llvm/IR/Dominators.h
    U src/gnu/llvm/include/llvm/IR/Value.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassNameParser.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticInfo.h
    U src/gnu/llvm/include/llvm/IR/AutoUpgrade.h
    U src/gnu/llvm/include/llvm/IR/Use.h
    U src/gnu/llvm/include/llvm/IR/CallSite.h
    U src/gnu/llvm/include/llvm/IR/Argument.h
    U src/gnu/llvm/include/llvm/IR/PredIteratorCache.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/IntrinsicsAArch64.td
    U src/gnu/llvm/include/llvm/IR/CMakeLists.txt
    U src/gnu/llvm/include/llvm/IR/Verifier.h
    U src/gnu/llvm/include/llvm/IR/ProfileSummary.h
    U src/gnu/llvm/include/llvm/IR/OptBisect.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassManagers.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsMips.td
    U src/gnu/llvm/include/llvm/IR/InstIterator.h
    U src/gnu/llvm/include/llvm/IR/Mangler.h
    U src/gnu/llvm/include/llvm/IR/GVMaterializer.h
    U src/gnu/llvm/include/llvm/IR/UseListOrder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsSystemZ.td
    U src/gnu/llvm/include/llvm/IR/Constant.h
    U src/gnu/llvm/include/llvm/IR/User.h
    U src/gnu/llvm/include/llvm/IR/Instruction.def
    U src/gnu/llvm/include/llvm/IR/Instructions.h
    U src/gnu/llvm/include/llvm/IR/TrackingMDRef.h
    U src/gnu/llvm/include/llvm/IR/IRBuilder.h
    U src/gnu/llvm/include/llvm/IR/PassManager.h
    U src/gnu/llvm/include/llvm/IR/GlobalVariable.h
    U src/gnu/llvm/include/llvm/IR/Metadata.def
    U src/gnu/llvm/include/llvm/IR/LLVMContext.h
    U src/gnu/llvm/include/llvm/IR/NoFolder.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoFlags.def
    U src/gnu/llvm/include/llvm/IR/Comdat.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsBPF.td
    U src/gnu/llvm/include/llvm/IR/TypeBuilder.h
    U src/gnu/llvm/include/llvm/IR/CallingConv.h
    U src/gnu/llvm/include/llvm/IR/GlobalIFunc.h
    U src/gnu/llvm/include/llvm/DebugInfo/DIContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.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/PDBSymbolData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/GenericError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDB.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.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/DIAEnumDebugStreams.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/SymbolStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ModInfo.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/TpiHashing.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/GlobalsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ISectionContribVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/EnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawConstants.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/NameHashTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/ModStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Raw/RawError.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSerializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.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/TypeRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVTypeDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordBuilder.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/SymbolVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDatabase.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVDebugRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/Line.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDumperBase.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolTypes.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/SequencedItemStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamRef.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/ByteStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamReader.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamInterface.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFStreamLayout.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/IMSFFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamWriter.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFError.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/StreamArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.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/DWARFFormValue.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.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/Linker/IRMover.h
    U src/gnu/llvm/include/llvm/Linker/Linker.h
    U src/gnu/llvm/include/llvm/ObjectYAML/MachOYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/DWARFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/YAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/ELFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/ObjectYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/COFFYAML.h
    U src/gnu/llvm/include/llvm/MC/MCWin64EH.h
    U src/gnu/llvm/include/llvm/MC/MCAsmLayout.h
    U src/gnu/llvm/include/llvm/MC/StringTableBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCRegisterInfo.h
    U src/gnu/llvm/include/llvm/MC/MCFixupKindInfo.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolELF.h
    U src/gnu/llvm/include/llvm/MC/MCStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
    U src/gnu/llvm/include/llvm/MC/MCInstrItineraries.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCSchedule.h
    U src/gnu/llvm/include/llvm/MC/MCObjectStreamer.h
    U src/gnu/llvm/include/llvm/MC/SectionKind.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCInstBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCSection.h
    U src/gnu/llvm/include/llvm/MC/MCSymbol.h
    U src/gnu/llvm/include/llvm/MC/MCContext.h
    U src/gnu/llvm/include/llvm/MC/MCInstrAnalysis.h
    U src/gnu/llvm/include/llvm/MC/MCMachObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCValue.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoDarwin.h
    U src/gnu/llvm/include/llvm/MC/MCSubtargetInfo.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCObjectFileInfo.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/MCTargetOptions.h
    U src/gnu/llvm/include/llvm/MC/MCCodeView.h
    U src/gnu/llvm/include/llvm/MC/MCAsmBackend.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolMachO.h
    U src/gnu/llvm/include/llvm/MC/MCExpr.h
    U src/gnu/llvm/include/llvm/MC/MCDirectives.h
    U src/gnu/llvm/include/llvm/MC/MCFixedLenDisassembler.h
    U src/gnu/llvm/include/llvm/MC/LaneBitmask.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfo.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h
    U src/gnu/llvm/include/llvm/MC/MCCodeEmitter.h
    U src/gnu/llvm/include/llvm/MC/MachineLocation.h
    U src/gnu/llvm/include/llvm/MC/MCSectionMachO.h
    U src/gnu/llvm/include/llvm/MC/MCFragment.h
    U src/gnu/llvm/include/llvm/MC/MCSectionCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCSectionELF.h
    U src/gnu/llvm/include/llvm/MC/MCInstrInfo.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoELF.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolCOFF.h
    U src/gnu/llvm/include/llvm/MC/SubtargetFeature.h
    U src/gnu/llvm/include/llvm/MC/MCAssembler.h
    U src/gnu/llvm/include/llvm/MC/MCInstPrinter.h
    U src/gnu/llvm/include/llvm/MC/MCInst.h
    U src/gnu/llvm/include/llvm/MC/MCLabel.h
    U src/gnu/llvm/include/llvm/MC/MCELFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCInstrDesc.h
    U src/gnu/llvm/include/llvm/MC/MCELFStreamer.h
    U src/gnu/llvm/include/llvm/MC/ConstantPools.h
    U src/gnu/llvm/include/llvm/MC/MCWinEH.h
    U src/gnu/llvm/include/llvm/MC/MCFixup.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmCond.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParser.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/MC/MCDisassembler/MCRelocationInfo.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
    U src/gnu/llvm/include/llvm/Support/Casting.h
    U src/gnu/llvm/include/llvm/Support/Format.h
    U src/gnu/llvm/include/llvm/Support/ELF.h
    U src/gnu/llvm/include/llvm/Support/SpecialCaseList.h
    U src/gnu/llvm/include/llvm/Support/Registry.h
    U src/gnu/llvm/include/llvm/Support/COM.h
    U src/gnu/llvm/include/llvm/Support/LICENSE.TXT
    U src/gnu/llvm/include/llvm/Support/TypeName.h
    U src/gnu/llvm/include/llvm/Support/StringSaver.h
    U src/gnu/llvm/include/llvm/Support/FormattedStream.h
    U src/gnu/llvm/include/llvm/Support/Compiler.h
    U src/gnu/llvm/include/llvm/Support/AtomicOrdering.h
    U src/gnu/llvm/include/llvm/Support/FormatCommon.h
    U src/gnu/llvm/include/llvm/Support/WindowsError.h
    U src/gnu/llvm/include/llvm/Support/Wasm.h
    U src/gnu/llvm/include/llvm/Support/RandomNumberGenerator.h
    U src/gnu/llvm/include/llvm/Support/CommandLine.h
    U src/gnu/llvm/include/llvm/Support/YAMLTraits.h
    U src/gnu/llvm/include/llvm/Support/TarWriter.h
    U src/gnu/llvm/include/llvm/Support/SwapByteOrder.h
    U src/gnu/llvm/include/llvm/Support/ARMEHABI.h
    U src/gnu/llvm/include/llvm/Support/Dwarf.def
    U src/gnu/llvm/include/llvm/Support/AlignOf.h
    U src/gnu/llvm/include/llvm/Support/Chrono.h
    U src/gnu/llvm/include/llvm/Support/AArch64TargetParser.def
    U src/gnu/llvm/include/llvm/Support/Options.h
    U src/gnu/llvm/include/llvm/Support/Memory.h
    U src/gnu/llvm/include/llvm/Support/Program.h
    U src/gnu/llvm/include/llvm/Support/Regex.h
    U src/gnu/llvm/include/llvm/Support/Valgrind.h
    U src/gnu/llvm/include/llvm/Support/Path.h
    U src/gnu/llvm/include/llvm/Support/Unicode.h
    U src/gnu/llvm/include/llvm/Support/UnicodeCharRanges.h
    U src/gnu/llvm/include/llvm/Support/COFF.h
    U src/gnu/llvm/include/llvm/Support/Printable.h
    U src/gnu/llvm/include/llvm/Support/Locale.h
    U src/gnu/llvm/include/llvm/Support/LineIterator.h
    U src/gnu/llvm/include/llvm/Support/Host.h
    U src/gnu/llvm/include/llvm/Support/ArrayRecycler.h
    U src/gnu/llvm/include/llvm/Support/ThreadLocal.h
    U src/gnu/llvm/include/llvm/Support/StringPool.h
    U src/gnu/llvm/include/llvm/Support/Capacity.h
    U src/gnu/llvm/include/llvm/Support/ErrorHandling.h
    U src/gnu/llvm/include/llvm/Support/ARMTargetParser.def
    U src/gnu/llvm/include/llvm/Support/Watchdog.h
    U src/gnu/llvm/include/llvm/Support/NativeFormatting.h
    U src/gnu/llvm/include/llvm/Support/raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/CodeGenCWrappers.h
    U src/gnu/llvm/include/llvm/Support/ToolOutputFile.h
    U src/gnu/llvm/include/llvm/Support/GlobPattern.h
    U src/gnu/llvm/include/llvm/Support/YAMLParser.h
    U src/gnu/llvm/include/llvm/Support/BlockFrequency.h
    U src/gnu/llvm/include/llvm/Support/SHA1.h
    U src/gnu/llvm/include/llvm/Support/DOTGraphTraits.h
    U src/gnu/llvm/include/llvm/Support/Win64EH.h
    U src/gnu/llvm/include/llvm/Support/UniqueLock.h
    U src/gnu/llvm/include/llvm/Support/ScaledNumber.h
    U src/gnu/llvm/include/llvm/Support/circular_raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/Signals.h
    U src/gnu/llvm/include/llvm/Support/TrailingObjects.h
    U src/gnu/llvm/include/llvm/Support/TargetRegistry.h
    U src/gnu/llvm/include/llvm/Support/type_traits.h
    U src/gnu/llvm/include/llvm/Support/FormatVariadicDetails.h
    U src/gnu/llvm/include/llvm/Support/ConvertUTF.h
    U src/gnu/llvm/include/llvm/Support/BranchProbability.h
    U src/gnu/llvm/include/llvm/Support/JamCRC.h
    U src/gnu/llvm/include/llvm/Support/DataExtractor.h
    U src/gnu/llvm/include/llvm/Support/PointerLikeTypeTraits.h
    U src/gnu/llvm/include/llvm/Support/MachO.h
    U src/gnu/llvm/include/llvm/Support/PrettyStackTrace.h
    U src/gnu/llvm/include/llvm/Support/Solaris.h
    U src/gnu/llvm/include/llvm/Support/raw_sha1_ostream.h
    U src/gnu/llvm/include/llvm/Support/Threading.h
    U src/gnu/llvm/include/llvm/Support/Recycler.h
    U src/gnu/llvm/include/llvm/Support/Compression.h
    U src/gnu/llvm/include/llvm/Support/SMLoc.h
    U src/gnu/llvm/include/llvm/Support/raw_os_ostream.h
    U src/gnu/llvm/include/llvm/Support/ARMWinEH.h
    U src/gnu/llvm/include/llvm/Support/thread.h
    U src/gnu/llvm/include/llvm/Support/Atomic.h
    U src/gnu/llvm/include/llvm/Support/CodeGen.h
    U src/gnu/llvm/include/llvm/Support/TrigramIndex.h
    U src/gnu/llvm/include/llvm/Support/FileOutputBuffer.h
    U src/gnu/llvm/include/llvm/Support/ARMBuildAttributes.h
    U src/gnu/llvm/include/llvm/Support/EndianStream.h
    U src/gnu/llvm/include/llvm/Support/Allocator.h
    U src/gnu/llvm/include/llvm/Support/DataTypes.h.cmake
    U src/gnu/llvm/include/llvm/Support/MD5.h
    U src/gnu/llvm/include/llvm/Support/FileSystem.h
    U src/gnu/llvm/include/llvm/Support/SaveAndRestore.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTree.h
    U src/gnu/llvm/include/llvm/Support/Errc.h
    U src/gnu/llvm/include/llvm/Support/OnDiskHashTable.h
    U src/gnu/llvm/include/llvm/Support/RecyclingAllocator.h
    U src/gnu/llvm/include/llvm/Support/MathExtras.h
    U src/gnu/llvm/include/llvm/Support/Debug.h
    U src/gnu/llvm/include/llvm/Support/CBindingWrapping.h
    U src/gnu/llvm/include/llvm/Support/SourceMgr.h
    U src/gnu/llvm/include/llvm/Support/MachO.def
    U src/gnu/llvm/include/llvm/Support/Process.h
    U src/gnu/llvm/include/llvm/Support/Dwarf.h
    U src/gnu/llvm/include/llvm/Support/ScopedPrinter.h
    U src/gnu/llvm/include/llvm/Support/CrashRecoveryContext.h
    U src/gnu/llvm/include/llvm/Support/Errno.h
    U src/gnu/llvm/include/llvm/Support/Endian.h
    U src/gnu/llvm/include/llvm/Support/xxhash.h
    U src/gnu/llvm/include/llvm/Support/GCOV.h
    U src/gnu/llvm/include/llvm/Support/MemoryBuffer.h
    U src/gnu/llvm/include/llvm/Support/TargetSelect.h
    U src/gnu/llvm/include/llvm/Support/RWMutex.h
    U src/gnu/llvm/include/llvm/Support/CachePruning.h
    U src/gnu/llvm/include/llvm/Support/ManagedStatic.h
    U src/gnu/llvm/include/llvm/Support/GraphWriter.h
    U src/gnu/llvm/include/llvm/Support/TargetParser.h
    U src/gnu/llvm/include/llvm/Support/PluginLoader.h
    U src/gnu/llvm/include/llvm/Support/MipsABIFlags.h
    U src/gnu/llvm/include/llvm/Support/ErrorOr.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTreeConstruction.h
    U src/gnu/llvm/include/llvm/Support/FormatAdapters.h
    U src/gnu/llvm/include/llvm/Support/FormatVariadic.h
    U src/gnu/llvm/include/llvm/Support/Timer.h
    U src/gnu/llvm/include/llvm/Support/SystemUtils.h
    U src/gnu/llvm/include/llvm/Support/ThreadPool.h
    U src/gnu/llvm/include/llvm/Support/FileUtilities.h
    U src/gnu/llvm/include/llvm/Support/Error.h
    U src/gnu/llvm/include/llvm/Support/LockFileManager.h
    U src/gnu/llvm/include/llvm/Support/Mutex.h
    U src/gnu/llvm/include/llvm/Support/DynamicLibrary.h
    U src/gnu/llvm/include/llvm/Support/FormatProviders.h
    U src/gnu/llvm/include/llvm/Support/MutexGuard.h
    U src/gnu/llvm/include/llvm/Support/LEB128.h
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AArch64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AVR.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Lanai.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Hexagon.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Mips.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/WebAssembly.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/SystemZ.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/Sparc.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/AMDGPU.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/ARM.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/RISCV.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/BPF.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/i386.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/x86_64.def
    U src/gnu/llvm/include/llvm/Support/ELFRelocs/PowerPC.def
    U src/gnu/llvm/include/llvm/ProfileData/ProfileCommon.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfData.inc
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProf.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProf.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/include/llvm/LineEditor/LineEditor.h
    U src/gnu/llvm/include/llvm/IRReader/IRReader.h
    U src/gnu/llvm/include/llvm/Passes/PassBuilder.h
    U src/gnu/llvm/include/llvm/LTO/LTOBackend.h
    U src/gnu/llvm/include/llvm/LTO/LTO.h
    U src/gnu/llvm/include/llvm/LTO/Caching.h
    U src/gnu/llvm/include/llvm/LTO/Config.h
    U src/gnu/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.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/LTOModule.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/TableGen/SearchableTable.td
    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/TableGenBackend.h
    U src/gnu/llvm/include/llvm/TableGen/StringToOffsetTable.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/Error.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionPass.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePostDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/SlotIndexes.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDFS.h
    U src/gnu/llvm/include/llvm/CodeGen/StackMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBasicBlock.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
    U src/gnu/llvm/include/llvm/CodeGen/DIE.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadata.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundle.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
    U src/gnu/llvm/include/llvm/CodeGen/DFAPacketizer.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
    U src/gnu/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
    U src/gnu/llvm/include/llvm/CodeGen/DIEValue.def
    U src/gnu/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
    U src/gnu/llvm/include/llvm/CodeGen/GCs.h
    U src/gnu/llvm/include/llvm/CodeGen/BasicTTIImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/EdgeBundles.h
    U src/gnu/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/AsmPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveInterval.h
    U src/gnu/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h
    U src/gnu/llvm/include/llvm/CodeGen/CallingConvLower.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/FastISel.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetPassConfig.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineValueType.h
    U src/gnu/llvm/include/llvm/CodeGen/SchedulerRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineMemOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/PseudoSourceValue.h
    U src/gnu/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstr.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/VirtRegMap.h
    U src/gnu/llvm/include/llvm/CodeGen/TailDuplicator.h
    U src/gnu/llvm/include/llvm/CodeGen/LexicalScopes.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/FaultMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/CalcSpillWeights.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterClassInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineScheduler.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.h
    U src/gnu/llvm/include/llvm/CodeGen/IntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/ISDOpcodes.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/RegAllocPBQP.h
    U src/gnu/llvm/include/llvm/CodeGen/LivePhysRegs.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetSchedule.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunction.h
    U src/gnu/llvm/include/llvm/CodeGen/LowLevelType.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRangeEdit.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineLoopInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterPressure.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
    U src/gnu/llvm/include/llvm/CodeGen/MachORelocation.h
    U src/gnu/llvm/include/llvm/CodeGen/CommandFlags.h
    U src/gnu/llvm/include/llvm/CodeGen/ParallelCG.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/Passes.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePassRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.td
    U src/gnu/llvm/include/llvm/CodeGen/MIRYamlMapping.h
    U src/gnu/llvm/include/llvm/CodeGen/Analysis.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegionInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveVariables.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFrameInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveStackAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/StackProtector.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterScavenging.h
    U src/gnu/llvm/include/llvm/CodeGen/GCStrategy.h
    U src/gnu/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRegMatrix.h
    U src/gnu/llvm/include/llvm/CodeGen/DAGCombine.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGISel.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Math.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/Solution.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/MachineIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Types.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/InstructionSelect.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/GISelAccessor.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
    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/Arg.h
    U src/gnu/llvm/include/llvm/Option/OptParser.td
    U src/gnu/llvm/include/llvm/Option/ArgList.h
    U src/gnu/llvm/include/llvm/Option/Option.h
    U src/gnu/llvm/include/llvm/Config/llvm-config.h.cmake
    U src/gnu/llvm/include/llvm/Config/Targets.def.in
    U src/gnu/llvm/include/llvm/Config/AsmParsers.def.in
    U src/gnu/llvm/include/llvm/Config/Disassemblers.def.in
    U src/gnu/llvm/include/llvm/Config/abi-breaking.h.cmake
    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/ADT/ImmutableList.h
    U src/gnu/llvm/include/llvm/ADT/SetVector.h
    U src/gnu/llvm/include/llvm/ADT/ilist_base.h
    U src/gnu/llvm/include/llvm/ADT/IntrusiveRefCntPtr.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/AllocatorList.h
    U src/gnu/llvm/include/llvm/ADT/ScopedHashTable.h
    U src/gnu/llvm/include/llvm/ADT/DepthFirstIterator.h
    U src/gnu/llvm/include/llvm/ADT/Hashing.h
    U src/gnu/llvm/include/llvm/ADT/PackedVector.h
    U src/gnu/llvm/include/llvm/ADT/TinyPtrVector.h
    U src/gnu/llvm/include/llvm/ADT/edit_distance.h
    U src/gnu/llvm/include/llvm/ADT/VariadicFunction.h
    U src/gnu/llvm/include/llvm/ADT/StringSet.h
    U src/gnu/llvm/include/llvm/ADT/SmallPtrSet.h
    U src/gnu/llvm/include/llvm/ADT/iterator.h
    U src/gnu/llvm/include/llvm/ADT/APFloat.h
    U src/gnu/llvm/include/llvm/ADT/Optional.h
    U src/gnu/llvm/include/llvm/ADT/SCCIterator.h
    U src/gnu/llvm/include/llvm/ADT/STLExtras.h
    U src/gnu/llvm/include/llvm/ADT/CachedHashString.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/FoldingSet.h
    U src/gnu/llvm/include/llvm/ADT/SmallSet.h
    U src/gnu/llvm/include/llvm/ADT/Triple.h
    U src/gnu/llvm/include/llvm/ADT/IndexedMap.h
    U src/gnu/llvm/include/llvm/ADT/Statistic.h
    U src/gnu/llvm/include/llvm/ADT/ilist_iterator.h
    U src/gnu/llvm/include/llvm/ADT/DenseSet.h
    U src/gnu/llvm/include/llvm/ADT/EpochTracker.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node.h
    U src/gnu/llvm/include/llvm/ADT/SmallVector.h
    U src/gnu/llvm/include/llvm/ADT/GraphTraits.h
    U src/gnu/llvm/include/llvm/ADT/Twine.h
    U src/gnu/llvm/include/llvm/ADT/None.h
    U src/gnu/llvm/include/llvm/ADT/SmallString.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/ImmutableMap.h
    U src/gnu/llvm/include/llvm/ADT/PointerEmbeddedInt.h
    U src/gnu/llvm/include/llvm/ADT/ilist.h
    U src/gnu/llvm/include/llvm/ADT/IntervalMap.h
    U src/gnu/llvm/include/llvm/ADT/StringSwitch.h
    U src/gnu/llvm/include/llvm/ADT/StringRef.h
    U src/gnu/llvm/include/llvm/ADT/PriorityWorklist.h
    U src/gnu/llvm/include/llvm/ADT/Sequence.h
    U src/gnu/llvm/include/llvm/ADT/DenseMapInfo.h
    U src/gnu/llvm/include/llvm/ADT/iterator_range.h
    U src/gnu/llvm/include/llvm/ADT/SmallBitVector.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableSet.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node_options.h
    U src/gnu/llvm/include/llvm/ADT/BitmaskEnum.h
    U src/gnu/llvm/include/llvm/ADT/SetOperations.h
    U src/gnu/llvm/include/llvm/ADT/PointerSumType.h
    U src/gnu/llvm/include/llvm/ADT/SparseSet.h
    U src/gnu/llvm/include/llvm/ADT/StringMap.h
    U src/gnu/llvm/include/llvm/ADT/PriorityQueue.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node_base.h
    U src/gnu/llvm/include/llvm/ADT/simple_ilist.h
    U src/gnu/llvm/include/llvm/ADT/MapVector.h
    U src/gnu/llvm/include/llvm/ADT/PointerIntPair.h
    U src/gnu/llvm/include/llvm/ADT/DenseMap.h
    U src/gnu/llvm/include/llvm/ADT/PostOrderIterator.h
    U src/gnu/llvm/include/llvm/ADT/EquivalenceClasses.h
    U src/gnu/llvm/include/llvm/ADT/StringExtras.h
    U src/gnu/llvm/include/llvm/ADT/BitVector.h
    U src/gnu/llvm/include/llvm/ADT/SparseBitVector.h
    U src/gnu/llvm/include/llvm/ADT/SparseMultiSet.h
    U src/gnu/llvm/include/llvm/ADT/IntEqClasses.h
    U src/gnu/llvm/include/llvm/ADT/PointerUnion.h
    U src/gnu/llvm/include/llvm/ADT/DeltaAlgorithm.h
    U src/gnu/llvm/include/llvm/XRay/XRayRecord.h
    U src/gnu/llvm/include/llvm/XRay/YAMLXRayRecord.h
    U src/gnu/llvm/include/llvm/XRay/Trace.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/Analysis/CGSCCPassManagerTest.cpp
    U src/gnu/llvm/unittests/Analysis/BranchProbabilityInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/UnrollAnalyzer.cpp
    U src/gnu/llvm/unittests/Analysis/CFGTest.cpp
    U src/gnu/llvm/unittests/Analysis/MemoryBuiltinsTest.cpp
    U src/gnu/llvm/unittests/Analysis/CMakeLists.txt
    U src/gnu/llvm/unittests/Analysis/CallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
    U src/gnu/llvm/unittests/Analysis/ValueTrackingTest.cpp
    U src/gnu/llvm/unittests/Analysis/LazyCallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/AliasAnalysisTest.cpp
    U src/gnu/llvm/unittests/Analysis/TBAATest.cpp
    U src/gnu/llvm/unittests/Analysis/BlockFrequencyInfoTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/CMakeLists.txt
    U src/gnu/llvm/unittests/Bitcode/BitstreamReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitstreamWriterTest.cpp
    U src/gnu/llvm/unittests/Transforms/CMakeLists.txt
    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/Cloning.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ASanStackFrameLayoutTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/MemorySSA.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/Local.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Utils/FunctionComparator.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp
    U src/gnu/llvm/unittests/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp
    U src/gnu/llvm/unittests/Target/CMakeLists.txt
    U src/gnu/llvm/unittests/Target/AArch64/InstSizes.cpp
    U src/gnu/llvm/unittests/Target/AArch64/CMakeLists.txt
    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/MCJITMemoryManagerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTests.def
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectTransformLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/GlobalMappingLayerTest.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/OrcCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectLinkingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CompileOnDemandLayerTest.cpp
    U src/gnu/llvm/unittests/IR/UserTest.cpp
    U src/gnu/llvm/unittests/IR/InstructionsTest.cpp
    U src/gnu/llvm/unittests/IR/DebugTypeODRUniquingTest.cpp
    U src/gnu/llvm/unittests/IR/WaymarkTest.cpp
    U src/gnu/llvm/unittests/IR/IRBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantRangeTest.cpp
    U src/gnu/llvm/unittests/IR/IntrinsicsTest.cpp
    U src/gnu/llvm/unittests/IR/ValueMapTest.cpp
    U src/gnu/llvm/unittests/IR/TypeBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/MDBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/ValueTest.cpp
    U src/gnu/llvm/unittests/IR/AsmWriterTest.cpp
    U src/gnu/llvm/unittests/IR/MetadataTest.cpp
    U src/gnu/llvm/unittests/IR/PassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/UseTest.cpp
    U src/gnu/llvm/unittests/IR/FunctionTest.cpp
    U src/gnu/llvm/unittests/IR/DominatorTreeTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantsTest.cpp
    U src/gnu/llvm/unittests/IR/DebugInfoTest.cpp
    U src/gnu/llvm/unittests/IR/LegacyPassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/ModuleTest.cpp
    U src/gnu/llvm/unittests/IR/VerifierTest.cpp
    U src/gnu/llvm/unittests/IR/CMakeLists.txt
    U src/gnu/llvm/unittests/IR/AttributesTest.cpp
    U src/gnu/llvm/unittests/IR/PatternMatch.cpp
    U src/gnu/llvm/unittests/IR/TypesTest.cpp
    U src/gnu/llvm/unittests/IR/ValueHandleTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/PDB/MSFBuilderTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/ErrorChecking.h
    U src/gnu/llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/PDB/MappedBlockStreamTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/PDBApiTest.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/DwarfGenerator.h
    U src/gnu/llvm/unittests/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp
    U src/gnu/llvm/unittests/Linker/LinkModulesTest.cpp
    U src/gnu/llvm/unittests/Linker/CMakeLists.txt
    U src/gnu/llvm/unittests/ObjectYAML/YAMLTest.cpp
    U src/gnu/llvm/unittests/ObjectYAML/CMakeLists.txt
    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/Support/GlobPatternTest.cpp
    U src/gnu/llvm/unittests/Support/TrigramIndexTest.cpp
    U src/gnu/llvm/unittests/Support/Host.cpp
    U src/gnu/llvm/unittests/Support/raw_sha1_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/ReplaceFileTest.cpp
    U src/gnu/llvm/unittests/Support/StringPool.cpp
    U src/gnu/llvm/unittests/Support/Chrono.cpp
    U src/gnu/llvm/unittests/Support/AlignOfTest.cpp
    U src/gnu/llvm/unittests/Support/SpecialCaseListTest.cpp
    U src/gnu/llvm/unittests/Support/ProcessTest.cpp
    U src/gnu/llvm/unittests/Support/BranchProbabilityTest.cpp
    U src/gnu/llvm/unittests/Support/DataExtractorTest.cpp
    U src/gnu/llvm/unittests/Support/UnicodeTest.cpp
    U src/gnu/llvm/unittests/Support/Path.cpp
    U src/gnu/llvm/unittests/Support/MemoryBufferTest.cpp
    U src/gnu/llvm/unittests/Support/ErrorTest.cpp
    U src/gnu/llvm/unittests/Support/TypeNameTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLIOTest.cpp
    U src/gnu/llvm/unittests/Support/FileOutputBufferTest.cpp
    U src/gnu/llvm/unittests/Support/TarWriterTest.cpp
    U src/gnu/llvm/unittests/Support/ArrayRecyclerTest.cpp
    U src/gnu/llvm/unittests/Support/AllocatorTest.cpp
    U src/gnu/llvm/unittests/Support/ErrorOrTest.cpp
    U src/gnu/llvm/unittests/Support/CompressionTest.cpp
    U src/gnu/llvm/unittests/Support/raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/MD5Test.cpp
    U src/gnu/llvm/unittests/Support/TimerTest.cpp
    U src/gnu/llvm/unittests/Support/RegexTest.cpp
    U src/gnu/llvm/unittests/Support/MathExtrasTest.cpp
    U src/gnu/llvm/unittests/Support/DebugTest.cpp
    U src/gnu/llvm/unittests/Support/xxhashTest.cpp
    U src/gnu/llvm/unittests/Support/CMakeLists.txt
    U src/gnu/llvm/unittests/Support/Casting.cpp
    U src/gnu/llvm/unittests/Support/TrailingObjectsTest.cpp
    U src/gnu/llvm/unittests/Support/NativeFormatTests.cpp
    U src/gnu/llvm/unittests/Support/raw_pwrite_stream_test.cpp
    U src/gnu/llvm/unittests/Support/BlockFrequencyTest.cpp
    U src/gnu/llvm/unittests/Support/ConvertUTFTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadLocalTest.cpp
    U src/gnu/llvm/unittests/Support/LineIteratorTest.cpp
    U src/gnu/llvm/unittests/Support/FormatVariadicTest.cpp
    U src/gnu/llvm/unittests/Support/SwapByteOrderTest.cpp
    U src/gnu/llvm/unittests/Support/CommandLineTest.cpp
    U src/gnu/llvm/unittests/Support/formatted_raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/SourceMgrTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLParserTest.cpp
    U src/gnu/llvm/unittests/Support/ManagedStatic.cpp
    U src/gnu/llvm/unittests/Support/LockFileManagerTest.cpp
    U src/gnu/llvm/unittests/Support/TargetParserTest.cpp
    U src/gnu/llvm/unittests/Support/MemoryTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadPool.cpp
    U src/gnu/llvm/unittests/Support/DwarfTest.cpp
    U src/gnu/llvm/unittests/Support/LEB128Test.cpp
    U src/gnu/llvm/unittests/Support/EndianTest.cpp
    U src/gnu/llvm/unittests/Support/Threading.cpp
    U src/gnu/llvm/unittests/Support/ProgramTest.cpp
    U src/gnu/llvm/unittests/Support/EndianStreamTest.cpp
    U src/gnu/llvm/unittests/Support/ScaledNumberTest.cpp
    U src/gnu/llvm/unittests/ProfileData/SampleProfTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CoverageMappingTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CMakeLists.txt
    U src/gnu/llvm/unittests/ProfileData/InstrProfTest.cpp
    U src/gnu/llvm/unittests/LineEditor/LineEditor.cpp
    U src/gnu/llvm/unittests/LineEditor/CMakeLists.txt
    U src/gnu/llvm/unittests/AsmParser/AsmParserTest.cpp
    U src/gnu/llvm/unittests/AsmParser/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/LowLevelTypeTest.cpp
    U src/gnu/llvm/unittests/CodeGen/MachineInstrBundleIteratorTest.cpp
    U src/gnu/llvm/unittests/CodeGen/DIEHashTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/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
    U src/gnu/llvm/unittests/MI/CMakeLists.txt
    U src/gnu/llvm/unittests/MI/LiveIntervalTest.cpp
    U src/gnu/llvm/unittests/ADT/TwineTest.cpp
    U src/gnu/llvm/unittests/ADT/IListBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/PackedVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableSetTest.cpp
    U src/gnu/llvm/unittests/ADT/OptionalTest.cpp
    U src/gnu/llvm/unittests/ADT/TestGraph.h
    U src/gnu/llvm/unittests/ADT/FoldingSet.cpp
    U src/gnu/llvm/unittests/ADT/PointerUnionTest.cpp
    U src/gnu/llvm/unittests/ADT/HashingTest.cpp
    U src/gnu/llvm/unittests/ADT/APSIntTest.cpp
    U src/gnu/llvm/unittests/ADT/STLExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/IntervalMapTest.cpp
    U src/gnu/llvm/unittests/ADT/BitmaskEnumTest.cpp
    U src/gnu/llvm/unittests/ADT/PostOrderIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/RangeAdapterTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallPtrSetTest.cpp
    U src/gnu/llvm/unittests/ADT/MakeUniqueTest.cpp
    U src/gnu/llvm/unittests/ADT/APFloatTest.cpp
    U src/gnu/llvm/unittests/ADT/PriorityWorklistTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallStringTest.cpp
    U src/gnu/llvm/unittests/ADT/IListTest.cpp
    U src/gnu/llvm/unittests/ADT/ScopeExitTest.cpp
    U src/gnu/llvm/unittests/ADT/IListSentinelTest.cpp
    U src/gnu/llvm/unittests/ADT/SCCIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerEmbeddedIntTest.cpp
    U src/gnu/llvm/unittests/ADT/TripleTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseMultiSetTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/StringSwitchTest.cpp
    U src/gnu/llvm/unittests/ADT/StringMapTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerSumTypeTest.cpp
    U src/gnu/llvm/unittests/ADT/SimpleIListTest.cpp
    U src/gnu/llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp
    U src/gnu/llvm/unittests/ADT/IListNodeTest.cpp
    U src/gnu/llvm/unittests/ADT/IListNodeBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/SequenceTest.cpp
    U src/gnu/llvm/unittests/ADT/IListIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerIntPairTest.cpp
    U src/gnu/llvm/unittests/ADT/FunctionRefTest.cpp
    U src/gnu/llvm/unittests/ADT/IntEqClassesTest.cpp
    U src/gnu/llvm/unittests/ADT/TinyPtrVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SetVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/StringRefTest.cpp
    U src/gnu/llvm/unittests/ADT/CMakeLists.txt
    U src/gnu/llvm/unittests/ADT/ArrayRefTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseMapTest.cpp
    U src/gnu/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseBitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/ReverseIterationTest.cpp
    U src/gnu/llvm/unittests/ADT/APIntTest.cpp
    U src/gnu/llvm/unittests/ADT/MapVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/BumpPtrListTest.cpp
    U src/gnu/llvm/unittests/ADT/DepthFirstIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/VariadicFunctionTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableMapTest.cpp
    U src/gnu/llvm/unittests/ADT/DeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/IteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/StringExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/BitVectorTest.cpp
    U src/gnu/llvm/docs/ARM-BE-ld1.png
    U src/gnu/llvm/docs/Passes.rst
    U src/gnu/llvm/docs/Statepoints.rst
    U src/gnu/llvm/docs/ExceptionHandling.rst
    U src/gnu/llvm/docs/Projects.rst
    U src/gnu/llvm/docs/SphinxQuickstartTemplate.rst
    U src/gnu/llvm/docs/CodeOfConduct.rst
    U src/gnu/llvm/docs/ARM-BE-ldr.png
    U src/gnu/llvm/docs/MCJIT-resolve-relocations.png
    U src/gnu/llvm/docs/linpack-pc.png
    U src/gnu/llvm/docs/ExtendingLLVM.rst
    U src/gnu/llvm/docs/index.rst
    U src/gnu/llvm/docs/README.txt
    U src/gnu/llvm/docs/AdvancedBuilds.rst
    U src/gnu/llvm/docs/SystemLibrary.rst
    U src/gnu/llvm/docs/CoverageMappingFormat.rst
    U src/gnu/llvm/docs/ProgrammersManual.rst
    U src/gnu/llvm/docs/make.bat
    U src/gnu/llvm/docs/doxygen-mainpage.dox
    U src/gnu/llvm/docs/MergeFunctions.rst
    U src/gnu/llvm/docs/HowToUseAttributes.rst
    U src/gnu/llvm/docs/HowToReleaseLLVM.rst
    U src/gnu/llvm/docs/WritingAnLLVMPass.rst
    U src/gnu/llvm/docs/FAQ.rst
    U src/gnu/llvm/docs/InAlloca.rst
    U src/gnu/llvm/docs/TypeMetadata.rst
    U src/gnu/llvm/docs/ReportingGuide.rst
    U src/gnu/llvm/docs/BlockFrequencyTerminology.rst
    U src/gnu/llvm/docs/HowToBuildOnARM.rst
    U src/gnu/llvm/docs/BitCodeFormat.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastfail.png
    U src/gnu/llvm/docs/DeveloperPolicy.rst
    U src/gnu/llvm/docs/Packaging.rst
    U src/gnu/llvm/docs/AliasAnalysis.rst
    U src/gnu/llvm/docs/MCJITDesignAndImplementation.rst
    U src/gnu/llvm/docs/ReleaseProcess.rst
    U src/gnu/llvm/docs/OptBisect.rst
    U src/gnu/llvm/docs/CodingStandards.rst
    U src/gnu/llvm/docs/Lexicon.rst
    U src/gnu/llvm/docs/re_format.7
    U src/gnu/llvm/docs/gcc-loops.png
    U src/gnu/llvm/docs/Makefile.sphinx
    U src/gnu/llvm/docs/LibFuzzer.rst
    U src/gnu/llvm/docs/TableGenFundamentals.rst
    U src/gnu/llvm/docs/MCJIT-creation.png
    U src/gnu/llvm/docs/GarbageCollection.rst
    U src/gnu/llvm/docs/SegmentedStacks.rst
    U src/gnu/llvm/docs/NVPTXUsage.rst
    U src/gnu/llvm/docs/SourceLevelDebugging.rst
    U src/gnu/llvm/docs/MCJIT-dyld-load.png
    U src/gnu/llvm/docs/MarkedUpDisassembly.rst
    U src/gnu/llvm/docs/ScudoHardenedAllocator.rst
    U src/gnu/llvm/docs/Extensions.rst
    U src/gnu/llvm/docs/HowToAddABuilder.rst
    U src/gnu/llvm/docs/GoldPlugin.rst
    U src/gnu/llvm/docs/MIRLangRef.rst
    U src/gnu/llvm/docs/XRay.rst
    U src/gnu/llvm/docs/MCJIT-load.png
    U src/gnu/llvm/docs/CMakePrimer.rst
    U src/gnu/llvm/docs/HowToSubmitABug.rst
    U src/gnu/llvm/docs/DebuggingJITedCode.rst
    U src/gnu/llvm/docs/Phabricator.rst
    U src/gnu/llvm/docs/FaultMaps.rst
    U src/gnu/llvm/docs/LLVMBuild.rst
    U src/gnu/llvm/docs/CompileCudaWithLLVM.rst
    U src/gnu/llvm/docs/CompilerWriterInfo.rst
    U src/gnu/llvm/docs/yaml2obj.rst
    U src/gnu/llvm/docs/GlobalISel.rst
    U src/gnu/llvm/docs/YamlIO.rst
    U src/gnu/llvm/docs/TestingGuide.rst
    U src/gnu/llvm/docs/GetElementPtr.rst
    U src/gnu/llvm/docs/StackMaps.rst
    U src/gnu/llvm/docs/TestSuiteMakefileGuide.rst
    U src/gnu/llvm/docs/MemorySSA.rst
    U src/gnu/llvm/docs/MCJIT-load-object.png
    U src/gnu/llvm/docs/BigEndianNEON.rst
    U src/gnu/llvm/docs/CMake.rst
    U src/gnu/llvm/docs/Dummy.html
    U src/gnu/llvm/docs/CMakeLists.txt
    U src/gnu/llvm/docs/ExtendedIntegerResults.txt
    U src/gnu/llvm/docs/conf.py
    U src/gnu/llvm/docs/WritingAnLLVMBackend.rst
    U src/gnu/llvm/docs/doxygen.cfg.in
    U src/gnu/llvm/docs/Bugpoint.rst
    U src/gnu/llvm/docs/AMDGPUUsage.rst
    U src/gnu/llvm/docs/CodeGenerator.rst
    U src/gnu/llvm/docs/CommandLine.rst
    U src/gnu/llvm/docs/LangRef.rst
    U src/gnu/llvm/docs/LinkTimeOptimization.rst
    U src/gnu/llvm/docs/MCJIT-engine-builder.png
    U src/gnu/llvm/docs/HowToCrossCompileLLVM.rst
    U src/gnu/llvm/docs/ReleaseNotes.rst
    U src/gnu/llvm/docs/BranchWeightMetadata.rst
    U src/gnu/llvm/docs/Atomics.rst
    U src/gnu/llvm/docs/HowToSetUpLLVMStyleRTTI.rst
    U src/gnu/llvm/docs/Vectorizers.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastsuccess.png
    U src/gnu/llvm/docs/LLVMBuild.txt
    U src/gnu/llvm/docs/Coroutines.rst
    U src/gnu/llvm/docs/HowToUseInstrMappings.rst
    U src/gnu/llvm/docs/GettingStartedVS.rst
    U src/gnu/llvm/docs/GettingStarted.rst
    U src/gnu/llvm/docs/PDB/TpiStream.rst
    U src/gnu/llvm/docs/PDB/CodeViewTypes.rst
    U src/gnu/llvm/docs/PDB/index.rst
    U src/gnu/llvm/docs/PDB/PdbStream.rst
    U src/gnu/llvm/docs/PDB/HashStream.rst
    U src/gnu/llvm/docs/PDB/MsfFile.rst
    U src/gnu/llvm/docs/PDB/DbiStream.rst
    U src/gnu/llvm/docs/PDB/GlobalStream.rst
    U src/gnu/llvm/docs/PDB/ModiStream.rst
    U src/gnu/llvm/docs/PDB/CodeViewSymbols.rst
    U src/gnu/llvm/docs/PDB/PublicStream.rst
    U src/gnu/llvm/docs/_ocamldoc/style.css
    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/Proposals/GitHubMove.rst
    U src/gnu/llvm/docs/Frontend/PerformanceTips.rst
    U src/gnu/llvm/docs/CommandGuide/FileCheck.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
    U src/gnu/llvm/docs/CommandGuide/index.rst
    U src/gnu/llvm/docs/CommandGuide/llc.rst
    U src/gnu/llvm/docs/CommandGuide/lit.rst
    U src/gnu/llvm/docs/CommandGuide/tblgen.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dwarfdump.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dis.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-symbolizer.rst
    U src/gnu/llvm/docs/CommandGuide/lli.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-extract.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-config.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/opt.rst
    U src/gnu/llvm/docs/CommandGuide/bugpoint.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-diff.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-ar.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-link.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-bcanalyzer.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-lib.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-nm.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-stress.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-as.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-profdata.rst
    U src/gnu/llvm/docs/_static/lines.gif
    U src/gnu/llvm/docs/_static/llvm.css
    U src/gnu/llvm/docs/tutorial/BuildingAJIT1.rst
    U src/gnu/llvm/docs/tutorial/LangImpl07.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05-cfg.png
    U src/gnu/llvm/docs/tutorial/index.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05.rst
    U src/gnu/llvm/docs/tutorial/LangImpl03.rst
    U src/gnu/llvm/docs/tutorial/LangImpl10.rst
    U src/gnu/llvm/docs/tutorial/LangImpl01.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT5.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl3.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT4.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl2.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl8.rst
    U src/gnu/llvm/docs/tutorial/LangImpl04.rst
    U src/gnu/llvm/docs/tutorial/LangImpl02.rst
    U src/gnu/llvm/docs/tutorial/LangImpl09.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl6.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl7.rst
    U src/gnu/llvm/docs/tutorial/LangImpl08.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl4.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT2.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl5.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT3.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl1.rst
    U src/gnu/llvm/docs/tutorial/LangImpl06.rst
    U src/gnu/llvm/docs/_templates/layout.html
    U src/gnu/llvm/docs/_templates/indexsidebar.html
    U src/gnu/llvm/docs/TableGen/index.rst
    U src/gnu/llvm/docs/TableGen/LangIntro.rst
    U src/gnu/llvm/docs/TableGen/Deficiencies.rst
    U src/gnu/llvm/docs/TableGen/LangRef.rst
    U src/gnu/llvm/docs/TableGen/BackEnds.rst
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-25-Reoptimizer1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-26-Reoptimizer2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-MeetingSummary.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-04-16-DynamicCompilation.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-05-12-InstListChange.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-01-31-UniversalIRIdea.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/2001-05-19-ExceptionResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-20-.NET-Differences.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-EncodingIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp4.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebate.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-07-06-LoweringIRForCodeGen.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveCommentsResponse.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-02-09-AdveComments.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-Memory.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-01-23-CygwinNotes.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeasResp.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-MemoryResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations.txt
    U src/gnu/llvm/lib/CMakeLists.txt
    U src/gnu/llvm/lib/LLVMBuild.txt
    U src/gnu/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/GlobalsModRef.cpp
    U src/gnu/llvm/lib/Analysis/Loads.cpp
    U src/gnu/llvm/lib/Analysis/LoopAccessAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/VectorUtils.cpp
    U src/gnu/llvm/lib/Analysis/EHPersonalities.cpp
    U src/gnu/llvm/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/lib/Analysis/CFG.cpp
    U src/gnu/llvm/lib/Analysis/IntervalPartition.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolution.cpp
    U src/gnu/llvm/lib/Analysis/DominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/ScopedNoAliasAA.cpp
    U src/gnu/llvm/lib/Analysis/README.txt
    U src/gnu/llvm/lib/Analysis/LoopAnalysisManager.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ValueTracking.cpp
    U src/gnu/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
    U src/gnu/llvm/lib/Analysis/CallPrinter.cpp
    U src/gnu/llvm/lib/Analysis/Interval.cpp
    U src/gnu/llvm/lib/Analysis/BranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/CGSCCPassManager.cpp
    U src/gnu/llvm/lib/Analysis/CostModel.cpp
    U src/gnu/llvm/lib/Analysis/RegionInfo.cpp
    U src/gnu/llvm/lib/Analysis/Trace.cpp
    U src/gnu/llvm/lib/Analysis/MemDepPrinter.cpp
    U src/gnu/llvm/lib/Analysis/RegionPass.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
    U src/gnu/llvm/lib/Analysis/LoopPass.cpp
    U src/gnu/llvm/lib/Analysis/TypeMetadataUtils.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCInstKind.cpp
    U src/gnu/llvm/lib/Analysis/LoopInfo.cpp
    U src/gnu/llvm/lib/Analysis/DivergenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
    U src/gnu/llvm/lib/Analysis/LazyCallGraph.cpp
    U src/gnu/llvm/lib/Analysis/OrderedBasicBlock.cpp
    U src/gnu/llvm/lib/Analysis/PostDominators.cpp
    U src/gnu/llvm/lib/Analysis/Delinearization.cpp
    U src/gnu/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/RegionPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ProfileSummaryInfo.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
    U src/gnu/llvm/lib/Analysis/SparsePropagation.cpp
    U src/gnu/llvm/lib/Analysis/MemoryBuiltins.cpp
    U src/gnu/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/StratifiedSets.h
    U src/gnu/llvm/lib/Analysis/Lint.cpp
    U src/gnu/llvm/lib/Analysis/BasicAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/DependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/Analysis.cpp
    U src/gnu/llvm/lib/Analysis/TargetLibraryInfo.cpp
    U src/gnu/llvm/lib/Analysis/MemDerefPrinter.cpp
    U src/gnu/llvm/lib/Analysis/PtrUseVisitor.cpp
    U src/gnu/llvm/lib/Analysis/DemandedBits.cpp
    U src/gnu/llvm/lib/Analysis/AssumptionCache.cpp
    U src/gnu/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.h
    U src/gnu/llvm/lib/Analysis/TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Analysis/PHITransAddr.cpp
    U src/gnu/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/IVUsers.cpp
    U src/gnu/llvm/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/CFGPrinter.cpp
    U src/gnu/llvm/lib/Analysis/InstCount.cpp
    U src/gnu/llvm/lib/Analysis/InstructionSimplify.cpp
    U src/gnu/llvm/lib/Analysis/LazyValueInfo.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.cpp
    U src/gnu/llvm/lib/Analysis/CodeMetrics.cpp
    U src/gnu/llvm/lib/Analysis/DomPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
    U src/gnu/llvm/lib/Analysis/InlineCost.cpp
    U src/gnu/llvm/lib/Analysis/ConstantFolding.cpp
    U src/gnu/llvm/lib/Analysis/AliasSetTracker.cpp
    U src/gnu/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
    U src/gnu/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CFLGraph.h
    U src/gnu/llvm/lib/Analysis/MemoryLocation.cpp
    U src/gnu/llvm/lib/Analysis/CaptureTracking.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/LLVMBuild.txt
    U src/gnu/llvm/lib/Analysis/CallGraphSCCPass.cpp
    U src/gnu/llvm/lib/Bitcode/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/MetadataLoader.h
    U src/gnu/llvm/lib/Bitcode/Reader/BitReader.cpp
    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.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Reader/ValueList.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.h
    U src/gnu/llvm/lib/Bitcode/Writer/BitWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/IPO/InlineSimple.cpp
    U src/gnu/llvm/lib/Transforms/IPO/MergeFunctions.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SampleProfile.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Internalize.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalOpt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LoopExtractor.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripSymbols.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/FunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPO.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalDCE.cpp
    U src/gnu/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
    U src/gnu/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/IPO/Inliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalSplit.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
    U src/gnu/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
    U src/gnu/llvm/lib/Transforms/IPO/FunctionImport.cpp
    U src/gnu/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ConstantMerge.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ExtractGV.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
    U src/gnu/llvm/lib/Transforms/Instrumentation/CFGMST.h
    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/EfficiencySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    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/InstCombineSimplifyDemanded.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    U src/gnu/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCalls.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/Coroutines/CoroInternal.h
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroInstr.h
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroElide.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Coroutines/Coroutines.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SplitModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerInvoke.cpp
    U src/gnu/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ModuleUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LCSSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneFunction.cpp
    U src/gnu/llvm/lib/Transforms/Utils/MemorySSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopVersioning.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnroll.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Mem2Reg.cpp
    U src/gnu/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Evaluator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SSAUpdater.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Local.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
    U src/gnu/llvm/lib/Transforms/Utils/MetaRenamer.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SanitizerStats.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
    U src/gnu/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Utils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/GlobalStatus.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerSwitch.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
    U src/gnu/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Utils/InstructionNamer.cpp
    U src/gnu/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CodeExtractor.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CtorUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FunctionComparator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FlattenCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ValueMapper.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Utils/InlineFunction.cpp
    U src/gnu/llvm/lib/Transforms/Hello/Hello.exports
    U src/gnu/llvm/lib/Transforms/Hello/Hello.cpp
    U src/gnu/llvm/lib/Transforms/Hello/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/Vectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
    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/ProvenanceAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Scalar/Reassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Float2Int.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantProp.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/NewGVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GuardWidening.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRotation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/BDCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalar.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SCCP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalarizer.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Sink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ADCE.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/LoadCombine.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SROA.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/JumpThreading.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/MergedLoadStoreMotion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Scalar/GVNHoist.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
    U src/gnu/llvm/lib/LibDriver/LibDriver.cpp
    U src/gnu/llvm/lib/LibDriver/CMakeLists.txt
    U src/gnu/llvm/lib/LibDriver/Options.td
    U src/gnu/llvm/lib/LibDriver/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/README.txt
    U src/gnu/llvm/lib/Target/Target.cpp
    U src/gnu/llvm/lib/Target/TargetMachineC.cpp
    U src/gnu/llvm/lib/Target/TargetIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/TargetLoweringObjectFile.cpp
    U src/gnu/llvm/lib/Target/CMakeLists.txt
    U src/gnu/llvm/lib/Target/TargetMachine.cpp
    U src/gnu/llvm/lib/Target/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.h
    U src/gnu/llvm/lib/Target/AVR/README.md
    U src/gnu/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRDevices.td
    U src/gnu/llvm/lib/Target/AVR/AVRISelLowering.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVR.h
    U src/gnu/llvm/lib/Target/AVR/AVRCallingConv.td
    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/AVRISelLowering.h
    U src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.h
    U src/gnu/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.h
    U src/gnu/llvm/lib/Target/AVR/TODO.md
    U src/gnu/llvm/lib/Target/AVR/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrFormats.td
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.td
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AVR/AVR.td
    U src/gnu/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.td
    U src/gnu/llvm/lib/Target/AVR/LLVMBuild.txt
    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/AVR/Disassembler/AVRDisassembler.cpp
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/CMakeLists.txt
    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/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.h
    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/AsmParser/AVRAsmParser.cpp
    U src/gnu/llvm/lib/Target/AVR/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
    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/AVRMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
    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/AVRAsmBackend.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
    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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG3.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
    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/PPCInstrVSX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrSPE.td
    U src/gnu/llvm/lib/Target/PowerPC/README_ALTIVEC.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPC.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
    U src/gnu/llvm/lib/Target/PowerPC/README_P9.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCFastISel.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.h
    U src/gnu/llvm/lib/Target/PowerPC/P9InstrResources.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
    U src/gnu/llvm/lib/Target/PowerPC/PPC.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrQPX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrFormats.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.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/PPCRegisterInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG5.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
    U src/gnu/llvm/lib/Target/PowerPC/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/p9-instrs.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrHTM.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP9.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule440.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP7.td
    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/PPCTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleA2.td
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.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/TargetInfo/PowerPCTargetInfo.cpp
    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/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
    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/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/PowerPC/MCTargetDesc/PPCPredicates.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.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/PPCMCAsmInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOperands.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrAlias.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPatterns.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.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/HexagonCFGOptimizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSystemInst.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCallingConv.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSchedule.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIsetDx.td
    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/RDFCopy.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrEnc.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRDFOpt.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/TargetInfo/HexagonTargetInfo.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/AsmParser/HexagonAsmParser.cpp
    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/MCTargetDesc/HexagonInstPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
    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/HexagonMCCompound.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.h
    U src/gnu/llvm/lib/Target/ARM/LICENSE.TXT
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/ARM/README.txt
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARM.td
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstructionSelector.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrVFP.td
    U src/gnu/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleV6.td
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleR52.td
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA8.td
    U src/gnu/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleSwift.td
    U src/gnu/llvm/lib/Target/ARM/ARMPerfectShuffle.h
    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/ARMConstantPoolValue.h
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.cpp
    U src/gnu/llvm/lib/Target/ARM/README-Thumb.txt
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFeatures.h
    U src/gnu/llvm/lib/Target/ARM/README-Thumb2.txt
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.h
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrNEON.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb2.td
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.h
    U src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
    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/ARMSubtarget.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMCallLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.h
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/ARMSubtarget.h
    U src/gnu/llvm/lib/Target/ARM/A15SDOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrFormats.td
    U src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.h
    U src/gnu/llvm/lib/Target/ARM/ARM.h
    U src/gnu/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMSchedule.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMCInstLower.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFastISel.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA9.td
    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/ARMCallLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb.td
    U src/gnu/llvm/lib/Target/ARM/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.h
    U src/gnu/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.h
    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/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/InstPrinter/ARMInstPrinter.h
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.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/ARM/MCTargetDesc/ARMAsmBackend.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.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/ARMMCExpr.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrTablesInfo.h
    U src/gnu/llvm/lib/Target/X86/X86Schedule.td
    U src/gnu/llvm/lib/Target/X86/X86Instr3DNow.td
    U src/gnu/llvm/lib/Target/X86/X86ScheduleAtom.td
    U src/gnu/llvm/lib/Target/X86/README-UNIMPLEMENTED.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrExtension.td
    U src/gnu/llvm/lib/Target/X86/X86InstrShiftRotate.td
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.h
    U src/gnu/llvm/lib/Target/X86/X86WinEHState.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.h
    U src/gnu/llvm/lib/Target/X86/X86FastISel.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFormats.td
    U src/gnu/llvm/lib/Target/X86/X86InstrTSX.td
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.cpp
    U src/gnu/llvm/lib/Target/X86/README.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86FloatingPoint.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallLowering.h
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrMMX.td
    U src/gnu/llvm/lib/Target/X86/X86InstrMPX.td
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA.td
    U src/gnu/llvm/lib/Target/X86/X86FixupSetCC.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.td
    U src/gnu/llvm/lib/Target/X86/X86.h
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrControl.td
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.h
    U src/gnu/llvm/lib/Target/X86/X86InstrSVM.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrVMX.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.td
    U src/gnu/llvm/lib/Target/X86/X86VZeroUpper.cpp
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.h
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.cpp
    U src/gnu/llvm/lib/Target/X86/README-FPStack.txt
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrAVX512.td
    U src/gnu/llvm/lib/Target/X86/README-X86-64.txt
    U src/gnu/llvm/lib/Target/X86/X86EvexToVex.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSSE.td
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.h
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.cpp
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86FixupLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrXOP.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.h
    U src/gnu/llvm/lib/Target/X86/X86InstrFPStack.td
    U src/gnu/llvm/lib/Target/X86/X86PadShortFunction.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.td
    U src/gnu/llvm/lib/Target/X86/X86InterleavedAccess.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedHaswell.td
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSGX.td
    U src/gnu/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrCompiler.td
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/X86/X86.td
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.h
    U src/gnu/llvm/lib/Target/X86/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrBuilder.h
    U src/gnu/llvm/lib/Target/X86/X86ExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/X86/X86CallLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86FixupBWInsts.cpp
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.h
    U src/gnu/llvm/lib/Target/X86/X86ScheduleBtVer2.td
    U src/gnu/llvm/lib/Target/X86/README-MMX.txt
    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/X86ScheduleSLM.td
    U src/gnu/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedSandyBridge.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSystem.td
    U src/gnu/llvm/lib/Target/X86/X86IntrinsicsInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrCMovSetCC.td
    U src/gnu/llvm/lib/Target/X86/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/README-SSE.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrArithmetic.td
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
    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/X86Disassembler.cpp
    U src/gnu/llvm/lib/Target/X86/Disassembler/LLVMBuild.txt
    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/InstPrinter/X86InstComments.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
    U 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/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Utils/CMakeLists.txt
    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/AsmParser/X86AsmInstrumentation.cpp
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86Operand.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
    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/X86MCAsmInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleGeneric.td
    U src/gnu/llvm/lib/Target/Mips/MipsOptionRecord.h
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.h
    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/MipsEVAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFPU.td
    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/Mips16FrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.h
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.h
    U src/gnu/llvm/lib/Target/Mips/MipsOs16.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
    U src/gnu/llvm/lib/Target/Mips/MSA.txt
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsCallingConv.td
    U src/gnu/llvm/lib/Target/Mips/MicroMips64r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.h
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.h
    U src/gnu/llvm/lib/Target/Mips/Mips64InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.h
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSchedule.td
    U src/gnu/llvm/lib/Target/Mips/MipsCondMov.td
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsFastISel.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsLongBranch.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetStreamer.h
    U src/gnu/llvm/lib/Target/Mips/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleP5600.td
    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/TargetInfo/MipsTargetInfo.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/InstPrinter/MipsInstPrinter.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/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/Mips/MCTargetDesc/MipsOptionRecord.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.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/MipsELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
    U 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/MipsMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt
    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/MipsMCNaCl.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/README.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    U src/gnu/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.h
    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/WebAssemblyISD.def
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
    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/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/InstPrinter/WebAssemblyInstPrinter.h
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/CMakeLists.txt
    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/MCTargetDesc/WebAssemblyTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
    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/WebAssemblyMCTargetDesc.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.h
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrVIS.td
    U src/gnu/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/README.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/Sparc.td
    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/SparcSubtarget.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrAliases.td
    U src/gnu/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Sparc/Sparc.h
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/LeonFeatures.td
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.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/SparcRegisterInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.h
    U src/gnu/llvm/lib/Target/Sparc/SparcInstr64Bit.td
    U src/gnu/llvm/lib/Target/Sparc/SparcSchedule.td
    U src/gnu/llvm/lib/Target/Sparc/LeonPasses.h
    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/SparcInstrInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrFormats.td
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetStreamer.h
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.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/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/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/InstPrinter/SparcInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
    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/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/Sparc/MCTargetDesc/SparcAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
    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/MSP430/MSP430MachineFunctionInfo.h
    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/README.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrFormats.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.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/MSP430RegisterInfo.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
    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/MSP430.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430CallingConv.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.h
    U src/gnu/llvm/lib/Target/MSP430/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.h
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.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/InstPrinter/MSP430InstPrinter.h
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
    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/MCTargetDesc/MSP430MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrFormats.td
    U src/gnu/llvm/lib/Target/RISCV/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCV.td
    U src/gnu/llvm/lib/Target/RISCV/LLVMBuild.txt
    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/MCTargetDesc/RISCVELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.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/RISCVMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA53.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64FastISel.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
    C src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64VectorByElementOpt.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstructionSelector.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
    C src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    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/AArch64SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedM1.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AArch64/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64Schedule.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.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/AArch64RegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrFormats.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SystemOperands.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
    U src/gnu/llvm/lib/Target/AArch64/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
    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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/LLVMBuild.txt
    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/AArch64AsmBackend.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.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/AArch64FixupKinds.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt
    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/AArch64MCTargetDesc.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperands.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLDCleanup.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/SystemZMCInstLower.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrVector.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperators.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSchedule.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFP.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZProcessors.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
    U src/gnu/llvm/lib/Target/SystemZ/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTDC.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFeatures.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
    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/SystemZ.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.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/InstPrinter/SystemZInstPrinter.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/AsmParser/CMakeLists.txt
    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/MCTargetDesc/SystemZMCTargetDesc.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
    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/MCTargetDesc/SystemZMCCodeEmitter.cpp
    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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreLowerThreadLocal.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/XCoreRegisterInfo.td
    U src/gnu/llvm/lib/Target/XCore/README.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.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/XCoreMCInstLower.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCore.h
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreCallingConv.td
    U src/gnu/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrFormats.td
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.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/XCoreInstrInfo.h
    U src/gnu/llvm/lib/Target/XCore/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
    U src/gnu/llvm/lib/Target/XCore/XCore.td
    U src/gnu/llvm/lib/Target/XCore/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.h
    U src/gnu/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
    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/TargetInfo/XCoreTargetInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/LLVMBuild.txt
    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/XCoreInstPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/LLVMBuild.txt
    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/XCoreMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiCondCode.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Lanai/Lanai.td
    U src/gnu/llvm/lib/Target/Lanai/Lanai.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.h
    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/LanaiAluCode.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSchedule.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiCallingConv.td
    U src/gnu/llvm/lib/Target/Lanai/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.h
    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/LanaiInstrFormats.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.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/LanaiDisassembler.h
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.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/InstPrinter/LanaiInstPrinter.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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/CMakeLists.txt
    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/MCTargetDesc/LanaiMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiBaseInfo.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
    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/LanaiFixupKinds.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.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/LanaiMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LLVMBuild.txt
    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/BPFRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BPF.h
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.h
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.h
    U src/gnu/llvm/lib/Target/BPF/BPFCallingConv.td
    U src/gnu/llvm/lib/Target/BPF/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.h
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.cpp
    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/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/Disassembler/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/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
    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/BPF/InstPrinter/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/BPFMCTargetDesc.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
    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/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.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/NVPTXISelLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/ManagedStringPool.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSection.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXVector.td
    U src/gnu/llvm/lib/Target/NVPTX/NVVMReflect.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
    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/NVPTXLowerAggrCopies.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
    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/NVPTXMCExpr.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/cl_common_defines.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
    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/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
    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/NVPTX/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
    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/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOP1Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600Intrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.h
    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/R600RegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SMInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Schedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOP3Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixControlFlowLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOP2Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Defines.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIDefines.h
    U src/gnu/llvm/lib/Target/AMDGPU/DSInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R700Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SISchedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/CaymanInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600Packetizer.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/AMDGPURegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
    U src/gnu/llvm/lib/Target/AMDGPU/BUFInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/FLATInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOPCInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/MIMGInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/CIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Processors.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/VOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
    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/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
    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/AMDGPU/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
    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/AMDGPUAsmUtils.cpp
    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/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
    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/AMDGPUFixupKinds.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Demangle/ItaniumDemangle.cpp
    U src/gnu/llvm/lib/Demangle/CMakeLists.txt
    U src/gnu/llvm/lib/Demangle/LLVMBuild.txt
    U src/gnu/llvm/lib/Object/IRObjectFile.cpp
    U src/gnu/llvm/lib/Object/ModuleSymbolTable.cpp
    U src/gnu/llvm/lib/Object/ELFObjectFile.cpp
    U src/gnu/llvm/lib/Object/ObjectFile.cpp
    U src/gnu/llvm/lib/Object/MachOUniversal.cpp
    U src/gnu/llvm/lib/Object/Archive.cpp
    U src/gnu/llvm/lib/Object/SymbolSize.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.h
    U src/gnu/llvm/lib/Object/COFFObjectFile.cpp
    U src/gnu/llvm/lib/Object/Binary.cpp
    U src/gnu/llvm/lib/Object/ELF.cpp
    U src/gnu/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp
    U src/gnu/llvm/lib/Object/MachOObjectFile.cpp
    U src/gnu/llvm/lib/Object/Error.cpp
    U src/gnu/llvm/lib/Object/WasmObjectFile.cpp
    U src/gnu/llvm/lib/Object/CMakeLists.txt
    U src/gnu/llvm/lib/Object/SymbolicFile.cpp
    U src/gnu/llvm/lib/Object/Object.cpp
    U src/gnu/llvm/lib/Object/Decompressor.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.cpp
    U src/gnu/llvm/lib/Object/ArchiveWriter.cpp
    U src/gnu/llvm/lib/Object/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
    U src/gnu/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/TargetSelect.cpp
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
    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/ittnotify_config.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/LLVMBuild.txt
    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/RuntimeDyldELF.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
    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/RuntimeDyld.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.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/RTDyldMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.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/RuntimeDyldMachOARM.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/RuntimeDyldELFMips.h
    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/Execution.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/LLVMBuild.txt
    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/OrcMCJITReplacement.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.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/OrcCBindingsStack.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtilDarwin.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtilPosix.cpp
    U src/gnu/llvm/lib/Fuzzer/README.txt
    U src/gnu/llvm/lib/Fuzzer/FuzzerDriver.cpp
    U src/gnu/llvm/lib/Fuzzer/build.sh
    U src/gnu/llvm/lib/Fuzzer/FuzzerCrossOver.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerOptions.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerTracePC.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerMutate.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerTraceState.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctions.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsWeak.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtil.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtilWindows.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerMerge.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerMutate.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerMain.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerRandom.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerIOPosix.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctions.def
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsWeakAlias.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerIOWindows.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerInternal.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtilLinux.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerLoop.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerSHA1.cpp
    U src/gnu/llvm/lib/Fuzzer/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/FuzzerUtil.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerInterface.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerExtFunctionsDlsym.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerFlags.def
    U src/gnu/llvm/lib/Fuzzer/FuzzerMerge.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerIO.cpp
    U src/gnu/llvm/lib/Fuzzer/FuzzerCorpus.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerValueBitMap.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerTracePC.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerIO.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerSHA1.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerDefs.h
    U src/gnu/llvm/lib/Fuzzer/FuzzerDictionary.h
    U src/gnu/llvm/lib/Fuzzer/cxx.dict
    U src/gnu/llvm/lib/Fuzzer/standalone/StandaloneFuzzTargetMain.c
    U src/gnu/llvm/lib/Fuzzer/afl/afl_driver.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-ubsan.test
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-strcmp.test
    U src/gnu/llvm/lib/Fuzzer/test/FullCoverageSetTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/caller-callee.test
    U src/gnu/llvm/lib/Fuzzer/test/trace-malloc.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-leak.test
    U src/gnu/llvm/lib/Fuzzer/test/DSOTestExtra.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-seed.test
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-strncmp.test
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-set.test
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp.test
    U src/gnu/llvm/lib/Fuzzer/test/OutOfMemoryTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/RepeatedBytesTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/DSO2.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SingleStrncmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/DSO1.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-jobs.test
    U src/gnu/llvm/lib/Fuzzer/test/SingleStrcmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-custommutator.test
    U src/gnu/llvm/lib/Fuzzer/test/shrink.test
    U src/gnu/llvm/lib/Fuzzer/test/AFLDriverTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/Switch2Test.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SwitchTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrncmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/DSOTestMain.cpp
    U src/gnu/llvm/lib/Fuzzer/test/afl-driver-stderr.test
    U src/gnu/llvm/lib/Fuzzer/test/ShrinkValueProfileTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/DivTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/InitializeTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-printcovpcs.test
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-mem.test
    U src/gnu/llvm/lib/Fuzzer/test/RepeatedMemcmp.cpp
    U src/gnu/llvm/lib/Fuzzer/test/CallerCalleeTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/FourIndependentBranchesTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp2.test
    U src/gnu/llvm/lib/Fuzzer/test/lit.cfg
    U src/gnu/llvm/lib/Fuzzer/test/ThreadedLeakTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleThreadedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrstrTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-load.test
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-div.test
    U src/gnu/llvm/lib/Fuzzer/test/merge.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-runs.test
    U src/gnu/llvm/lib/Fuzzer/test/dict1.txt
    U src/gnu/llvm/lib/Fuzzer/test/TraceMallocTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/NthRunCrashTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/NullDerefTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/ShrinkControlFlowTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/EmptyTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp4.test
    U src/gnu/llvm/lib/Fuzzer/test/ulimit.test
    U src/gnu/llvm/lib/Fuzzer/test/ThreadedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-flags.test
    U src/gnu/llvm/lib/Fuzzer/test/simple-cmp.test
    U src/gnu/llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-oom-with-profile.test
    U src/gnu/llvm/lib/Fuzzer/test/OneHugeAllocTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/lit.site.cfg.in
    U src/gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/afl-driver-extra-stats.test
    U src/gnu/llvm/lib/Fuzzer/test/CustomCrossOverTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/OutOfMemorySingleLargeMallocTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/standalone.test
    U src/gnu/llvm/lib/Fuzzer/test/TimeoutTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-dict.test
    U src/gnu/llvm/lib/Fuzzer/test/BufferOverflowOnInput.cpp
    U src/gnu/llvm/lib/Fuzzer/test/dump_coverage.test
    U src/gnu/llvm/lib/Fuzzer/test/swap-cmp.test
    U src/gnu/llvm/lib/Fuzzer/test/repeated-bytes.test
    U src/gnu/llvm/lib/Fuzzer/test/SimpleHashTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer.test
    U src/gnu/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-threaded.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-finalstats.test
    U src/gnu/llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/minimize_crash.test
    U src/gnu/llvm/lib/Fuzzer/test/coverage.test
    U src/gnu/llvm/lib/Fuzzer/test/SingleMemcmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrncmpOOBTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-customcrossover.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-fdmask.test
    U src/gnu/llvm/lib/Fuzzer/test/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/CustomMutatorTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SimpleCmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-oom.test
    U src/gnu/llvm/lib/Fuzzer/test/LoadTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/StrcmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-switch.test
    U src/gnu/llvm/lib/Fuzzer/test/LeakTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/hi.txt
    U src/gnu/llvm/lib/Fuzzer/test/NullDerefOnEmptyTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/MemcmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/CounterTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/UninstrumentedTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-segv.test
    U src/gnu/llvm/lib/Fuzzer/test/SwapCmpTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/TimeoutEmptyTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/AbsNegAndConstantTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-singleinputs.test
    U src/gnu/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp
    U src/gnu/llvm/lib/Fuzzer/test/SpamyTest.cpp
    U src/gnu/llvm/lib/Fuzzer/test/value-profile-cmp3.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-timeout.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-dirs.test
    U src/gnu/llvm/lib/Fuzzer/test/fuzzer-traces-hooks.test
    U src/gnu/llvm/lib/Fuzzer/test/ubsan/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/uninstrumented/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/no-coverage/CMakeLists.txt
    U src/gnu/llvm/lib/Fuzzer/test/unit/lit.cfg
    U src/gnu/llvm/lib/Fuzzer/test/unit/lit.site.cfg.in
    U src/gnu/llvm/lib/IR/AsmWriter.cpp
    U src/gnu/llvm/lib/IR/Core.cpp
    U src/gnu/llvm/lib/IR/ValueSymbolTable.cpp
    U src/gnu/llvm/lib/IR/ConstantsContext.h
    U src/gnu/llvm/lib/IR/Value.cpp
    U src/gnu/llvm/lib/IR/Comdat.cpp
    U src/gnu/llvm/lib/IR/Use.cpp
    U src/gnu/llvm/lib/IR/AttributeSetNode.h
    U src/gnu/llvm/lib/IR/PassManager.cpp
    U src/gnu/llvm/lib/IR/DebugInfoMetadata.cpp
    U src/gnu/llvm/lib/IR/DebugInfo.cpp
    U src/gnu/llvm/lib/IR/DataLayout.cpp
    U src/gnu/llvm/lib/IR/Mangler.cpp
    U src/gnu/llvm/lib/IR/Module.cpp
    U src/gnu/llvm/lib/IR/BasicBlock.cpp
    U src/gnu/llvm/lib/IR/LLVMContext.cpp
    U src/gnu/llvm/lib/IR/Dominators.cpp
    U src/gnu/llvm/lib/IR/Operator.cpp
    U src/gnu/llvm/lib/IR/ModuleSummaryIndex.cpp
    U src/gnu/llvm/lib/IR/ConstantFold.h
    U src/gnu/llvm/lib/IR/Instructions.cpp
    U src/gnu/llvm/lib/IR/IRPrintingPasses.cpp
    U src/gnu/llvm/lib/IR/Instruction.cpp
    U src/gnu/llvm/lib/IR/Type.cpp
    U src/gnu/llvm/lib/IR/AttributesCompatFunc.td
    U src/gnu/llvm/lib/IR/IntrinsicInst.cpp
    U src/gnu/llvm/lib/IR/Attributes.cpp
    U src/gnu/llvm/lib/IR/PassRegistry.cpp
    U src/gnu/llvm/lib/IR/Verifier.cpp
    U src/gnu/llvm/lib/IR/User.cpp
    U src/gnu/llvm/lib/IR/Metadata.cpp
    U src/gnu/llvm/lib/IR/DiagnosticInfo.cpp
    U src/gnu/llvm/lib/IR/LLVMContextImpl.h
    U src/gnu/llvm/lib/IR/InlineAsm.cpp
    U src/gnu/llvm/lib/IR/IRBuilder.cpp
    U src/gnu/llvm/lib/IR/DiagnosticPrinter.cpp
    U src/gnu/llvm/lib/IR/DIBuilder.cpp
    U src/gnu/llvm/lib/IR/SymbolTableListTraitsImpl.h
    U src/gnu/llvm/lib/IR/Statepoint.cpp
    U src/gnu/llvm/lib/IR/LegacyPassManager.cpp
    U src/gnu/llvm/lib/IR/ConstantRange.cpp
    U src/gnu/llvm/lib/IR/AttributeImpl.h
    U src/gnu/llvm/lib/IR/OptBisect.cpp
    U src/gnu/llvm/lib/IR/CMakeLists.txt
    U src/gnu/llvm/lib/IR/ConstantFold.cpp
    U src/gnu/llvm/lib/IR/AutoUpgrade.cpp
    U src/gnu/llvm/lib/IR/GVMaterializer.cpp
    U src/gnu/llvm/lib/IR/Function.cpp
    U src/gnu/llvm/lib/IR/ValueTypes.cpp
    U src/gnu/llvm/lib/IR/TypeFinder.cpp
    U src/gnu/llvm/lib/IR/Pass.cpp
    U src/gnu/llvm/lib/IR/DebugLoc.cpp
    U src/gnu/llvm/lib/IR/MDBuilder.cpp
    U src/gnu/llvm/lib/IR/Globals.cpp
    U src/gnu/llvm/lib/IR/ProfileSummary.cpp
    U src/gnu/llvm/lib/IR/MetadataImpl.h
    U src/gnu/llvm/lib/IR/Constants.cpp
    U src/gnu/llvm/lib/IR/GCOV.cpp
    U src/gnu/llvm/lib/IR/LLVMBuild.txt
    U src/gnu/llvm/lib/IR/LLVMContextImpl.cpp
    U src/gnu/llvm/lib/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.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/PDBSymbolTypePointer.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.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/IPDBSourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.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/PDBContext.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/PDBSymbolUsingNamespace.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.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/PDBSymbolTypeUDT.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDB.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAError.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/DIALineNumber.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameMap.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/DbiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/TpiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/GSI.h
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/SymbolStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/PDBFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/RawSession.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/RawError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/EnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/GSI.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/GlobalsStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/ModStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/PublicsStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Raw/TpiHashing.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/Line.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeDatabase.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeSerializer.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVTypeDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFCommon.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/StreamWriter.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/StreamReader.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFError.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.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/Symbolize/SymbolizableObjectFile.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/DIPrinter.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/Symbolize.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/LLVMBuild.txt
    U src/gnu/llvm/lib/Linker/LinkDiagnosticInfo.h
    U src/gnu/llvm/lib/Linker/IRMover.cpp
    U src/gnu/llvm/lib/Linker/CMakeLists.txt
    U src/gnu/llvm/lib/Linker/LinkModules.cpp
    U src/gnu/llvm/lib/Linker/LLVMBuild.txt
    U src/gnu/llvm/lib/ObjectYAML/ObjectYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/DWARFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/ELFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/COFFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/CMakeLists.txt
    U src/gnu/llvm/lib/ObjectYAML/YAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/MachOYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCObjectFileInfo.cpp
    U src/gnu/llvm/lib/MC/MCSectionCOFF.cpp
    U src/gnu/llvm/lib/MC/MCELFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoCOFF.cpp
    U src/gnu/llvm/lib/MC/MCObjectStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmBackend.cpp
    U src/gnu/llvm/lib/MC/MCWin64EH.cpp
    U src/gnu/llvm/lib/MC/MCSymbolELF.cpp
    U src/gnu/llvm/lib/MC/MachObjectWriter.cpp
    U src/gnu/llvm/lib/MC/WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCDwarf.cpp
    U src/gnu/llvm/lib/MC/MCMachOStreamer.cpp
    U src/gnu/llvm/lib/MC/MCLabel.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfo.cpp
    U src/gnu/llvm/lib/MC/MCStreamer.cpp
    U src/gnu/llvm/lib/MC/MCInst.cpp
    U src/gnu/llvm/lib/MC/MCLinkerOptimizationHint.cpp
    U src/gnu/llvm/lib/MC/MCNullStreamer.cpp
    U src/gnu/llvm/lib/MC/MCInstPrinter.cpp
    U src/gnu/llvm/lib/MC/MCSchedule.cpp
    U src/gnu/llvm/lib/MC/MCContext.cpp
    U src/gnu/llvm/lib/MC/ELFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCWinEH.cpp
    U src/gnu/llvm/lib/MC/MCMachObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/SubtargetFeature.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoELF.cpp
    U src/gnu/llvm/lib/MC/MCInstrDesc.cpp
    U src/gnu/llvm/lib/MC/MCObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCFragment.cpp
    U src/gnu/llvm/lib/MC/MCSectionMachO.cpp
    U src/gnu/llvm/lib/MC/MCSection.cpp
    U src/gnu/llvm/lib/MC/MCSectionELF.cpp
    U src/gnu/llvm/lib/MC/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCAsmInfoDarwin.cpp
    U src/gnu/llvm/lib/MC/MCExpr.cpp
    U src/gnu/llvm/lib/MC/MCRegisterInfo.cpp
    U src/gnu/llvm/lib/MC/MCValue.cpp
    U src/gnu/llvm/lib/MC/MCSymbol.cpp
    U src/gnu/llvm/lib/MC/WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCELFObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/ConstantPools.cpp
    U src/gnu/llvm/lib/MC/MCInstrAnalysis.cpp
    U src/gnu/llvm/lib/MC/MCSubtargetInfo.cpp
    U src/gnu/llvm/lib/MC/StringTableBuilder.cpp
    U src/gnu/llvm/lib/MC/MCAsmStreamer.cpp
    U src/gnu/llvm/lib/MC/MCCodeEmitter.cpp
    U src/gnu/llvm/lib/MC/MCTargetOptions.cpp
    U src/gnu/llvm/lib/MC/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCAssembler.cpp
    U src/gnu/llvm/lib/MC/MCCodeView.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/AsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/ELFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/COFFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCParser/AsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.h
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
    U src/gnu/llvm/lib/Support/TarWriter.cpp
    U src/gnu/llvm/lib/Support/Debug.cpp
    U src/gnu/llvm/lib/Support/regexec.c
    U src/gnu/llvm/lib/Support/Host.cpp
    U src/gnu/llvm/lib/Support/Errno.cpp
    U src/gnu/llvm/lib/Support/regcname.h
    U src/gnu/llvm/lib/Support/regfree.c
    U src/gnu/llvm/lib/Support/Dwarf.cpp
    U src/gnu/llvm/lib/Support/BlockFrequency.cpp
    U src/gnu/llvm/lib/Support/ErrorHandling.cpp
    U src/gnu/llvm/lib/Support/TargetRegistry.cpp
    U src/gnu/llvm/lib/Support/StringPool.cpp
    U src/gnu/llvm/lib/Support/SystemUtils.cpp
    U src/gnu/llvm/lib/Support/FileOutputBuffer.cpp
    U src/gnu/llvm/lib/Support/README.txt.system
    U src/gnu/llvm/lib/Support/FoldingSet.cpp
    U src/gnu/llvm/lib/Support/RWMutex.cpp
    U src/gnu/llvm/lib/Support/circular_raw_ostream.cpp
    U src/gnu/llvm/lib/Support/DynamicLibrary.cpp
    U src/gnu/llvm/lib/Support/Chrono.cpp
    U src/gnu/llvm/lib/Support/LockFileManager.cpp
    U src/gnu/llvm/lib/Support/NativeFormatting.cpp
    U src/gnu/llvm/lib/Support/PrettyStackTrace.cpp
    U src/gnu/llvm/lib/Support/xxhash.cpp
    U src/gnu/llvm/lib/Support/Memory.cpp
    U src/gnu/llvm/lib/Support/ScaledNumber.cpp
    U src/gnu/llvm/lib/Support/Program.cpp
    U src/gnu/llvm/lib/Support/GraphWriter.cpp
    U src/gnu/llvm/lib/Support/IntEqClasses.cpp
    U src/gnu/llvm/lib/Support/raw_os_ostream.cpp
    U src/gnu/llvm/lib/Support/regerror.c
    U src/gnu/llvm/lib/Support/Valgrind.cpp
    U src/gnu/llvm/lib/Support/COPYRIGHT.regex
    U src/gnu/llvm/lib/Support/MemoryBuffer.cpp
    U src/gnu/llvm/lib/Support/CachePruning.cpp
    U src/gnu/llvm/lib/Support/YAMLParser.cpp
    U src/gnu/llvm/lib/Support/TrigramIndex.cpp
    U src/gnu/llvm/lib/Support/CommandLine.cpp
    U src/gnu/llvm/lib/Support/Allocator.cpp
    U src/gnu/llvm/lib/Support/Path.cpp
    U src/gnu/llvm/lib/Support/StringRef.cpp
    U src/gnu/llvm/lib/Support/ThreadLocal.cpp
    U src/gnu/llvm/lib/Support/regengine.inc
    U src/gnu/llvm/lib/Support/Locale.cpp
    U src/gnu/llvm/lib/Support/SpecialCaseList.cpp
    U src/gnu/llvm/lib/Support/Regex.cpp
    U src/gnu/llvm/lib/Support/LEB128.cpp
    U src/gnu/llvm/lib/Support/GlobPattern.cpp
    U src/gnu/llvm/lib/Support/SHA1.cpp
    U src/gnu/llvm/lib/Support/SmallVector.cpp
    U src/gnu/llvm/lib/Support/FileUtilities.cpp
    U src/gnu/llvm/lib/Support/APSInt.cpp
    U src/gnu/llvm/lib/Support/JamCRC.cpp
    U src/gnu/llvm/lib/Support/Timer.cpp
    U src/gnu/llvm/lib/Support/MD5.cpp
    U src/gnu/llvm/lib/Support/DeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/APFloat.cpp
    U src/gnu/llvm/lib/Support/Signals.cpp
    U src/gnu/llvm/lib/Support/SourceMgr.cpp
    U src/gnu/llvm/lib/Support/DataExtractor.cpp
    U src/gnu/llvm/lib/Support/Watchdog.cpp
    U src/gnu/llvm/lib/Support/APInt.cpp
    U src/gnu/llvm/lib/Support/ToolOutputFile.cpp
    U src/gnu/llvm/lib/Support/StringExtras.cpp
    U src/gnu/llvm/lib/Support/Triple.cpp
    U src/gnu/llvm/lib/Support/Process.cpp
    U src/gnu/llvm/lib/Support/Error.cpp
    U src/gnu/llvm/lib/Support/LineIterator.cpp
    U src/gnu/llvm/lib/Support/Options.cpp
    U src/gnu/llvm/lib/Support/Statistic.cpp
    U src/gnu/llvm/lib/Support/ConvertUTFWrapper.cpp
    U src/gnu/llvm/lib/Support/SmallPtrSet.cpp
    U src/gnu/llvm/lib/Support/regstrlcpy.c
    U src/gnu/llvm/lib/Support/MathExtras.cpp
    U src/gnu/llvm/lib/Support/PluginLoader.cpp
    U src/gnu/llvm/lib/Support/regcclass.h
    U src/gnu/llvm/lib/Support/CMakeLists.txt
    U src/gnu/llvm/lib/Support/ARMWinEH.cpp
    U src/gnu/llvm/lib/Support/RandomNumberGenerator.cpp
    U src/gnu/llvm/lib/Support/TargetParser.cpp
    U src/gnu/llvm/lib/Support/raw_ostream.cpp
    U src/gnu/llvm/lib/Support/BranchProbability.cpp
    U src/gnu/llvm/lib/Support/COM.cpp
    U src/gnu/llvm/lib/Support/IntervalMap.cpp
    U src/gnu/llvm/lib/Support/regex2.h
    U src/gnu/llvm/lib/Support/Atomic.cpp
    U src/gnu/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp
    U src/gnu/llvm/lib/Support/regutils.h
    U src/gnu/llvm/lib/Support/Hashing.cpp
    U src/gnu/llvm/lib/Support/DAGDeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/Unicode.cpp
    U src/gnu/llvm/lib/Support/CrashRecoveryContext.cpp
    U src/gnu/llvm/lib/Support/Compression.cpp
    U src/gnu/llvm/lib/Support/ConvertUTF.cpp
    U src/gnu/llvm/lib/Support/ManagedStatic.cpp
    U src/gnu/llvm/lib/Support/Mutex.cpp
    U src/gnu/llvm/lib/Support/FormatVariadic.cpp
    U src/gnu/llvm/lib/Support/ThreadPool.cpp
    U src/gnu/llvm/lib/Support/StringMap.cpp
    U src/gnu/llvm/lib/Support/StringSaver.cpp
    U src/gnu/llvm/lib/Support/regcomp.c
    U src/gnu/llvm/lib/Support/YAMLTraits.cpp
    U src/gnu/llvm/lib/Support/ARMBuildAttrs.cpp
    U src/gnu/llvm/lib/Support/LLVMBuild.txt
    U src/gnu/llvm/lib/Support/ScopedPrinter.cpp
    U src/gnu/llvm/lib/Support/regex_impl.h
    U src/gnu/llvm/lib/Support/Threading.cpp
    U src/gnu/llvm/lib/Support/Twine.cpp
    U src/gnu/llvm/lib/Support/FormattedStream.cpp
    U src/gnu/llvm/lib/Support/Unix/Memory.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/Unix.h
    U src/gnu/llvm/lib/Support/Unix/COM.inc
    U src/gnu/llvm/lib/Support/Unix/RWMutex.inc
    U src/gnu/llvm/lib/Support/Unix/Program.inc
    U src/gnu/llvm/lib/Support/Unix/ThreadLocal.inc
    U src/gnu/llvm/lib/Support/Unix/Signals.inc
    U src/gnu/llvm/lib/Support/Unix/Mutex.inc
    U src/gnu/llvm/lib/Support/Unix/Host.inc
    U src/gnu/llvm/lib/Support/Unix/Path.inc
    U src/gnu/llvm/lib/Support/Unix/Process.inc
    U src/gnu/llvm/lib/Support/Windows/Memory.inc
    U src/gnu/llvm/lib/Support/Windows/explicit_symbols.inc
    U src/gnu/llvm/lib/Support/Windows/Watchdog.inc
    U src/gnu/llvm/lib/Support/Windows/COM.inc
    U src/gnu/llvm/lib/Support/Windows/RWMutex.inc
    U src/gnu/llvm/lib/Support/Windows/Program.inc
    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/Signals.inc
    U src/gnu/llvm/lib/Support/Windows/Mutex.inc
    U src/gnu/llvm/lib/Support/Windows/Host.inc
    U src/gnu/llvm/lib/Support/Windows/WindowsSupport.h
    U src/gnu/llvm/lib/Support/Windows/Path.inc
    U src/gnu/llvm/lib/Support/Windows/Process.inc
    U src/gnu/llvm/lib/ProfileData/SampleProf.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProf.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
    U src/gnu/llvm/lib/ProfileData/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/InstrProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/Coverage/LLVMBuild.txt
    U src/gnu/llvm/lib/LineEditor/LineEditor.cpp
    U src/gnu/llvm/lib/LineEditor/CMakeLists.txt
    U src/gnu/llvm/lib/LineEditor/LLVMBuild.txt
    U src/gnu/llvm/lib/IRReader/IRReader.cpp
    U src/gnu/llvm/lib/IRReader/CMakeLists.txt
    U src/gnu/llvm/lib/IRReader/LLVMBuild.txt
    U src/gnu/llvm/lib/Passes/PassRegistry.def
    U src/gnu/llvm/lib/Passes/PassBuilder.cpp
    U src/gnu/llvm/lib/Passes/CMakeLists.txt
    U src/gnu/llvm/lib/Passes/LLVMBuild.txt
    U src/gnu/llvm/lib/AsmParser/LLToken.h
    U src/gnu/llvm/lib/AsmParser/LLParser.cpp
    U src/gnu/llvm/lib/AsmParser/LLLexer.h
    U src/gnu/llvm/lib/AsmParser/Parser.cpp
    U src/gnu/llvm/lib/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/AsmParser/LLParser.h
    U src/gnu/llvm/lib/AsmParser/LLLexer.cpp
    U src/gnu/llvm/lib/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/TableGen/TGLexer.h
    U src/gnu/llvm/lib/TableGen/TableGenBackend.cpp
    U src/gnu/llvm/lib/TableGen/SetTheory.cpp
    U src/gnu/llvm/lib/TableGen/TGParser.h
    U src/gnu/llvm/lib/TableGen/Main.cpp
    U src/gnu/llvm/lib/TableGen/Record.cpp
    U src/gnu/llvm/lib/TableGen/TGLexer.cpp
    U src/gnu/llvm/lib/TableGen/Error.cpp
    U src/gnu/llvm/lib/TableGen/CMakeLists.txt
    U src/gnu/llvm/lib/TableGen/TGParser.cpp
    U src/gnu/llvm/lib/TableGen/StringMatcher.cpp
    U src/gnu/llvm/lib/TableGen/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/SlotIndexes.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.h
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.cpp
    U src/gnu/llvm/lib/CodeGen/LowerEmuTLS.cpp
    U src/gnu/llvm/lib/CodeGen/WinEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalMerge.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.cpp
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
    U src/gnu/llvm/lib/CodeGen/XRayInstrumentation.cpp
    U src/gnu/llvm/lib/CodeGen/IfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/FaultMaps.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.cpp
    U src/gnu/llvm/lib/CodeGen/MachineScheduler.cpp
    U src/gnu/llvm/lib/CodeGen/LiveVariables.cpp
    U src/gnu/llvm/lib/CodeGen/UnreachableBlockElim.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePassRegistry.cpp
    U src/gnu/llvm/lib/CodeGen/ExecutionDepsFix.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPass.cpp
    U src/gnu/llvm/lib/CodeGen/README.txt
    U src/gnu/llvm/lib/CodeGen/LiveInterval.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.cpp
    U src/gnu/llvm/lib/CodeGen/ImplicitNullChecks.cpp
    U src/gnu/llvm/lib/CodeGen/MachineTraceMetrics.cpp
    U src/gnu/llvm/lib/CodeGen/MachineVerifier.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSchedule.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalUnion.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCSE.cpp
    U src/gnu/llvm/lib/CodeGen/PHIElimination.cpp
    U src/gnu/llvm/lib/CodeGen/SjLjEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.h
    U src/gnu/llvm/lib/CodeGen/CodeGenPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.h
    U src/gnu/llvm/lib/CodeGen/ExpandISelPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/EdgeBundles.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadataPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/InlineSpiller.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominators.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegionInfo.cpp
    U src/gnu/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/AntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.h
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocPBQP.cpp
    U src/gnu/llvm/lib/CodeGen/StackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRegMatrix.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstrBundle.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.cpp
    U src/gnu/llvm/lib/CodeGen/InterleavedAccessPass.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.h
    U src/gnu/llvm/lib/CodeGen/FuncletLayout.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.h
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/LLVMTargetMachine.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocFast.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.h
    U src/gnu/llvm/lib/CodeGen/PatchableFunction.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocGreedy.cpp
    U src/gnu/llvm/lib/CodeGen/PseudoSourceValue.cpp
    U src/gnu/llvm/lib/CodeGen/Spiller.h
    U src/gnu/llvm/lib/CodeGen/CallingConvLower.cpp
    U src/gnu/llvm/lib/CodeGen/CalcSpillWeights.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCopyPropagation.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/LiveRangeEdit.cpp
    U src/gnu/llvm/lib/CodeGen/ParallelCG.cpp
    U src/gnu/llvm/lib/CodeGen/PeepholeOptimizer.cpp
    U src/gnu/llvm/lib/CodeGen/TargetPassConfig.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/TargetOptionsImpl.cpp
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.h
    U src/gnu/llvm/lib/CodeGen/RegisterUsageInfo.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrintingPass.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.h
    U src/gnu/llvm/lib/CodeGen/MachineBasicBlock.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.h
    U src/gnu/llvm/lib/CodeGen/LiveRangeUtils.h
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/Analysis.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLICM.cpp
    U src/gnu/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.h
    U src/gnu/llvm/lib/CodeGen/TargetRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBasic.cpp
    U src/gnu/llvm/lib/CodeGen/LivePhysRegs.cpp
    U src/gnu/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterScavenging.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplicator.cpp
    U src/gnu/llvm/lib/CodeGen/PostRASchedulerList.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePipeliner.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstr.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplication.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GCStrategy.cpp
    U src/gnu/llvm/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/MachinePostDominators.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugValues.cpp
    U src/gnu/llvm/lib/CodeGen/CountingFunctionInserter.cpp
    U src/gnu/llvm/lib/CodeGen/ShrinkWrap.cpp
    U src/gnu/llvm/lib/CodeGen/GCRootLowering.cpp
    U src/gnu/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStack.cpp
    U src/gnu/llvm/lib/CodeGen/BranchRelaxation.cpp
    U src/gnu/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterPressure.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/LiveStackAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/MachineSink.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.h
    U src/gnu/llvm/lib/CodeGen/DFAPacketizer.cpp
    U src/gnu/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
    U src/gnu/llvm/lib/CodeGen/StackMaps.cpp
    U src/gnu/llvm/lib/CodeGen/TargetInstrInfo.cpp
    U src/gnu/llvm/lib/CodeGen/StackSlotColoring.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/DetectDeadLanes.cpp
    U src/gnu/llvm/lib/CodeGen/MachineSSAUpdater.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGen.cpp
    U src/gnu/llvm/lib/CodeGen/TargetLoweringBase.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunction.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLoopInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterClassInfo.cpp
    U src/gnu/llvm/lib/CodeGen/IntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.cpp
    U src/gnu/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
    U src/gnu/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadata.cpp
    U src/gnu/llvm/lib/CodeGen/PrologEpilogInserter.cpp
    U src/gnu/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.h
    U src/gnu/llvm/lib/CodeGen/AtomicExpandPass.cpp
    U src/gnu/llvm/lib/CodeGen/LowLevelType.cpp
    U src/gnu/llvm/lib/CodeGen/BuiltinGCs.cpp
    U src/gnu/llvm/lib/CodeGen/DwarfEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAG.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/CodeGen/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/LexicalScopes.cpp
    U src/gnu/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
    U src/gnu/llvm/lib/CodeGen/StackProtector.cpp
    U src/gnu/llvm/lib/CodeGen/EarlyIfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/VirtRegMap.cpp
    U src/gnu/llvm/lib/CodeGen/OptimizePHIs.cpp
    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/EHStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
    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/DwarfStringPool.h
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Utils.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.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/LegalizeTypes.h
    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/TargetLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FastISel.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/ScheduleDAGSDNodes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.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/MIParser.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.h
    U src/gnu/llvm/lib/CodeGen/MIRParser/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/MIRParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Option/Option.cpp
    U src/gnu/llvm/lib/Option/Arg.cpp
    U src/gnu/llvm/lib/Option/OptTable.cpp
    U src/gnu/llvm/lib/Option/ArgList.cpp
    U src/gnu/llvm/lib/Option/CMakeLists.txt
    U src/gnu/llvm/lib/Option/LLVMBuild.txt
    U src/gnu/llvm/lib/LTO/LTOCodeGenerator.cpp
    U src/gnu/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
    U src/gnu/llvm/lib/LTO/Caching.cpp
    U src/gnu/llvm/lib/LTO/LTOModule.cpp
    U src/gnu/llvm/lib/LTO/CMakeLists.txt
    U src/gnu/llvm/lib/LTO/LTOBackend.cpp
    U src/gnu/llvm/lib/LTO/LTO.cpp
    U src/gnu/llvm/lib/LTO/UpdateCompilerUsed.cpp
    U src/gnu/llvm/lib/LTO/LLVMBuild.txt
    U src/gnu/llvm/lib/XRay/Trace.cpp
    U src/gnu/llvm/lib/XRay/CMakeLists.txt
    
    10 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	2017/03/14 02:11:34

Modified files:
	gnu/llvm/lib/Target/AArch64: AArch64ISelLowering.cpp 
	                             AArch64Subtarget.h 
	gnu/llvm/tools/clang/include/clang/Basic: DiagnosticSemaKinds.td 
	gnu/llvm/tools/clang/lib/Basic: Targets.cpp 
	gnu/llvm/tools/lld/ELF: Driver.cpp Symbols.cpp 
	                        SyntheticSections.cpp 

Log message:
Merge LLVM 4.0.0 release.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/14 02:41:59

Modified files:
	faq            : faq15.html 

Log message:
remove a sentence describing the effect of explicitly unsetting WRKOBJDIR.
this feature is bound to die soon, if it hasn't already.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 03:13:52

Modified files:
	net/py-raet    : Makefile distinfo 
	net/py-raet/pkg: PLIST 

Log message:
Update to py-raet-0.6.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/03/14 03:15:34

Modified files:
	databases/mariadb: Tag: OPENBSD_6_0 Makefile distinfo 
	databases/mariadb/pkg: Tag: OPENBSD_6_0 PLIST-server PLIST-tests 

Log message:
MFC:
update to MariaDB 10.0.30, from Brad. Fixes CVE-2017-3302 and CVE-2017-3313.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 03:20:53

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.26.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 03:21:11

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.63.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/14 03:21:26

Modified files:
	usr.sbin/dhcrelay: dhcpd.h dhcrelay.c 

Log message:
Remove some global variables that are not being used.

ok gsoares@, jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 03:38:10

Modified files:
	graphics/shotwell: Makefile distinfo 
	graphics/shotwell/patches: patch-configure 
	graphics/shotwell/pkg: PLIST 
Added files:
	graphics/shotwell/patches: 
	                           patch-misc_org_yorba_shotwell_gschema_xml 
	                           patch-src_Printing_vala 
	                           patch-src_Resources_vala 
	                           patch-src_config_ConfigurationInterfaces_vala 

Log message:
Update to shotwell-0.25.92.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/14 04:27:11

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Make mfc_find() more strict when looking for routes, fixes a problem
causing ip_mforward() not to send packets to the userland multicast
routing daemon.

Reported and tested by Paul de Weerd.

ok bluhm@, claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 04:34:14

Modified files:
	x11/arandr     : Makefile 
	x11/arandr/pkg : DESCR 

Log message:
typo: RandR -> ARandR


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/14 04:43:23

Modified files:
	emulators/virtualjaguar: Makefile 
Added files:
	emulators/virtualjaguar/patches: patch-Makefile 
	                                 patch-virtualjaguar_pro 

Log message:
Honour CFLAGS and CXXFLAGS everywhere.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 06:05:40

Modified files:
	net/filezilla  : Makefile 

Log message:
Move devel/libidn to LIB_DEPENDS and regen WANTLIB to unbreak runtime.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/03/14 06:18:54

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/files: audio_manager_openbsd.cc 
	                    audio_manager_openbsd.h 
	www/chromium/patches: patch-BUILD_gn 
	                      patch-ash_display_mirror_window_controller_cc 
	                      patch-base_BUILD_gn 
	                      patch-base_allocator_allocator_shim_cc 
	                      patch-base_debug_stack_trace_posix_cc 
	                      patch-base_debug_thread_heap_usage_tracker_cc 
	                      patch-base_process_process_metrics_h 
	                      patch-base_third_party_symbolize_symbolize_cc 
	                      patch-base_threading_platform_thread_linux_cc 
	                      patch-base_trace_event_malloc_dump_provider_cc 
	                      patch-build_config_BUILDCONFIG_gn 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_compiler_compiler_gni 
	                      patch-build_config_features_gni 
	                      patch-cc_BUILD_gn 
	                      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_mash_mash_runner_cc 
	                      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_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_prefs_cc 
	                      patch-chrome_browser_download_download_prefs_h 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_api_messaging_message_service_cc 
	                      patch-chrome_browser_extensions_bookmark_app_helper_cc 
	                      patch-chrome_browser_extensions_browser_context_keyed_service_factories_cc 
	                      patch-chrome_browser_interstitials_chrome_controller_client_cc 
	                      patch-chrome_browser_media_webrtc_webrtc_log_uploader_cc 
	                      patch-chrome_browser_notifications_message_center_notification_manager_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_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_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_input_method_input_method_engine_base_cc 
	                      patch-chrome_browser_ui_libgtkui_print_dialog_gtk_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_views_accelerator_table_cc 
	                      patch-chrome_browser_ui_views_apps_chrome_native_app_window_views_aura_cc 
	                      patch-chrome_browser_ui_views_chrome_browser_main_extra_parts_views_cc 
	                      patch-chrome_browser_ui_views_chrome_views_delegate_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_options_browser_options_handler_cc 
	                      patch-chrome_browser_ui_webui_options_browser_options_handler_h 
	                      patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                      patch-chrome_common_BUILD_gn 
	                      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_extensions_chrome_extensions_client_cc 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-chrome_common_url_constants_cc 
	                      patch-chrome_common_url_constants_h 
	                      patch-chromecast_browser_cast_content_browser_client_cc 
	                      patch-components_autofill_core_browser_autofill_experiments_cc 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_filesystem_file_system_app_cc 
	                      patch-components_neterror_resources_neterror_js 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-components_policy_tools_generate_policy_source_py 
	                      patch-content_app_content_main_runner_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_accessibility_browser_accessibility_manager_h 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_devtools_protocol_color_picker_cc 
	                      patch-content_browser_download_base_file_cc 
	                      patch-content_browser_gpu_gpu_data_manager_impl_private_cc 
	                      patch-content_browser_gpu_gpu_internals_ui_cc 
	                      patch-content_browser_media_media_internals_cc 
	                      patch-content_browser_ppapi_plugin_process_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_view_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_utility_process_host_impl_cc 
	                      patch-content_child_child_process_cc 
	                      patch-content_child_child_thread_impl_cc 
	                      patch-content_child_child_thread_impl_h 
	                      patch-content_common_BUILD_gn 
	                      patch-content_common_child_process_messages_h 
	                      patch-content_common_view_messages_h 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_renderer_renderer_main_cc 
	                      patch-content_shell_browser_shell_browser_main_parts_cc 
	                      patch-content_utility_utility_main_cc 
	                      patch-content_zygote_zygote_main_linux_cc 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-device_gamepad_gamepad_provider_cc 
	                      patch-extensions_browser_api_serial_serial_api_cc 
	                      patch-gpu_config_gpu_info_collector_x11_cc 
	                      patch-gpu_ipc_service_gpu_init_cc 
	                      patch-ipc_ipc_message_utils_h 
	                      patch-mash_package_mash_packaged_service_cc 
	                      patch-media_BUILD_gn 
	                      patch-media_audio_BUILD_gn 
	                      patch-media_audio_audio_manager_cc 
	                      patch-media_base_video_frame_cc 
	                      patch-media_capture_video_linux_v4l2_capture_delegate_cc 
	                      patch-media_capture_video_video_capture_device_client_cc 
	                      patch-media_media_options_gni 
	                      patch-net_BUILD_gn 
	                      patch-net_http_http_network_session_cc 
	                      patch-net_socket_udp_socket_posix_cc 
	                      patch-net_tools_cert_verify_tool_verify_using_path_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-sandbox_BUILD_gn 
	                      patch-sandbox_linux_BUILD_gn 
	                      patch-services_service_manager_runner_host_BUILD_gn 
	                      patch-services_ui_gpu_gpu_main_cc 
	                      patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_cpp 
	                      patch-third_party_WebKit_Source_platform_fonts_FontPlatformData_h 
	                      patch-third_party_WebKit_Source_platform_fonts_skia_FontCacheSkia_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_StackFrameDepth_cpp 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_cpp 
	                      patch-third_party_WebKit_Source_web_PopupMenuImpl_cpp 
	                      patch-third_party_WebKit_Source_wtf_BUILD_gn 
	                      patch-third_party_angle_BUILD_gn 
	                      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_libavutil_cpu_c 
	                      patch-third_party_pdfium_core_fxge_ge_fx_ge_linux_cpp 
	                      patch-third_party_pdfium_fpdfsdk_javascript_JS_Value_cpp 
	                      patch-third_party_skia_src_gpu_GrAutoLocaleSetter_h 
	                      patch-third_party_webrtc_base_BUILD_gn 
	                      patch-third_party_webrtc_base_httpcommon_cc 
	                      patch-third_party_webrtc_base_network_cc 
	                      patch-third_party_webrtc_base_physicalsocketserver_cc 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                      patch-tools_gn_args_cc 
	                      patch-tools_gn_bootstrap_bootstrap_py 
	                      patch-ui_base_ime_ime_engine_handler_interface_h 
	                      patch-ui_base_ime_input_method_factory_cc 
	                      patch-ui_base_resource_resource_bundle_cc 
	                      patch-ui_events_event_switches_cc 
	                      patch-ui_events_event_switches_h 
	                      patch-ui_gfx_canvas_skia_cc 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_message_center_views_message_view_factory_cc 
	                      patch-ui_views_accessibility_native_view_accessibility_h 
	                      patch-ui_views_bubble_bubble_dialog_delegate_cc 
	                      patch-ui_views_controls_label_cc 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_mus_aura_init_cc 
	                      patch-ui_views_mus_aura_init_h 
	                      patch-ui_views_style_platform_style_cc 
	                      patch-ui_views_window_custom_frame_view_cc 
	                      patch-ui_views_window_dialog_delegate_cc 
	                      patch-v8_BUILD_gn 
	                      patch-v8_src_base_platform_platform-posix_cc 
	                      patch-v8_src_globals_h 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: 
	                      patch-content_browser_child_process_launcher_helper_linux_cc 
	                      patch-content_browser_renderer_host_media_video_capture_manager_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_event_handler_cc 
	                      patch-net_base_network_interfaces_openbsd_cc 
	                      patch-net_base_network_interfaces_openbsd_h 
	                      patch-net_base_network_interfaces_posix_h 
	                      patch-net_quic_platform_impl_quic_ip_address_impl_cc 
	                      patch-sandbox_features_gni 
	                      patch-services_service_manager_public_cpp_standalone_service_BUILD_gn 
	                      patch-services_service_manager_public_cpp_standalone_service_standalone_service_cc 
	                      patch-third_party_WebKit_Source_wtf_StackUtil_cpp 
	                      patch-third_party_mesa_src_src_glsl_strtod_c 
	                      patch-third_party_mesa_src_src_mesa_main_imports_c 
	                      patch-v8_src_wasm_wasm-result_h 
Removed files:
	www/chromium/patches: patch-ash_shell_cc 
	                      patch-chrome_browser_extensions_api_omnibox_omnibox_api_cc 
	                      patch-chrome_browser_ui_views_app_list_linux_app_list_linux_cc 
	                      patch-chrome_browser_ui_views_frame_browser_view_cc 
	                      patch-content_browser_child_process_launcher_cc 
	                      patch-content_renderer_pepper_pepper_media_device_manager_cc 
	                      patch-net_base_network_interfaces_posix_cc 
	                      patch-services_ui_public_cpp_gles2_context_cc 
	                      patch-services_ui_surfaces_surfaces_context_provider_cc 
	                      patch-third_party_WebKit_Source_platform_heap_ThreadState_h 
	                      patch-tools_perf_chrome_telemetry_build_BUILD_gn 
	                      patch-ui_app_list_views_app_list_view_cc 

Log message:
update to 57.0.2987.98


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/14 06:22:41

Modified files:
	lang/swi-prolog: Makefile 

Log message:
Fix MASTER_SITES

ok edd@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/14 06:23:21

Modified files:
	lang/swi-prolog: Makefile 

Log message:
Use lang/gcc for atomic builtins on arm

ok edd@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/03/14 07:40:31

Modified files:
	sysutils/u-boot: Makefile distinfo 

Log message:
update to u-boot 2017.03


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/14 09:15:15

Modified files:
	security/botan : Makefile distinfo 

Log message:
sort according to Makefile.template
limit portroach to botan version 1, version 2 is a different port
switch home page and master site to https
optionally download gpg signature to check it easily at update
fixing permissions of documentation files is not necessary anymore
bring in line with botan2 Makefile


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/14 09:15:19

Modified files:
	lib/libc/asr   : res_send_async.c 

Log message:
don't need to handle the malloc case special, since realloc works
with NULL
ok eric


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/14 09:35:48

Modified files:
	usr.sbin/syslogd: syslogd.c 

Log message:
KNF spacing is more important than long lines


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/14 10:19:02

Log message:
    Owncloud fork, Store your documents, calendar, contacts and photos on a server.
    
    Initial port from Johan Huldtgren with some tweaks by me.
    
    OK kirby@
    
    Status:
    
    Vendor Tag:	gonzalo
    Release Tags:	gonzalo_20171403
    
    N ports/www/nextcloud/Makefile
    N ports/www/nextcloud/distinfo
    N ports/www/nextcloud/files/httpd-nextcloud.conf.dist.in
    N ports/www/nextcloud/files/apache-nextcloud.conf.dist.in
    N ports/www/nextcloud/patches/patch-apps_updatenotification_appinfo_info_xml
    N ports/www/nextcloud/patches/patch-version_php
    N ports/www/nextcloud/pkg/DESCR
    N ports/www/nextcloud/pkg/PLIST
    N ports/www/nextcloud/pkg/README
    N ports/www/nextcloud/pkg/UNMESSAGE
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/14 10:19:40

Modified files:
	www            : Makefile 

Log message:
hook nextcloud


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/14 10:46:05

Modified files:
	lib/libc/stdio : asprintf.c vasprintf.c 

Log message:
Use a macro for the initial length of the buffer instead of 127; OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/14 10:49:18

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Allow SIOCGIFXFLAGS in pledge("route") along side SIOCGIFFLAGS, needed
for upcoming IPv6 stateless address autoconfiguration daemon to see
if autoconfiguration and autoconfprivacy are enabled.
Input semarie@; OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 11:29:45

Modified files:
	devel/llvm     : Makefile distinfo 
	devel/llvm/patches: 
	                    patch-lib_Target_AArch64_AArch64ISelLowering_cpp 
	                    patch-tools_clang_lib_Basic_Targets_cpp 
	                    patch-tools_clang_lib_Driver_Tools_cpp 
	devel/llvm/pkg : PLIST-main 

Log message:
Update to llvm-4.0.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/14 11:30:31

Modified files:
	devel/include-what-you-use: Makefile 
	lang/clang     : clang.port.mk 

Log message:
Bump LLVM version.

from Brad


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/14 12:19:03

Modified files:
	faq            : faq4.html 

Log message:
merge the 'additional thoughts' subsection into its parent. remove some
bullet points that aren't vital and trim some fat from the others.

input/ok tj


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/14 12:21:59

Modified files:
	faq            : faq4.html 

Log message:
oops: doubled "as" and missing "or"


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/14 12:30:49

Modified files:
	faq            : faq4.html index.html 

Log message:
rename "partitioning options" into "disk partitioning"

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/03/14 14:22:06

Modified files:
	regress/lib/libc/asr: regress.subr 

Log message:
copy /etc/services in test directory


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/14 17:30:36

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCheck.pm 

Log message:
a few more characters that are safe to print
pass thru the $@ "dieing" report from reading a plist.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/14 17:40:35

Added files:
	security/softhsm/patches: patch-checks_Makefile_in 

Log message:
Make the tests that come with security/softhsm compile and pass.
OK maintainer Patrik Lundin


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/14 18:13:18

Modified files:
	lib/libutil    : fmt_scaled.c 

Log message:
Catch integer underflow in scan_scaled reported by Nicolas Iooss.
ok deraadt@ djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/14 18:23:32

Modified files:
	net/py-slixmpp : Makefile distinfo 
	net/py-slixmpp/pkg: PLIST 

Log message:
Update to py3-slixmpp-1.2.4pl1

Help from landry@ and espie@ regarding PKGNAME which looks legit to espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/14 18:25:59

Modified files:
	net/poezio     : Makefile distinfo 
	net/poezio/patches: patch-setup_py 
	net/poezio/pkg : PLIST 

Log message:
Update to poezio-0.11


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/14 20:19:09

Modified files:
	usr.bin/ssh    : sshd.c 

Log message:
Fix segfault when sshd attempts to load RSA1 keys (can only happen
when protocol v.1 support is enabled for the client). Reported by
Jakub Jelen in bz#2686; ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/14 20:25:09

Modified files:
	usr.bin/ssh    : ssh-agent.c 

Log message:
fix regression in 7.4: deletion of PKCS#11-hosted keys would fail
unless they were specified by full physical pathname.
Report and fix from Jakub Jelen via bz#2682; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/14 21:52:30

Modified files:
	usr.bin/ssh    : ssh-agent.c sshd.c 

Log message:
accidents happen to the best of us; ok djm


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/14 22:24:14

Modified files:
	usr.bin/top    : commands.c display.c machine.c screen.c top.c 
	                 utils.c 

Log message:
annoying whitespace die die die


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/14 22:31:41

Modified files:
	regress/lib/libutil/fmt_scaled: fmt_test.c 

Log message:
Clean up errno handling in fmt_scaled test:
- always clear before calling function under test.
- save immediately after function under test.
- always use saved value for validation and reporting.
- remove "fraction too big" testcase that never atually worked (but looked
like it did because the previous test's errno was never cleared).
- delete unecessary "extern int errno".


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/14 22:37:10

Modified files:
	.              : 61.html 

Log message:
update Chromium and LLVM versions


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/14 23:00:58

Modified files:
	regress/lib/libutil/fmt_scaled: fmt_test.c 

Log message:
Add tests for scaled overflow and underflow and the exact overflow and
underflow boundaries for 64bit platforms.  Tests for exactly under the
boundaries disabled pending fixes.  ok millert@ djm@ (previous version).


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/14 23:25:56

Modified files:
	lib/libutil    : fmt_scaled.c 

Log message:
Collapse underflow and overflow checks into a single block.
ok djm@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	markus@cvs.openbsd.org	2017/03/15 01:07:39

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
disallow KEXINIT before NEWKEYS; ok djm; report by vegard.nossum at oracle.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/15 02:21:51

Modified files:
	x11/gnome/control-center: Makefile distinfo 
	x11/gnome/control-center/patches: 
	                                  patch-panels_user-accounts_Makefile_in 
Added files:
	x11/gnome/control-center/patches: 
	                                  patch-panels_info_cc-info-panel_c 

Log message:
Update to gnome-control-center-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/15 02:54:50

Modified files:
	devel/libevent2: Makefile 

Log message:
Switch to github releases MASTER_SITES, upstream's website is linking there
rather than sourceforge so that's the preferred option. Part of a diff from
Rafael Sadowski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/03/15 02:57:20

Modified files:
	security/botan : Tag: OPENBSD_6_0 Makefile distinfo 

Log message:
MFC:
update botan to 1.10.15; from Rafael Sadowski
CVE-2015-7827 CVE-2016-2194 CVE-2016-2195 CVE-2016-2849 CVE-2016-9132


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/15 03:11:30

Modified files:
	x11/kde4/kactivities: Makefile 
	x11/kde4/libs  : Makefile 
	x11/kde4/pim   : Makefile 
	x11/kde4/pim-runtime: Makefile 
	x11/kde4/pimlibs: Makefile 
	x11/kde4/workspace: Makefile 

Log message:
Fix MASTER_SITES, some distfiles were moved to an "Attic" subdir

from Rafael Sadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/15 03:21:21

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Try to avoid moving the cursor to the start of the next line when
printing cells if it is already at the very end of the line and the
terminal will wrap it to the next line itself, this means terminals
still see it as a wrapped line for the purposes of their own mouse
selection. Reported by millert@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/15 03:26:10

Modified files:
	productivity/calcurse: Makefile distinfo 
	productivity/calcurse/patches: patch-src_utils_c 

Log message:
Update to calcurse-4.2.2v0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/15 03:43:08

Modified files:
	net/arp-scan   : Makefile distinfo 

Log message:
update mac address db


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/15 04:14:40

Modified files:
	x11/gnome/settings-daemon: Makefile distinfo 

Log message:
Update to gnome-settings-daemon-3.22.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/15 04:17:08

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
It's annoying that people keep writing URIs including redundant parts
like "/OpenBSD-current/manN/".  To discourage that, let man.cgi(8)
redirect search form results to nice, concise URIs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2017/03/15 04:27:42

Modified files:
	devel/luacheck : Makefile distinfo 
	devel/luacheck/pkg: PLIST 

Log message:
update to luacheck 0.19.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/15 04:37:44

Modified files:
	graphics/shotwell: Makefile 
	graphics/shotwell/patches: patch-src_Resources_vala 
Removed files:
	graphics/shotwell/patches: 
	                           patch-misc_org_yorba_shotwell_gschema_xml 
	                           patch-src_Printing_vala 
	                           patch-src_config_ConfigurationInterfaces_vala 

Log message:
Check for LC_MEASUREMENT in a more portable way (upstream).


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2017/03/15 05:13:34

Modified files:
	sys/arch/luna88k/dev: lcd.c 

Log message:
We do not need while loop around uiomove(9) in lcdwrite().

Pointed out by Enami Tsugutomo while porting this driver to NetBSD/luna68k
by Izumi Tsutsui.

Tested by me.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/15 05:29:50

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c mdoc_html.c 

Log message:
Minimal support for deep linking into man(7) pages.
As the man(7) language does not provide semantic markup,
only .SH, .SS, and .UR become anchors for now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2017/03/15 05:56:17

Modified files:
	textproc/pdfgrep: Makefile distinfo 
	textproc/pdfgrep/patches: patch-src_pdfgrep_cc 
Removed files:
	textproc/pdfgrep/patches: patch-src_regengine_cc 
	                          patch-testsuite_Makefile_in 
	                          patch-testsuite_lib_pdfgrep_exp 
	                          patch-testsuite_pdfgrep_tests_exit_status_exp 
	                          patch-testsuite_pdfgrep_tests_usage_exp 

Log message:
Update to pdfgrep v. 2.0.1 from maintainer Reinhold Straub.

In addition, comment out a locale call that caused a segfault in
the UTF-8 locale and add a tiny tightening of the pledge.

ok jca


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/15 06:42:12

Modified files:
	usr.sbin/vmd   : control.c 

Log message:
Don't terminate vmd(8) when we lost the control connection.

When a start vm request is received from vmctl via the control socket,
vmd's control process forwards it to the parent to trigger the action.
A response is received later, in an async way, and send back to vmctl
that is supposed to wait for it.  But now, if vmctl got terminated
before receiving the response, vmd fails to find the control
connection.  In this case it should not abort, print and warning, and
ignore the error.  The fix is a simple as changing a return (-1) to a
return (0).

This fixes an issue that was reported by mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/15 07:18:48

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
Mention the manual page name and section in the HTML page <title>.
Based on a patch from <Anton dot Lindqvist at gmail dot com>,
but simplified and also covering apropos(1) search results.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2017/03/15 07:39:36

Modified files:
	www/kcgi       : Makefile distinfo 

Log message:
Update kcgi to 0.9.4


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/15 07:49:26

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
In URIs in apropos(1) result tables,
only write the manpath if it does not match the default.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/15 08:31:49

Modified files:
	usr.sbin/dhcrelay: dhcpd.h dhcrelay.c dispatch.c 

Log message:
Improve the interface and addresses discovery code and prepare to
receive IPv6 support.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/15 09:22:14

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Invalidate the cursor when we think we should have wrapped.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/15 09:24:24

Modified files:
	sys/dev        : rnd.c 

Log message:
spelling and whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/15 09:54:41

Modified files:
	lib/libc/asr   : res_send_async.c 

Log message:
use recallocarray to resize buffer - ensures that detritus from previous
lookups isn't left lying around the address space.
ok eric


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/15 09:57:59

Modified files:
	.              : innovations.html 

Log message:
add recallocarray and tweak intro wording.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/15 10:45:25

Modified files:
	usr.bin/whois  : whois.c 

Log message:
There's no need to realloc() a chunk of memory when you don't care
about the old contents, we don't want have to memcpy() the old
contents to the new chunk only to throw it away.
While here, use asprintf() to simplify things.  OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/15 11:53:10

Modified files:
	usr.sbin/vmd   : vmd.c 

Log message:
Close the tty if the VM was powered down.

The parent keeps a copy of each VM's tty fd to reuse it on reboot.
Close this tty if the VM was stopped, and not rebooted, by calling
vm_stop(vm, 0) instead of just setting vm_running to 0.  Also make
sure that vm_ttyname is not used after free'ing it.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/15 12:00:11

Modified files:
	usr.sbin/vmctl : vmctl.c 

Log message:
Print "-" if the tty name is empty.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/15 12:06:18

Modified files:
	sys/dev/pv     : vmmci.c 
	usr.sbin/vmd   : virtio.c virtio.h vm.c vmd.h vmm.c 

Log message:
Improve vmmci(4) shutdown and reboot.

This change handles various cases to power off the VM, even if it is
unresponsive, stuck in ddb, or when the shutdown was initiated from
the VM guest side.  Usage of timeout and VM ACKs make sure that the VM
is really turned off at some point.

OK mlarkin@


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/03/15 13:24:58

Modified files:
	.              : innovations.html 

Log message:
Harvest some innovations from 61.html: acme-client, syspatch, ping, xenodm.
Update the links to switchd(8) and switchctl(8).
Replace <tt> with <code>.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/15 13:54:52

Modified files:
	usr.sbin/vmd   : vmd.c 

Log message:
More fixes for starting and stopping VMs, fixing fallout from vm_running.

- Don't start a VM that is already running
- Keep the VM as running until it is powered off (and not stopping)
- Don't fatal in the parent if the vmm process referenced an unknown VM
- Don't stop a VM that is already stopping
- Indicate that a VM is stopping in "vmctl status"

The previous "vmctl stop; vmctl stop" to force-shutdown is not
supported anymore - the shutdown timeout should make sure that the VM
is really terminated.  To force-shutdown, reference the VM by ID.
We might add a flag to vmctl stop to just turn the VM off.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/03/15 15:05:27

Modified files:
	sys/arch/alpha/compile: Makefile.inc 
	sys/arch/amd64/compile: Makefile.inc 
	sys/arch/arm64/compile: Makefile.inc 
	sys/arch/armv7/compile: Makefile.inc 
	sys/arch/hppa/compile: Makefile.inc 
	sys/arch/i386/compile: Makefile.inc 
	sys/arch/landisk/compile: Makefile.inc 
	sys/arch/loongson/compile: Makefile.inc 
	sys/arch/luna88k/compile: Makefile.inc 
	sys/arch/macppc/compile: Makefile.inc 
	sys/arch/octeon/compile: Makefile.inc 
	sys/arch/sgi/compile: Makefile.inc 
	sys/arch/socppc/compile: Makefile.inc 
	sys/arch/sparc64/compile: Makefile.inc 

Log message:
Fix building profiling kernels by passing the -p flag to config(8)
if the kernel's name ends in .PROF.

problem reported by jmc via mpi
ok mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2017/03/15 15:43:45

Modified files:
	sys/dev/usb    : ubcmtp.c 

Log message:
Configure and apply the multitouch-tracking functions of wsmouse.

Special thanks to Martina P. for her help.

ok jcs@ jung@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/15 16:23:33

Modified files:
	audio/milkytracker: Makefile distinfo 
	audio/milkytracker/patches: patch-src_tracker_sdl_SDL_Main_cpp 
	audio/milkytracker/pkg: PLIST 
Added files:
	audio/milkytracker/patches: 
	                            patch-src_ppui_osinterface_posix_PPSystem_POSIX_cpp 

Log message:
Update audio/milkytracker to 1.0.0 and take maintainership.

Notable changes:

- Upstream moved to GitHub
- MilkyTracker now uses the CMake build system and switched to SDL2

OK juanfra@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/15 16:42:00

Modified files:
	.              : innovations.html 

Log message:
give kristaps proper credit for acme-client and fix import date.
replace "to be released with 6.1" lines with just the version.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/15 20:40:46

Modified files:
	lib/libutil    : fmt_scaled.c 

Log message:
Fix overly-conservative overflow checks on mulitplications and add checks
on additions.  This allows scan_scaled to work up to +/-LLONG_MAX (LLONG_MIN
will still be flagged as a range error).  ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2017/03/15 20:42:31

Modified files:
	regress/lib/libutil/fmt_scaled: fmt_test.c 

Log message:
Enable tests for +/-LLONG_MAX and add tests for other boundary conditions.
ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/15 21:53:37

Modified files:
	bin/pax        : tables.c 

Log message:
buffer increase factor belongs in the nmemb field of reallocarray()
ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/16 01:07:45

Modified files:
	net/py-raet    : Makefile 

Log message:
Missing bdep.

reported by naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/03/16 02:42:41

Modified files:
	.              : 61.html 

Log message:
update MariaDB version, pointed out by Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/03/16 03:08:22

Modified files:
	net/seafile    : Makefile.inc 
	net/seafile/ccnet: Makefile distinfo 
	net/seafile/ccnet/patches: patch-tools_Makefile_am 
	net/seafile/ccnet/pkg: PLIST 
	net/seafile/client: Makefile distinfo 
	net/seafile/client/patches: patch-src_seafile-applet_cpp 
	net/seafile/seafile: distinfo 
	net/seafile/seafile/patches: patch-daemon_Makefile_am 
	                             patch-daemon_http-tx-mgr_c 
	net/seafile/seafile/pkg: PLIST 

Log message:
Update to seafile-6.0.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/16 03:17:20

Modified files:
	usr.sbin/dhcrelay: dhcpd.h dhcrelay.c 

Log message:
Move the server struct to header file and make it compatible with IPv6.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/16 03:53:33

Modified files:
	net/samba      : Makefile distinfo 

Log message:
Update to samba-4.5.6

Tests by Ian


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/16 04:02:03

Modified files:
	sys/arch/amd64/include: cpu.h 
	sys/arch/i386/include: cpu.h 

Log message:
Typo, from miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/16 04:03:27

Modified files:
	sys/dev/wscons : wsconsio.h wsmouse.c wsmouseinput.h wstpad.c 

Log message:
Simplify wstpad option handling:

- Remove unnecessary abstraction
- Make it possible to support new features/options without ABI break
- Remove some complexity and hard limits
- Simplify & keep documentation close to options

ok bru@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/16 04:05:47

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
Fix a regression preventing ``kern.profiling'' to return the profiling
state even with a correct kernel.

Reported by jmc@, ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/16 04:13:11

Modified files:
	sys/net        : rtsock.c 

Log message:
Do not allow to change the gateway of an existing entry if the AF
family is incorrect.

Prevent bgpd(8) to corrupt ARP entries as reported by Joe Holden.

ok benno@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/16 04:18:11

Modified files:
	usr.sbin/httpd : httpd.conf.5 server_http.c 

Log message:
Expand $HTTP_HOST in redirects.
From Rivo Nurges Rivo.Nurges AT smit.ee, thanks!
OK reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 04:32:02

Modified files:
	usr.bin/newsyslog: newsyslog.c 

Log message:
syslogd(8) -Z generates log files with time in ISO format and UTC.
newsyslog(8) still used the traditional BSD syslog timstamps in
local time zone.  Convert the latter to the new format unconditionally.
It is usefull to have a distinct timestamp including the year at
the beginning of every logfile.
OK deraadt@ jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/16 04:42:01

Modified files:
	sys/netinet6   : in6.c 

Log message:
Userland expects pltime to be a time stamp not number of seconds.
pltime conversion was missing from rev 1.193 which did the vltime
conversion only.
OK mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/16 05:04:35

Modified files:
	sysutils/bacula: Makefile distinfo 
Removed files:
	sysutils/bacula/patches: patch-src_filed_backup_c 
	                         patch-src_filed_xacl_c 
	                         patch-src_lib_bnet_c 

Log message:
update to Bacula 7.4.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/16 05:44:12

Modified files:
	net/py-raet    : Makefile 

Log message:
setuptools-git is a bdep, was added as rdep


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/16 05:55:03

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update to offlineimap-7.0.14

From Remi Locherer (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 06:14:37

Modified files:
	usr.sbin/syslogd: ttymsg.c 

Log message:
There was a file descripotor leak in the syslogd(8) ttymsg() error
path.  Before returning early with an error, close the newly opened
file descriptor.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 06:32:16

Modified files:
	security/botan2: Makefile 
	security/botan2/patches: patch-src_build-data_os_openbsd_txt 
	                         patch-src_scripts_install_py 

Log message:
patches have been commited upstream, put git log into comment
makefile beautification


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 06:34:55

Modified files:
	security/botan : Makefile 

Log message:
Limit portroach to 1.10..., there is a 1.11.34 development version.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/16 07:15:06

Modified files:
	lib/libcrypto/buffer: buffer.c 

Log message:
Use calloc() instead of malloc() followed by manually zeroing fields.

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/16 07:29:56

Modified files:
	lib/libcrypto/buffer: buffer.c 

Log message:
Convert BUF_MEM_grow() and BUF_MEM_grow_clean() to recallocarray(),
ensuring that the buffer contents are zeroed on allocation and not leaked
when resizing.

It is worth noting that BUF_MEM_grow_clean() already did this manually by
avoiding realloc().

ok beck@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/16 08:26:18

Modified files:
	lib/libc/stdio : fvwrite.c 

Log message:
When reallocating the buffer for asprintf(), just round up to the
nearest page instead of doubling the old size until it is large
enough.  OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 08:27:23

Modified files:
	lib/libc/gen   : sysctl.3 

Log message:
bit more consistent;


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/16 08:32:02

Modified files:
	lib/libc/stdio : asprintf.c vasprintf.c 

Log message:
Only reallocate the buffer to fit for medium-size allocations where
we expanded the buffer to a single page.  The final realloc() can
be expensive for large buffers and is not realled needed.  OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 08:57:15

Modified files:
	lib/libc/gen   : sysctl.3 

Log message:
sync the vfs bits as best i can;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 09:07:45

Modified files:
	libexec/spamd  : spamd.8 

Log message:
use one way to show filter rules, not two. the bits and pieces of the
spamd setup are complex enough without freestyling the pf rules;

while here, Bk/Ek no longer required


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 09:09:32

Modified files:
	share/man/man5 : spamd.conf.5 

Log message:
spamd.conf is the configuration file for spamd-setup, not spamd;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 09:16:21

Modified files:
	libexec/spamd  : spamd.8 

Log message:
define the role of spamd-setup a little better;


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/03/16 09:31:09

Modified files:
	devel/p5-File-MimeInfo: Makefile distinfo 

Log message:
Update to p5-File-MimeInfo-0.28.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/16 09:44:06

Modified files:
	www/varnish    : Makefile distinfo 
	www/varnish/pkg: PLIST 

Log message:
Update for Varnish to 5.1.0

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/16 09:57:47

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgAdd.pm 

Log message:
tied files should be treated like deleted files wrt checksums.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/16 10:02:52

Modified files:
	net/netatalk3  : Makefile distinfo 

Log message:
Update to netatalk-3.1.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/16 10:21:04

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_docker_docker_py 
	                                   patch-lib_googlecloudsdk_core_updater_local_state_py 
	                                   patch-lib_googlecloudsdk_core_util_platforms_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-147.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 10:22:53

Modified files:
	telephony/p5-Net-SIP: Makefile distinfo 

Log message:
update p5-Net-SIP to 0.809


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/16 10:26:30

Modified files:
	.              : index.html 

Log message:
fix inconsistent and invalid markup.

from wesley moore


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/16 10:56:08

Modified files:
	gnu/usr.bin/binutils-2.17/include/opcode: i386.h 

Log message:
Fix handling of the SVM instructions such that they accept a register as
an operand instead of a memory address.  This matches what more recent
binutils versions do and allows us to write inline assembly that's accepted
by both clang and gas.

ok mlarkin@, visa@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/16 11:05:43

Modified files:
	.              : index.html 

Log message:
introduce style block and move body styles into it.
separate presentation from page content.

from wesley moore
tested by me, deraadt and some irc people


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 11:41:51

Modified files:
	textproc/p5-XML-LibXML: Makefile distinfo 

Log message:
update p5-XML-LibXML to 2.0129


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 11:55:22

Modified files:
	usr.sbin/syslogd: syslogd.c 

Log message:
Convert the global variable fd_tls to a local one.  Use separate
callbacks for TCP and TLS accept(2) instead of looking at the value
of the listen file descriptor.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/16 12:08:58

Modified files:
	sys/arch/luna88k/conf: ld.script 
	sys/arch/luna88k/stand/boot: boot.c init_main.c 

Log message:
Fix passing entropy from boot loader to the kernel:
- make sure the kernel has a PT_OPENBSD_RANDOMIZE phdr.
- load /etc/random.conf in all cases, not only manual boot (oops).

ok aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/16 12:13:44

Modified files:
	sys/arch/luna88k/cbus: i82365_cbus.c necsb.c 
	sys/arch/luna88k/dev: spc.c 
	sys/arch/luna88k/include: bus.h 

Log message:
Use a power of two and left shift, rather than integer multiplication, for
the bus_space access stride. This allows better instruction scheduling by
the compiler.

ok aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/16 12:15:20

Modified files:
	sys/arch/luna88k/dev: mb89352.c 

Log message:
Unroll two small bus_space_{read_write}_multi operations in a hot code path.
This causes a tiny speedup.

ok aoyama@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/03/16 12:16:33

Modified files:
	.              : innovations.html 

Log message:
trickiest parts of YP were in libc


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/16 12:21:33

Modified files:
	build          : mirrors.dat 

Log message:
remove some commented-out mirrors.

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 13:15:19

Modified files:
	bin/ksh        : sh.1 

Log message:
document the "hash" built-in, moved to (posix) base in issue 7;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 13:30:57

Modified files:
	sbin/sysctl    : sysctl.8 

Log message:
remove the list of available sysctls: the sysctls are fully
described in sysctl(3) and a list of available sysctls on any particular
machine is best retrieved using sysctl; text tweaked by schwarze

ok bluhm millert deraadt schwarze


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/16 13:56:07

Modified files:
	faq            : faq4.html 

Log message:
link directly to the relevant section of disklabel(8) instead of saying
what to read.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/16 13:56:31

Modified files:
	faq            : faq14.html 

Log message:
boot(8), not boot(9)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 13:59:15

Modified files:
	bin/ksh        : sh.1 

Log message:
document the ulimit built-in, which is now marked xsi by posix;
noted by scott cheloha


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/16 14:05:14

Modified files:
	usr.bin/tmux   : cmd-kill-pane.c 

Log message:
Redraw after killp -a.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/16 14:06:37

Modified files:
	bin/ksh        : sh.1 

Log message:
document the "type" built-in, marked as xsi by posix;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/16 14:15:07

Modified files:
	sys/arch/arm64/arm64: pmap.c 
	sys/arch/arm64/include: pmap.h pte.h 

Log message:
Remove some unused variables, unused types, duplicated/unused function
prototypes and duplicate defines.

Also remove PMAP_CACHE_PTE, which is unused and misleading since the page
tables are mapped as normal write-back cached memory.

Fix a bunch on KNF issues as well.

ok patrick@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/16 14:22:10

Modified files:
	faq            : faq7.html 

Log message:
simplify reference to cua(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2017/03/16 15:07:07

Modified files:
	sys/dev/pv     : vioscsi.c 

Log message:
vioscsi: Don't call virtio_dequeue_commit on not-queued slots

Also, add some debug asserts all over the place.


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2017/03/16 15:08:03

Modified files:
	sys/dev/pv     : vioscsi.c 

Log message:
vioscsi: return XS_NO_CCB if out of space

If there is not enough space in the vring, don't return
XS_DRIVER_STUFFUP but XS_NO_CCB, so that the operation will
be retried later.


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2017/03/16 15:08:50

Modified files:
	sys/dev/pv     : vioscsi.c 

Log message:
vioscsi: Negotiate features during attach

While vioscsi does not support any virtio-scsi features, we need to call
virtio_negotiate_features() in order to negotiate device-independent
features like VIRTIO_F_RING_INDIRECT_DESC.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/16 16:05:46

Modified files:
	sys/dev/pci    : pcireg.h 
	usr.sbin/pcidump: pcidump.c 

Log message:
Print PCIe Extended Capabilities, from Simon Mages
ok kettenis mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/16 17:55:19

Modified files:
	usr.sbin/syslogd: Makefile syslogd.c syslogd.h 
Added files:
	usr.sbin/syslogd: log.c log.h 

Log message:
Start to replace the home grown syslogd(8) internal debug and logging
functions with a more common log.c implementation.  Of course
openlog(3) cannot be used, so adapt the log.[ch] initially copied
from ospfd(8) to syslogd's special needs.  As the messages are
limited to ERRBUFSIZE anyway, malloc(3) in the error logging code
can be avoided.  Changing all log calls to the new API will be done
in a separate step.
OK millert@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/16 19:08:20

Modified files:
	.              : 61.html 

Log message:
sort archs alphabetically in bullet list for installation notes and the
quick installer information. the previous order might evoke melancholy by
reminding faithful users of the good old times when cds still existed, but
in this day and age it makes no sense. zap a duplicate hppa entry while
there.

suggested by miod


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/17 01:15:01

Modified files:
	audio/soundtouch: Makefile 
	databases/barman: Makefile 
	net/icecast    : Makefile 
	net/weechat    : Makefile 
	productivity/taskwarrior: Makefile 

Log message:
Drop MAINTAINER per his request.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 01:36:35

Modified files:
	www/apache-httpd: Makefile distinfo 
	www/apache-httpd/patches: patch-configure 
	                          patch-docs_conf_httpd_conf_in 
	                          patch-server_mpm_unix_c 

Log message:
update to apache-httpd-2.4.25
CVE-2016-8740 CVE-2016-5387 CVE-2016-2161 CVE-2016-0736 CVE-2016-8743


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 01:39:58

Log message:
    import py-betamax, "VCR imitation for python-requests"  from/ok danj@
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20170317
    
    N ports/www/py-betamax/Makefile
    N ports/www/py-betamax/distinfo
    N ports/www/py-betamax/pkg/PLIST
    N ports/www/py-betamax/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 01:48:46

Log message:
    import www/py-requests-toolbelt, from Remi Locherer, test deps from + ok danj@,
    extra patch from me to make TCP_KEEP{INTVL,CNT} conditional.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20170317
    
    N ports/www/py-requests-toolbelt/Makefile
    N ports/www/py-requests-toolbelt/distinfo
    N ports/www/py-requests-toolbelt/pkg/DESCR
    N ports/www/py-requests-toolbelt/pkg/PLIST
    N ports/www/py-requests-toolbelt/patches/patch-requests_toolbelt_adapters_socket_options_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 01:49:52

Modified files:
	www            : Makefile 

Log message:
+py-requests-toolbelt, py-betamax


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 01:53:49

Log message:
    import productivity/vdirsyncer, from Remi Locherer, ok danj@
    
    Vdirsyncer synchronizes your calendars and addressbooks between two
    storages. The most popular purpose is to synchronize a CalDAV/CardDAV
    server with a local folder or file. The local data can then be accessed
    via a variety of programs, none of which have to know or worry about
    syncing to a server.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20170317
    
    N ports/productivity/vdirsyncer/Makefile
    N ports/productivity/vdirsyncer/distinfo
    N ports/productivity/vdirsyncer/pkg/DESCR
    N ports/productivity/vdirsyncer/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 01:54:17

Modified files:
	productivity   : Makefile 

Log message:
+vdirsyncer


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 02:29:15

Modified files:
	archivers/lzo2 : Makefile distinfo 

Log message:
update to lzo-2.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2017/03/17 02:33:17

Modified files:
	net/gajim      : Makefile distinfo 
	net/gajim/patches: patch-src_common_helpers_py 
	net/gajim/pkg  : PLIST 

Log message:
Update to 0.16.7
Diff from Rafael Sadowski, thanks !
ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 02:35:27

Modified files:
	security/py-bcrypt: Makefile distinfo 

Log message:
update to py-bcrypt-3.1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 02:39:38

Modified files:
	security/libsodium: Makefile distinfo 
	security/libsodium/pkg: PLIST 

Log message:
update to libsodium-1.0.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/17 02:56:32

Modified files:
	games/rocksndiamonds: Makefile distinfo 
	games/rocksndiamonds/patches: patch-src_Makefile 

Log message:
Update to rocksndiamonds-4.0.0.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/17 02:58:01

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/py-acme: distinfo 

Log message:
update to py-acme/certbot 0.12.0


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/17 03:25:59

Modified files:
	sys/dev/usb    : usbdi.c 

Log message:
ubcmtp(4) works because of a use-after-free.  Many more drivers are
certainly doing the same.

So revert r1.85 for the moment, we're too close from the release and
these bugs have been there for years.

Regression reported by tb@ on bugs@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/17 03:26:28

Modified files:
	sys/dev/usb    : ubcmtp.c 

Log message:
More debug goo to help tracking the use-after-free.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/17 03:55:02

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.9.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/17 04:02:47

Modified files:
	sysutils/serf  : Makefile distinfo 

Log message:
Update to hashicorp-serf-0.8.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/03/17 04:17:29

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 57.0.2987.110


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/17 06:06:02

Modified files:
	usr.bin/mandoc : man_html.c mdoc_html.c 

Log message:
Fix regression in mdoc_html.c 1.150, man_html 1.87:
For .Sh, .Ss, .SH, .SS, only write selflink if an id could be constructed.
Crash reported by Raf Czlonka <rczlonka at gmail dot com>,
analysis of root cause by natano@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/17 06:55:52

Modified files:
	usr.bin/mandoc : man.cgi.8 

Log message:
Update HISTORY and AUTHORS: we no longer use SQLite.
Outdated information reported by an Anonymous Coward on undeadly.org.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/17 08:31:15

src/usr.sbin/dhcrelay6

Update of /cvs/src/usr.sbin/dhcrelay6
In directory cvs.openbsd.org:/tmp/cvs-serv81340/dhcrelay6

Log Message:
Directory /cvs/src/usr.sbin/dhcrelay6 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/17 08:41:54

Modified files:
	usr.bin/tmux   : window-choose.c 

Log message:
Add h and l for collapse and expand in choose mode with vi(1) keys, from
Gregory Pakosz.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/17 08:45:16

Added files:
	usr.sbin/dhcrelay6: Makefile bpf.c dhcp.h dhcpd.h dhcrelay6.8 
	                    dhcrelay6.c dispatch.c log.c log.h packet.c 

Log message:
Import the DHCPv6 relay implementation.

This code was based on the dhcrelay(8) daemon and shares a lot of the
structures and functions. This daemon implements the following RFCs:
* RFC 3315 Section 20: Relay Agent Behavior
* RFC 4649: Relay Agent Remote-ID option
* RFC 6221: Lightweight DHCPv6 Relay Agent


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/17 08:51:26

Modified files:
	lib/libutil    : imsg-buffer.c 

Log message:
Grow buffers using recallocarray, to avoid the potential dribble that
the standard realloc*() functions can leave behind.  imsg buffers are
sometimes used in protocol stacks which require some secrecy, and layering
violations would be needed to resolve this issue otherwise.
Discussed with many.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/17 08:51:41

Modified files:
	usr.bin/tmux   : utf8.c cmd-show-messages.c 

Log message:
Fix a couple of argument types.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/17 08:53:08

Modified files:
	lib/libc/stdio : asprintf.c fgetln.c open_memstream.c 
	                 vasprintf.c 

Log message:
Use recallocarray() to avoid leaving detritus in memory when resizing
buffers.  We don't bother doing this for objects containing pointers,
but focus on controllable data.
ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/17 08:59:01

Modified files:
	usr.bin/whois  : whois.c 

Log message:
choose_server() does not always return malloc'd memory so pass
in a pointer that gets filled in when there is something to free.
Noticed by sthen@ when looking up a numeric address.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/17 08:59:29

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Be more strict on all route iterations, lets always make sure that we
are not going to get a unicast route by accident.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/17 09:00:11

Modified files:
	devel/qjson    : Makefile distinfo 
	devel/qjson/pkg: PLIST 

Log message:
Update to qjson-0.9.0

from Rafael Sadowski, input from sthen@, bulk build test & ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/17 09:14:40

Modified files:
	lib/libc/gen   : fts.c 

Log message:
recallocarray() the string buffer, to avoid leaving such contents
around in the address space.  Don't bother doing so for the buffer
which contains aslr'd pointers...
ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/17 10:06:33

Modified files:
	lib/libc/stdio : fvwrite.c 

Log message:
Use recallocarray() to avoid leaving detritus in memory when resizing
the string buffer used by asprintf() and vasprintf().  OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/17 10:45:27

Modified files:
	usr.sbin/dhcrelay6: dhcrelay6.8 dhcrelay6.c 

Log message:
various tweaks; ok rzalamena


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/17 11:00:38

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
Strengthen description of recallocarray(3) behaviour, hoping that readers
make the behaviour -> use case connection.
help from jmc and jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/17 11:06:25

Modified files:
	sys/netinet    : ip_carp.c 

Log message:
carp(4) code is always executed in the 'softnet' thread, so remove
unneeded splnet()/splx() dance.

ok mikeb@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/17 11:19:17

Modified files:
	sys/kern       : uipc_socket.c uipc_socket2.c 
	sys/sys        : systm.h 
	sys/uvm        : uvm_vnode.c 
	sys/net        : if.c if_pflow.c pf.c pf_ioctl.c pf_norm.c 
	                 pfvar.h 

Log message:
Revert the NET_LOCK() and bring back pf's contention lock for release.

For the moment the NET_LOCK() is always taken by threads running under
KERNEL_LOCK().  That means it doesn't buy us anything except a possible
deadlock that we did not spot.  So make sure this doesn't happen, we'll
have plenty of time in the next release cycle to stress test it.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/17 11:24:26

Modified files:
	usr.bin/mandoc : apropos.1 man.1 

Log message:
Document man(1) section selection priority,
and correct description of apropos(1) output search order.
Suggested by tb@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/03/17 11:45:14

Removed files:
	www/elinks     : Makefile distinfo 
	www/elinks/patches: patch-configure_in 
	                    patch-src_mime_backend_mailcap_c 
	                    patch-src_network_ssl_socket_c 
	                    patch-src_network_ssl_ssl_c 
	                    patch-src_scripting_lua_core_c 
	                    patch-src_scripting_lua_hooks_c 
	                    patch-src_session_download_c 
	                    patch-src_util_time_h 
	www/elinks/pkg : DESCR PLIST 

Log message:
Remove www/elinks from the ports tree.

The last release of elinks was in 2009, and it has since come to our attention
that it does not verify the authenticity of SSL certificates:
https://marc.info/?l=elinks-dev&m=148896031830582&w=2

We've not heard from upstream, so for now we are removing elinks from ports.

For a more modern text-based browser with SSL certificate verification, see
www/lynx.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/03/17 11:46:22

Modified files:
	www            : Makefile 

Log message:
Unlink elinks.


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/17 11:57:40

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 
	etc            : Makefile 
	usr.sbin       : Makefile 
Added files:
	etc/rc.d       : dhcrelay6 

Log message:
Enable dhcrelay6(8).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/17 12:33:04

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
remove unneccessary macro;


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/03/17 14:56:04

Modified files:
	usr.sbin/smtpd : iobuf.c 

Log message:
realloc() -> recallocarray().
use calloc() for initial allocation.

prodded by deraadt@ ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2017/03/17 14:57:57

Modified files:
	usr.sbin/smtpd : mproc.c 

Log message:
switch to recallocarray() and remove useless pre-allocation.

prodded by deraadt@ ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/17 15:12:11

Modified files:
	security/opendnssec: Makefile distinfo 
Removed files:
	security/opendnssec/patches: 
	                             patch-enforcer_ksm_database_access_lite_c 

Log message:
Update opendnssec to 1.4.13.

From maintainer Patrik Lundin.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/17 16:13:40

Modified files:
	net/twirssi    : Makefile 

Log message:
Add a missing RDEP on converters/p5-JSON-Any

From Scott B (scottb at fastmail dot com)


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/03/17 17:40:47

Modified files:
	lang/chicken   : Makefile.inc 
Added files:
	lang/chicken/core/patches: patch-srfi-4_scm 

Log message:
"Remove unchecked malloc() call in SRFI-4 constructors when allocating
in non-GC memory, resulting in potential 1-word buffer overrun and/or
segfault."

http://lists.gnu.org/archive/html/chicken-announce/2017-03/msg00000.html

From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/17 19:48:43

Modified files:
	lib/libevent   : buffer.c 

Log message:
Use recallocarray() to avoid leaving detritus in memory when resizing
the string buffer.
ok jsing millert


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/17 19:50:21

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
The "ioctl" pledge which was had functionality split out into "tape",
"bpf", and "inet" can finally go away.  Use a snapshot if you get into
trouble, most likely in pax..


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/17 20:58:54

Modified files:
	usr.bin/at     : at.c 

Log message:
Use recallocarray for growth of the jobs, just because it is a little
beefier than pointers.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/17 23:00:17

Modified files:
	.              : 61.html 

Log message:
R 3.3.3, not 3.3.2. from steve andre'


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/18 01:48:06

Modified files:
	devel/py-wrapt : Makefile distinfo 

Log message:
Update to py-wrapt 1.10.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/18 02:48:13

Modified files:
	databases/py-psycopg2: Makefile distinfo 

Log message:
Update to py-psycopg2 2.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/18 03:53:37

Modified files:
	textproc/lowdown: Makefile distinfo 

Log message:
Update to lowdown-0.1.10.

from Anton Lindqvist (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/18 04:12:45

Modified files:
	graphics/p5-Image-ExifTool: Makefile distinfo 
	graphics/p5-Image-ExifTool/pkg: PLIST 

Log message:
Update to p5-Image-ExifTool-10.40.

from Patrick Keshishian (Maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/18 06:50:14

Modified files:
	lib/libc/arch/aarch64/sys: brk.S sbrk.S 

Log message:
Make brk(2) actually work and sync the brk()/sbrk() implementation with arm,
brininging over all the symbol visibility improvements that guenther@ made.

ok drahn@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/18 06:58:18

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
Currently tls1_PRF() requires that a temporary buffer be provided, that
matches the size of the output buffer. This is used in the case where
there are multiple hashes - tls_P_hash() is called with the temporary
buffer and the result is then xored into the output buffer.

Avoid this by simply using a local buffer in tls_P_hash() and then xoring
the result into the output buffer. Overall this makes the code cleaner
and simplifies all of the tls_PRF() callers.

Similar to BoringSSL.

ok inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/18 06:59:07

Modified files:
	regress/lib/libssl/unit: tls_prf.c 

Log message:
Update regress and remove temporary buffer to match changes in tls_PRF().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/18 07:01:55

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
t1_enc.c


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/18 07:04:30

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
Fewer magic numbers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 08:44:26

Modified files:
	productivity/vdirsyncer: Makefile 

Log message:
BDEP on py-setuptools_scm, spotted by naddy


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 09:02:14

Modified files:
	mail/rspamd    : Makefile distinfo 
	mail/rspamd/pkg: PLIST 

Log message:
update to rspamd-1.5.3, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2017/03/18 09:55:56

Modified files:
	games/micropolis: Makefile 
Added files:
	games/micropolis/patches: patch-src_tk_tkshare_c 

Log message:
Fix backwards memcpy that caused micropolis to abort when it received
several clicks in the menu bar.

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/18 10:18:45

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
Bugfix: use SCRIPT_NAME for .Xr hyperlinks.
Patch from <andreas at AndreasVoegele dot com>.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/18 10:33:57

Modified files:
	lib/libc/arch/aarch64/sys: cerror.S 

Log message:
Use the userspace-visible thread register directly in __cerror instead
of indirecting through __errno().

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/18 10:36:56

Modified files:
	gnu/llvm/tools/lld/ELF: Config.h Driver.cpp 
	                        SyntheticSections.cpp 

Log message:
Add support for -znodlopen.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/18 10:45:32

Modified files:
	regress/libexec/ld.so/dlopen/prog3: Makefile 

Log message:
The prog3 sub-tests tests DT_RPATH behaviour.  Add --disable-new-dtags to
the linker options such that DT_RPATH gets set instead of DT_RUNPATH on
platforms using lld as the linker.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/18 10:48:07

Modified files:
	usr.bin/mandoc : cgi.c cgi.h.example man.cgi.8 

Log message:
Simplify: write HTTP 303 redirects with relative locations.
Suggested by bentley@.

Delete the HTTP_HOST configuration variable that is now obsolete.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/18 10:58:22

Modified files:
	regress/libexec/ld.so/initfirst/test1/prog1: Makefile 
	regress/libexec/ld.so/initfirst/test2/prog1: Makefile prog1.C 
	regress/libexec/ld.so/initfirst/test2/prog2: Makefile 

Log message:
Use --disable-new-dtags here as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/18 11:24:51

src/usr.sbin/slaacd

Update of /cvs/src/usr.sbin/slaacd
In directory cvs.openbsd.org:/tmp/cvs-serv38970/slaacd

Log Message:
Directory /cvs/src/usr.sbin/slaacd added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/18 11:24:51

src/usr.sbin/slaacdctl

Update of /cvs/src/usr.sbin/slaacdctl
In directory cvs.openbsd.org:/tmp/cvs-serv38970/slaacdctl

Log Message:
Directory /cvs/src/usr.sbin/slaacdctl added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2017/03/18 11:31:31

Modified files:
	sys/arch/loongson/conf: Makefile.loongson 
	sys/arch/octeon/conf: Makefile.octeon 
	sys/arch/sgi/conf: Makefile.sgi 

Log message:
Build mips64 kernels with -ffreestanding.

OK kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/18 11:33:13

Added files:
	usr.sbin/slaacd: Makefile control.c control.h engine.c engine.h 
	                 frontend.c frontend.h log.c log.h slaacd.8 
	                 slaacd.c slaacd.h 
	usr.sbin/slaacdctl: Makefile parser.c parser.h slaacdctl.8 
	                    slaacdctl.c 

Log message:
Add slaacd, a Stateless Address AutoConfiguration Daemon.

Based on krw's newd effort where he did all the heavy lifting to
extract a generic OpenBSD-style privsep daemon out of all the existing
daemons in tree.

It's at a point now where it makes sense to work on it in tree.

Sounds good to deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/03/18 12:55:26

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add a quirk to remove elinks.

OK jca@ and  kirby@.

Thanks to kirby@ for the reminder.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/18 13:50:58

Modified files:
	usr.bin/mandoc : apropos.1 makewhatis.8 man.1 mandoc.1 

Log message:
Correct description of MANPATH, and a few more improvements
to the ENVIRONMENT section; OK jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/18 14:49:42

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_lld_ELF_Driver_cpp 
Added files:
	devel/llvm/patches: 
	                    patch-tools_clang_include_clang_Frontend_CompilerInvocation_h 
	                    patch-tools_lld_ELF_Config_h 
	                    patch-tools_lld_ELF_SyntheticSections_cpp 

Log message:
Bring in some commits from base for Clang and lld.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/18 15:18:01

Modified files:
	etc            : group master.passwd 
	etc/mail       : aliases 

Log message:
add user for slaacd(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/18 15:22:08

Modified files:
	usr.sbin/slaacd: slaacd.h 

Log message:
switch to _slaacd user now that we have it


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 15:37:55

Modified files:
	devel/acpica   : Makefile distinfo 
	devel/acpica/patches: patch-generate_unix_Makefile_config 
	                      patch-generate_unix_acpiexec_Makefile 
	                      patch-source_include_platform_aclinux_h 

Log message:
update to acpica-20170303


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 15:42:04

Modified files:
	telephony/asterisk: Makefile 
Added files:
	telephony/asterisk/patches: 
	                            patch-configs_samples_ast_debug_tools_conf_sample 
	                            patch-contrib_scripts_ast_coredumper 
	                            patch-main_http_c 
	                            patch-main_manager_c 

Log message:
Don't use thread-unsafe getprotobyname(), patch from jira ticket ASTERISK-26759.
Teach some helper scripts about common coredump paths in OpenBSD.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 15:49:48

Modified files:
	telephony/asterisk: Makefile 
Added files:
	telephony/asterisk/patches: patch-channels_chan_skinny_c 

Log message:
convert another getprotobyname()


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 16:35:12

Modified files:
	devel/py-wbem  : Makefile distinfo 
	devel/py-wbem/pkg: PLIST 

Log message:
update to py-wbem 0.10.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 16:35:31

Modified files:
	net/nagios/check_esxi_hardware: Makefile distinfo 

Log message:
update to check_esxi_hardware-20161013, needed with newer py-wbem


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 16:38:45

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
update to youtube-dl 2017.03.16, ok pirofti@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/18 17:06:58

Modified files:
	net/rrdtool    : Makefile 
Added files:
	net/rrdtool/patches: patch-src_rrd_cgi_c 

Log message:
Add an rrdtool patch based on one from Soner Tari, newgraph() in rrdcgi was
not allocating enough array members for two pointers (for imginfo and IMG)
causing writes beyond allocated memory in some cases.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/18 17:41:24

Modified files:
	lib/libc/arch/aarch64/sys: Ovfork.S 

Log message:
Simplify fork/vfork logic: the kernel has handled returning zero in the child
for a long time, so there's no need to test the second return register here
in the asm stub.

ok guenther@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/03/18 18:02:49

Modified files:
	build          : mirrors.dat 

Log message:
comment-out some unresponsive mirrors


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/03/18 18:04:28

Modified files:
	.              : ftplist anoncvs.html cvsync.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/18 18:29:02

Modified files:
	lib/libc/arch/aarch64/sys: cerror.S 

Log message:
Stop setting the second register; it's unnecessary on 64bit archs

ok patrick@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/18 21:10:57

Modified files:
	usr.sbin/vmd   : i8259.c 

Log message:
Convert some log_warn into log_warnx, and provide pic names (master,slave)
in debugging output.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/18 21:40:05

Modified files:
	distrib/notes/arm64: contents 

Log message:
sync set sizes


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/18 21:42:38

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/i386/i386: vmm.c 
	usr.sbin/vmd   : i8259.c 

Log message:
Handle master/slave PIC vector base properly. OpenBSD uses 0x20/0x28
(respectively). Seabios uses 0x8/0x78 and linux uses 0x30/0x38. Respond
properly to PIC vector base assignment and calculate VMX injection
vectors based on current values, instead of always assuming OpenBSD
defaults.

Needed for both seabios serial console support as well as linux guest
support. Tested on -current as is, does not break existing OpenBSD
guest support.


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2017/03/19 00:23:13

Modified files:
	.              : 61.html 

Log message:
Add SGI news.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/19 01:27:15

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add AMD A1100 devices and some more qemu and virtio devices.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/19 01:28:34

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/19 04:45:12

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add Intel devices for Kaby Lake and 3168/8265 wlan.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/19 04:46:05

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/19 04:57:29

Modified files:
	sys/arch/luna88k/include: cpu.h 
	sys/arch/luna88k/luna88k: clock.c machdep.c 
	sys/arch/m88k/include: cpu.h 
	sys/arch/m88k/m88k: m88k_machdep.c 

Log message:
Put the address of the per-cpu clock and interrupt registers into the cpu_info
struct, rather than fetching them from arrays every time they are needed.

ok aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/19 05:09:26

Modified files:
	sys/dev/pci    : if_em.c if_em_hw.c if_em_hw.h 

Log message:
Match the Kaby Lake and Lewisburg (Skylake-EP PCH) MACs with I219 PHYs.
Expanded version of a diff from claudio@ who tested on x270 ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/19 05:13:23

Modified files:
	gnu/llvm/tools/lld/ELF: SymbolTable.cpp 

Log message:
Work around a problem where linker-generated symbols are not properly
versioned and end up as local symbols despite being explicitly listed as
global in the version script.  This breaks out brk()/sbrk() implementation.

The diff is only a partial solution and unlikely to be accepted as-is
upstream.  We'll keep it as a local diff until a better solution is found.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/19 05:18:26

Modified files:
	sys/dev/pci    : azalia.c 

Log message:
Enable snooping on Kaby Lake U/Y PCH HDA to avoid audio glitches as we
do on all the other recent Intel platforms.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2017/03/19 05:41:41

Modified files:
	security/clusterssh: Makefile distinfo 

Log message:
maintenance update to 4.09


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/19 05:52:24

Modified files:
	usr.sbin/slaacd: slaacd.8 

Log message:
tweaks; ok florian


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/19 09:05:04

Modified files:
	faq            : faq14.html 

Log message:
add a sentence introducing the newfs command to the "partitions and
filesystems" section. hoist the bullet list with special disklabels
up a bit, so the whole section remains coherent. prompted by a diff
by currell berry on tech.

ok tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/19 09:10:38

Modified files:
	devel/json-glib: Makefile distinfo 
	devel/json-glib/pkg: PLIST 

Log message:
update to json-glib-1.2.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/19 09:24:55

Modified files:
	x11/gnome/recipes: Makefile distinfo 
	x11/gnome/recipes/pkg: PLIST 

Log message:
update to gnome-recipes-1.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/19 09:26:11

Modified files:
	x11/gnome/empathy: Makefile distinfo 
	x11/gnome/empathy/pkg: PLIST 

Log message:
update to empathy-3.12.13


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/03/19 10:01:08

Modified files:
	sys/dev        : softraid.c 

Log message:
Restore behavior from before r1.376: only set bv_percent if a rebuild is
in progress. This eliminates the spurious and harmless "0% done" message
in the output of 'bioctl softraid0' reported by various on misc.

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/19 10:10:23

Modified files:
	usr.sbin/slaacd: engine.c frontend.c slaacd.h 
	usr.sbin/slaacdctl: slaacdctl.c 

Log message:
Get and display link local address, needed to generate addresses from
a router advertisement.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/19 10:11:38

Modified files:
	usr.sbin/slaacd: frontend.c 

Log message:
introduce & use update_iface() function, we need the full song & dance
in more places


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/19 10:12:22

Modified files:
	usr.sbin/slaacd: engine.c slaacd.h 
	usr.sbin/slaacdctl: slaacdctl.c 

Log message:
generate and show addresses from announced prefix


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/19 10:26:28

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Fixup return values to properly handle transfer submission errors

From Nathanael Rensen, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/19 10:37:19

Modified files:
	sys/dev/pv     : xbf.c 

Log message:
Fixup starting block number calculation for bounced transfers

From Nathanael Rensen, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/19 10:55:31

Modified files:
	sys/dev/pv     : xen.c 

Log message:
Improve comments slightly


CVSROOT:	/cvs
Module name:	ports
Changes by:	tsg@cvs.openbsd.org	2017/03/19 12:20:00

Modified files:
	net/ngircd     : Makefile distinfo 

Log message:
Update to ngircd-24.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/19 12:40:11

Modified files:
	usr.bin/cdio   : cdio.1 

Log message:
expand TAO in the correct place; from michael reed
this commit differs a little from the diff michael posted:

- i've uppercased the expansion, which seems a better fit
- reworked a later description to fit


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/19 14:28:07

Modified files:
	multimedia/yle-dl: Makefile distinfo 
	multimedia/yle-dl/patches: patch-yle-dl 

Log message:
Update to yle-dl-2.15.

from Timo Myyra (Maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/19 14:59:12

Modified files:
	.              : mail.html 

Log message:
less weird quotation marks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/03/19 15:26:40

Modified files:
	lang/bacon     : Makefile distinfo 

Log message:
Update to bacon 3.5.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/19 15:49:31

Log message:
    Import lang/brandy.
    
    Brandy implements Basic V, the dialect of Basic that Acorn Computers
    supplied with their ranges of desktop computers that use the ARM
    processor such as the Archimedes and RiscPC. Basic V is an extended
    version of BBC Basic. This was the Basic used on the BBC Micro that
    Acorn made during the early 1980s.
    
    OK benoit@, juanfra@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20170319
    
    N ports/lang/brandy/Makefile
    N ports/lang/brandy/distinfo
    N ports/lang/brandy/pkg/PLIST
    N ports/lang/brandy/pkg/DESCR
    N ports/lang/brandy/patches/patch-makefile_text
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/19 15:51:13

Modified files:
	lang           : Makefile 

Log message:
Add brandy.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/19 16:23:33

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
"autoconf" belongs in the inet6 section, not the global options part;
while here prefer "interface" over "ip6-interface" and show that "inet6" is
mandatory;

ok florian mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/03/19 16:40:27

Modified files:
	lang/chicken   : Tag: OPENBSD_6_0 Makefile.inc 
Added files:
	lang/chicken/core/patches: Tag: OPENBSD_6_0 patch-srfi-4_scm 

Log message:
CVE-2017-6949

"Remove unchecked malloc() call in SRFI-4 constructors when allocating
in non-GC memory, resulting in potential 1-word buffer overrun and/or
segfault."

http://lists.gnu.org/archive/html/chicken-announce/2017-03/msg00000.html

From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/19 17:03:44

Modified files:
	usr.sbin/vmd   : i8253.c 

Log message:
Emulated i8253 should not start out in TIMER_RATEGEN mode on boot
automatically. This worked for OpenBSD guests but breaks seabios as soon
as the first interrupt fires since it has not programmed the PIT to do
anything yet. And OpenBSD reprograms the clock to rategen mode as soon
as it boots anyway, so this still works with vmctl(8)'s -k option, as
well as the faux-bootloader implemented in vmd(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/19 17:10:23

Modified files:
	usr.sbin/vmd   : mc146818.c 

Log message:
Don't identify the MC146818 RTC as operating in binary mode when we are really
operating in BCD mode. Linux assumes the RTC will be in BCD mode by default
and if not, it does a WARN_ON warning about this, and misinterprets the RTC
TOD registers.

Tested with existing vmd/vmm guests with what's in tree.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/19 18:05:21

Modified files:
	sys/kern       : exec_elf.c 

Log message:
Initialize the stack buffer used to build the auxiliary vector to zero to
avoid leaking the contents of the kernel stack into userspace.

ok guenther@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/19 19:18:59

Modified files:
	usr.bin/ssh    : version.h 

Log message:
openssh-7.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 02:14:03

Modified files:
	multimedia/xine-lib: Makefile 
	multimedia/xine-lib/pkg: PLIST 
Added files:
	multimedia/xine-lib/patches: 
	                             patch-src_combined_ffmpeg_ff_video_decoder_c 
	                             patch-src_demuxers_demux_matroska_c 
	                             patch-src_demuxers_matroska_h 

Log message:
Bring in some bug fixes from upstream and use the FFmpeg decoder for
VP8 / VP9 content.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 02:51:28

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.22.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/20 04:43:52

Modified files:
	plan9/drawterm : Makefile distinfo 

Log message:
Update to drawterm-20170319

from maintainer Stanley Lieber


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/20 04:46:23

Modified files:
	security/libsodium: Makefile 

Log message:
use clang to build libsodium on i386 to unbreak


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/20 05:04:25

Modified files:
	share/man/man4 : options.4 

Log message:
document PPPOE_TERM_UNKNOWN_SESSIONS; ok sthen


CVSROOT:	/cvs
Module name:	www
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 05:17:45

Modified files:
	.              : events.html 

Log message:
Add my AsiaBSDCon talk.


CVSROOT:	/cvs
Module name:	www
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 06:14:04

Modified files:
	.              : events.html 

Log message:
Use a more permanent URL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 06:52:03

Modified files:
	graphics/libgexiv2: Makefile distinfo 
	graphics/libgexiv2/pkg: PLIST 

Log message:
Update to libgexiv2-0.10.5.


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2017/03/20 07:13:59

Modified files:
	.              : ftp.html ftplist 
	build          : Makefile 
	build/mirrors  : openssh-ftp.html.head 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html index.html openbsd.html portable.html 
Added files:
	openssh/txt    : release-7.5 

Log message:
openssh-7.5


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2017/03/20 07:14:31

Modified files:
	openssh        : releasenotes.html 

Log message:
regen relnotes


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2017/03/20 07:23:17

Modified files:
	openssh        : releasenotes.html 
	openssh/txt    : release-7.5 

Log message:
fix type in release notes (spooted by markus@)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/20 07:47:40

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
as suggested by mpi, be less particular documenting
where router adverts are coming from when describing autoconf;
rework the description a little;

ok mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/20 08:06:26

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
stop signposting; while here, knock out the comments;


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/03/20 08:06:35

Modified files:
	databases/p5-DBD-mysql: Makefile distinfo 

Log message:
Update to 4.042


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/20 08:30:43

Modified files:
	usr.bin/mandoc : main.c mandoc.1 

Log message:
Silently ignore invalid -m input formats rather than erroring out.
As observed by Jan Stary <hans at stare dot cz>, this is useful such
that after 'alias man="man -m $HOME/man"', 'man -l foo.1' still works.
Simplify and shorten the description of -m, and use .Ic for macros.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/03/20 08:35:06

Modified files:
	usr.bin/doas   : doas.conf.5 

Log message:
simplify example. list of ports variables was non-exahustive, which means
what exactly? there should be a better place for such lists.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 09:09:53

Modified files:
	graphics/shotwell: Makefile distinfo 
	graphics/shotwell/patches: patch-Makefile_in patch-configure 
Removed files:
	graphics/shotwell/patches: patch-src_Resources_vala 

Log message:
Update to shotwell-0.26.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/20 09:31:23

Modified files:
	usr.sbin/sensorsd: sensorsd.8 sensorsd.c 

Log message:
Add command line option -f to specify alternative config file.
from Matthias Pitzl


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 09:45:14

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
Simplify cron(8) job example.

input from jmc@
ok tb@ deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/20 10:01:57

Modified files:
	.              : errata59.html errata60.html 

Log message:
release exec_elf errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/20 10:10:10

Modified files:
	usr.bin/rup    : rup.c 

Log message:
recallocarray array that has remote data


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/20 10:13:27

Modified files:
	usr.sbin/slaacd: frontend.c slaacd.c slaacd.h 

Log message:
simplify control socket path handling; sync from netcfgd by krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/20 10:15:37

Modified files:
	usr.sbin/slaacd: engine.c engine.h slaacd.c slaacd.h 

Log message:
send proposals


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/20 10:18:47

Modified files:
	faq            : faq6.html 

Log message:
lists aren't really documentation, so zap incomplete list of virtual
interfaces.

ok tj


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/20 10:44:03

Modified files:
	sys/ntfs       : ntfs_vfsops.c 

Log message:
Read the free clusters bitmap in 1MB chunks

instead of trying to read it in one go and panic in malloc(9) with large
NTFS filesystems.  panic reported and fix tested by landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/20 12:21:20

Modified files:
	net/gupnp/core : Makefile distinfo 

Log message:
update to gupnp-1.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/20 12:21:26

Modified files:
	net/gssdp      : Makefile distinfo 

Log message:
update to gssdp-1.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/20 12:32:52

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
update to epiphany-3.22.7


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2017/03/20 12:34:52

Modified files:
	lib/libskey    : skeylogin.c 

Log message:
use explicit_bzero. one from Ricardo Mestre plus two more.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/20 13:01:38

Modified files:
	sbin/route     : route.c 

Log message:
show inet6 proposals in route monitor
fine with krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/20 13:35:15

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 
Added files:
	www/mozilla-firefox/patches: 
	                             patch-js_src_jit_ProcessExecutableMemory_cpp 

Log message:
Update to firefox 52.0.1.

Fixes MFSA 2017-08/CVE-2017-5428, see
https://www.mozilla.org/en-US/security/advisories/mfsa2017-08/

While here, add a patch from semarie@ (tested by and ok danj@) to tweak
a last-minute change in the jit engine memory allocator that happened to
fix a security issue in 52 branch (bug #1334933/CVE-2017-5400) - see
https://hg.mozilla.org/releases/mozilla-esr52/rev/6b35bbf96b67.

Sadly, this change resulted in a browser crashing at startup
on OpenBSD with the default limits, because the jit engine tried to
allocate 1Gb (previously 640Mb in #1334933, then 1Gb because of
#1337561, see
https://hg.mozilla.org/releases/mozilla-esr52/rev/65bb26d07408) and hit
the default datasize ulimit of 768Mb. The patch makes it allocate 128Mb
instead (as it's done on 32bit architectures), while a better (?) fix
might be devised in bug #1347139.

Generally speaking, if you see firefox crashing with ENOMEM errors,
raise the datasize limit for your login class, write your own wrapper
script to temporarly raise the limit when starting firefox, or stop
using the modern web. Websites are ginormous, deal with it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/20 13:37:06

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 
Added files:
	www/firefox-esr/patches: 
	                         patch-js_src_jit_ProcessExecutableMemory_cpp 

Log message:
Update to firefox-esr 52.0.1.

Fixes MFSA 2017-08/CVE-2017-5428, see
https://www.mozilla.org/en-US/security/advisories/mfsa2017-08/

While here, add a patch from semarie@ (tested by and ok danj@) to tweak
a last-minute change in the jit engine memory allocator that happened to
fix a security issue in 52 branch (bug #1334933/CVE-2017-5400) - see
https://hg.mozilla.org/releases/mozilla-esr52/rev/6b35bbf96b67.

Sadly, this change resulted in a browser crashing at startup
on OpenBSD with the default limits, because the jit engine tried to
allocate 1Gb (previously 640Mb in #1334933, then 1Gb because of
#1337561, see
https://hg.mozilla.org/releases/mozilla-esr52/rev/65bb26d07408) and hit
the default datasize ulimit of 768Mb. The patch makes it allocate 128Mb
instead (as it's done on 32bit architectures), while a better (?) fix
might be devised in bug #1347139.

Generally speaking, if you see firefox crashing with ENOMEM errors,
raise the datasize limit for your login class, write your own wrapper
script to temporarly raise the limit when starting firefox, or stop
using the modern web. Websites are ginormous, deal with it.


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/20 13:37:54

Modified files:
	sys/arch/luna88k/dev: if_le.c lcd.c lunafb.c omrasops.c 
	                      omrasops.h omrasops1.c siotty.c 
	sys/arch/luna88k/luna88k: locore.S 

Log message:
Replace hardcoded addresses with symbolic constants from <machine/board.h>
for enhanced grepability and fewer bad surprises.

ok aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/20 13:38:56

Modified files:
	sys/arch/luna88k/include: board.h 

Log message:
Remove unused defines. Some of them can be traced to MVME188 and make no
sense on Omron hardware.

ok aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/20 13:40:47

Modified files:
	sys/arch/luna88k/include: board.h 

Log message:
Fix previous. Commited from the wrong tree.


CVSROOT:	/cvs
Module name:	src
Changes by:	miod@cvs.openbsd.org	2017/03/20 13:42:51

Modified files:
	sys/arch/luna88k/luna88k: pmap_table.c 

Log message:
Do not map resources which are actually not used within the kernel. Saves
24KB of page tables memory.

help and luna88k-2 tests aoyama@; ok aoyama@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/20 14:05:21

Modified files:
	x11/xfce4/xfwm4: Makefile distinfo 

Log message:
Update to xfwm4 4.12.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/20 14:12:23

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.22.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/03/20 15:11:21

Modified files:
	lib/libskey    : skey.h skeylogin.c 

Log message:
Generate the bogus challenge using arc4random_buf(3) instead of reading
directly from /var/db/host.random and falling back to ctime. Remove the
_SKEY_RAND_FILE_PATH_ since it's no longer needed.

ok millert, mestre


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2017/03/20 16:08:06

Modified files:
	regress/usr.bin/ssh: keytype.sh 

Log message:
remove /usr/bin/time calls around tests, makes diffing test runs harder.
Based on patch from Mike Frysinger


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/20 16:28:47

ports/security/libsodium/patches

Update of /cvs/ports/security/libsodium/patches
In directory cvs.openbsd.org:/tmp/cvs-serv58022/patches

Log Message:
Directory /cvs/ports/security/libsodium/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/20 16:32:11

Modified files:
	security/libsodium: Makefile 
Added files:
	security/libsodium/patches: patch-src_libsodium_Makefile_in 

Log message:
Use sse2 cflags, move back to base compiler on i386. This is a Makefile.in
adaptation of a Makefile.am diff committed upstream (thanks for the quick
fix Frank).


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/20 17:52:05

Modified files:
	share/man/man4 : inet6.4 

Log message:
some notes from bluhm about setting a reject route;


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/20 20:30:33

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
CPUID feature 0x80000000 emulation fell through to 0x80000001, which
resulted in wrong cpu information being passed to the guest. Specifically
this breaks Linux guests as with the fallthrough, CPUID_LONG was cleared,
and Linux thought it was runinng on a machine incapable of 64-bit mode.
OpenBSD/NetBSD guests don't check this flag and thus weren't affected.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/20 20:57:38

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Don't allow the guest to clear CR0_NE or CR4_VMXE. While we should be
using the "must be clear / must be set" masks for these registers, I'd
like to know (for now) when guest VMs manipulate bits in these registers
in an unexpected way. This is needed for Linux guests, as they
unconditionally set CR0 without NE, and CR4 without VMXE.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/20 21:29:57

Modified files:
	usr.sbin/vmd   : ns8250.c vm.c vmm.h 

Log message:
Fix two errors in NS8250 (UART) emulation. The first error zeroed out the
high bits of %eax on reading register data from the emulated UART ports.
The second error didn't properly assert the TXRDY bit during init -
this bit was only set after the first character was sent. Both these
bugs caused seabios to not be able to output any data. Found during the
recent effort to get Linux guests booting.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/21 00:23:48

Modified files:
	sbin/route     : route.c 

Log message:
getnameinfo errors should go to stderr & should print what's going on.
Pointed out by & ok bluhm
While here print prefixlen with %u, pointed out by bluhm, too.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/21 01:24:36

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
Replace a magic number with the corresponding macro from ieee80211_ioctl.h.
No functional change.
ok deraadt@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/21 01:59:54

Modified files:
	sys/net80211   : ieee80211_ioctl.c 

Log message:
When a new WPA key is set while WEP is enabled, disable WEP,
and when a new WEP key is set while WPA is enabled, disable WPA.
Prevents unusable configurations where both WEP and WPA are active
and makes switching between WEP/WPA networks easier.
ok deraadt@ tb@ sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2017/03/21 02:15:31

Modified files:
	.              : 61.html 

Log message:
Mention bgpd support for draft-ietf-idr-shutdown, from Job Snijders.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/21 03:21:20

Modified files:
	devel/goffice  : Makefile distinfo 

Log message:
Update to goffice-0.10.34.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/21 03:21:42

Modified files:
	math/gnumeric  : Makefile distinfo 
Removed files:
	math/gnumeric/patches: patch-doc_C_gnumeric_xml 
	                       patch-doc_Makefile_in 

Log message:
Update to gnumeric-1.12.34.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/21 03:49:10

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Fix pane movement by direction (up, down, left, right) when
pane-border-status is set, from KOIE Hidetaka.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/21 03:51:00

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Fix movement after select-line, from Omar Sandoval.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/21 04:41:33

Modified files:
	.              : Makefile.cross 

Log message:
Export CROSSDIR so that the two users (ld.so and binutils) of that
variable actually work correctly.  While there, adjust a bit for
consistency.

"nobody will complain if you break it ;)" kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/21 06:06:56

Modified files:
	sbin/dhclient  : log.c 
	sbin/iked      : log.c 
	usr.sbin/bgpd  : log.c 
	usr.sbin/dhcpd : log.c 
	usr.sbin/dhcrelay: log.c 
	usr.sbin/dvmrpd: log.c 
	usr.sbin/eigrpd: log.c 
	usr.sbin/httpd : log.c 
	usr.sbin/ifstated: log.c 
	usr.sbin/iscsid: log.c 
	usr.sbin/ldapd : log.c 
	usr.sbin/ldpd  : log.c 
	usr.sbin/npppd/npppd: log.c 
	usr.sbin/ntpd  : log.c 
	usr.sbin/ospf6d: log.c 
	usr.sbin/ospfd : log.c 
	usr.sbin/relayd: log.c 
	usr.sbin/ripd  : log.c 
	usr.sbin/route6d: log.c 
	usr.sbin/rtadvd: log.c 
	usr.sbin/smtpd : log.c 
	usr.sbin/snmpd : log.c 
	usr.sbin/switchd: log.c 
	usr.sbin/vmd   : log.c 
	usr.sbin/ypldap: log.c 

Log message:
From a syslog perspective it does not make sense to log fatal and
warn with the same severity.  Switch log_warn() to LOG_ERR and keep
fatal() at LOG_CRIT.
OK reyk@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/21 06:38:23

Modified files:
	usr.sbin/dhcrelay6: log.c 
	usr.sbin/slaacd: log.c 

Log message:
From a syslog perspective it does not make sense to log fatal and
warn with the same severity.  Switch log_warn() to LOG_ERR and keep
fatal() at LOG_CRIT.
I have missed dhcrelay6 and slaacd in my previous conversion as they
were added recently.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/21 07:04:04

Modified files:
	graphics/libgexiv2: Makefile 

Log message:
Missing BDEP+RDEP.

reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/21 07:47:05

Modified files:
	x11/gnome/autoar: Makefile distinfo 
	x11/gnome/autoar/pkg: PLIST 

Log message:
Update to gnome-autoar-0.2.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/21 11:13:05

Modified files:
	x11/xfce4/xfce4-notifyd: Makefile distinfo 

Log message:
Update to xfce4-notifyd 0.3.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/21 11:55:50

Modified files:
	emulators/fuse : Makefile distinfo 

Log message:
Update fuse to 1.3.4.

OK edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/21 12:05:55

Modified files:
	usr.bin/mandoc : man.1 

Log message:
delete documentation of a hack that was removed years ago


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/21 12:15:18

Modified files:
	x11/gnome/terminal: Makefile distinfo 
	x11/gnome/terminal/pkg: PLIST 

Log message:
update to gnome-terminal-3.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/21 12:15:24

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
update to vala-0.34.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/21 12:15:32

Modified files:
	x11/gnome/gucharmap: Makefile distinfo 
	x11/gnome/gucharmap/pkg: PLIST 

Log message:
update to gucharmap-9.0.3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/21 12:25:32

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
simplify .Nd; to display manuals, use man(1) instead;
OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/21 12:43:40

Modified files:
	sys/arch/arm64/include: reg.h 
	sys/arch/arm64/arm64: process_machdep.c 

Log message:
Revise the definition of "struct reg" to have a layout compatible with other
operating systems.  Implement process_read_regs() and make
process_read_fpregs() clear the struct fpreg to avoid leaking kernel stack
contents.  This makes core dumps actually usable.

ok drahn@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/21 13:28:03

Modified files:
	usr.bin/tmux   : tmux.c 

Log message:
Use uid_t for UID not u_int.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/21 13:47:28

Modified files:
	.              : 61.html 

Log message:
installer privsep and https.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/21 13:48:01

Modified files:
	x11/awesome    : Makefile distinfo 
	x11/awesome/patches: patch-CMakeLists_txt 
	                     patch-awesomeConfig_cmake 
	                     patch-awesomerc_lua 
	                     patch-lib_awful_util_lua 
	                     patch-lib_beautiful_init_lua 
	                     patch-lib_menubar_icon_theme_lua 
	                     patch-lib_menubar_menu_gen_lua 
	                     patch-lib_naughty_core_lua 
	                     patch-themes_default_theme_lua 
	                     patch-themes_xresources_theme_lua 
	                     patch-utils_awesome-client 
	x11/awesome/pkg: MESSAGE PLIST 
Added files:
	x11/awesome/patches: patch-lib_awful_completion_lua 
Removed files:
	x11/awesome/patches: patch-luaa_c patch-spawn_c 

Log message:
Update to awesome-4.1


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/21 14:00:40

Modified files:
	.              : 61.html 

Log message:
move syspatch mention and give it a slightly longer description.

ok ajacoutot


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/21 15:11:09

Modified files:
	sys/kern       : Tag: OPENBSD_5_9 exec_elf.c 

Log message:
OpenBSD 5.9 Errata 037: SECURITY FIX: March 20, 2017
MFC sys/kern/exec_elf.c exec_elf.c rev v 1.140 kettenis
Initialize the stack buffer used to build the auxiliary vector to zero to
avoid leaking the contents of the kernel stack into userspace.

ok guenther@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/21 15:11:48

Modified files:
	sys/kern       : Tag: OPENBSD_6_0 exec_elf.c 

Log message:
OpenBSD 6.0 Errata 020: SECURITY FIX: March 20, 2017
MFC sys/kern/exec_elf.c exec_elf.c rev v 1.140 kettenis

Initialize the stack buffer used to build the auxiliary vector to zero to
avoid leaking the contents of the kernel stack into userspace.

ok guenther@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/21 15:43:11

Modified files:
	sys/arch/arm/arm: sys_machdep.c 

Log message:
Avoid panic in arm_sync_icache() by only flushing the parts of the address
space for which we have a userland mapping.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/21 15:51:03

Modified files:
	sys/arch/arm/cortex: ampintc.c 

Log message:
As a first step towards SMP, use an array for the destination masks with
an element for each CPU.  Use this mask directly instead of converting
it into a cpu number and back into a mask again when routing interrupts.
This avoids the need to handle uniprocessor systems in a special way
as they will return 0 as the mask (the relevant register is defined as RAZ)
and ignore what's written into the destination registers (the relevant
registers are defined as WI).

Future code that hatches the secondary CPUs will have to call into the
driver to establish the masks for those CPUs.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/03/21 16:19:43

Modified files:
	games/ioquake3 : Makefile distinfo 

Log message:
Upstream fixed a pretty nasty client bug:
https://ioquake3.org/2017/03/13/important-security-update-please-update-ioquake3-immediately/

Reported by jsg@, OK awolk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/22 00:09:31

Modified files:
	share/man/man4 : usb.4 

Log message:
update ure(4) entry; from tinker


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/22 01:06:23

Modified files:
	share/man/man4 : inet6.4 

Log message:
zap some historical notes and an out of date url;
help/ok bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/22 01:16:54

Modified files:
	usr.bin/tmux   : attributes.c grid.c input.c style.c tmux.1 
	                 tmux.h tty-term.c tty.c 

Log message:
Add support for the strikethrough attribute (SGR 9), using the new smxx
terminfo capability. This means there are now nine attribute bits, so
anything above 0xff uses an extended cell.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/22 01:21:39

Modified files:
	sys/dev/pci    : pcireg.h pci_subr.c 

Log message:
Add some more PCI classes and subclasses.  Checked against EDK2 as
"PCI Code and ID Assignment Specification" is only available for those
willing to pay thousands of dollars for PDFs.

Prompted by a dmesg from an AMD Zen system which uses class 0x13
(Non-Essential Instrumentation) and System subclass 0x06 (IOMMU).  There
is currently no public documentation for AMD family 17h to reference to
see if this is sane.

ok kettenis@ on an earlier version


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/22 01:31:35

Modified files:
	lib/libc/arch/aarch64/gen: sigsetjmp.S 

Log message:
Use the hidden aliases to avoid PLT entries for {,_}{set,long}jmp
Set the size of the sig{set,long}jmp symbols

testing help jsg@
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/22 01:32:34

Modified files:
	lib/libc/arch/aarch64/gen: fpgetround.c fpsetround.c 

Log message:
Provide the necessary weak alias for fpgetround().  Delete the obsolete
__weak_alias() uses

problem noted by drahn@
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/22 04:47:29

Modified files:
	sys/arch/arm64/arm64: pmap.c 
	sys/arch/arm64/conf: kern.ldscript 

Log message:
Implement kernel W^X for arm64.  For this purpose align the different segments
containing .text, .rodata and .data/.bss at 2MB boundaries and set the
appropriate access permissions on the block translations.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/22 05:14:14

Modified files:
	etc            : acme-client.conf 
	usr.sbin/acme-client: acme-client.1 acme-client.conf.5 

Log message:
Improve manpage and config file to show the more common use case.
from Nick Holland (nick AT holland-consulting DOT net)
ok jmc@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/22 06:45:22

Modified files:
	sys/net        : if.c 

Log message:
Replace an expensive microtime call with a getmicrotime for if_lastchange
reducing its resolution to 10ms.

ok florian, mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/22 07:30:11

Modified files:
	usr.bin/mandoc : man.1 

Log message:
simplify description of -S and -w, point from EXIT STATUS
to mandoc(1) for details, and remove duplicate .Xr to whatis(1);
OK jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2017/03/22 07:42:12

Modified files:
	net/syncthing  : Makefile distinfo 
	net/syncthing/patches: patch-build_go 

Log message:
Update net/syncthing to 0.14.25.

Based on a diff from Tim "trondd".

OK awolk@, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/22 11:19:32

Modified files:
	share/man/man4 : inet6.4 

Log message:
Fix syntax of example route command.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/22 11:35:26

Modified files:
	x11/awesome/patches: patch-awesomeConfig_cmake 

Log message:
Unbreak build (doh!)


CVSROOT:	/cvs
Module name:	www
Changes by:	mikeb@cvs.openbsd.org	2017/03/22 12:13:11

Modified files:
	.              : want.html 

Log message:
No more 10G Ethernet gear is required here


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/22 12:57:03

Modified files:
	.              : index.html 

Log message:
fix a rendering oddity; noticed by mikeb


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/22 13:57:55

Modified files:
	share/man/man4 : inet6.4 

Log message:
kill Tn;


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/22 14:23:52

Modified files:
	www/cgit       : Makefile distinfo 
	www/cgit/patches: patch-Makefile 
	www/cgit/pkg   : README 
Added files:
	www/cgit/patches: patch-setup_c 

Log message:
Update to cgit 1.1, from Hiltjo Posthuma, thanks!

- pass the option NO_GETTEXT=1 to git to disable gettext support.
- add a patch patches/patch-setup_c to not open /dev/null in the chroot.
- add a OpenBSD httpd (with slowcgi) example to the README.
- add an explanation a static gzip binary is required for .tar.gz snapshot support.

(and fix RCS Ids while here)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/22 14:46:20

Modified files:
	.              : arm64.html 

Log message:
fix invalid html. this also makes this page look more like the other arch
pages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/22 15:23:52

Modified files:
	graphics       : Makefile 
Removed files:
	graphics/py-pigment: Makefile distinfo 
	graphics/py-pigment/patches: patch-pgm_pgmmodule_c 
	graphics/py-pigment/pkg: DESCR PLIST 
	graphics/pigment: Makefile distinfo 
	graphics/pigment/patches: 
	                          patch-plugins_opengles_pgmglesviewport_c 
	graphics/pigment/pkg: DESCR PLIST 

Log message:
Remove pigment and py-pigment, they were only dependencies of moovida
but the latter was removed a while ago, and upstream is dead anyway.
ok ajacoutot@ a while ago


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/22 15:25:04

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register removal of pigment and py-pigment


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/22 15:37:24

Modified files:
	share/man/man4 : pppoe.4 

Log message:
less verbose KERNEL OPTIONS section; help/ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/22 19:35:37

Modified files:
	multimedia/yle-dl: Makefile 

Log message:
No need for php at build time.

Also zap needless whitespace while here.

ok Timo Myyra (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/22 19:46:23

Modified files:
	net/weechat    : Makefile distinfo 
	net/weechat/patches: patch-doc_CMakeLists_txt 
	                     patch-src_gui_curses_CMakeLists_txt 
	                     patch-src_plugins_CMakeLists_txt 
	net/weechat/pkg: PLIST-main 

Log message:
Update to weechat-1.7 and take maintainership

Tweaks from abieber@ and tested by semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/03/22 22:10:10

Modified files:
	sys/net80211   : ieee80211_crypto.c ieee80211_crypto_bip.c 
	                 ieee80211_crypto_ccmp.c ieee80211_crypto_tkip.c 
	                 ieee80211_crypto_wep.c ieee80211_ioctl.c 

Log message:
Use explicit_bzero() to wipe out key material and add some sizes to free().

ok stsp


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/22 23:29:48

Modified files:
	sbin/iked      : iked.c 

Log message:
set ps_noaction to not fork uneeded children when checking config with -n

ok mikeb@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/23 00:56:33

Modified files:
	usr.sbin/vmd   : i8259.c 

Log message:
use proper return data size when doing PIC reads - don't clobber %eax
high bits.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/23 00:59:31

Modified files:
	usr.sbin/vmd   : mc146818.c 

Log message:
Various mc146818 emulation fixes - don't block interrupts needlessly, and
set proper return data size (don't clobber high %eax bits). Also apply
a mask on incoming data (from OUT instruction in guest) to avoid
misinterpreting register index values. Found when implementing Linux and
seabios support.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/23 01:02:47

Modified files:
	usr.sbin/vmd   : i8253.h i8253.c 

Log message:
Various i8253/i8254 implementation improvements - Fix an error that used
the wrong i/o latch index on reads (resulting in erratic counter values
possibly being read). Also do proper return size setting (don't clobber
%eax high bits).

This diff also implements counter readback mode, which is used in seabios.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/23 01:23:53

Modified files:
	audio/libmpdclient: Makefile distinfo 
	audio/libmpdclient/pkg: PLIST 
Removed files:
	audio/libmpdclient/patches: patch-src_search_c 

Log message:
Update to libmpdclient-2.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/23 01:33:20

Modified files:
	audio/ncmpc    : Makefile distinfo 
Removed files:
	audio/ncmpc/patches: patch-configure 

Log message:
Update to ncmpc-0.26


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/23 01:33:24

Modified files:
	mail/mozilla-thunderbird: Makefile 
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_js_src_jit_ProcessExecutableMemory_cpp 

Log message:
Apply the same patch as in firefox-52 to pre-allocate only 128Mb at js
engine startup, otherwise tb doesnt start with default 768Mb datasize
limit (but starts fine with ulimit -d 1200000) sigh.
reported by semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/23 01:59:41

Modified files:
	usr.sbin/vmd   : mc146818.c mc146818.h vm.c 

Log message:
Implement memory size and SMP CPU count NVRAM registers in the emulated
mc146818. This is needed for seabios to boot properly (and construct
a sensible e820 map to send to the guest OS).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/23 02:00:36

ports/sysutils/firmware/vmm

Update of /cvs/ports/sysutils/firmware/vmm
In directory cvs.openbsd.org:/tmp/cvs-serv20273/vmm

Log Message:
Directory /cvs/ports/sysutils/firmware/vmm added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/23 02:00:48

ports/sysutils/firmware/vmm/pkg

Update of /cvs/ports/sysutils/firmware/vmm/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv71298/vmm/pkg

Log Message:
Directory /cvs/ports/sysutils/firmware/vmm/pkg added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/23 02:00:48

ports/sysutils/firmware/vmm/files

Update of /cvs/ports/sysutils/firmware/vmm/files
In directory cvs.openbsd.org:/tmp/cvs-serv71298/vmm/files

Log Message:
Directory /cvs/ports/sysutils/firmware/vmm/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/23 02:05:00

Modified files:
	sysutils/firmware: Makefile 
Added files:
	sysutils/firmware/vmm: Makefile distinfo 
	sysutils/firmware/vmm/files: config 
	sysutils/firmware/vmm/pkg: DESCR PLIST 

Log message:
Import SeaBIOS for use with vmm(4). done as a "firmware" port, so that
fw_update will be able to be modified to install it on suitable systems.
Based on SeaBIOS config/Makefile from mlarkin and a non-"firmware" port
from jca, looks good to jca deraadt.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/23 02:05:58

Modified files:
	sys/arch/amd64/include: vmmvar.h 

Log message:
Bump the emulated PCI MMIO range end to 0xFFFFFFFF. This slightly
penalizes i386 guests who previously had memory allocated by vmd after
0xF0FFFFFF (the previous range end) but makes memory range calculation
in vmd/mc146818 much much easier. This diff needs to be combined with
the previous vmd diffs or you won't be able to create a vm with memory
size larger than ~3855MB.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/23 02:18:37

Modified files:
	share/man/man4 : virtio.4 

Log message:
Mention vmmci(4) in virtio man page


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/23 02:20:18

Modified files:
	share/man/man4 : virtio.4 

Log message:
Remove some obvious statement in previous commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/23 02:26:07

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_clang_lib_Driver_Tools_cpp 
	                    patch-tools_lld_ELF_Config_h 
	                    patch-tools_lld_ELF_DriverUtils_cpp 
	                    patch-tools_lld_ELF_Driver_cpp 
	                    patch-tools_lld_ELF_SyntheticSections_cpp 
Added files:
	devel/llvm/patches: patch-tools_lld_ELF_SymbolTable_cpp 

Log message:
- Bring in an LLD workaround from base
- Add "(compatible with GNU linkers)" to the -version output
- Print out "supported targets".
- Update/fix PIE defaults
- -z nodlopen has been commited upstream

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/23 04:10:54

Modified files:
	etc/rc.d       : spamd 

Log message:
Don't check for spamd_black twice in rc_pre and rc_start; just do everything
in rc_pre.

prodded by and ok jmc@, ok halex@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/23 04:15:39

Modified files:
	x11/gnome/themes-standard: Makefile distinfo 
	x11/gnome/themes-standard/pkg: PLIST 

Log message:
Update to gnome-themes-standard-3.22.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/23 05:57:47

Modified files:
	infrastructure/db: user.list 

Log message:
Register uid 787 for gitea and move _dnsdist to 788

ok tb@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/23 05:58:44

Modified files:
	net/dnsdist    : Makefile 
	net/dnsdist/pkg: PLIST 

Log message:
_dnsdist is now uid 788

ok tb@ jca@


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/03/23 06:00:06

Modified files:
	faq            : current.html 

Log message:
Add instruction for the _dnsdist uid change

tweaks/ok tb@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/23 06:58:28

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
pull root check up, the parser will bomb out anyway
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2017/03/23 06:59:32

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
It is perfectly valid to have a cert / key not owned by root; remove
useless check.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/23 07:28:25

Modified files:
	sbin/route     : route.c 

Log message:
Fix printf() incantation for non-NULL terminated string.

Pointed out by florian@.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/23 07:57:07

Modified files:
	regress/sbin/ipsecctl: Makefile 

Log message:
Allow to override location of ipsecctl tool with IPSECCTL environment.
Useful for development testing without make install.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/23 08:07:40

Modified files:
	share/zoneinfo/datfiles: iso3166.tab northamerica 

Log message:
Update to tzdata2017b from ftp.iana.org


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/23 08:12:46

Modified files:
	sys/netinet    : ip_carp.c 

Log message:
Replace manual loop with SRPL_FOREACH_SAFE_LOCKED macro.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/23 08:23:41

Modified files:
	x11/stumpwm    : Makefile distinfo 

Log message:
Update to stumpwm-1.0.0

from Solene Rapenne (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/23 11:12:27

Modified files:
	regress/sbin/ipsecctl: Makefile 
Added files:
	regress/sbin/ipsecctl: sa25.in sa25.ok sa26.in sa26.ok 

Log message:
Add tests for SA grouped in bundles.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/23 11:26:17

Modified files:
	archivers/unzip: Makefile 
	archivers/unzip/patches: patch-extract_c patch-process_c 
Added files:
	archivers/unzip/patches: patch-crypt_c patch-list_c 
	                         patch-zipinfo_c 

Log message:
Apply a bunch of CVE and other fixes for unzip from debian and
redhat bug tracker.  Add the links to the patch files.  The fix for
CVE-2014-9636 was improved.
OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/23 12:16:06

Modified files:
	usr.sbin/makefs: msdos.c 

Log message:
Set the maximum value of the msdos options to the value of LLONG_MAX
instead of ULLONG_MAX since the type of the comparison is using long
long, which has a positive maximum of LLONG_MAX.  The affected opts
are of type off_t, which should have a maximum of LLONG_MAX anyway.
Fixes makefs(8) on msdos with options "create_size" or "offset".

ok natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/23 12:35:30

Modified files:
	www/tomcat/v6  : Makefile distinfo 
	www/tomcat/v6/patches: patch-conf_server_xml 
	www/tomcat/v6/pkg: PLIST-examples PLIST-main 
	www/tomcat/v7  : Makefile distinfo 
	www/tomcat/v7/pkg: PLIST-examples 
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/pkg: PLIST-examples PLIST-main 

Log message:
Updates:

v6 -> 6.0.51
v7 -> 7.0.76
v8 -> 8.5.12


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/23 12:40:01

Modified files:
	lib/libc/sys   : mkdir.2 

Log message:
mkdir(2) and mkdirat(2) can also fail with EACCESS if write permission
is denied on the parent directory of the directory to be created.
From FreeBSD.  OK deraadt@ natano@


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/23 12:45:45

Modified files:
	audio/mpc      : Makefile 
Added files:
	audio/mpc/patches: patch-src_command_c 

Log message:
command: add missing parentheses around bit shift
(upstream git commit 0191d38753cee57fcb72e191d9627043837414aa)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/23 17:28:14

ports/sysutils/firmware/vmm/patches

Update of /cvs/ports/sysutils/firmware/vmm/patches
In directory cvs.openbsd.org:/tmp/cvs-serv38262/patches

Log Message:
Directory /cvs/ports/sysutils/firmware/vmm/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/23 17:31:51

Modified files:
	sysutils/firmware/vmm: Makefile 
Added files:
	sysutils/firmware/vmm/patches: patch-scripts_buildversion_py 

Log message:
- actually use the config file, reyk@ noticed that the produced files were wrong
- use the "clean build" mechanism to avoid including hostname/time in the built file


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/23 17:36:57

Modified files:
	sysutils/firmware/vmm: Makefile 

Log message:
don't bother building and throwing away a default-config bios


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/23 20:55:03

Modified files:
	gnu/llvm/tools/lld/ELF: Driver.cpp 

Log message:
Add "(compatible with GNU linkers)" to the lld version output to avoid
problems with configure scripts generated with libtool.m4 that would
otherwise have to be regenerated with a patched libtool.

Among other things this fixes the build of Mesa on arm64 with lld.

From lld svn revision 298532.  ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/23 21:13:55

Modified files:
	gnu/llvm/tools/lld/ELF: DriverUtils.cpp 

Log message:
Add "supported targets" in lld --help output to be compatible with what
libtool generated configure scripts expect.  Otherwise they might assume
shared libraries aren't supported.

From lld svn revisions 298568 and 298571.
Discussed with kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/24 01:14:27

Modified files:
	usr.bin/tmux   : colour.c window-copy.c 

Log message:
Show count of search results in copy mode.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/24 01:42:23

Modified files:
	multimedia/libmatroska: Makefile distinfo 

Log message:
Update to libmatroska-1.4.6.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/24 01:55:29

Modified files:
	share/man/man4 : virtio.4 

Log message:
add viocon and a missing full stop in previous;
ok mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/24 02:02:02

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Allow returns from vmd after handling cpuid exits (handles the case where
a cpuid instruction was emulated at the same time there was an interrupt
pending)


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/24 02:04:02

Modified files:
	usr.sbin/vmd   : vm.c 

Log message:
Allow vmd to proceed after an interrupt occurred after retiring a cpuid
instruction. Matches previous commit to kernel vmm.c


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/24 02:28:57

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.29.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/24 02:29:11

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.66.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/24 02:51:35

Modified files:
	emulators/advancemame: Makefile 
	emulators/advancemess: Makefile 

Log message:
Enable assembly optimizations on i386 for advancemame and advancemess.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/24 02:52:29

Modified files:
	security/vault : Makefile distinfo 

Log message:
Update to vault-0.7.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/24 02:52:50

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.9.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/24 02:52:53

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Exit to vmd on byte size PCI accesses.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/24 03:06:02

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Handle guest interruptibility state - Reset the interruptibility state
VMCS field on vmentry when we advanced %rip on the last exit (simulating
a real processor's behaviour). Handles guest "sti ; hlt" instruction
sequences, which is used in seabios as a primitive idle loop construct.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/24 03:11:49

Modified files:
	usr.sbin/vmd   : i8253.c i8259.c 

Log message:
Last bits of cleanup for linux/seabios support in i8253/i8259 emulation
code.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/24 03:34:12

Modified files:
	lib/libutil    : imsg.c imsg.h imsg_init.3 

Log message:
Use C99 types (uint32_t) instead of BSD (u_int32_t) - the former are
more portable. Add stdint.h to the headers in imsg_init(3).

No objections from millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/24 05:08:43

Modified files:
	usr.sbin/vmd   : i8253.c i8259.c 

Log message:
Backout mlarkin's previous commit while he is away:
The newly-used function get_input_data() is missing and broke the tree.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/03/24 06:59:40

Modified files:
	net/cgo        : Makefile distinfo 

Log message:
update cgo to latest

Now with 100% more bookmarks!

OK fcambus


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/24 07:04:16

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c 

Log message:
Mainline u-boot on the ClearFog seems to insert an empty memory region
into the /memory node which we happily physload into UVM.  This leads
to a quickly panic(9)ing system when there is actual physical memory
starting at zero due to how the physeg array is sorted when using the
binary search strategy.  To fix this, do not physload an empty memory
region.

ok jsg@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/03/24 07:35:23

Modified files:
	devel/ruby-therubyracer: Makefile 

Log message:
mark therubyracer as broken

It requires a super old version of libv8 and is preventing major updates to
other applications (including security updates)

If soneone wants to use therubyracer, I suggest having it build with an
internal version of v8.

Discussed with landry@ and jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2017/03/24 08:30:14

Modified files:
	shells/zsh     : Makefile distinfo 

Log message:
Bugfix update to 5.3.1
Diff from Rafael Sadowski, thanks !


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/24 08:39:05

Modified files:
	lang/ruby/2.4  : Makefile distinfo 
	lang/ruby/2.4/patches: patch-compile_c patch-configure 
	                       patch-include_ruby_ruby_h 
	                       patch-lib_fileutils_rb 
	                       patch-lib_rubygems_ext_ext_conf_builder_rb 
	lang/ruby/2.4/pkg: PLIST-main PLIST-ri_docs 

Log message:
Update to ruby 2.4.1

Shared lib major bump due to removal of ruby_vm_sysstack_error_copy
function.  Regen patches.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/24 08:45:00

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Write raw strings in one go rather than character at a time.


CVSROOT:	/cvs
Module name:	ports
Changes by:	okan@cvs.openbsd.org	2017/03/24 08:57:59

Modified files:
	productivity   : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	productivity/wyrd: Makefile distinfo 
	productivity/wyrd/patches: patch-Makefile_in 
	                           patch-curses_Makefile_in 
	                           patch-curses_curses_ml 
	productivity/wyrd/pkg: DESCR PLIST 

Log message:
Unhook productivity/wyrd; dead upstream and no further interest exists.

ok daniel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	okan@cvs.openbsd.org	2017/03/24 09:21:46

Modified files:
	games          : Makefile 
	www            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	games/sudoku-solver: Makefile distinfo 
	games/sudoku-solver/patches: patch-Makefile patch-motif_Makefile 
	                             patch-motif_xsudoku_1 
	                             patch-sudoku-solver_6 
	                             patch-webui_Makefile 
	games/sudoku-solver/pkg: DESCR PLIST 
	www/clearsilver: Makefile distinfo 
	www/clearsilver/patches: patch-cgi_Makefile patch-cgi_cgi_c 
	                         patch-cgi_cgi_h patch-cgi_cgiwrap_c 
	                         patch-cgi_date_h patch-cgi_html_c 
	                         patch-cs_Makefile patch-cs_csparse_c 
	                         patch-perl_Makefile_PL 
	                         patch-python_setup_py patch-rules_mk_in 
	                         patch-util_Makefile patch-util_filter_h 
	                         patch-util_neo_date_h 
	                         patch-util_neo_err_h 
	                         patch-util_neo_hdf_c 
	                         patch-util_neo_str_c patch-util_rcfs_h 
	www/clearsilver/pkg: DESCR-main DESCR-perl DESCR-python 
	                     PLIST-main PLIST-perl PLIST-python 

Log message:
Unhook games/sudoku-solver and www/clearsilver; clearsilver being abandoned
upstream and Marc Balmer (original auther) agrees with removing the only
dependent port, sudoku-solver.

ok many and sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/24 09:22:45

Modified files:
	sys/arch/armv7/marvell: mvacc.c 

Log message:
Bump resolution of frequencies from kHz to Hz, since that is what the
clock frequency API expects.  Fixes login prompt over serial console.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/24 09:26:11

Modified files:
	graphics/grafx2: Makefile 

Log message:
Pass CC via MAKE_FLAGS in order to avoid patching upstream Makefile in
the pre-configure target.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tsg@cvs.openbsd.org	2017/03/24 09:56:38

Modified files:
	devel/p5-Modern-Perl: Makefile distinfo 

Log message:
Update to p5-Modern-Perl-1.20170117.

OK afresh1@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/24 10:15:31

Modified files:
	lib/libc/stdlib: Makefile.inc malloc.c 

Log message:
move recallocarray to malloc.c and
- use internal meta-data to do more consistency checking (especially with
option C)
- use cheap free if possible
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/24 10:17:50

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
document new recallocarray diagnostic; zap a few diagnostics that should
never occur


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/24 10:23:05

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
add a helper function to print all pools #ifdef MALLOC_STATS
from David CARLIER


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/24 10:24:36

Modified files:
	usr.sbin/syslogd: ttymsg.c 

Log message:
Replace bcopy(3) with memmove(3) in function ttymsg().  Values of
iov and localiov may overlap.  No more bcopy(3) in syslogd(8).
from Michael W. Bombardieri


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/24 10:42:38

Modified files:
	sys/kern       : subr_log.c 

Log message:
There was a race in dosendsyslog() which resulted in a crash.
sosend(syslogf->f_data, ...) could be called with a NULL pointer.
syslogf was not NULL, f_data was NULL and f_count was 1.  The file
structure is ref counted, but the global variable syslogf is not
protected.  So it may change during sleep and dosendsyslog() possibly
used a different socket at each access.  Solution is to access
syslogf only once, use a local copy, and do the ref counting there.
OK millert@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2017/03/24 11:20:03

Modified files:
	usr.bin/aucat  : afile.c 

Log message:
Use the right header sizes for reading .aiff and .au files, ok ratchov


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/24 12:16:46

Modified files:
	faq            : faq1.html 

Log message:
missing hyphens; from griffin melnick


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/24 12:29:37

Modified files:
	productivity/davical: Makefile 
	productivity/davical/pkg: README 

Log message:
Add an example config for httpd(8), example from Michael Warmuth-Uhl,
diff from Marcus MERIGHI, thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/24 12:34:39

Modified files:
	.              : anoncvs.html cvsync.html ftp.html 
	build/mirrors  : anoncvs.html.head cvsync.html.head 
	                 ftp.html.head openbgpd-ftp.html.head 
	                 openntpd-portable.html.head 
	openbgpd       : ftp.html 
	openntpd       : portable.html 

Log message:
bump some copyrights; reminded by elijah abney


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/03/24 13:12:50

Log message:
    Import screenfetch-3.8.0.
    
    screenfetch is a handy script that can be used to generate one of those
    nifty terminal theme information + ASCII distribution logos you see in
    everyone's screenshots nowadays.
    
    ok abieber@ benoit@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20170324
    
    N ports/sysutils/screenfetch/Makefile
    N ports/sysutils/screenfetch/distinfo
    N ports/sysutils/screenfetch/pkg/PLIST
    N ports/sysutils/screenfetch/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2017/03/24 13:13:38

Modified files:
	sysutils       : Makefile 

Log message:
+screenfetch


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/24 13:48:01

Modified files:
	sys/arch/arm64/arm64: cpufunc_asm.S cpuswitch.S genassym.cf 
	                      pmap.c 
	sys/arch/arm64/include: cpufunc.h pcb.h pmap.h 

Log message:
Simplify ASID allocation code considerably by allocating an ASID up front
when a pmap is created and freeing it when the pmap is destroyed.  This
diff relies on the fill 16-bit ASID space being implemented in the processor.
While this is documented as an optional feature in the ARMv8 architecture
reference manual, all ARMv8 processors seen in the wild so far implement
the full 16-bit space.  This change incorporates changes by drahn@ to
allocate an empty page table for the lower half of the address space for the
kernel.

ok drahn@, patrick@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/24 14:08:00

Modified files:
	faq            : faq4.html 

Log message:
fix spelling; from zachary maurer


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/24 14:27:27

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/marvell: files.marvell 
Added files:
	sys/arch/armv7/marvell: mvxhci.c 

Log message:
Implement a driver for Marvell's XHCI controller.  This is in essence
a generic XHCI controller with the twist that the MBUS window needs
to be configured in the controller registers.  This enables use of
USB on devices like the SolidRun ClearFog or Omnia Turris.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/24 14:31:58

Modified files:
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/armv7/marvell: files.marvell 
Added files:
	sys/arch/armv7/marvell: mvahci.c 

Log message:
Implement a driver for Marvell's AHCI controller.  This is in essence
a generic AHCI controller with the twist that the MBUS window needs
to be configured in the controller registers.  This enables use of
SATA on devices like the SolidRun ClearFog or Omnia Turris.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/24 15:18:00

Modified files:
	regress/sys/kern/pledge/ioctl: pfioctl1.c pfioctl2.c 

Log message:
correct my email address. thanks fcambus@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/24 16:13:00

Modified files:
	usr.sbin/syslogd: syslogd.c 

Log message:
Keep syslogd(8) running as long as possible.  Regular programs
should terminate early in case of an error.  But if syslogd dies,
no messages can be seen at all.  Except from command line parsing
and memory shortage during statup, report errors and run all working
subsystems, but do not die.
OK millert@ dreaadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2017/03/24 16:23:10

Modified files:
	lang/node      : Makefile distinfo 

Log message:
bump node to the latest, has some nice speed improvements!

OK fcambus@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/24 16:25:11

Added files:
	regress/usr.sbin/syslogd: args-error.pl 

Log message:
Check that syslogd(8) is still running if non critical errors happen
during startup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/24 16:37:53

Modified files:
	sysutils/firmware/vmm: Makefile 
	sysutils/firmware/vmm/files: config 

Log message:
diable CONFIG_PS2PORT, req by mlarkin


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/24 16:55:41

Modified files:
	devel/lazarus  : Makefile 

Log message:
mark BROKEN-i386, build fails fairly often


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/03/24 18:19:55

Log message:
    Import Mesa 13.0.6
    
    Status:
    
    Vendor Tag:	mesa
    Release Tags:	mesa-13_0_6
    
    U xenocara/lib/mesa/autogen.sh
    U xenocara/lib/mesa/aclocal.m4
    U xenocara/lib/mesa/install-lib-links.mk
    U xenocara/lib/mesa/VERSION
    U xenocara/lib/mesa/common.py
    C xenocara/lib/mesa/Makefile.in
    U xenocara/lib/mesa/SConstruct
    C xenocara/lib/mesa/configure.ac
    C xenocara/lib/mesa/configure
    U xenocara/lib/mesa/Makefile.am
    U xenocara/lib/mesa/install-gallium-links.mk
    U xenocara/lib/mesa/scons/custom.py
    U xenocara/lib/mesa/scons/crossmingw.py
    U xenocara/lib/mesa/scons/llvm.py
    U xenocara/lib/mesa/scons/source_list.py
    U xenocara/lib/mesa/scons/dxsdk.py
    U xenocara/lib/mesa/scons/x11.py
    U xenocara/lib/mesa/scons/fixes.py
    U xenocara/lib/mesa/scons/gallium.py
    U xenocara/lib/mesa/docs/xlibdriver.html
    U xenocara/lib/mesa/docs/debugging.html
    U xenocara/lib/mesa/docs/relnotes.html
    U xenocara/lib/mesa/docs/developers.html
    U xenocara/lib/mesa/docs/shading.html
    U xenocara/lib/mesa/docs/VERSIONS
    U xenocara/lib/mesa/docs/contents.html
    U xenocara/lib/mesa/docs/ARB_color_buffer_float.txt
    U xenocara/lib/mesa/docs/utilities.html
    U xenocara/lib/mesa/docs/gears.png
    U xenocara/lib/mesa/docs/perf.html
    U xenocara/lib/mesa/docs/llvmpipe.html
    U xenocara/lib/mesa/docs/conform.html
    U xenocara/lib/mesa/docs/faq.html
    U xenocara/lib/mesa/docs/mangling.html
    U xenocara/lib/mesa/docs/README.UVD
    U xenocara/lib/mesa/docs/autoconf.html
    U xenocara/lib/mesa/docs/extensions.html
    U xenocara/lib/mesa/docs/libGL.txt
    U xenocara/lib/mesa/docs/mesa.css
    U xenocara/lib/mesa/docs/systems.html
    U xenocara/lib/mesa/docs/README.WIN32
    U xenocara/lib/mesa/docs/precompiled.html
    U xenocara/lib/mesa/docs/lists.html
    U xenocara/lib/mesa/docs/sourcedocs.html
    U xenocara/lib/mesa/docs/sourcetree.html
    U xenocara/lib/mesa/docs/vmware-guest.html
    U xenocara/lib/mesa/docs/repository.html
    U xenocara/lib/mesa/docs/thanks.html
    U xenocara/lib/mesa/docs/helpwanted.html
    U xenocara/lib/mesa/docs/osmesa.html
    U xenocara/lib/mesa/docs/download.html
    U xenocara/lib/mesa/docs/intro.html
    U xenocara/lib/mesa/docs/install.html
    U xenocara/lib/mesa/docs/viewperf.html
    U xenocara/lib/mesa/docs/bugs.html
    U xenocara/lib/mesa/docs/patents.txt
    U xenocara/lib/mesa/docs/license.html
    U xenocara/lib/mesa/docs/postprocess.html
    U xenocara/lib/mesa/docs/dispatch.html
    U xenocara/lib/mesa/docs/index.html
    U xenocara/lib/mesa/docs/egl.html
    U xenocara/lib/mesa/docs/features.txt
    U xenocara/lib/mesa/docs/envvars.html
    U xenocara/lib/mesa/docs/devinfo.html
    U xenocara/lib/mesa/docs/application-issues.html
    U xenocara/lib/mesa/docs/README.VCE
    U xenocara/lib/mesa/docs/webmaster.html
    U xenocara/lib/mesa/docs/opengles.html
    U xenocara/lib/mesa/docs/versions.html
    U xenocara/lib/mesa/docs/specs/WL_create_wayland_buffer_from_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_control.spec
    U xenocara/lib/mesa/docs/specs/MESA_multithread_makecurrent.spec
    U xenocara/lib/mesa/docs/specs/MESA_ycbcr_texture.spec
    U xenocara/lib/mesa/docs/specs/MESA_query_renderer.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_frame_usage.spec
    U xenocara/lib/mesa/docs/specs/enums.txt
    U xenocara/lib/mesa/docs/specs/MESA_window_pos.spec
    U xenocara/lib/mesa/docs/specs/MESA_pack_invert.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_debug.spec
    U xenocara/lib/mesa/docs/specs/MESA_drm_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_release_buffers.spec
    U xenocara/lib/mesa/docs/specs/MESA_pixmap_colormap.spec
    U xenocara/lib/mesa/docs/specs/WL_bind_wayland_display.spec
    U xenocara/lib/mesa/docs/specs/EGL_MESA_platform_surfaceless.txt
    U xenocara/lib/mesa/docs/specs/MESA_set_3dfx_mode.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_signed_rgba.spec
    U xenocara/lib/mesa/docs/specs/MESA_image_dma_buf_export.txt
    U xenocara/lib/mesa/docs/specs/MESA_shader_integer_functions.txt
    U xenocara/lib/mesa/docs/specs/MESA_copy_sub_buffer.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_samples_identical.txt
    U xenocara/lib/mesa/docs/specs/MESA_agp_offset.spec
    U xenocara/lib/mesa/docs/specs/MESA_configless_context.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_integer_mix.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_array.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_resize_buffers.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_trace.spec
    U xenocara/lib/mesa/docs/specs/OLD/EGL_MESA_screen_surface.txt
    U xenocara/lib/mesa/docs/specs/OLD/MESA_program_debug.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_sprite_point.spec
    U xenocara/lib/mesa/docs/relnotes/10.5.8.html
    U xenocara/lib/mesa/docs/relnotes/8.0.5.html
    U xenocara/lib/mesa/docs/relnotes/9.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.1
    U xenocara/lib/mesa/docs/relnotes/10.5.0.html
    U xenocara/lib/mesa/docs/relnotes/6.4
    U xenocara/lib/mesa/docs/relnotes/12.0.1.html
    U xenocara/lib/mesa/docs/relnotes/3.2.1
    U xenocara/lib/mesa/docs/relnotes/7.9.1.html
    U xenocara/lib/mesa/docs/relnotes/6.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.html
    U xenocara/lib/mesa/docs/relnotes/11.0.7.html
    U xenocara/lib/mesa/docs/relnotes/13.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.5.html
    U xenocara/lib/mesa/docs/relnotes/7.7.html
    U xenocara/lib/mesa/docs/relnotes/6.5.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.3.html
    U xenocara/lib/mesa/docs/relnotes/6.2.1
    U xenocara/lib/mesa/docs/relnotes/9.2.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.2.html
    U xenocara/lib/mesa/docs/relnotes/3.3
    U xenocara/lib/mesa/docs/relnotes/11.1.3.html
    U xenocara/lib/mesa/docs/relnotes/5.0.2
    U xenocara/lib/mesa/docs/relnotes/3.5
    U xenocara/lib/mesa/docs/relnotes/11.0.5.html
    U xenocara/lib/mesa/docs/relnotes/7.5.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.1.html
    U xenocara/lib/mesa/docs/relnotes/10.5.3.html
    U xenocara/lib/mesa/docs/relnotes/11.0.1.html
    U xenocara/lib/mesa/docs/relnotes/13.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.2.9.html
    U xenocara/lib/mesa/docs/relnotes/6.5.1.html
    U xenocara/lib/mesa/docs/relnotes/7.0.html
    U xenocara/lib/mesa/docs/relnotes/5.0.1
    U xenocara/lib/mesa/docs/relnotes/10.5.1.html
    U xenocara/lib/mesa/docs/relnotes/10.1.5.html
    U xenocara/lib/mesa/docs/relnotes/8.0.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.6.6.html
    U xenocara/lib/mesa/docs/relnotes/6.4.1.html
    U xenocara/lib/mesa/docs/relnotes/7.11.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.8.html
    U xenocara/lib/mesa/docs/relnotes/7.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.10.2.html
    U xenocara/lib/mesa/docs/relnotes/3.4
    U xenocara/lib/mesa/docs/relnotes/10.3.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.4.html
    U xenocara/lib/mesa/docs/relnotes/11.0.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.6.html
    U xenocara/lib/mesa/docs/relnotes/7.8.2.html
    U xenocara/lib/mesa/docs/relnotes/6.3.1
    U xenocara/lib/mesa/docs/relnotes/4.0.1
    U xenocara/lib/mesa/docs/relnotes/7.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.3.2
    U xenocara/lib/mesa/docs/relnotes/10.3.5.html
    U xenocara/lib/mesa/docs/relnotes/7.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.4.html
    U xenocara/lib/mesa/docs/relnotes/6.0
    U xenocara/lib/mesa/docs/relnotes/9.2.3.html
    U xenocara/lib/mesa/docs/relnotes/11.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.3.2.html
    U xenocara/lib/mesa/docs/relnotes/7.10.html
    U xenocara/lib/mesa/docs/relnotes/7.8.html
    U xenocara/lib/mesa/docs/relnotes/7.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.7.html
    U xenocara/lib/mesa/docs/relnotes/6.3
    U xenocara/lib/mesa/docs/relnotes/12.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.1.html
    U xenocara/lib/mesa/docs/relnotes/7.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.3.html
    U xenocara/lib/mesa/docs/relnotes/4.0.2
    U xenocara/lib/mesa/docs/relnotes/13.0.1.html
    U xenocara/lib/mesa/docs/relnotes/6.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.html
    U xenocara/lib/mesa/docs/relnotes/10.4.3.html
    U xenocara/lib/mesa/docs/relnotes/10.5.9.html
    U xenocara/lib/mesa/docs/relnotes/9.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.6.html
    U xenocara/lib/mesa/docs/relnotes/10.6.1.html
    U xenocara/lib/mesa/docs/relnotes/11.2.1.html
    U xenocara/lib/mesa/docs/relnotes/6.0.1
    U xenocara/lib/mesa/docs/relnotes/7.4.html
    U xenocara/lib/mesa/docs/relnotes/9.2.5.html
    U xenocara/lib/mesa/docs/relnotes/7.4.3.html
    U xenocara/lib/mesa/docs/relnotes/11.2.0.html
    U xenocara/lib/mesa/docs/relnotes/10.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.5.html
    U xenocara/lib/mesa/docs/relnotes/4.0
    U xenocara/lib/mesa/docs/relnotes/6.5.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.2.html
    U xenocara/lib/mesa/docs/relnotes/3.1
    U xenocara/lib/mesa/docs/relnotes/11.2.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.4.7.html
    U xenocara/lib/mesa/docs/relnotes/9.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.0.html
    U xenocara/lib/mesa/docs/relnotes/13.0.2.html
    U xenocara/lib/mesa/docs/relnotes/9.0.1.html
    U xenocara/lib/mesa/docs/relnotes/7.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.4.html
    U xenocara/lib/mesa/docs/relnotes/10.4.6.html
    U xenocara/lib/mesa/docs/relnotes/7.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.0.1.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/4.0.3
    U xenocara/lib/mesa/docs/relnotes/10.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.9.html
    U xenocara/lib/mesa/docs/relnotes/3.4.2
    U xenocara/lib/mesa/docs/relnotes/7.11.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.3.html
    U xenocara/lib/mesa/docs/relnotes/9.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.2.html
    U xenocara/lib/mesa/docs/relnotes/7.4.1.html
    U xenocara/lib/mesa/docs/relnotes/9.1.6.html
    U xenocara/lib/mesa/docs/relnotes/12.0.0.html
    U xenocara/lib/mesa/docs/relnotes/10.3.7.html
    U xenocara/lib/mesa/docs/relnotes/4.1
    U xenocara/lib/mesa/docs/relnotes/12.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.8.html
    U xenocara/lib/mesa/docs/relnotes/10.1.6.html
    U xenocara/lib/mesa/docs/relnotes/11.1.0.html
    U xenocara/lib/mesa/docs/relnotes/5.1
    U xenocara/lib/mesa/docs/relnotes/10.1.3.html
    U xenocara/lib/mesa/docs/relnotes/7.9.html
    N xenocara/lib/mesa/docs/relnotes/13.0.6.html
    U xenocara/lib/mesa/docs/relnotes/10.3.html
    U xenocara/lib/mesa/docs/relnotes/8.0.html
    U xenocara/lib/mesa/docs/relnotes/9.1.3.html
    U xenocara/lib/mesa/docs/relnotes/3.2
    U xenocara/lib/mesa/docs/relnotes/13.0.5.html
    U xenocara/lib/mesa/docs/relnotes/3.4.1
    U xenocara/lib/mesa/docs/relnotes/11.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.6.html
    U xenocara/lib/mesa/docs/relnotes/7.11.html
    U xenocara/lib/mesa/docs/relnotes/8.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.5.html
    U xenocara/lib/mesa/docs/relnotes/5.0
    U xenocara/lib/mesa/docs/relnotes/10.3.4.html
    U xenocara/lib/mesa/docs/relnotes/11.1.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.5.html
    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/6.2
    U xenocara/lib/mesa/docs/relnotes/7.8.1.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/10.2.8.html
    U xenocara/lib/mesa/docs/relnotes/7.5.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.9.html
    U xenocara/lib/mesa/docs/relnotes/7.0.2.html
    U xenocara/lib/mesa/docs/relnotes/7.7.1.html
    U xenocara/lib/mesa/docs/relnotes/9.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.6.2.html
    U xenocara/lib/mesa/docs/relnotes/10.0.5.html
    U xenocara/lib/mesa/docs/relnotes/7.0.3.html
    U xenocara/lib/mesa/docs/relnotes/13.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.3.html
    U xenocara/lib/mesa/docs/relnotes/6.4.html
    U xenocara/lib/mesa/m4/ax_prog_flex.m4
    U xenocara/lib/mesa/m4/ax_check_gnu_make.m4
    U xenocara/lib/mesa/m4/ltversion.m4
    U xenocara/lib/mesa/m4/ax_gcc_builtin.m4
    U xenocara/lib/mesa/m4/libtool.m4
    U xenocara/lib/mesa/m4/ax_pthread.m4
    U xenocara/lib/mesa/m4/ax_gcc_func_attribute.m4
    U xenocara/lib/mesa/m4/lt~obsolete.m4
    U xenocara/lib/mesa/m4/ltsugar.m4
    U xenocara/lib/mesa/m4/ax_check_python_mako_module.m4
    U xenocara/lib/mesa/m4/ax_prog_bison.m4
    U xenocara/lib/mesa/m4/ltoptions.m4
    C xenocara/lib/mesa/src/Makefile.in
    U xenocara/lib/mesa/src/SConscript
    U xenocara/lib/mesa/src/Makefile.am
    U xenocara/lib/mesa/src/getopt/.editorconfig
    U xenocara/lib/mesa/src/getopt/getopt.h
    U xenocara/lib/mesa/src/getopt/SConscript
    U xenocara/lib/mesa/src/getopt/getopt_long.c
    U xenocara/lib/mesa/src/mapi/mapi_glapi.c
    U xenocara/lib/mesa/src/mapi/entry.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tsd.h
    U xenocara/lib/mesa/src/mapi/Makefile.sources
    U xenocara/lib/mesa/src/mapi/u_current.c
    U xenocara/lib/mesa/src/mapi/entry_x86_tls.h
    U xenocara/lib/mesa/src/mapi/table.c
    U xenocara/lib/mesa/src/mapi/u_execmem.h
    U xenocara/lib/mesa/src/mapi/stub.h
    U xenocara/lib/mesa/src/mapi/u_execmem.c
    C xenocara/lib/mesa/src/mapi/Makefile.in
    U xenocara/lib/mesa/src/mapi/mapi_abi.py
    U xenocara/lib/mesa/src/mapi/Makefile.am
    U xenocara/lib/mesa/src/mapi/entry_x86-64_tls.h
    U xenocara/lib/mesa/src/mapi/u_current.h
    U xenocara/lib/mesa/src/mapi/stub.c
    U xenocara/lib/mesa/src/mapi/entry.c
    U xenocara/lib/mesa/src/mapi/mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/table.h
    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/tests/check_table.cpp
    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/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/glapi/glapi_nop.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86-64.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_gentable.c
    U xenocara/lib/mesa/src/mapi/glapi/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/glapi_sparc.S
    U xenocara/lib/mesa/src/mapi/glapi/glapitable.h
    U xenocara/lib/mesa/src/mapi/glapi/glprocs.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_priv.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_dispatch.c
    U xenocara/lib/mesa/src/mapi/glapi/glapitemp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_getproc.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_entrypoint.c
    U xenocara/lib/mesa/src/mapi/glapi/tests/check_table.cpp
    U xenocara/lib/mesa/src/mapi/glapi/registry/gl.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/typeexpr.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_integer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_genexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GREMEDY_string_marker.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_enums.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_direct_state_access.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_base_instance.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_send.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_program_interface_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_multi_bind.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sample_shading.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_storage_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/static_data.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_procs.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_size.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_indirect_parameters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness_es.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/apiexec.py
    C xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.in
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_object_purgeable.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_clip_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_gentable.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86-64_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL3x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_conditional_render.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compressed_texture_pixel_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/INTEL_performance_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/license.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.am
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_context_flush_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sync.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL4x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_subroutine.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_EGL_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rg.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_gather.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_common.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.dtd
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_fp64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_pipeline_statistics_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_recv.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_single_precision.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_viewport_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_primitive_restart.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_window_rectangles.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_SPARC_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_es_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/es_EXT.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_server_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_variable_group_size.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_view.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_fixed_point.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/ARB_clear_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_debug.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/remap_helper.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_debug_output.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_tessellation_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_apitemp.py
    U xenocara/lib/mesa/src/gallium/Automake.inc
    C xenocara/lib/mesa/src/gallium/Makefile.in
    U xenocara/lib/mesa/src/gallium/SConscript
    U xenocara/lib/mesa/src/gallium/Makefile.am
    U xenocara/lib/mesa/src/gallium/README.portability
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/README
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/trace.xsl
    C xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.h
    U xenocara/lib/mesa/src/gallium/drivers/trace/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/trace/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/trace/tr_dump_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_52.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_50.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_pipe_common.c
    C xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_streamout.c
    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_vce_40_2_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_gpu_load.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_elf_util.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_buffer_common.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/r600_query.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/LLVM_REVISION.txt
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/cayman_msaa.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_util.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_context.c
    C xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ddebug/dd_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_small_immediates.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_dead_code.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_live_variables.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_formats.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_register_allocate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_copy_propagation.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_reorder_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_algebraic.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_job.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_qir_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_peephole_sf.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator_validate.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_state.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_lower_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_constant_folding.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_qpu_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_vpm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_emit_uniform_stream_resets.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_drv.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_gem.c
    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_packet.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c
    C xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_main.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_format.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/rbug/README
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.c
    C xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/rbug/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/rbug/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_public.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.c
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_objects.h
    U xenocara/lib/mesa/src/gallium/drivers/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_public.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_immediate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/i915/TODO
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.h
    C xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_private.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_fpc.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_static.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batchbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_shader_semantics.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r300/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cs.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_texture_desc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_inlines.h
    C xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_stencilref.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.h
    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_render_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cb.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_hyperz.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h
    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_compiler_util.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.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_pair.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.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_program.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.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/r300_fragprog_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h
    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.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c
    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/r300_compiler_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/regalloc_tex_1d_swizzle.test
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.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/omod_two_writers.test
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.sources
    C xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_state.c
    U xenocara/lib/mesa/src/gallium/drivers/noop/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/noop/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_public.h
    U xenocara/lib/mesa/src/gallium/drivers/noop/noop_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_public.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_descriptors.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/cik_sdma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/sid_tables.py
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r600/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state_common.c
    C xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_formats.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreend.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/notes.markdown
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_psi_ops.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_ir.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.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_finalize.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_format.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_common.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_rectlist.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_media.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter.c
    C xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_video.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_blt.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blitter_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_query.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_public.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen7.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_state.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen6.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_context.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_render_gen8.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/ilo_gpgpu.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_core.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface_format.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader_ps.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_mi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_vf.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sampler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_render.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_bottom.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_urb.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_raster.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sbe.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_sol.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/intel_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_zs.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_decode.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_vma.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_image.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_state_cc.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_blt.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_dev.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_3d_top.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/core/ilo_builder_media.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_compiler_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/ilo_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_legalize_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_helpers.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/shader/toy_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_message.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_blitter.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_dynamic.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_eu_isa.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_surface.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render_media.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/genhw.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_mi.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_render.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/ilo/genhw/gen_regs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.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/virgl_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.h
    C xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_protocol.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_public.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs_exec.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state.h
    C xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs.h
    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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_draw.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/swr/Automake.inc
    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_state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_memory.h
    C xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_clear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context_llvm.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_loader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/utils.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/arena.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/fifo.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/blend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/depthstencil.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_conversion.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_types.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa_avx.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tessellator.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs_init.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/conservativeRast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_traits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/ringbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_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/JitManager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/state_llvm.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/JitManager.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_x86.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_math.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_ir_macros.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/scripts/gen_llvm_types.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/eventmanager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandlerfile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events.proto
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandler.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/tilingtraits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/ClearTile.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_TileX2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/Convert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_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_Linear2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.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_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_Linear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdintrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simd16intrin.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/swr_assert.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/isa.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/knob_defs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_archrast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/gen_knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/ast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pyparser.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/_ast_util.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cache.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lexer.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/pygen.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/util.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/filters.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/codegen.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/compat.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/runtime.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/__init__.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/cmd.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/exceptions.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/template.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/lookup.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/mako/parsetree.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandler_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_eventhandlerfile_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_h.template
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/scripts/templates/ar_event_cpp.template
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_framebuffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_backend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_rss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_query.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_mksstats.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_elements.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_streamout.h
    C xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_misc.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vdecl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_public.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_hw_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_insn.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.py
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_caps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_end.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/includeCheck.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/VGPU10ShaderTokens.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/README
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_dx.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_overlay.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_escape.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_common.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/disasm.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/adreno_pm4.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/a3xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c
    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_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/a2xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_lower_if_else.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_sched.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_group.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_legalize.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/instr-a3xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_print.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_nir_trig.py
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/a4xx.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.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/codegen/nv50_ir_util.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_util.cpp
    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_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_nvc0.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_print.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_emit_nvc0.cpp
    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.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_bb.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_target_nv50.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_emit_gm107.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.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_graph.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_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_inlines.h
    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_target.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.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm
    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/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.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_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/gm107_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_macros.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.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.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_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h
    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/nvc0_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h
    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/nouveau/nvc0/mme/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_defs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_texture.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_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.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/nv50_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.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_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.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/nv50_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.c
    U xenocara/lib/mesa/src/gallium/tools/addr2line.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/tracediff.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/dump.py
    U xenocara/lib/mesa/src/gallium/tools/trace/model.py
    U xenocara/lib/mesa/src/gallium/tools/trace/README.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/dump_state.py
    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/format.py
    U xenocara/lib/mesa/src/gallium/tools/trace/parse.py
    U xenocara/lib/mesa/src/gallium/docs/Makefile
    U xenocara/lib/mesa/src/gallium/docs/llvm-todo.txt
    U xenocara/lib/mesa/src/gallium/docs/make.bat
    U xenocara/lib/mesa/src/gallium/docs/source/screen.rst
    U xenocara/lib/mesa/src/gallium/docs/source/conf.py
    U xenocara/lib/mesa/src/gallium/docs/source/index.rst
    U xenocara/lib/mesa/src/gallium/docs/source/glossary.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso.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/debugging.rst
    U xenocara/lib/mesa/src/gallium/docs/source/intro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/resources.rst
    U xenocara/lib/mesa/src/gallium/docs/source/pipeline.txt
    U xenocara/lib/mesa/src/gallium/docs/source/tgsi.rst
    U xenocara/lib/mesa/src/gallium/docs/source/format.rst
    U xenocara/lib/mesa/src/gallium/docs/source/context.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/profiling.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/knobs.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/faq.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno/ir3-notes.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/rasterizer.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/shader.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/sampler.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/dsa.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/blend.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/velems.rst
    U xenocara/lib/mesa/src/gallium/docs/source/exts/formatting.py
    U xenocara/lib/mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh
    U xenocara/lib/mesa/src/gallium/tests/unit/u_half_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/pipe_barrier_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/translate_test.c
    C xenocara/lib/mesa/src/gallium/tests/unit/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/unit/u_cache_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/SConscript
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_compatible_test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri.c
    U xenocara/lib/mesa/src/gallium/tests/graw/occlusion-query.c
    U xenocara/lib/mesa/src/gallium/tests/graw/graw_util.h
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-fragcoord.c
    U xenocara/lib/mesa/src/gallium/tests/graw/vs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-gs.c
    U xenocara/lib/mesa/src/gallium/tests/graw/SConscript
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-srgb.c
    U xenocara/lib/mesa/src/gallium/tests/graw/shader-leak.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-frontface.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-swizzle.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-sample.c
    U xenocara/lib/mesa/src/gallium/tests/graw/disasm.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tgsi_dump.gdb
    U xenocara/lib/mesa/src/gallium/tests/graw/clear.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-write-z.c
    U xenocara/lib/mesa/src/gallium/tests/graw/gs-test.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/fragment-shader/frag-mul.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-abs.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-lit.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-face.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-mad-immx.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-max.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-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.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-srcmod-neg.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-mad.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-sge.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-cb-2d.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-lg2.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-rcp.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-ex2.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-min.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-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh
    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/add-mix.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/multi-line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.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-arl.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-frc.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-srcmod-abs.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-add.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-cb-1d.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-srcmod-swz.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-abs.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-mul.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-umul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.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-lrp.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-srcmod-neg.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-slt.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-ex2.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-cb-2d.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-arr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/trivial/tri.c
    C xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/trivial/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/compute.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri-vdpau.dyn
    U xenocara/lib/mesa/src/gallium/targets/vdpau/target.c
    C xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/vdpau/vdpau.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/xlib.c
    C xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/libgl-xlib.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i965.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
    C xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_msm.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r600.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i915.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/xvmc.sym
    U xenocara/lib/mesa/src/gallium/targets/xvmc/target.c
    C xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.sym
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.mingw.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/target.c
    C xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.pc.in
    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/dri/target.c
    C xenocara/lib/mesa/src/gallium/targets/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/dri/SConscript
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri/dri.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/target.c
    C xenocara/lib/mesa/src/gallium/targets/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/omx/omx.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/graw_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3d.pc.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/drm.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3dadapter9.sym
    C xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/getproc.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/description.c
    U xenocara/lib/mesa/src/gallium/targets/va/target.c
    C xenocara/lib/mesa/src/gallium/targets/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/va/va.sym
    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/SoftwareRenderer.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef
    C xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/opencl/opencl.sym
    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/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/libgl-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/xa/xatracker.pc.in
    U xenocara/lib/mesa/src/gallium/targets/xa/target.c
    C xenocara/lib/mesa/src/gallium/targets/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/xa/xa.sym
    U xenocara/lib/mesa/src/gallium/state_trackers/README
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/bitmap.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/query.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/mixer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/decode.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/htab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/device.c
    C xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/presentation.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/preemption.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/vdpau_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/ftab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/output.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/block.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/attributes.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/surface.c
    C xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/xvmc_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.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_surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.c
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.sources
    C xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.h
    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/hgl_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.h
    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/dri2_buffer.h
    C xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/drisw.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri2.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264.c
    C xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/entrypoint.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h265.c
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Doxyfile
    C xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/interop.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/transfer.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/object.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/error.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/property.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.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/module.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/compat.hpp
    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/invocation.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen.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/native.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algebra.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/pointer.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/tuple.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/range.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/lazy.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/adaptor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algorithm.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/postproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/va_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/va/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/config.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/display.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg4.c
    C xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vc1.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/va/image.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/buffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_api.c
    C xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_public.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_defines.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pdata.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/README
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_limits.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.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/authenticatedchannel9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_flags.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.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/volume9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_winsys.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_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_icd.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.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_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_yuv.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/README
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_priv.h
    C xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa-indent
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tgsi.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_surface.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_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.in
    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/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h
    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
    C xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c
    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_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.am
    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/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h
    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/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h
    C xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h
    C xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c
    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
    C xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
    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/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/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.am
    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/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virtgpu_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.am
    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/intel/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/intel/drm/intel_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.h
    C xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/svga_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_public.h
    C xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
    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_compiler.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_screen.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_config.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_shader_tokens.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_codec.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_state.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_enums.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_state.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/opencl_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_winsys.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/graw.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_dmabuf.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drisw_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_funcs.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/st_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drm_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/xlibsw_api.h
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.sources
    C xenocara/lib/mesa/src/gallium/auxiliary/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h
    C xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/postprocess.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_init.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_celshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_program.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_run.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/ADDING
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.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_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_mman.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_aligned.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_memory_stdc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_thread.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_proto.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_internal.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.c
    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/tgsi/tgsi_iterate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.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_aa_point.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.h
    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/font.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_driver_query.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_sensors_temp.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_fps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_diskstat.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_split_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c
    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_pipe_offset.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.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/translate/translate_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri3.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_rbsp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vlc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_stubs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_types.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pack_color.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pointer.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_format_latc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.csv
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_box.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_video.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_memory.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_parse.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_rect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_defines.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_string.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_caps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dynarray.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pwr8.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_queue.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_viewport.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_pack.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitcast.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_keymap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_math.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_half.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dual_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/dbghelp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_fifo.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_flags.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_time.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_memory.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_range.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cpu_detect.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py
    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_indices_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.py
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.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_alt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_cached.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.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_action.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c
    U xenocara/lib/mesa/src/hgl/.editorconfig
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.h
    U xenocara/lib/mesa/src/hgl/GLView.cpp
    U xenocara/lib/mesa/src/hgl/SConscript
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.h
    U xenocara/lib/mesa/src/hgl/GLRenderer.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.cpp
    U xenocara/lib/mesa/src/egl/Makefile.sources
    C xenocara/lib/mesa/src/egl/Makefile.in
    U xenocara/lib/mesa/src/egl/SConscript
    U xenocara/lib/mesa/src/egl/Makefile.am
    U xenocara/lib/mesa/src/egl/egl-symbols-check
    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/drivers/dri2/platform_wayland.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_drm.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_surfaceless.c
    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/egl_dri2.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/wayland/wayland-drm/wayland-drm.h
    C xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm-protocol.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.xml
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.c
    C xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-priv.h
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl.pc.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-egl/wayland-egl-symbols-check
    U xenocara/lib/mesa/src/egl/main/egllog.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.c
    U xenocara/lib/mesa/src/egl/main/eglsync.c
    U xenocara/lib/mesa/src/egl/main/eglcurrent.h
    U xenocara/lib/mesa/src/egl/main/eglcurrent.c
    U xenocara/lib/mesa/src/egl/main/eglapi.h
    U xenocara/lib/mesa/src/egl/main/eglimage.h
    U xenocara/lib/mesa/src/egl/main/eglglobals.h
    U xenocara/lib/mesa/src/egl/main/egldisplay.c
    U xenocara/lib/mesa/src/egl/main/egllog.h
    U xenocara/lib/mesa/src/egl/main/egldriver.h
    U xenocara/lib/mesa/src/egl/main/egl.pc.in
    U xenocara/lib/mesa/src/egl/main/eglsurface.c
    U xenocara/lib/mesa/src/egl/main/eglglobals.c
    U xenocara/lib/mesa/src/egl/main/egldisplay.h
    U xenocara/lib/mesa/src/egl/main/egldefines.h
    U xenocara/lib/mesa/src/egl/main/egl.def
    U xenocara/lib/mesa/src/egl/main/eglsync.h
    U xenocara/lib/mesa/src/egl/main/eglarray.c
    U xenocara/lib/mesa/src/egl/main/egltypedefs.h
    U xenocara/lib/mesa/src/egl/main/eglarray.h
    U xenocara/lib/mesa/src/egl/main/README.txt
    U xenocara/lib/mesa/src/egl/main/eglimage.c
    U xenocara/lib/mesa/src/egl/main/eglconfig.c
    U xenocara/lib/mesa/src/egl/main/eglapi.c
    U xenocara/lib/mesa/src/egl/main/eglfallbacks.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.h
    U xenocara/lib/mesa/src/egl/main/egldriver.c
    U xenocara/lib/mesa/src/egl/main/eglcompiler.h
    U xenocara/lib/mesa/src/egl/main/eglconfig.h
    U xenocara/lib/mesa/src/egl/main/eglsurface.h
    U xenocara/lib/mesa/src/gbm/Makefile.sources
    C xenocara/lib/mesa/src/gbm/Makefile.in
    U xenocara/lib/mesa/src/gbm/gbm-symbols-check
    U xenocara/lib/mesa/src/gbm/Makefile.am
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_driint.h
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_dri.c
    U xenocara/lib/mesa/src/gbm/main/backend.c
    U xenocara/lib/mesa/src/gbm/main/gbm.c
    U xenocara/lib/mesa/src/gbm/main/gbm.h
    U xenocara/lib/mesa/src/gbm/main/gbmint.h
    U xenocara/lib/mesa/src/gbm/main/gbm.pc.in
    U xenocara/lib/mesa/src/gbm/main/backend.h
    U xenocara/lib/mesa/src/gbm/main/common_drm.h
    U xenocara/lib/mesa/src/compiler/glsl_types.cpp
    U xenocara/lib/mesa/src/compiler/Makefile.sources
    U xenocara/lib/mesa/src/compiler/shader_enums.c
    C xenocara/lib/mesa/src/compiler/Makefile.in
    U xenocara/lib/mesa/src/compiler/shader_enums.h
    U xenocara/lib/mesa/src/compiler/SConscript
    U xenocara/lib/mesa/src/compiler/Makefile.glsl.am
    U xenocara/lib/mesa/src/compiler/Makefile.nir.am
    U xenocara/lib/mesa/src/compiler/Makefile.am
    U xenocara/lib/mesa/src/compiler/SConscript.nir
    U xenocara/lib/mesa/src/compiler/nir_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl_types.h
    U xenocara/lib/mesa/src/compiler/SConscript.glsl
    U xenocara/lib/mesa/src/compiler/nir_types.h
    U xenocara/lib/mesa/src/compiler/builtin_type_macros.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_cfg.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/GLSL.std.450.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_to_nir.c
    U xenocara/lib/mesa/src/compiler/spirv/nir_spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_glsl450.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_variables.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_alu.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_private.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv2nir.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_mat_op_to_vec.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code_local.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_swizzle_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_noop_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packed_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vertex_id.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.cpp
    U xenocara/lib/mesa/src/compiler/glsl/TODO
    U xenocara/lib/mesa/src/compiler/glsl/opt_structure_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.py
    U xenocara/lib/mesa/src/compiler/glsl/ast_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.h
    U xenocara/lib/mesa/src/compiler/glsl/program.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_equals.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_variable.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_packing_builtins.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_redundant_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_offset_array.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_inlining.h
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_vectorize.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_shared_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/README
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_folding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/cache.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_noise.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_expr.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_named_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_algebraic.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_constant.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_validate.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_instructions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_to_hir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/cache.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_clone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/propagate_invariance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_distance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_array_index.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_tess_level.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation_elements.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_variable_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_ubo_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_initializers.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_texture_projection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_controls.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_flip_matrices.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_output_reads.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.ll
    U xenocara/lib/mesa/src/compiler/glsl/opt_conditional_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_type.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_detect_recursion.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hv_accept.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_array_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_atomics.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_unroll.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_const_arrays_to_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_insert.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_constant_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/blob.c
    U xenocara/lib/mesa/src/compiler/glsl/ir_set_program_inouts.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard_flow.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast.h
    U xenocara/lib/mesa/src/compiler/glsl/list.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_can_inline.cpp
    U xenocara/lib/mesa/src/compiler/glsl/main.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_optimization.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_strings.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_subroutine.cpp
    U xenocara/lib/mesa/src/compiler/glsl/hir_field_selection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_blend_equation_advanced.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_uniform.h
    U xenocara/lib/mesa/src/compiler/glsl/link_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_minmax.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.yy
    U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_rebalance_tree.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_function_inlining.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_tree_grafting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_if_simplification.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.h
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_if_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_derefs.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/array_refcount_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/general_ir_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.h
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/cache_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/varyings_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/builtin_variable_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/copy_constant_to_storage_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/sexps.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/set_uniform_initializer_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/compare_ir
    U xenocara/lib/mesa/src/compiler/glsl/tests/sampler_types_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/blob_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/invalidate_locations_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings-test
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/uniform_initializer_utils.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/varyings_test.Po
    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/sampler_types_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/general_ir_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/builtin_variable_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/invalidate_locations_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/glsl_tests_cache_test-cache_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/set_uniform_initializer_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_jumps/create_test_cases.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert.expected
    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/006-gequal.vert.expected
    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/024-shaderout.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert.expected
    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/025-function-parameters.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.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/006-gequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.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/000-basic-test.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert
    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/README
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp.c
    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/glcpp-lex.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.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/111-no-space-operator-after-hash-if.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.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.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/135-duplicate-parameter.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/034-define-func-self-compose-non-func.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/094-divide-by-zero-short-circuit.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/053-if-divide-and-shift.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.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/136-plus-plus-and-minus-minus.c.expected
    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/079-endif-without-if.c.expected
    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/049-if-expression-precedence.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/077-else-without-if.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/005-define-composite-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.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/098-elif-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c.expected
    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/105-multiline-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.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/121-comment-bug-72686.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/054-if-with-macros.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/084-unbalanced-parentheses.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/094-divide-by-zero-short-circuit.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected
    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/116-disable-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.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/103-garbage-after-else-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.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/134-hash-comment-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c.expected
    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/023-define-extra-whitespace.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/060-left-paren-in-macro-right-paren-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.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/077-else-without-if.c
    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/026-define-func-extra-newlines.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/008-define-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp-test
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c.expected
    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/005-define-composite-chain.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c.expected
    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/006-define-composite-chain-reverse.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/086-reserved-macro-names.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/048-if-nested.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/147-undef-builtin-allowed.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c.expected
    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/002-define-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.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/079-endif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c
    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/029-define-chain-obj-to-func-with-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.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/001-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.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/141-pragma-and-__LINE__.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.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/011-define-func-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c.expected
    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/071-punctuator.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.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/043-if-0-else.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/007-define-composite-recursive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.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/140-null-directive.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/120-undef-builtin.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.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/110-no-space-digits-after-hash-elif.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/067-nested-ifdef-ifndef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.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/139-define-without-macro-name.c.expected
    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/003-define-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.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/097-paste-with-non-function-macro.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/012-define-func-no-args.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/135-duplicate-parameter.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/031-define-chain-func-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c.expected
    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/048-if-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.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/112-no-space-operator-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.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/023-define-extra-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.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/139-define-without-macro-name.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/091-hash-line.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/037-finalize-unexpanded-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.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/106-multiline-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c.expected
    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/038-func-arg-with-commas.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.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/004-define-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.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/064-version.c.expected
    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/000-content-with-spaces.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.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/068-accidental-pasting.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/054-if-with-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/096-paste-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.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/133-eof-without-newline-comment.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/043-if-0-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.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/020-define-func-2-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c
    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/047-if-elif-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.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/039-func-arg-obj-macro-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected
    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/014-define-func-2-arg-unused.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/119-elif-after-else.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/115-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.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/042-if-1.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/127-pragma-empty.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/041-if-0.c.expected
    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/128-space-before-hash.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/133-eof-without-newline-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.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/100-macro-with-colon.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.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/117-line-continuation-and-non-continuation-backslash.c.expected
    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/088-redefine-macro-legitimate.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/078-elif-without-if.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/093-divide-by-zero.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/026-define-func-extra-newlines.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.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/027-define-chain-obj-to-func.c
    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/125-es-short-circuit-undefined.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/118-comment-becomes-space.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/059-token-pasting-integer.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.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/136-plus-plus-and-minus-minus.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/130-define-comment.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/029-define-chain-obj-to-func-with-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c
    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/126-garbage-after-directive.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/093-divide-by-zero.c
    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/105-multiline-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.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/024-define-chain-to-self-recursion.c
    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/134-hash-comment-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected
    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/022-define-func-arg-with-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/114-paste-integer-tokens.c
    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/glcpp-test-cr-lf
    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/052-if-bitwise.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/061-define-chain-obj-to-func-multi.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clamp_color_outputs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_vla.h
    U xenocara/lib/mesa/src/compiler/nir/nir_search.c
    U xenocara/lib/mesa/src/compiler/nir/nir_validate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_clone.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_two_sided_color.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_ops.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_global_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_inline_functions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_global_vars_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_indirect_derefs.c
    U xenocara/lib/mesa/src/compiler/nir/nir.h
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_temporaries.c
    U xenocara/lib/mesa/src/compiler/nir/nir_normalize_cubemap_coords.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_remove_phis.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip.c
    U xenocara/lib/mesa/src/compiler/nir/nir_metadata.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_dominance.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_tex.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_gcm.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_types.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_gs_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gather_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_system_values.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_propagate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_search.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vars_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bitmap.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dce.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_atomics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.py
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.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_instr_set.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_undef.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_center.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_cse.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_phis_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_c.py
    U xenocara/lib/mesa/src/compiler/nir/nir_search_helpers.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_passthrough_edgeflags.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.h
    U xenocara/lib/mesa/src/compiler/nir/nir_print.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec_to_movs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_sweep.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow_private.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_remove_dead_variables.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_split_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.py
    U xenocara/lib/mesa/src/compiler/nir/nir_propagate_invariant.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_idiv.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.h
    U xenocara/lib/mesa/src/compiler/nir/nir_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_to_source_mods.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_packing.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_ytransform.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_peephole_select.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_load_const_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_liveness.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gs_count_vertices.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_cf.c
    U xenocara/lib/mesa/src/compiler/nir/nir.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_array.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_locals_to_regs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_drawpixels.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_returns.c
    U xenocara/lib/mesa/src/compiler/nir/nir_from_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_repair_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_samplers.c
    U xenocara/lib/mesa/src/compiler/nir/tests/control_flow_tests.cpp
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/nir_tests_control_flow_tests-control_flow_tests.Po
    U xenocara/lib/mesa/src/loader/loader.c
    U xenocara/lib/mesa/src/loader/Makefile.sources
    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/loader_dri3_helper.c
    C xenocara/lib/mesa/src/loader/Makefile.in
    U xenocara/lib/mesa/src/loader/loader_dri3_helper.h
    U xenocara/lib/mesa/src/loader/SConscript
    U xenocara/lib/mesa/src/loader/Makefile.am
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.h
    U xenocara/lib/mesa/src/glx/packsingle.h
    U xenocara/lib/mesa/src/glx/glxconfig.h
    U xenocara/lib/mesa/src/glx/glxconfig.c
    U xenocara/lib/mesa/src/glx/glx_query.c
    U xenocara/lib/mesa/src/glx/dri_glx.c
    U xenocara/lib/mesa/src/glx/glxclient.h
    U xenocara/lib/mesa/src/glx/indirect.h
    U xenocara/lib/mesa/src/glx/glxglvnddispatchfuncs.h
    U xenocara/lib/mesa/src/glx/xfont.c
    U xenocara/lib/mesa/src/glx/clientattrib.c
    U xenocara/lib/mesa/src/glx/glxhash.c
    U xenocara/lib/mesa/src/glx/pixel.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_program.c
    U xenocara/lib/mesa/src/glx/indirect_size.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchindices.h
    U xenocara/lib/mesa/src/glx/indirect_texture_compression.c
    U xenocara/lib/mesa/src/glx/dri2_priv.h
    U xenocara/lib/mesa/src/glx/dri_common_query_renderer.c
    U xenocara/lib/mesa/src/glx/indirect.c
    U xenocara/lib/mesa/src/glx/dri_common_interop.c
    U xenocara/lib/mesa/src/glx/drisw_glx.c
    U xenocara/lib/mesa/src/glx/compsize.c
    U xenocara/lib/mesa/src/glx/glxextensions.h
    U xenocara/lib/mesa/src/glx/dri3_priv.h
    U xenocara/lib/mesa/src/glx/glxcurrent.c
    U xenocara/lib/mesa/src/glx/indirect_size.h
    U xenocara/lib/mesa/src/glx/packrender.h
    U xenocara/lib/mesa/src/glx/dri2.h
    U xenocara/lib/mesa/src/glx/render2.c
    C xenocara/lib/mesa/src/glx/Makefile.in
    U xenocara/lib/mesa/src/glx/glxcmds.c
    U xenocara/lib/mesa/src/glx/create_context.c
    U xenocara/lib/mesa/src/glx/indirect_init.h
    U xenocara/lib/mesa/src/glx/query_renderer.c
    U xenocara/lib/mesa/src/glx/glx_error.h
    U xenocara/lib/mesa/src/glx/XF86dri.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchfuncs.c
    U xenocara/lib/mesa/src/glx/dri_common.c
    U xenocara/lib/mesa/src/glx/indirect_transpose_matrix.c
    U xenocara/lib/mesa/src/glx/clientinfo.c
    U xenocara/lib/mesa/src/glx/single2.c
    U xenocara/lib/mesa/src/glx/SConscript
    U xenocara/lib/mesa/src/glx/glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/singlepix.c
    U xenocara/lib/mesa/src/glx/Makefile.am
    U xenocara/lib/mesa/src/glx/indirect_vertex_array_priv.h
    U xenocara/lib/mesa/src/glx/xf86dristr.h
    U xenocara/lib/mesa/src/glx/dri_sarea.h
    U xenocara/lib/mesa/src/glx/glxextensions.c
    U xenocara/lib/mesa/src/glx/dri_common.h
    U xenocara/lib/mesa/src/glx/indirect_init.c
    U xenocara/lib/mesa/src/glx/dri3_glx.c
    U xenocara/lib/mesa/src/glx/indirect_window_pos.c
    U xenocara/lib/mesa/src/glx/renderpix.c
    U xenocara/lib/mesa/src/glx/xf86dri.h
    U xenocara/lib/mesa/src/glx/glxglvnd.h
    U xenocara/lib/mesa/src/glx/glxhash.h
    U xenocara/lib/mesa/src/glx/driwindows_glx.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.h
    U xenocara/lib/mesa/src/glx/dri2_glx.c
    U xenocara/lib/mesa/src/glx/glxglvnd.c
    U xenocara/lib/mesa/src/glx/glx_error.c
    U xenocara/lib/mesa/src/glx/indirect_glx.c
    U xenocara/lib/mesa/src/glx/drisw_priv.h
    U xenocara/lib/mesa/src/glx/applegl_glx.c
    U xenocara/lib/mesa/src/glx/dri2.c
    U xenocara/lib/mesa/src/glx/vertarr.c
    U xenocara/lib/mesa/src/glx/pixelstore.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.c
    U xenocara/lib/mesa/src/glx/eval.c
    U xenocara/lib/mesa/src/glx/glxext.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.h
    U xenocara/lib/mesa/src/glx/apple/TODO
    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.h
    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_surface.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_stereo.c
    C xenocara/lib/mesa/src/glx/apple/Makefile.in
    U xenocara/lib/mesa/src/glx/apple/RELEASE_NOTES
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_viewport.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.c
    U xenocara/lib/mesa/src/glx/apple/appledri.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.c
    U xenocara/lib/mesa/src/glx/apple/Makefile.am
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_read.c
    U xenocara/lib/mesa/src/glx/apple/appledri.h
    U xenocara/lib/mesa/src/glx/apple/apple_glapi.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.h
    U xenocara/lib/mesa/src/glx/apple/apple_visual.h
    U xenocara/lib/mesa/src/glx/apple/appledristr.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.c
    U xenocara/lib/mesa/src/glx/apple/glx_empty.c
    U xenocara/lib/mesa/src/glx/tests/enum_sizes.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.h
    U xenocara/lib/mesa/src/glx/tests/query_renderer_implementation_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/query_renderer_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/indirect_api.cpp
    C xenocara/lib/mesa/src/glx/tests/Makefile.in
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.cpp
    U xenocara/lib/mesa/src/glx/tests/Makefile.am
    U xenocara/lib/mesa/src/glx/tests/clientinfo_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/mock_xdisplay.h
    U xenocara/lib/mesa/src/glx/tests/create_context_unittest.cpp
    U xenocara/lib/mesa/src/glx/windows/windowsdristr.h
    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/windowsgl.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.c
    U xenocara/lib/mesa/src/glx/windows/windowsgl.h
    C xenocara/lib/mesa/src/glx/windows/Makefile.in
    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/windows_drawable.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.h
    U xenocara/lib/mesa/src/glx/windows/windowsgl_internal.h
    U xenocara/lib/mesa/src/glx/windows/windowsdriproto.pc.in
    C xenocara/lib/mesa/src/gtest/Makefile.in
    U xenocara/lib/mesa/src/gtest/Makefile.am
    U xenocara/lib/mesa/src/gtest/src/gtest-printers.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-port.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-typed-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-test-part.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-death-test.cc
    U xenocara/lib/mesa/src/gtest/src/gtest.cc
    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/include/gtest/gtest-spi.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-typed-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-death-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_pred_impl.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_prod.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-test-part.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-message.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-string.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-port.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-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-param-util-generated.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-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/gtest-type-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h
    U xenocara/lib/mesa/src/util/mesa-sha1.h
    U xenocara/lib/mesa/src/util/Makefile.sources
    U xenocara/lib/mesa/src/util/half_float.h
    U xenocara/lib/mesa/src/util/register_allocate.h
    U xenocara/lib/mesa/src/util/u_atomic_test.c
    U xenocara/lib/mesa/src/util/format_rgb9e5.h
    U xenocara/lib/mesa/src/util/string_to_uint_map.h
    U xenocara/lib/mesa/src/util/ralloc.c
    U xenocara/lib/mesa/src/util/ralloc.h
    U xenocara/lib/mesa/src/util/u_vector.h
    U xenocara/lib/mesa/src/util/u_atomic.h
    U xenocara/lib/mesa/src/util/register_allocate.c
    U xenocara/lib/mesa/src/util/strtod.h
    U xenocara/lib/mesa/src/util/format_srgb.h
    U xenocara/lib/mesa/src/util/set.c
    C xenocara/lib/mesa/src/util/Makefile.in
    U xenocara/lib/mesa/src/util/format_srgb.py
    U xenocara/lib/mesa/src/util/vk_alloc.h
    U xenocara/lib/mesa/src/util/half_float.c
    U xenocara/lib/mesa/src/util/rgtc.c
    U xenocara/lib/mesa/src/util/bitset.h
    U xenocara/lib/mesa/src/util/mesa-sha1.c
    U xenocara/lib/mesa/src/util/u_vector.c
    U xenocara/lib/mesa/src/util/strndup.h
    U xenocara/lib/mesa/src/util/macros.h
    U xenocara/lib/mesa/src/util/SConscript
    U xenocara/lib/mesa/src/util/debug.h
    U xenocara/lib/mesa/src/util/Makefile.am
    U xenocara/lib/mesa/src/util/texcompress_rgtc_tmp.h
    U xenocara/lib/mesa/src/util/hash_table.c
    U xenocara/lib/mesa/src/util/set.h
    U xenocara/lib/mesa/src/util/simple_list.h
    U xenocara/lib/mesa/src/util/list.h
    U xenocara/lib/mesa/src/util/strndup.c
    U xenocara/lib/mesa/src/util/roundeven_test.c
    U xenocara/lib/mesa/src/util/bitscan.h
    U xenocara/lib/mesa/src/util/debug.c
    U xenocara/lib/mesa/src/util/format_r11g11b10f.h
    U xenocara/lib/mesa/src/util/slab.h
    U xenocara/lib/mesa/src/util/format_srgb.c
    U xenocara/lib/mesa/src/util/rgtc.h
    U xenocara/lib/mesa/src/util/rounding.h
    U xenocara/lib/mesa/src/util/string_to_uint_map.cpp
    U xenocara/lib/mesa/src/util/strtod.c
    U xenocara/lib/mesa/src/util/bitscan.c
    U xenocara/lib/mesa/src/util/hash_table.h
    U xenocara/lib/mesa/src/util/u_endian.h
    U xenocara/lib/mesa/src/util/slab.c
    U xenocara/lib/mesa/src/util/tests/hash_table/null_destroy.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
    C xenocara/lib/mesa/src/util/tests/hash_table/Makefile.in
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_null.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/Makefile.am
    U xenocara/lib/mesa/src/util/tests/hash_table/random_entry.c
    U xenocara/lib/mesa/src/util/tests/hash_table/replacement.c
    U xenocara/lib/mesa/src/util/tests/hash_table/clear.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_many.c
    U xenocara/lib/mesa/src/intel/Makefile.sources
    U xenocara/lib/mesa/src/intel/Makefile.genxml.am
    U xenocara/lib/mesa/src/intel/Makefile.isl.am
    U xenocara/lib/mesa/src/intel/Makefile.common.am
    C xenocara/lib/mesa/src/intel/Makefile.in
    U xenocara/lib/mesa/src/intel/Makefile.am
    U xenocara/lib/mesa/src/intel/Makefile.blorp.am
    U xenocara/lib/mesa/src/intel/tools/decoder.c
    U xenocara/lib/mesa/src/intel/tools/aubinator.c
    C xenocara/lib/mesa/src/intel/tools/Makefile.in
    U xenocara/lib/mesa/src/intel/tools/gen_disasm.h
    U xenocara/lib/mesa/src/intel/tools/decoder.h
    U xenocara/lib/mesa/src/intel/tools/Makefile.am
    U xenocara/lib/mesa/src/intel/tools/disasm.c
    U xenocara/lib/mesa/src/intel/genxml/gen45.xml
    U xenocara/lib/mesa/src/intel/genxml/gen_pack_header.py
    U xenocara/lib/mesa/src/intel/genxml/gen75_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen7_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen75.xml
    U xenocara/lib/mesa/src/intel/genxml/gen4.xml
    U xenocara/lib/mesa/src/intel/genxml/gen5.xml
    U xenocara/lib/mesa/src/intel/genxml/README
    U xenocara/lib/mesa/src/intel/genxml/gen9_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen6_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8.xml
    U xenocara/lib/mesa/src/intel/genxml/gen45_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen5_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen4_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen6.xml
    U xenocara/lib/mesa/src/intel/genxml/gen6_xml.h
    U xenocara/lib/mesa/src/intel/genxml/genX_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen9.xml
    U xenocara/lib/mesa/src/intel/genxml/gen_macros.h
    U xenocara/lib/mesa/src/intel/genxml/gen7.xml
    U xenocara/lib/mesa/src/intel/genxml/gen7_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen75_xml.h
    U xenocara/lib/mesa/src/intel/genxml/gen9_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8_xml.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_blit.c
    U xenocara/lib/mesa/src/intel/blorp/blorp.c
    U xenocara/lib/mesa/src/intel/blorp/blorp_clear.c
    U xenocara/lib/mesa/src/intel/blorp/blorp.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_priv.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_genX_exec.h
    U xenocara/lib/mesa/src/intel/common/gen_sample_positions.h
    U xenocara/lib/mesa/src/intel/common/gen_device_info.h
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.c
    U xenocara/lib/mesa/src/intel/common/gen_device_info.c
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.c
    U xenocara/lib/mesa/src/intel/isl/isl.h
    U xenocara/lib/mesa/src/intel/isl/isl_storage_image.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.h
    U xenocara/lib/mesa/src/intel/isl/gen_format_layout.py
    U xenocara/lib/mesa/src/intel/isl/README
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.h
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.c
    U xenocara/lib/mesa/src/intel/isl/isl_surface_state.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.h
    U xenocara/lib/mesa/src/intel/isl/isl_format.c
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.csv
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.h
    U xenocara/lib/mesa/src/intel/isl/isl.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.h
    U xenocara/lib/mesa/src/intel/isl/isl_priv.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.c
    U xenocara/lib/mesa/src/intel/isl/tests/isl_surf_get_image_offset_test.c
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/intel/vulkan/anv_query.c
    U xenocara/lib/mesa/src/intel/vulkan/TODO
    U xenocara/lib/mesa/src/intel/vulkan/gen7_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_state.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_genX.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_allocator.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/gen8_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_dynamic_offsets.c
    U xenocara/lib/mesa/src/intel/vulkan/intel_icd.json.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_push_constants.c
    U xenocara/lib/mesa/src/intel/vulkan/vk_format_info.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_blorp.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_intel.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_image.c
    C xenocara/lib/mesa/src/intel/vulkan/Makefile.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_batch_chain.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pass.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_pipeline_util.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_private.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.h
    U xenocara/lib/mesa/src/intel/vulkan/Makefile.am
    U xenocara/lib/mesa/src/intel/vulkan/anv_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_dump.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir.h
    U xenocara/lib/mesa/src/intel/vulkan/genX_blorp_exec.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_descriptor_set.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_timestamp.h
    U xenocara/lib/mesa/src/intel/vulkan/gen8_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_formats.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_pipeline_layout.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_device.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem_stubs.c
    U xenocara/lib/mesa/src/intel/vulkan/gen7_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints_gen.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline_cache.c
    U xenocara/lib/mesa/src/intel/vulkan/dev_icd.json.in
    U xenocara/lib/mesa/src/intel/vulkan/anv_util.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/tests/state_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/block_pool_no_free.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_test_helper.h
    U xenocara/lib/mesa/src/amd/Makefile.sources
    U xenocara/lib/mesa/src/amd/Makefile.addrlib.am
    C xenocara/lib/mesa/src/amd/Makefile.in
    U xenocara/lib/mesa/src/amd/Makefile.am
    U xenocara/lib/mesa/src/amd/addrlib/addrinterface.h
    U xenocara/lib/mesa/src/amd/addrlib/addrtypes.h
    U xenocara/lib/mesa/src/amd/addrlib/addrinterface.cpp
    U xenocara/lib/mesa/src/amd/addrlib/inc/lnx_common_defs.h
    U xenocara/lib/mesa/src/amd/addrlib/inc/chip/r800/si_gb_reg.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrelemlib.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrobject.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrobject.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/core/addrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/core/addrcommon.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/ciaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/siaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/r800/egbaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/r800/chip/si_ci_vi_merged_enum.h
    U xenocara/lib/mesa/src/amd/common/Makefile.sources
    U xenocara/lib/mesa/src/amd/common/ac_binary.h
    U xenocara/lib/mesa/src/amd/common/r600d_common.h
    U xenocara/lib/mesa/src/amd/common/ac_llvm_helper.cpp
    C xenocara/lib/mesa/src/amd/common/Makefile.in
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.h
    U xenocara/lib/mesa/src/amd/common/sid.h
    U xenocara/lib/mesa/src/amd/common/amd_kernel_code_t.h
    U xenocara/lib/mesa/src/amd/common/Makefile.am
    U xenocara/lib/mesa/src/amd/common/amdgpu_id.h
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.c
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.h
    U xenocara/lib/mesa/src/amd/common/amd_family.h
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.c
    U xenocara/lib/mesa/src/amd/common/ac_binary.c
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.h
    U 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_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints_gen.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_timestamp.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit2d.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_clear.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pass.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fast_clear.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_cs.c
    C xenocara/lib/mesa/src/amd/vulkan/Makefile.in
    U xenocara/lib/mesa/src/amd/vulkan/vk_format.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_parse.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_bufimage.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_device.c
    U xenocara/lib/mesa/src/amd/vulkan/radeon_icd.json.in
    U xenocara/lib/mesa/src/amd/vulkan/radv_private.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_query.c
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.am
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_cache.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_image.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_wayland.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_formats.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_layout.csv
    U xenocara/lib/mesa/src/amd/vulkan/radv_radeon_winsys.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/dev_icd.json.in
    U xenocara/lib/mesa/src/amd/vulkan/si_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_x11.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.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_bo.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.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_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys_public.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_cs.c
    U xenocara/lib/mesa/src/mesa/Makefile.sources
    U xenocara/lib/mesa/src/mesa/gl.pc.in
    C xenocara/lib/mesa/src/mesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/SConscript
    U xenocara/lib/mesa/src/mesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.def
    C xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/dri.pc.in
    C xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.am
    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/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_image.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_line.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_intrinsics.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_allocator.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cc.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_blend_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_d2x.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tiled_memcpy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sync.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_monitor.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_packed_float.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_wm_depth_stencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_sel_peephole.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_tcs_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_disasm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_constant_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_uniforms.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_disable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_conditional_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cubemap_normalize.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reset.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vec4_register_coalesce.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_misc_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/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_vs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_lower_pack.cpp
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_depthstencil.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_point.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_dump.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compute.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_curbe.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_batch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_attribute_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_hs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_cc.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_eu_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_eu_compact.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_unfilled.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_defines.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_misc_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_gs_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_ps_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vue_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_combine_constants.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_cache.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_wm_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_formatquery.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_structs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_cs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_vec4.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_analyze_boolean_resolves.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_iz.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_dead_control_flow.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_blorp_exec.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ir_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_link.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tes.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_l3_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_predicated_break.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_vs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_lower_texture_gradients.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_asm_annotation.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_validate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_trig_workarounds.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_inst.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_ds_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_viewport_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cfg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compiler.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_opt_peephole_ffma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_te_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_scissor_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/test_vf_float_conversions.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_gs_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_interpolation_map.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_gs_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_fs_surface_builder.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_shader.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_resolve_map.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_eu_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_texstate.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_fragshader.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_fragprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texblend.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_vtbl.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_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_syncobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.sources
    C xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast_priv.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.sources
    C xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlconfig.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.am
    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/xmlconfig.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/drirc
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv.po
    C xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/gen_xmlpool.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/t_options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl.po
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/options.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/de/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/ca/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/sv/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/es/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/fr/LC_MESSAGES/options.mo
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/xmlpool/nl/LC_MESSAGES/options.mo
    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_surface.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_render.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.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/nouveau_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_generate_mipmap.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa_x.h
    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/glxheader.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.h
    C xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/fakeglx.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_line.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.am
    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/glxapi.c
    U xenocara/lib/mesa/src/mesa/sparc/sparc_matrix.h
    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.c
    U xenocara/lib/mesa/src/mesa/sparc/xform.S
    U xenocara/lib/mesa/src/mesa/sparc/norm.S
    U xenocara/lib/mesa/src/mesa/math/m_matrix.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_debug.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_util.h
    U xenocara/lib/mesa/src/mesa/math/m_dotprod_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_translate.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.c
    U xenocara/lib/mesa/src/mesa/math/m_clip_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.h
    U xenocara/lib/mesa/src/mesa/math/m_vector.h
    U xenocara/lib/mesa/src/mesa/math/m_matrix.c
    U xenocara/lib/mesa/src/mesa/math/m_vector.c
    U xenocara/lib/mesa/src/mesa/math/m_norm_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_norm.c
    U xenocara/lib/mesa/src/mesa/math/m_trans_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_clip.c
    U xenocara/lib/mesa/src/mesa/math/m_xform_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_eval.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_translate.c
    U xenocara/lib/mesa/src/mesa/math/m_copy_tmp.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse.h
    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/x86_xform.c
    U xenocara/lib/mesa/src/mesa/x86/mmx_blendtmp.h
    U xenocara/lib/mesa/src/mesa/x86/x86_cliptest.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.c
    U xenocara/lib/mesa/src/mesa/x86/sse_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/assyntax.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_features.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86.c
    U xenocara/lib/mesa/src/mesa/x86/xform_args.h
    U xenocara/lib/mesa/src/mesa/x86/sse.c
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.h
    U xenocara/lib/mesa/src/mesa/x86/clip_args.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/norm_args.h
    U xenocara/lib/mesa/src/mesa/x86/mmx_blend.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/gen_matypes.c
    U xenocara/lib/mesa/src/mesa/x86/mmx.h
    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/swrast/s_context.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aalinetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.c
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.h
    U xenocara/lib/mesa/src/mesa/swrast/s_linetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/NOTES
    U xenocara/lib/mesa/src/mesa/swrast/s_blit.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.h
    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_aaline.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.h
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.c
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch_tmp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.c
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.h
    U xenocara/lib/mesa/src/mesa/swrast/s_clear.c
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.c
    U xenocara/lib/mesa/src/mesa/swrast/swrast.h
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.c
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.h
    U xenocara/lib/mesa/src/mesa/swrast/s_tritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.h
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.h
    U xenocara/lib/mesa/src/mesa/swrast/s_bitmap.c
    U xenocara/lib/mesa/src/mesa/swrast/s_copypix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texrender.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texture.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.h
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.h
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.h
    U xenocara/lib/mesa/src/mesa/swrast/s_drawpix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.c
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.h
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.h
    U xenocara/lib/mesa/src/mesa/swrast/s_chan.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatritemp.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_dmatmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_tritmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_unfilled.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_inplace.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib_tmp.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split_copy.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_rebase.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_eval.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_split.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_array.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_minmax_index.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_loopback.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_sampler.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_array.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cache.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gl_api.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels_shader.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_sampler_view.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_builtin.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.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_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_atomicbuf.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_atom_tess.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_depth.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_clip.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_image.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_storagebuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_rasterizer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_framebuffer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_list.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_stipple.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_blend.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.c
    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_syncobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.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/swrast_setup/ss_context.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/swrast_setup.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/NOTES
    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/ss_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_cliptmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_rendertmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_program.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_generic.c
    U xenocara/lib/mesa/src/mesa/tnl/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_draw.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.h
    U xenocara/lib/mesa/src/mesa/tnl/tnl.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texgen.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_points.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_render.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_normals.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texmat.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_light.c
    U xenocara/lib/mesa/src/mesa/tnl/t_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_lighttmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_context.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_sse.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_fog.c
    U xenocara/lib/mesa/src/mesa/main/matrix.c
    U xenocara/lib/mesa/src/mesa/main/shader_query.cpp
    U xenocara/lib/mesa/src/mesa/main/arrayobj.c
    U xenocara/lib/mesa/src/mesa/main/texstore.h
    U xenocara/lib/mesa/src/mesa/main/formats.c
    U xenocara/lib/mesa/src/mesa/main/fbobject.c
    U xenocara/lib/mesa/src/mesa/main/teximage.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.c
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.c
    U xenocara/lib/mesa/src/mesa/main/queryobj.c
    U xenocara/lib/mesa/src/mesa/main/copyimage.c
    U xenocara/lib/mesa/src/mesa/main/texobj.c
    U xenocara/lib/mesa/src/mesa/main/remap.c
    U xenocara/lib/mesa/src/mesa/main/lines.c
    U xenocara/lib/mesa/src/mesa/main/format_pack.py
    U xenocara/lib/mesa/src/mesa/main/framebuffer.h
    U xenocara/lib/mesa/src/mesa/main/api_exec.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.h
    U xenocara/lib/mesa/src/mesa/main/pbo.h
    U xenocara/lib/mesa/src/mesa/main/dispatch.h
    U xenocara/lib/mesa/src/mesa/main/readpix.h
    U xenocara/lib/mesa/src/mesa/main/formatquery.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.h
    U xenocara/lib/mesa/src/mesa/main/texparam.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.c
    U xenocara/lib/mesa/src/mesa/main/extensions.h
    U xenocara/lib/mesa/src/mesa/main/fbobject.h
    U xenocara/lib/mesa/src/mesa/main/format_info.py
    U xenocara/lib/mesa/src/mesa/main/ff_fragment_shader.cpp
    U xenocara/lib/mesa/src/mesa/main/dlist.c
    U xenocara/lib/mesa/src/mesa/main/texgen.c
    U xenocara/lib/mesa/src/mesa/main/execmem.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.h
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.c
    U xenocara/lib/mesa/src/mesa/main/blend.c
    U xenocara/lib/mesa/src/mesa/main/pixel.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.c
    U xenocara/lib/mesa/src/mesa/main/clip.h
    U xenocara/lib/mesa/src/mesa/main/get_hash_params.py
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.c
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.h
    U xenocara/lib/mesa/src/mesa/main/colortab.c
    U xenocara/lib/mesa/src/mesa/main/texenv.c
    U xenocara/lib/mesa/src/mesa/main/bufferobj.h
    U xenocara/lib/mesa/src/mesa/main/blit.c
    U xenocara/lib/mesa/src/mesa/main/shared.c
    U xenocara/lib/mesa/src/mesa/main/atifragshader.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.c
    U xenocara/lib/mesa/src/mesa/main/extensions_table.h
    U xenocara/lib/mesa/src/mesa/main/light.h
    U xenocara/lib/mesa/src/mesa/main/getstring.c
    U xenocara/lib/mesa/src/mesa/main/formats.csv
    U xenocara/lib/mesa/src/mesa/main/mm.c
    U xenocara/lib/mesa/src/mesa/main/points.c
    U xenocara/lib/mesa/src/mesa/main/objectlabel.c
    U xenocara/lib/mesa/src/mesa/main/varray.c
    U xenocara/lib/mesa/src/mesa/main/pack.c
    U xenocara/lib/mesa/src/mesa/main/eval.h
    U xenocara/lib/mesa/src/mesa/main/blend.h
    U xenocara/lib/mesa/src/mesa/main/polygon.c
    U xenocara/lib/mesa/src/mesa/main/fog.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.h
    U xenocara/lib/mesa/src/mesa/main/bbox.h
    U xenocara/lib/mesa/src/mesa/main/bbox.c
    U xenocara/lib/mesa/src/mesa/main/context.c
    U xenocara/lib/mesa/src/mesa/main/errors.h
    U xenocara/lib/mesa/src/mesa/main/teximage.c
    U xenocara/lib/mesa/src/mesa/main/buffers.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/main/formatquery.c
    U xenocara/lib/mesa/src/mesa/main/extensions.c
    U xenocara/lib/mesa/src/mesa/main/state.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.c
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.h
    U xenocara/lib/mesa/src/mesa/main/glheader.h
    U xenocara/lib/mesa/src/mesa/main/texparam.c
    U xenocara/lib/mesa/src/mesa/main/points.h
    U xenocara/lib/mesa/src/mesa/main/mm.h
    U xenocara/lib/mesa/src/mesa/main/texstorage.c
    U xenocara/lib/mesa/src/mesa/main/clip.c
    U xenocara/lib/mesa/src/mesa/main/dlist.h
    U xenocara/lib/mesa/src/mesa/main/format_info.h
    U xenocara/lib/mesa/src/mesa/main/bufferobj.c
    U xenocara/lib/mesa/src/mesa/main/arrayobj.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.c
    U xenocara/lib/mesa/src/mesa/main/light.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.c
    U xenocara/lib/mesa/src/mesa/main/get_hash.h
    U xenocara/lib/mesa/src/mesa/main/state.h
    U xenocara/lib/mesa/src/mesa/main/convolve.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.c
    U xenocara/lib/mesa/src/mesa/main/arbprogram.h
    U xenocara/lib/mesa/src/mesa/main/texcompress.c
    U xenocara/lib/mesa/src/mesa/main/multisample.c
    U xenocara/lib/mesa/src/mesa/main/debug_output.c
    U xenocara/lib/mesa/src/mesa/main/texformat.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.h
    U xenocara/lib/mesa/src/mesa/main/glformats.c
    U xenocara/lib/mesa/src/mesa/main/multisample.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.c
    U xenocara/lib/mesa/src/mesa/main/core.h
    U xenocara/lib/mesa/src/mesa/main/accum.h
    U xenocara/lib/mesa/src/mesa/main/pack.h
    U xenocara/lib/mesa/src/mesa/main/atifragshader.h
    U xenocara/lib/mesa/src/mesa/main/stencil.h
    U xenocara/lib/mesa/src/mesa/main/shaderapi.c
    U xenocara/lib/mesa/src/mesa/main/remap.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.c
    U xenocara/lib/mesa/src/mesa/main/imports.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.py
    U xenocara/lib/mesa/src/mesa/main/get_hash_generator.py
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.c
    U xenocara/lib/mesa/src/mesa/main/texgen.h
    U xenocara/lib/mesa/src/mesa/main/hint.h
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.h
    U xenocara/lib/mesa/src/mesa/main/hash.h
    U xenocara/lib/mesa/src/mesa/main/viewport.h
    U xenocara/lib/mesa/src/mesa/main/dlopen.h
    U xenocara/lib/mesa/src/mesa/main/textureview.h
    U xenocara/lib/mesa/src/mesa/main/blit.h
    U xenocara/lib/mesa/src/mesa/main/errors.c
    U xenocara/lib/mesa/src/mesa/main/version.h
    U xenocara/lib/mesa/src/mesa/main/hash.c
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.c
    U xenocara/lib/mesa/src/mesa/main/texstore.c
    U xenocara/lib/mesa/src/mesa/main/glformats.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.h
    U xenocara/lib/mesa/src/mesa/main/mtypes.h
    U xenocara/lib/mesa/src/mesa/main/objectlabel.h
    U xenocara/lib/mesa/src/mesa/main/condrender.h
    U xenocara/lib/mesa/src/mesa/main/scissor.c
    U xenocara/lib/mesa/src/mesa/main/api_exec.c
    U xenocara/lib/mesa/src/mesa/main/macros.h
    U xenocara/lib/mesa/src/mesa/main/syncobj.h
    U xenocara/lib/mesa/src/mesa/main/image.h
    U xenocara/lib/mesa/src/mesa/main/compute.c
    U xenocara/lib/mesa/src/mesa/main/enable.h
    U xenocara/lib/mesa/src/mesa/main/texgetimage.h
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.c
    U xenocara/lib/mesa/src/mesa/main/api_validate.c
    U xenocara/lib/mesa/src/mesa/main/syncobj.c
    U xenocara/lib/mesa/src/mesa/main/colortab.h
    U xenocara/lib/mesa/src/mesa/main/extensions_table.c
    U xenocara/lib/mesa/src/mesa/main/debug.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.c
    U xenocara/lib/mesa/src/mesa/main/dd.h
    U xenocara/lib/mesa/src/mesa/main/samplerobj.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.h
    U xenocara/lib/mesa/src/mesa/main/depth.c
    U xenocara/lib/mesa/src/mesa/main/texcompress.h
    U xenocara/lib/mesa/src/mesa/main/context.h
    U xenocara/lib/mesa/src/mesa/main/remap_helper.h
    U xenocara/lib/mesa/src/mesa/main/shared.h
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.c
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.h
    U xenocara/lib/mesa/src/mesa/main/convolve.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.h
    U xenocara/lib/mesa/src/mesa/main/compute.h
    U xenocara/lib/mesa/src/mesa/main/copyimage.h
    U xenocara/lib/mesa/src/mesa/main/formats.h
    U xenocara/lib/mesa/src/mesa/main/enable.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.c
    U xenocara/lib/mesa/src/mesa/main/textureview.c
    U xenocara/lib/mesa/src/mesa/main/shaderobj.h
    U xenocara/lib/mesa/src/mesa/main/feedback.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.c
    U xenocara/lib/mesa/src/mesa/main/vdpau.h
    U xenocara/lib/mesa/src/mesa/main/accum.c
    U xenocara/lib/mesa/src/mesa/main/format_parser.py
    U xenocara/lib/mesa/src/mesa/main/shaderobj.c
    U xenocara/lib/mesa/src/mesa/main/robustness.c
    U xenocara/lib/mesa/src/mesa/main/texgetimage.c
    U xenocara/lib/mesa/src/mesa/main/attrib.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.c
    U xenocara/lib/mesa/src/mesa/main/clear.h
    U xenocara/lib/mesa/src/mesa/main/debug_output.h
    U xenocara/lib/mesa/src/mesa/main/scissor.h
    U xenocara/lib/mesa/src/mesa/main/pixel.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.h
    U xenocara/lib/mesa/src/mesa/main/attrib.c
    U xenocara/lib/mesa/src/mesa/main/texenvprogram.h
    U xenocara/lib/mesa/src/mesa/main/stencil.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.h
    U xenocara/lib/mesa/src/mesa/main/varray.h
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.c
    U xenocara/lib/mesa/src/mesa/main/histogram.c
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.h
    U xenocara/lib/mesa/src/mesa/main/drawtex.c
    U xenocara/lib/mesa/src/mesa/main/shaderapi.h
    U xenocara/lib/mesa/src/mesa/main/condrender.c
    U xenocara/lib/mesa/src/mesa/main/histogram.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.c
    U xenocara/lib/mesa/src/mesa/main/pbo.c
    U xenocara/lib/mesa/src/mesa/main/texenv.h
    U xenocara/lib/mesa/src/mesa/main/imports.h
    U xenocara/lib/mesa/src/mesa/main/feedback.h
    U xenocara/lib/mesa/src/mesa/main/depth.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.h
    U xenocara/lib/mesa/src/mesa/main/queryobj.h
    U xenocara/lib/mesa/src/mesa/main/texobj.h
    U xenocara/lib/mesa/src/mesa/main/readpix.c
    U xenocara/lib/mesa/src/mesa/main/debug.c
    U xenocara/lib/mesa/src/mesa/main/texstorage.h
    U xenocara/lib/mesa/src/mesa/main/colormac.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.c
    U xenocara/lib/mesa/src/mesa/main/clear.c
    U xenocara/lib/mesa/src/mesa/main/uniform_query.cpp
    U xenocara/lib/mesa/src/mesa/main/shaderimage.c
    U xenocara/lib/mesa/src/mesa/main/framebuffer.c
    U xenocara/lib/mesa/src/mesa/main/texstate.h
    U xenocara/lib/mesa/src/mesa/main/image.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.h
    U xenocara/lib/mesa/src/mesa/main/compiler.h
    U xenocara/lib/mesa/src/mesa/main/texstate.c
    U xenocara/lib/mesa/src/mesa/main/polygon.h
    U xenocara/lib/mesa/src/mesa/main/arbprogram.c
    U xenocara/lib/mesa/src/mesa/main/get.h
    U xenocara/lib/mesa/src/mesa/main/fog.c
    U xenocara/lib/mesa/src/mesa/main/texformat.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.h
    U xenocara/lib/mesa/src/mesa/main/shaderimage.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.c
    U xenocara/lib/mesa/src/mesa/main/lines.h
    U xenocara/lib/mesa/src/mesa/main/matrix.h
    U xenocara/lib/mesa/src/mesa/main/uniforms.h
    U xenocara/lib/mesa/src/mesa/main/enums.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.h
    U xenocara/lib/mesa/src/mesa/main/format_unpack.h
    U xenocara/lib/mesa/src/mesa/main/barrier.c
    U xenocara/lib/mesa/src/mesa/main/drawtex.h
    U xenocara/lib/mesa/src/mesa/main/barrier.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.h
    U xenocara/lib/mesa/src/mesa/main/version.c
    U xenocara/lib/mesa/src/mesa/main/hint.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.c
    U xenocara/lib/mesa/src/mesa/main/buffers.c
    U xenocara/lib/mesa/src/mesa/main/viewport.c
    U xenocara/lib/mesa/src/mesa/main/config.h
    U xenocara/lib/mesa/src/mesa/main/eval.c
    U xenocara/lib/mesa/src/mesa/main/enums.h
    U xenocara/lib/mesa/src/mesa/main/get.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.c
    U xenocara/lib/mesa/src/mesa/main/tests/stubs.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/enum_strings.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_formats.cpp
    C xenocara/lib/mesa/src/mesa/main/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/main/tests/program_state_string.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_extensions.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/dispatch_sanity.cpp
    U xenocara/lib/mesa/src/mesa/program/program_parse_extra.c
    U xenocara/lib/mesa/src/mesa/program/program_parser.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.h
    U xenocara/lib/mesa/src/mesa/program/prog_print.c
    U xenocara/lib/mesa/src/mesa/program/program.h
    U xenocara/lib/mesa/src/mesa/program/program_lexer.l
    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.h
    U xenocara/lib/mesa/src/mesa/program/symbol_table.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.h
    U xenocara/lib/mesa/src/mesa/program/program_parse.y
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.cpp
    U xenocara/lib/mesa/src/mesa/program/program.c
    U xenocara/lib/mesa/src/mesa/program/prog_opt_constant_fold.c
    U xenocara/lib/mesa/src/mesa/program/prog_print.h
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.c
    U xenocara/lib/mesa/src/mesa/program/lex.yy.c
    U xenocara/lib/mesa/src/mesa/program/prog_noise.h
    U xenocara/lib/mesa/src/mesa/program/programopt.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.h
    U xenocara/lib/mesa/src/mesa/program/dummy_errors.c
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.h
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.h
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.c
    U xenocara/lib/mesa/src/mesa/program/programopt.h
    U xenocara/lib/mesa/src/mesa/program/prog_cache.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.h
    U xenocara/lib/mesa/src/mesa/program/prog_noise.c
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.c
    U xenocara/lib/mesa/src/mesa/program/symbol_table.c
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.h
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.c
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.sources
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.c
    C xenocara/lib/mesa/src/vulkan/wsi/Makefile.in
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.h
    U xenocara/lib/mesa/src/vulkan/wsi/Makefile.am
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_queue.h
    U xenocara/lib/mesa/bin/compile
    U xenocara/lib/mesa/bin/depcomp
    U xenocara/lib/mesa/bin/test-driver
    U xenocara/lib/mesa/bin/missing
    U xenocara/lib/mesa/bin/config.guess
    U xenocara/lib/mesa/bin/ar-lib
    U xenocara/lib/mesa/bin/config.sub
    U xenocara/lib/mesa/bin/ltmain.sh
    U xenocara/lib/mesa/bin/install-sh
    U xenocara/lib/mesa/include/c99_math.h
    U xenocara/lib/mesa/include/c99_alloca.h
    U xenocara/lib/mesa/include/no_extern_c.h
    U xenocara/lib/mesa/include/c99_compat.h
    U xenocara/lib/mesa/include/GL/wglext.h
    U xenocara/lib/mesa/include/GL/osmesa.h
    U xenocara/lib/mesa/include/GL/glx_mangle.h
    U xenocara/lib/mesa/include/GL/mesa_glinterop.h
    U xenocara/lib/mesa/include/GL/glx.h
    U xenocara/lib/mesa/include/GL/gl_mangle.h
    U xenocara/lib/mesa/include/GL/glext.h
    U xenocara/lib/mesa/include/GL/glcorearb.h
    U xenocara/lib/mesa/include/GL/gl.h
    U xenocara/lib/mesa/include/GL/glxext.h
    U xenocara/lib/mesa/include/GL/internal/dri_interface.h
    U xenocara/lib/mesa/include/d3dadapter/d3dadapter9.h
    U xenocara/lib/mesa/include/d3dadapter/present.h
    U xenocara/lib/mesa/include/d3dadapter/drm.h
    U xenocara/lib/mesa/include/HaikuGL/README
    U xenocara/lib/mesa/include/HaikuGL/OpenGLKit.h
    U xenocara/lib/mesa/include/HaikuGL/GLView.h
    U xenocara/lib/mesa/include/HaikuGL/GLRenderer.h
    U xenocara/lib/mesa/include/KHR/khrplatform.h
    U xenocara/lib/mesa/include/D3D9/.editorconfig
    U xenocara/lib/mesa/include/D3D9/d3d9types.h
    U xenocara/lib/mesa/include/D3D9/d3d9caps.h
    U xenocara/lib/mesa/include/D3D9/d3d9.h
    U xenocara/lib/mesa/include/GLES2/gl2platform.h
    U xenocara/lib/mesa/include/GLES2/gl2ext.h
    U xenocara/lib/mesa/include/GLES2/gl2.h
    U xenocara/lib/mesa/include/GLES/glplatform.h
    U xenocara/lib/mesa/include/GLES/glext.h
    U xenocara/lib/mesa/include/GLES/gl.h
    U xenocara/lib/mesa/include/GLES/egl.h
    U xenocara/lib/mesa/include/EGL/eglmesaext.h
    U xenocara/lib/mesa/include/EGL/eglextchromium.h
    U xenocara/lib/mesa/include/EGL/eglext.h
    U xenocara/lib/mesa/include/EGL/eglplatform.h
    U xenocara/lib/mesa/include/EGL/egl.h
    U xenocara/lib/mesa/include/CL/cl_gl_ext.h
    U xenocara/lib/mesa/include/CL/cl_d3d10.h
    U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing.h
    U xenocara/lib/mesa/include/CL/cl_gl.h
    U xenocara/lib/mesa/include/CL/cl_d3d11.h
    U xenocara/lib/mesa/include/CL/opencl.h
    U xenocara/lib/mesa/include/CL/cl.h
    U xenocara/lib/mesa/include/CL/cl.hpp
    U xenocara/lib/mesa/include/CL/cl_ext.h
    U xenocara/lib/mesa/include/CL/cl_platform.h
    U xenocara/lib/mesa/include/CL/cl_egl.h
    U xenocara/lib/mesa/include/GLES3/gl31.h
    U xenocara/lib/mesa/include/GLES3/gl3.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/c11/.editorconfig
    U xenocara/lib/mesa/include/c11/threads_posix.h
    U xenocara/lib/mesa/include/c11/threads_win32.h
    U xenocara/lib/mesa/include/c11/threads.h
    U xenocara/lib/mesa/include/vulkan/vk_platform.h
    U xenocara/lib/mesa/include/vulkan/vk_icd.h
    U xenocara/lib/mesa/include/vulkan/vulkan.h
    U xenocara/lib/mesa/include/vulkan/vulkan_intel.h
    U xenocara/lib/mesa/include/pci_ids/virtio_gpu_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeon_pci_ids.h
    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/radeonsi_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i965_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r600_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r300_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/vmwgfx_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r200_pci_ids.h
    U xenocara/lib/mesa/doxygen/gbm.doxy
    U xenocara/lib/mesa/doxygen/common.doxy
    U xenocara/lib/mesa/doxygen/gallium.doc
    U xenocara/lib/mesa/doxygen/README
    U xenocara/lib/mesa/doxygen/tnl_dd.doxy
    U xenocara/lib/mesa/doxygen/swrast.doxy
    U xenocara/lib/mesa/doxygen/i965.doxy
    U xenocara/lib/mesa/doxygen/radeon_subset.doxy
    U xenocara/lib/mesa/doxygen/header_subset.html
    U xenocara/lib/mesa/doxygen/doxy.bat
    U xenocara/lib/mesa/doxygen/vbo.doxy
    U xenocara/lib/mesa/doxygen/nir.doxy
    U xenocara/lib/mesa/doxygen/tnl.doxy
    U xenocara/lib/mesa/doxygen/math.doxy
    U xenocara/lib/mesa/doxygen/swrast_setup.doxy
    U xenocara/lib/mesa/doxygen/main.doxy
    U xenocara/lib/mesa/doxygen/Makefile
    U xenocara/lib/mesa/doxygen/glapi.doxy
    U xenocara/lib/mesa/doxygen/core_subset.doxy
    U xenocara/lib/mesa/doxygen/math_subset.doxy
    U xenocara/lib/mesa/doxygen/glsl.doxy
    U xenocara/lib/mesa/doxygen/header.html
    U xenocara/lib/mesa/doxygen/gallium.doxy
    
    99 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	2017/03/24 18:29:30

Modified files:
	lib/mesa       : Makefile.in configure configure.ac 
	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: glcorearb.h glext.h glxext.h wglext.h 
	lib/mesa/include/GLES: egl.h gl.h glext.h glplatform.h 
	lib/mesa/include/GLES2: gl2.h gl2ext.h gl2platform.h 
	lib/mesa/include/GLES3: gl3.h gl31.h gl3ext.h gl3platform.h 
	lib/mesa/include/KHR: khrplatform.h 
	lib/mesa/src   : Makefile.in 
	lib/mesa/src/amd: Makefile.in 
	lib/mesa/src/amd/common: Makefile.in 
	lib/mesa/src/amd/vulkan: Makefile.in 
	lib/mesa/src/compiler: Makefile.in 
	lib/mesa/src/egl: Makefile.in 
	lib/mesa/src/egl/drivers/dri2: egl_dri2.c 
	lib/mesa/src/egl/wayland/wayland-drm: Makefile.in 
	lib/mesa/src/egl/wayland/wayland-egl: Makefile.in 
	lib/mesa/src/gallium: Makefile.in 
	lib/mesa/src/gallium/auxiliary: Makefile.in 
	lib/mesa/src/gallium/auxiliary/pipe-loader: Makefile.in 
	lib/mesa/src/gallium/drivers/ddebug: Makefile.in 
	lib/mesa/src/gallium/drivers/freedreno: Makefile.in 
	lib/mesa/src/gallium/drivers/i915: Makefile.in 
	lib/mesa/src/gallium/drivers/ilo: Makefile.in 
	lib/mesa/src/gallium/drivers/llvmpipe: Makefile.in 
	lib/mesa/src/gallium/drivers/noop: Makefile.in 
	lib/mesa/src/gallium/drivers/nouveau: Makefile.in 
	lib/mesa/src/gallium/drivers/r300: Makefile.in 
	lib/mesa/src/gallium/drivers/r600: Makefile.in 
	lib/mesa/src/gallium/drivers/radeon: Makefile.in 
	lib/mesa/src/gallium/drivers/radeonsi: Makefile.in 
	lib/mesa/src/gallium/drivers/rbug: Makefile.in 
	lib/mesa/src/gallium/drivers/softpipe: Makefile.in 
	lib/mesa/src/gallium/drivers/svga: Makefile.in 
	lib/mesa/src/gallium/drivers/swr: Makefile.in 
	lib/mesa/src/gallium/drivers/trace: Makefile.in 
	lib/mesa/src/gallium/drivers/vc4: Makefile.in 
	lib/mesa/src/gallium/drivers/virgl: Makefile.in 
	lib/mesa/src/gallium/state_trackers/clover: Makefile.in 
	lib/mesa/src/gallium/state_trackers/dri: Makefile.in 
	lib/mesa/src/gallium/state_trackers/glx/xlib: Makefile.in 
	lib/mesa/src/gallium/state_trackers/nine: Makefile.in 
	lib/mesa/src/gallium/state_trackers/omx: Makefile.in 
	lib/mesa/src/gallium/state_trackers/osmesa: Makefile.in 
	lib/mesa/src/gallium/state_trackers/va: Makefile.in 
	lib/mesa/src/gallium/state_trackers/vdpau: Makefile.in 
	lib/mesa/src/gallium/state_trackers/xa: Makefile.in 
	lib/mesa/src/gallium/state_trackers/xvmc: Makefile.in 
	lib/mesa/src/gallium/targets/d3dadapter9: Makefile.in 
	lib/mesa/src/gallium/targets/dri: Makefile.in 
	lib/mesa/src/gallium/targets/libgl-xlib: Makefile.in 
	lib/mesa/src/gallium/targets/omx: Makefile.in 
	lib/mesa/src/gallium/targets/opencl: Makefile.in 
	lib/mesa/src/gallium/targets/osmesa: Makefile.in 
	lib/mesa/src/gallium/targets/pipe-loader: Makefile.in 
	lib/mesa/src/gallium/targets/va: Makefile.in 
	lib/mesa/src/gallium/targets/vdpau: Makefile.in 
	lib/mesa/src/gallium/targets/xa: Makefile.in 
	lib/mesa/src/gallium/targets/xvmc: Makefile.in 
	lib/mesa/src/gallium/tests/trivial: Makefile.in 
	lib/mesa/src/gallium/tests/unit: Makefile.in 
	lib/mesa/src/gallium/winsys/amdgpu/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/freedreno/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/i915/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/intel/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/nouveau/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/radeon/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/svga/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/dri: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/kms-dri: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/null: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/wrapper: Makefile.in 
	lib/mesa/src/gallium/winsys/sw/xlib: Makefile.in 
	lib/mesa/src/gallium/winsys/vc4/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/virgl/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/virgl/vtest: Makefile.in 
	lib/mesa/src/gbm: Makefile.in 
	lib/mesa/src/getopt: getopt.h getopt_long.c 
	lib/mesa/src/glx: Makefile.in 
	lib/mesa/src/glx/apple: Makefile.in 
	lib/mesa/src/glx/tests: Makefile.in 
	lib/mesa/src/glx/windows: Makefile.in 
	lib/mesa/src/gtest: Makefile.in 
	lib/mesa/src/intel: Makefile.in 
	lib/mesa/src/intel/tools: Makefile.in 
	lib/mesa/src/intel/vulkan: Makefile.in 
	lib/mesa/src/loader: Makefile.in 
	lib/mesa/src/mapi: Makefile.in 
	lib/mesa/src/mapi/glapi/gen: Makefile.in 
	lib/mesa/src/mesa: Makefile.in 
	lib/mesa/src/mesa/drivers/dri: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/common: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/common/xmlpool: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i915: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/i965: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/nouveau: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/r200: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/radeon: Makefile.in 
	lib/mesa/src/mesa/drivers/dri/swrast: Makefile.in 
	lib/mesa/src/mesa/drivers/osmesa: Makefile.in 
	lib/mesa/src/mesa/drivers/x11: Makefile.in 
	lib/mesa/src/mesa/main/tests: Makefile.in 
	lib/mesa/src/util: Makefile.in 
	lib/mesa/src/util/tests/hash_table: Makefile.in 
	lib/mesa/src/vulkan/wsi: Makefile.in 

Log message:
Merge Mesa 13.0.6


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2017/03/24 18:39:37

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/24 18:50:09

Modified files:
	.              : 61.html 

Log message:
update Mesa and Chromium versions


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/24 19:11:19

Modified files:
	.              : plat.html 

Log message:
mention arm64 under current porting efforts


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/24 21:02:40

Modified files:
	share/man/man4 : ahci.4 xhci.4 

Log message:
mention fdt attachments


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/24 21:21:51

Modified files:
	.              : arm64.html 

Log message:
mention Opteron A1100


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/24 21:22:49

Modified files:
	distrib/notes/arm64: hardware 

Log message:
mention Opteron A1100 systems


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/25 01:33:46

Modified files:
	sys/dev/pci    : pcireg.h 
	usr.sbin/pcidump: pcidump.c 

Log message:
More PCI extended capabilities handling in pcidump.

From  Simon Mages

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/25 01:46:24

Modified files:
	usr.sbin/vmd   : i8253.c i8259.c mc146818.c vm.c vmm.h 

Log message:
Introduce a new function to obtain properly sized input data, and convert
i8253/i8259/mc146818 emulation to use this.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/25 02:39:51

Modified files:
	graphics/nomacs: Makefile distinfo 
	graphics/nomacs/patches: patch-cmake_UnixBuildTarget_cmake 
	                         patch-cmake_Unix_cmake 
	graphics/nomacs/pkg: PLIST 

Log message:
Update to nomacs 3.6.0, from Rafael Sadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/25 05:12:31

Modified files:
	x11/gnome/at-spi2-core: Makefile distinfo 

Log message:
Update to at-spi2-core-2.22.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/25 05:45:47

Modified files:
	graphics/inkscape: Makefile distinfo 
	graphics/inkscape/pkg: PLIST 

Log message:
Update to inkscape 0.92.1, from Rafael Sadowski, tested by edd@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 06:46:34

Modified files:
	usr.bin/mandoc : apropos.1 man.1 

Log message:
For some options that are rarely needed in apropos(1) and man(1),
delete the verbose descriptions and point to man(1) and mandoc(1),
respectively, instead.  That shortens the pages and makes them
easier to read.
Tweaks and OK jmc@, based in part on ideas from tedu@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/25 07:36:56

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
More cleanup for tls1_PRF()/tls1_P_hash() - change the argument order of
tls1_PRF() so that it matches tls1_P_hash(), use more explicit argument
names and change lengths to size_t.

ok inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/25 07:37:40

Modified files:
	regress/lib/libssl/unit: tls_prf.c 

Log message:
Update regress to match changes to tls1_PRF().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/25 07:42:29

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
Check tls1_PRF() return value in tls1_generate_master_secret().


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/25 08:00:47

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: patch-tools_lld_ELF_DriverUtils_cpp 

Log message:
Updated diff for the "supported targets" change.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/25 08:15:11

Modified files:
	lib/libssl     : tls1.h 

Log message:
Update RFC reference for TLSEXT_TYPE_padding.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/25 08:18:49

Modified files:
	misc/portroach : Makefile 
Added files:
	misc/portroach/patches: patch-Portroach_SiteHandler_Launchpad_pm 

Log message:
Fix for Perl 5.24


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/25 09:25:20

Modified files:
	sys/arch/amd64/amd64: vmm_support.S 

Log message:
Use explicit operand with SVM instructions as clang doesn't recognize the
implicit form.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/25 09:47:37

Modified files:
	usr.sbin/vmd   : pci.c pci.h virtio.c virtio.h vm.c 

Log message:
Implement some missing functionality and clean up some code in vmd
pci emulation.

ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/25 09:53:56

Modified files:
	emulators/dosbox: Makefile 

Log message:
Add USE_WXNEEDED marker otherwise this blows in some circumstances.
Patch from Benjamin Baier, ok tsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/25 10:05:33

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
implement missing vioblk reset function and improve the partially
implemented vionet one


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/25 10:16:47

Modified files:
	textproc/ripgrep: Makefile distinfo 
	textproc/ripgrep/patches: patch-Cargo_toml 

Log message:
Update to ripgrep-0.5.0

From semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/25 10:24:44

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
The virtio spec says isr_status should be cleared to 0 on read, which
we were not doing. That confused the virtio subsystem in linux.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/25 10:28:25

Modified files:
	etc/examples   : vm.conf 
	usr.sbin/vmd   : config.c loadfile.h loadfile_elf.c vm.c 
	                 vm.conf.5 vmd.8 vmd.h 
	usr.sbin/vmctl : main.c vmctl.8 

Log message:
Boot using BIOS from /etc/firmware/vmm-bios by default.

Instead of using the internal "vmboot", VMs will now be booted using
the external BIOS firmware in /etc/firmware/vmm-bios (which is subject
to a LGPLv3 license).  Direct booting of OpenBSD kernels or
non-default BIOS images is still supported for now using the -b/boot
option that is replacing the -k/kernel option.

As requested by Theo, vmd(8) fails if neither the default BIOS is
found nor a kernel has been specified in the VM configuration.  The
"vmm" BIOS has to be installed using fw_update(1), which will be done
automatically in most cases where the OpenBSD can fetch it after
install/upgrade.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 10:30:10

Modified files:
	lib/libcrypto/man: ASN1_STRING_print_ex.3 

Log message:
document ASN1_tag2str(3); from OpenSSL commit 9e183d22


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/25 10:34:26

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
Process more than one avail slot in vioblk ring, if requested by the
guest VM. We probably need to do this same fix for vionet later.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/25 11:00:01

Modified files:
	net/samba      : Makefile distinfo 

Log message:
SECURITY update to samba-4.5.7

o CVE-2017-2619 (Symlink race allows access outside share definition)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 11:15:59

Modified files:
	lib/libcrypto/man: BIO_new.3 Makefile 
Added files:
	lib/libcrypto/man: BIO_printf.3 

Log message:
OpenSSL documented the public function BIO_printf(3) (and friends)
in commit 2ca2e917.  Document it here, too, but do not use their
text.  Be more concise and more precise at the same time.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/25 11:25:34

Modified files:
	usr.sbin/httpd : config.c httpd.c httpd.conf.5 httpd.h parse.y 
	                 server.c 

Log message:
Implement TLS ticket support in httpd. Off by default. Use
tls ticket lifetime default
to turn it on with a 2h ticket lifetime.
Rekeying happens after a quarter of that time.
OK reky@ and bob@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/25 11:33:02

Modified files:
	astro/stellarium: Makefile distinfo 
	astro/stellarium/pkg: PLIST 

Log message:
Update to stellarium-0.15.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/25 11:36:30

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_util_platforms_py 
	                                   patch-platform_gsutil_gslib_commands_config_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-148.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 11:54:04

Modified files:
	lib/libcrypto/man: EVP_DigestInit.3 

Log message:
minimal stub-quality documentation of EVP_MD_CTX_ctrl(3);
from Todd Short <tshort@akamai.com> via OpenSSL commit 52ad5b60


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/25 12:03:37

Modified files:
	.              : 52.html 57.html 59.html alpha.html amd64.html 
	                 goals.html httpd.conf i386.html index.html 
	                 lyrics.html plus32.html plus33.html plus34.html 
	                 plus35.html policy.html sparc.html sparc64.html 
	faq            : current.html faq1.html faq10.html faq5.html 
	                 upgrade48.html upgrade55.html 
	faq/ports      : specialtopics.html 
	libressl       : index.html patches.html 
	openbgpd       : index.html 
	opencvs        : index.html 
	openntpd       : index.html 
	opensmtpd      : index.html 
	openssh        : features.html history.html index.html 
	                 manual.html specs.html 

Log message:
switch cvsweb and a couple of other links to https. thanks nick and tj!


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 12:08:48

Modified files:
	lib/libcrypto/man: RSA_generate_key.3 

Log message:
complete description of RETURN VALUES;
from Alexander Koeppe via OpenSSL commit bb6c5e7f


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 12:14:17

Modified files:
	lib/libcrypto/man: RSA_private_encrypt.3 

Log message:
correct prototypes;
from Matt Caswell <matt@openssl.org>, OpenSSL commit b41f6b64


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 12:17:45

Modified files:
	lib/libcrypto/man: RSA_public_encrypt.3 

Log message:
fix two more prototypes;
from Matt Caswell <matt@openssl.org>, OpenSSL commit b41f6b64


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 12:35:33

Modified files:
	lib/libcrypto/man: X509_CRL_get0_by_serial.3 

Log message:
correct RETURN VALUES;
from Richard Levitte <levitte@openssl.org>, OpenSSL commit cdd6c8c5


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/25 12:58:59

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddDelete.pm Delete.pm PkgAdd.pm 

Log message:
tweak checksums on delete to not happen by default, with an interface
as discussed with sthen@

manpage bits to follow soonish


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/25 13:07:05

Modified files:
	faq            : faq1.html faq13.html faq14.html faq4.html 
	                 faq5.html faq6.html upgrade37.html 
	                 upgrade44.html upgrade47.html upgrade48.html 
	                 upgrade49.html upgrade50.html upgrade51.html 
	                 upgrade52.html upgrade55.html upgrade58.html 
	faq/ports      : guide.html ports.html 

Log message:
a few more links can switch to https.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 13:12:59

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_cmp_time.3 

Log message:
document the public function X509_cmp_time(3);
from Emilia Kasper <emilia@openssl.org>, OpenSSL commit 80770da3,
tweaked by me


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2017/03/25 13:53:33

Modified files:
	usr.sbin/pkg_add: pkg_add.1 pkg_delete.1 

Log message:
document tweaked checksum behavior, reorder environment, remove old cruft.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 16:21:21

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: X509_digest.3 

Log message:
document X509_Digest(3) and friends;
from Rich Salz <rsalz@openssl.org>, OpenSSL commit 3e5d9da5 etc.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/25 16:24:01

Modified files:
	sys/arch/i386/i386: mainbus.c vmm.c 
	sys/arch/amd64/amd64: mainbus.c vmm.c 

Log message:
Split vmm_probe() into a vmm_enabled() function, to better follow the
probe/attach approach used by mainbus.
ok mlarkin kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/03/25 16:26:44

Modified files:
	usr.sbin/pkg_add/OpenBSD: FwUpdate.pm 

Log message:
Recognise vmm in dmesg to install "vmm-firmware" (the SeaBIOS package).
OK espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/25 16:36:53

Modified files:
	usr.sbin/vmd   : i8253.c i8259.c mc146818.c pci.c virtio.c vm.c 
	                 vmm.h 

Log message:
Last bits needed to get seabios + alpine linux working. This is enough
to get started and let more people help finding and fixing bugs.

ok kettenis, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/25 17:13:45

Modified files:
	usr.bin/patch  : inp.c 

Log message:
parameter "lines_allocated" is a local pointer and should not be confused
with the global by the same name, so rename it "lines_allocatedp".


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/25 17:14:04

Modified files:
	usr.sbin/relayd: relayd.conf.5 

Log message:
X-Forwarded-By should be the server $SERVER_ADDR instead of the client
$REMOTE_ADDR.
Noticed and diff provided by Hiltjo Posthuma (hiltjo at codemadness dot org)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/25 18:06:10

Modified files:
	lib/libcrypto/man: Makefile UI_new.3 
Added files:
	lib/libcrypto/man: UI_UTIL_read_pw.3 UI_create_method.3 
	                   UI_get_string_type.3 

Log message:
merge new UI documentation from OpenSSL


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/25 18:10:12

Modified files:
	.              : errata.html 
	faq            : faq10.html 

Log message:
move (a shortened version of) the errata instructions from faq10 to the
errata page.

deraadt likes it


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/25 18:18:52

Modified files:
	usr.bin/ssh    : authfile.c 

Log message:
incorrect renditions of this quote bother me


CVSROOT:	/cvs
Module name:	src
Changes by:	sobrado@cvs.openbsd.org	2017/03/25 18:22:49

Modified files:
	sbin/fdisk     : fdisk.8 part.c 

Log message:
cleanup fdisk(8) partition names used by FAT file systems so they are more
consistent and easier to identify, as outlined here:

- FAT12: FAT12 (01h)
- FAT16: FAT16S (04h), FAT16B (06h), FAT16L (0Eh)
- FAT32: FAT32 (0Bh), FAT32L (0Ch)

nothing in our tree is looking to the strings being replaced for anything
but printing them out, only to the numerical ids taken from disklabel.h

ok krw@, jmc@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/03/25 18:27:03

Modified files:
	.              : hackathons.html 
Added files:
	images/hackathons: e2k17-s.gif 

Log message:
e2k17 has begun


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/25 18:46:00

Modified files:
	usr.sbin/vmd   : config.c 

Log message:
Use the pseudo-bootloader if the boot image path matches the root disk path.

This allows to use the non-BIOS on-disk bootloader for testing.  It
might go away after release when we feel more confident about BIOS.

OK mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/03/25 21:13:41

Modified files:
	graphics/pdf2djvu: Makefile distinfo 
Added files:
	graphics/pdf2djvu/patches: patch-sys-uuid_cc 

Log message:
Update to pdf2djvu 0.9.6rc20170321.

This is not a stable release but upstream included support for poppler
0.53 and moved the code to c++11. Updating now, so kili@ can work on
poppler 0.53.

Passes the tests on amd64 with poppler 0.52.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2017/03/25 21:21:58

Modified files:
	devel/pylint   : Makefile 

Log message:
Add py-mccabe to RUN_DEPENDS. From Andreas Kusalananda Kahari.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2017/03/26 02:49:22

Modified files:
	sys/netinet6   : nd6.c 

Log message:
Do not invalidate a ND cache at the begining of nd6_free().

We should not change the state of a cache entry at this point since
the default router selection logic looks at it.  Instead, invalidate
the cache just before deleting the corresponding route entry, if it
applies.

Fixes a regression reported by semarie@

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/26 03:21:33

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
Stop enumeration all allocation functions, just say "allocation functions"
ok jmc@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2017/03/26 03:55:52

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/26 04:55:08

Modified files:
	net/py-socks   : Makefile distinfo 
	net/py-socks/pkg: PLIST 

Log message:
Update to py-socks 1.6.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/26 05:17:22

Modified files:
	devel/py-xdis  : Makefile distinfo 
	devel/py-xdis/pkg: PLIST 

Log message:
Update to py-xdis 3.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/26 05:21:52

Modified files:
	devel/pylint   : Makefile distinfo 
	devel/pylint/patches: patch-pylint_test_unittest_lint_py 

Log message:
Update to pylint 1.6.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/26 06:11:05

Modified files:
	devel/appstream-glib: Makefile distinfo 

Log message:
Update to appstream-glib-0.6.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/26 06:14:00

Modified files:
	devel/py-hypothesis: Makefile distinfo 

Log message:
Update to py-hypothesis 3.7.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/26 06:22:15

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 

Log message:
Update to google-cloud-sdk-148.0.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/26 06:29:47

Modified files:
	devel/autoconf-archive: Makefile distinfo 
	devel/autoconf-archive/pkg: PLIST 
Removed files:
	devel/autoconf-archive/patches: 
	                                patch-m4_ax_compiler_flags_cflags_m4 
	                                patch-m4_ax_compiler_flags_cxxflags_m4 

Log message:
update to autoconf-archive-2017.03.21


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/26 06:31:27

Modified files:
	lib/libcrypto/man: UI_create_method.3 UI_get_string_type.3 
	                   X509_cmp_time.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/26 06:34:33

Modified files:
	textproc/py-mistune: Makefile distinfo 

Log message:
Update to py-mistune 0.7.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/26 06:40:00

Modified files:
	sysutils/monit : Makefile distinfo 

Log message:
update to monit-5.21.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/26 06:40:22

Added files:
	sysutils/monit/patches: patch-Makefile_in 

Log message:
missed in previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/26 06:45:27

Modified files:
	java/jna       : Makefile distinfo 
	java/jna/pkg   : PLIST 

Log message:
update to jna-4.4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2017/03/26 07:32:44

Modified files:
	www/igal2      : Makefile distinfo 

Log message:
Update www/igal2 to 2.2

OK aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpe@cvs.openbsd.org	2017/03/26 07:34:06

Modified files:
	mail/msmtp     : Makefile distinfo 
	mail/msmtp/patches: patch-scripts_msmtpqueue_msmtp-listqueue_sh 

Log message:
Update mail/msmtp to 1.6.6 and add a missing RCS Id in a pachfile.

OK aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/26 07:35:45

Modified files:
	usr.sbin/pkg_add: pkg_add.1 

Log message:
spelling fix; ok espie


CVSROOT:	/cvs
Module name:	www
Changes by:	espie@cvs.openbsd.org	2017/03/26 08:04:29

Modified files:
	faq            : current.html 

Log message:
amd64 wants -current binutils before building kernel.
okay kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/26 09:28:12

Modified files:
	usr.bin/patch  : pch.c 

Log message:
One string buffer can use recallocarray() to ensure that the address space
doesn't get dribbled with known contents.
ok otto millert tobias


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/26 09:31:15

Modified files:
	sys/dev/usb    : if_athn_usb.c if_atu.c if_kue.c if_otus.c 
	                 if_rsu.c if_rum.c if_run.c if_uath.c if_upgt.c 
	                 if_urndis.c if_zyd.c udl.c udl.h ulpt.c 
	                 usb_subr.c uticom.c uvideo.c 

Log message:
Add sizes to various free(9) calls.  Fixing the simpler ones first.
ok natano visa


CVSROOT:	/cvs
Module name:	ports
Changes by:	shadchin@cvs.openbsd.org	2017/03/26 09:39:20

Modified files:
	devel/py-logilab-common: Makefile distinfo 

Log message:
Update to py-logilab-common 1.4.0


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2017/03/26 10:23:22

Modified files:
	libressl       : index.html releases.html 

Log message:
LibreSSL 2.5.2 release


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/26 11:04:03

Modified files:
	usr.sbin/vmd   : mc146818.c 

Log message:
With the updated get_input_data() interface, we need to zero-initialize
the stack variable that we use to store the data otherwise the bytes that
aren't touched by get_input_data() may contain garbage.

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kettenis@cvs.openbsd.org	2017/03/26 11:06:29

Modified files:
	sysutils/firmware/vmm: Makefile 
Added files:
	sysutils/firmware/vmm/patches: patch-src_fw_pciinit_c 
	                               patch-src_hw_pci_ids_h 

Log message:
Implement minimal support for the OpenBSD VMM PCI host bridge.  This merely
prevents seabios from clobbering the pci interrupt line register.

ok sthen@, mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/26 11:30:28

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-html_install_php 
	                      patch-includes_defaults_inc_php 
	net/librenms/pkg: PLIST 

Log message:
update to LibreNMS 1.26


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/26 11:32:45

Modified files:
	net/lldpd      : Makefile distinfo 

Log message:
update to LLDPD 0.9.7


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/26 11:36:46

Modified files:
	sys/dev/fdt    : sxiccmu.c sxiccmu_clocks.h 

Log message:
Add support for a few more Allwinner H3 clocks.


CVSROOT:	/cvs
Module name:	src
Changes by:	drahn@cvs.openbsd.org	2017/03/26 12:27:55

Modified files:
	sys/arch/arm64/dev: agtimer.c 

Log message:
Switch arm64 generic timer to use virtual timer instead of physical
timer. virtual timer will always be present where physical timer may
be disabled by hypervisor. Other OSes use virtual timer. ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/26 12:29:58

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Suppress AVX from the extended CPUID flags. Our AVX treatment is currently
incomplete and enabling it leads ubuntu guests to try and use the feature,
with incorrect results. We can re-enable this at a later date when AVX
is properly handled.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/26 12:32:39

Modified files:
	usr.sbin/vmd   : config.c 

Log message:
Don't compare kernel and root disk name if both strings are empty.

This avoids jumping into vmboot in some edge conditions.

OK mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/26 12:34:55

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Add "AVX" to the comment above the previous commit. Spotted by reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/26 12:38:16

Modified files:
	usr.sbin/syslogd: syslogd.c 

Log message:
After my previous commit, file descriptor fd_sendsys may be -1 if
socketpair(2) has failed.  Do not call ioctl(LIOCSFD) in this case.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/26 12:41:02

Modified files:
	usr.sbin/acme-client: http.c keyproc.c 
	usr.sbin/ocspcheck: http.c 

Log message:
recallocarray() for data buffer from the net.
ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/26 12:50:37

Modified files:
	share/mk       : bsd.lib.mk 

Log message:
The support in 'ar' for 'D'eterministic builds has been in for weeks,
so start using it to make archives (mostly) detereministic for syspatch

ok millert@ deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2017/03/26 13:03:38

Modified files:
	lib/libc/sys   : Makefile.inc 

Log message:
Use .file to convince 'as' to generate proper FILE symbols in the syscall
stubs that aren't actually in files, so that syspatch can figure out what
order the syscall stub objects are in the .so.  Use -P to suppress to #line
directives that would override that.  Tested with both gcc/gas and clang.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/26 13:07:10

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-Makefile 

Log message:
Update to git-2.12.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/26 13:25:17

Modified files:
	graphics/p5-Image-Info: Makefile distinfo 

Log message:
Update to p5-Image-Info-1.40.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/03/26 13:51:36

Modified files:
	print/poppler  : Makefile distinfo 
Removed files:
	print/poppler/patches: patch-Makefile_in patch-aclocal_m4 
	                       patch-configure_ac 
	                       patch-qt_poppler-document_cc 
	                       patch-qt_poppler-page_cc 
	                       patch-qt_poppler-private_h 
	print/poppler/pkg: DESCR-qt PLIST-qt 

Log message:
Remove poppler-qt subpackage (qt3 support).

It's not used by anything, totally dead upstream
and just clutters the port.

ok aja@, landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2017/03/26 13:55:07

Modified files:
	usr.bin/tail   : read.c 

Log message:
Change a reallocarray+bzero into recallocarray.

OK tb@ and deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2017/03/26 13:55:37

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register removal of poppler-qt.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2017/03/26 15:33:36

Modified files:
	sbin/dhclient  : options.c 

Log message:
Fix dhclient vis/unvis of strings stored in the leases file.

Replaces incorrect manual emulation of vis() for single, double and
back quotes, dollar signs and back slashes. Just use vis() with
VIS_ALL for these characters.

Should fix problem reported by robert@ with ssid's containing back
slash.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/26 15:43:31

Modified files:
	sys/dev/pv     : vioblkreg.h 

Log message:
Add a #define needed for an upcoming vmd commit (to reflect a failure
when an operation was requested from vioblk host devices that is
not supported except on qemu).


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/26 15:47:34

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
discard MSR reads from unknown MSRs instead of passing them through. That
behaviour was needed during early development but not anymore. Suppress
the printf that accompanied these exits since linux guests go probing
wildly into msr-land on each boot.

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/26 16:04:29

Modified files:
	net/p5-Net-DNS : Makefile distinfo 

Log message:
update p5-Net-DNS to 1.09


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/26 16:19:47

Modified files:
	usr.sbin/vmd   : virtio.c virtio.h 

Log message:
Implement a missing command in vioblk and allow > MAXPHYS transfers.

This diff (with the others previously committed) allows ubuntu 14.04
amd64 guests to work.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/26 16:42:36

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
For the tape ioctls, recognize that block devices don't exist anymore.
Also fail if the descriptor is actually a tty.
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/26 16:47:45

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Inside pledge_ioctl, wrap #if's around the complete sub-blocks.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/26 17:27:44

Modified files:
	sys/arch/amd64/amd64: codepatch.c 
	sys/arch/i386/i386: codepatch.c 

Log message:
KNF


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/26 18:28:04

Modified files:
	usr.sbin/vmd   : i8253.c loadfile_elf.c mc146818.c parse.y pci.c 
	                 proc.h virtio.h vm.c 

Log message:
die whitespace die die die


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/26 18:33:15

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
wrap bpf pledge code in #if BPFFILTER


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/26 19:50:27

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
shorten vmm strings

ok kettenis@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/26 19:51:22

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2017/03/26 22:46:47

Modified files:
	usr.sbin/ypldap: aldap.c 

Log message:
simplify parseval() by allocating a buffer the size of the input string,
which will always be big enough to hold the output string.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/27 01:06:16

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 
	graphics/gdk-pixbuf2/pkg: PLIST 

Log message:
Update to gdk-pixbuf-2.36.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 02:12:03

Modified files:
	audio          : Makefile 
Removed files:
	audio/gogo     : Makefile distinfo 
	audio/gogo/patches: patch-Makefile 
	audio/gogo/pkg : DESCR PLIST 

Log message:
Remove audio/gogo.

The version we have is from 2000, program is dead upstream, and this
is an i386 only port. Nothing depends on it.

Checking lame ChangeLog, it appears that at least some of those i386
optimizations have been merged.

OK naddy@, jca@, beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 02:16:47

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register removal of gogo.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2017/03/27 03:06:57

Modified files:
	net/owncloudclient: Makefile distinfo 

Log message:
update to owncloudclient-2.3.1


CVSROOT:	/cvs
Module name:	src
Changes by:	rzalamena@cvs.openbsd.org	2017/03/27 03:38:03

Modified files:
	sys/netinet    : in.c 

Log message:
Fix the prefixlen sent by RTM_NEWADDR on new addresses without masks:
calculate the prefixlen using the address before sending the RTM_NEWADDR
message.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/27 03:45:38

Log message:
    import geo/p5-Geo-Coordinates-OSGB, ok benoit@
    
    An implementation of co-ordinate conversion for England, Wales, and
    Scotland based on formulae and data published by the Ordnance Survey of
    Great Britain.
    
    These modules convert accurately between coordinates given in latitude
    and longitude and the OSGB national grid reference system (as used for
    maps of England, Wales, and Scotland).
    
    This code is fine tuned to the British national grid system. It is of
    no use outside Britain. In fact it's only really useful in the areas
    covered by the OS's main series of maps, which excludes the Channel
    Islands and Northern Ireland.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20170327
    
    N ports/geo/p5-Geo-Coordinates-OSGB/Makefile
    N ports/geo/p5-Geo-Coordinates-OSGB/distinfo
    N ports/geo/p5-Geo-Coordinates-OSGB/pkg/PLIST
    N ports/geo/p5-Geo-Coordinates-OSGB/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/27 03:47:22

Modified files:
	geo            : Makefile 

Log message:
+p5-Geo-Coordinates-OSGB


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 03:59:58

Modified files:
	lang/brandy    : Makefile 
	lang/brandy/pkg: PLIST 
Added files:
	lang/brandy/patches: patch-makefile 

Log message:
Build both console and SDL versions.

OK juanfra@ (previous version), sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/27 04:06:41

Modified files:
	sbin/iked      : ca.c crypto.c iked.8 iked.conf.5 iked.h ikev2.c 
	                 ikev2.h ikev2_msg.c parse.y 

Log message:
Add support for RFC4754 (ECDSA) and RFC7427 authentication.

These modes provide stronger and more flexible ways for
authentication: while RSA public key auth relies on SHA-1 hashes, the
news modes use SHA2-256 and up to SHA2-512 hashes.

Original diff from markus@ with patches from mikeb@ and me.

OK mikeb@ patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 04:08:16

Modified files:
	emulators/vice : Makefile distinfo 
	emulators/vice/patches: patch-acinclude_m4 patch-man_vice_1 
	emulators/vice/pkg: PLIST 
Added files:
	emulators/vice/patches: patch-configure_ac patch-doc_Makefile_in 
Removed files:
	emulators/vice/patches: patch-configure_in 
	                        patch-src_arch_unix_x11_xaw_x11video_c 
	                        patch-src_gfxoutputdrv_gifdrv_c 
	                        patch-src_platform_platform_cpu_type_h 

Log message:
Update vice to 3.0.

Notable changes:

- Switch to using the SDL UI
- Remove the BROKEN marker for i386, this version works fine
- Remove --disable-ffmpeg in CONFIGURE_ARGS, as it's now disabled by
default
- Remove now useless patches, and add a patch to prevent building a
redundant copy of vice.info, as doing so breaks the build

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/27 04:21:19

Modified files:
	sbin/iked      : iked.h ikev2.c ikev2_msg.c ikev2_pld.c types.h 

Log message:
Add support to reflect the responder IKEv2 COOKIE.

This fixes connecting to Azure VPN and other implementations that
implement the IKEv2 COOKIE mechanism on the responder side.  Azure
decides to send you a responder COOKIE after too many connection
attempts - we have to keep it and reflect it to establish a
connection.  This implementation is only for the initiator (client)
side, we do not support sending COOKIEs on the responder (server) side
yet.

OK patrick@ mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/27 04:24:36

Modified files:
	sbin/iked      : config.c ikev2.c pfkey.c 

Log message:
Fix another iked leak of SAs in pfkey_sa(), copy tags correctly.

Diff from markus@
OK mikeb@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/27 04:29:02

Modified files:
	sbin/iked      : config.c crypto.c ikev2.c pfkey.c 

Log message:
spacing


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 04:37:43

Modified files:
	share/man/man7 : pkgpath.7 

Log message:
Fix a typo: /usr/port => /usr/ports

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/27 04:43:53

Modified files:
	sbin/iked      : config.c iked.h ikev2.c parse.y types.h 

Log message:
Factor out flows into separate configuration messages

We reach an imsg payload limit with just a few traffic selectors
so in order to load more we need to split them up and send separately.

Suggested and OK reyk


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/27 04:44:33

Modified files:
	faq            : current.html 

Log message:
tweak previous: zap a few unneeded doas and make it clear that this is only
needed if you're quite a bit behind -current.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/27 05:33:40

Modified files:
	net/ntp        : Makefile distinfo 
	net/ntp/patches: patch-include_libssl_compat_h 
	                 patch-libntp_libssl_compat_c 
Added files:
	net/ntp/patches: patch-include_ssl_applink_c 
	                 patch-libntp_ssl_init_c 
	                 patch-ports_winnt_include_msvc_ssl_autolib_h 
	                 patch-sntp_libevent_test_regress_ssl_c 
	                 patch-sntp_tests_packetProcessing_c 
	                 patch-util_ntp-keygen_c 

Log message:
Update ntp to 4.2.8p10.
CVE-2016-9042, CVE-2017-6451, CVE-2017-6452, CVE-2017-6455,
CVE-2017-6458, CVE-2017-6459, CVE-2017-6460, CVE-2017-6462,
CVE-2017-6463, CVE-2017-6464
Adapt OpenSSL #ifdef for LibreSSL.
Fix regression tests, prevent them from crashing.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/27 05:45:49

Modified files:
	sys/kern       : subr_log.c uipc_syscalls.c 

Log message:
Reorder FREF() and FRELE() in a way that the the global variable
syslogf always points to a file object with increased reference
count.  This makes the implementation independent from the fact
whether changing the reference counter may sleep.
pointed out by Mateusz Guzik; OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2017/03/27 06:25:15

Modified files:
	archivers/unzip: Tag: OPENBSD_6_0 Makefile 
	archivers/unzip/patches: Tag: OPENBSD_6_0 patch-extract_c 
	                         patch-process_c 
Added files:
	archivers/unzip/patches: Tag: OPENBSD_6_0 patch-crypt_c 
	                         patch-list_c patch-zipinfo_c 

Log message:
Backport the unzip CVE fixes committed by bluhm@.

%-------------------------------------------------------------------
Apply a bunch of CVE and other fixes for unzip from debian and
redhat bug tracker.  Add the links to the patch files.  The fix for
CVE-2014-9636 was improved.
OK jca@
%-------------------------------------------------------------------

OK robert@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/27 06:35:31

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-src_bootstrap_lib_rs 
	                   patch-src_bootstrap_native_rs 
	                   patch-src_libstd_sys_unix_ext_net_rs 
	lang/rust/pkg  : PFRAG.amd64-main PFRAG.i386-main PLIST-doc 
Added files:
	lang/rust/pkg  : PFRAG.i386-doc 
Removed files:
	lang/rust/patches: patch-src_librustdoc_test_rs 

Log message:
Update to rust-1.16.0

From semarie, discussed with edd@ and landry@
ok edd@ landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/27 06:37:06

Modified files:
	audio/sonata   : Makefile distinfo 

Log message:
Update to a newer github snap, fixes some gtk3 warnings


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2017/03/27 06:37:42

Modified files:
	.              : 61.html 

Log message:
Update version after the Rust Evangelism Strikeforce work


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/27 08:03:19

Modified files:
	sys/dev/fdt    : sxirtc.c 

Log message:
Reject times in the first year that can be represented by the clock to catch
RTC clocks that aren't battery powered.

ok deraadt@, millert@, visa@, tom@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/27 08:39:56

Modified files:
	usr.bin/mandoc : apropos.1 man.1 mandoc.1 

Log message:
Simplify: mention at one place that -fkl override each other,
rather than stating it separately for each option.
Suggested, OKed, and tweaked by jmc@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/27 08:40:13

Modified files:
	www/ruby-unicorn: Makefile distinfo 
	www/ruby-unicorn/pkg: PLIST 

Log message:
Update to unicorn-5.3.0.pre1

This adds support for chroot, fork+exec, and a hook for a good place to
call pledge.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/27 08:41:23

Modified files:
	audio/cantata  : Makefile distinfo 
	audio/cantata/pkg: PLIST 

Log message:
Update to cantata 2.0.1.

Switch to Qt5 by default, and use github as upstream.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/27 08:42:01

Modified files:
	faq            : current.html 

Log message:
vmd(8) changes

VMs now boot using the LGPLv3 SeaBIOS from /etc/firmware/vmm-bios. Booting
OpenBSD kernels or non-default BIOS images is still supported: instead of
-k/kernel, you now need to use the new -b command line option of vmctl(8).
Similarly, in vm.conf(5), the kernel option was replaced with boot.

help & ok reyk


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2017/03/27 08:52:42

Modified files:
	.              : policy.html 

Log message:
Clarify our stance on the Apache 2 license.
Using my own wording, an additional idea explained to me by pascal@,
and one wording tweak by deraadt@.
OK deraadt@, and OK sthen@ on an earlier version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2017/03/27 09:04:24

Modified files:
	www/apache-httpd: Tag: OPENBSD_6_0 Makefile distinfo 
	www/apache-httpd/patches: Tag: OPENBSD_6_0 patch-configure 
	                          patch-docs_conf_httpd_conf_in 
	                          patch-server_mpm_unix_c 

Log message:
Backport Apache CVE fixes from sthen@.

%--------------------------------------------------------------------
[PATCH] update to apache-httpd-2.4.25 CVE-2016-8740 CVE-2016-5387
CVE-2016-2161 CVE-2016-0736 CVE-2016-8743
%--------------------------------------------------------------------

OK robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/27 09:16:46

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
For some options that are rarely needed in mandoc(1),
delete the descriptions and point to man(1) instead.
Inspired by apropos.1 rev. 1.35.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2017/03/27 09:22:28

Modified files:
	.              : hackathons.html 
Added files:
	images/hackathons: noshirt-s.gif 
Removed files:
	images/hackathons: e2k17-s.gif 

Log message:
reuse the notshirt image for all hackathons that didn't have shirts.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/27 09:32:38

Modified files:
	gnu/usr.bin/clang/clang: Makefile 
	gnu/usr.bin/clang/lld: Makefile 

Log message:
Do not clobber the default compiler/linker links unless COMPILER_VERSION is
set to clang.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 09:39:01

Log message:
    Import lang/duktape.
    
    Duktape is an embeddable JavaScript engine, with a focus on portability
    and compact footprint.
    
    OK abieber@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20170327
    
    N ports/lang/duktape/Makefile
    N ports/lang/duktape/distinfo
    N ports/lang/duktape/pkg/PLIST
    N ports/lang/duktape/pkg/DESCR
    N ports/lang/duktape/patches/patch-Makefile_cmdline
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 09:40:40

Modified files:
	lang           : Makefile 

Log message:
Add duktape.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/27 09:44:56

Modified files:
	.              : INDEX 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/27 09:45:19

Modified files:
	sbin/iked      : iked.conf.5 

Log message:
correct verb pattern;


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2017/03/27 10:36:03

Modified files:
	.              : 61.html 

Log message:
Add and populate a dhclient/dhcpd/dhcrelay section.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/27 11:00:54

Modified files:
	lib/libcrypto/man: X509_cmp_time.3 

Log message:
reinstate the capitalisation from previous, as advised by schwarze;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/27 11:02:15

Modified files:
	share/man/man4 : inet6.4 

Log message:
various fixes to bring this page up to date a little;
help/ok bluhm


CVSROOT:	/cvs
Module name:	www
Changes by:	bluhm@cvs.openbsd.org	2017/03/27 11:11:06

Modified files:
	faq            : current.html 

Log message:
Remove the old Perl library after update to 5.24.1.  Multiple Perl
versions do not work in base anyway and the libperl.so.17.1 caused
trouble for me in a SpamAssassin test.
OK afresh1@ tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2017/03/27 11:12:16

Modified files:
	.              : 61.html 

Log message:
Add various installer, fdisk. softraid, asr changes.


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2017/03/27 11:17:49

Modified files:
	sbin/iked      : dh.c dh.h iked.h ikev2.c ikev2_pld.c 

Log message:
Don't cache the DH group in the policy

When tearing IKE SA down, the DH group referred by it is destroyed,
however it remains cached in the policy.  With the introduction of
IKE SA rekeying we have extended the life of this dangling pointer
by reusing it on new SAs.  So instead of caching the pointer in the
policy we can store the DH group ID and create a DH group on demand
using this parameter if it's specified.

With and OK reyk


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2017/03/27 11:22:28

Modified files:
	.              : 61.html 

Log message:
Mention RTM_PROPOSAL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/27 11:26:10

Modified files:
	audio/ncmpc    : Makefile distinfo 
	audio/ncmpc/patches: patch-src_colors_c 
Added files:
	audio/ncmpc/patches: patch-src_screen_init_c 
Removed files:
	audio/ncmpc/patches: patch-src_screen_c 

Log message:
Update to ncmpc-0.27


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2017/03/27 11:38:09

Modified files:
	sbin/pfctl     : pfctl.c 

Log message:
rather than printing the wrong function name, dont print it at all.
found by Klemens Nanni


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/27 11:42:20

Modified files:
	sys/dev        : softraid.c 

Log message:
If the sub-device of a softraid lacks a side-effect io function, return
failure as early as possible.
ok mlarkin claudio


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/27 12:10:55

Added files:
	www/ruby-passenger/patches: 
	                            patch-src_cxx_supportlib_vendor-modified_libev_configure 

Log message:
Don't have embedded libev configure script pick up gmkdir

Pointed out by espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/03/27 12:14:20

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
Fail early if an ocep server returns a non-200 http response, there is no
point in trying to parse error pages as an ocsp response.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/27 12:24:08

Modified files:
	sys/arch/i386/i386: acpi_machdep.c 
	sys/arch/amd64/amd64: acpi_machdep.c 
	sys/arch/loongson/dev: apm.c 

Log message:
hibernate_free() should not be called from MD code, acpi_sleep_state()
unwinds that.  Upon hibernate fail, this was a collection of double-frees..
ok claudio mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2017/03/27 12:26:53

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
use a path of "/" if the URL does not include a trailing / - since
the web server probably doesn't like it, even though you published
the url without the trailing / in the certificate. (hello digicert!)
ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/27 12:28:29

Modified files:
	games/tome4    : Makefile distinfo 
	games/tome4/patches: patch-src_getself_c 
	games/tome4/pkg: PLIST-data PLIST-main 

Log message:
Update to tome4-1.5.1

While here, add a fallback mirror hosted by Solene, upstream used to
modifiy existing tarballs in the past.  Also, amend SUBST_VARS to avoid
PLIST churn when updating to newer versions.  Initial diff from, and
tweaks discussed with Solene Rapenne (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/27 12:32:53

Modified files:
	sys/arch/i386/i386: acpi_machdep.c 
	sys/arch/amd64/amd64: acpi_machdep.c 

Log message:
add a newline to an error printf


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/27 12:51:20

Modified files:
	usr.bin/mandoc : apropos.1 main.c man.1 mandoc.1 

Log message:
simplify the SYNOPSIS as well, just like the option lists;
suggested by and OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/27 13:00:38

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
typo in debug build


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2017/03/27 13:19:27

Modified files:
	www/varnish    : Makefile distinfo 

Log message:
Update for Varnish to 5.1.1

OK benoit@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2017/03/27 14:05:51

Modified files:
	share/man/man7 : packages.7 

Log message:
Fix broken PKG_PATH example link, ftp://ftp.openbsd.org is no more.

OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/27 14:25:28

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 
Added files:
	.              : errata61.html 

Log message:
rework errata pages; requested by deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/27 14:26:39

Modified files:
	sys/kern       : subr_hibernate.c 

Log message:
If hibernate_alloc() encounters a problem it should undo the partial
work.
ok mlarkin kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/27 14:27:38

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
Now that hibernate_alloc() only has clean success/failure, don't
need to call hibernate_free() to clean up a partial mess.
ok mlarkin kettenis


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/27 14:53:59

Modified files:
	faq            : current.html 

Log message:
dedup an id attribute


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/27 17:26:24

Modified files:
	net/samba      : Tag: OPENBSD_6_0 Makefile 
Added files:
	net/samba/patches: Tag: OPENBSD_6_0 patch-source3_smbd_dir_c 
	                   patch-source3_smbd_open_c 
	                   patch-source3_smbd_smb2_query_directory_c 
	                   patch-source4_torture_smb2_dir_c 

Log message:
SECURITY fixes for CVE-2017-2619

(Symlink race allows access outside share definition)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/27 17:43:07

Modified files:
	lang/rust      : Makefile 

Log message:
Appease portcheck (and some reviewers) and remove some trailing tabs
between command lines inside target rules.

They were added intentionally due to some old habit acquired on
obscure make version which followed POSIX a bit too strictly (POSIX
stands that an empty or blank line *may* begin a new entry).

(Diff from me, commit message from semarie after discussion)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2017/03/27 17:46:55

Modified files:
	textproc/discount: Makefile distinfo 
	textproc/discount/patches: patch-Makefile_in patch-markdown_3 

Log message:
Update to discount-2.2.2

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2017/03/27 17:49:03

Modified files:
	sys/net        : if_etherip.c 

Log message:
Don't reject etherip packets if they are protected with IPsec.

This aligns code with documentation & matches what was available before
etherip(4) was split from gif(4).  sysctl net.inet.etherip.allow=1 is
still needed to accept etherip packets not protected with IPsec.

Reported by at least Jason Tubnor, ok mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/27 17:59:08

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
repair knf & whitespace that jumped out of the screen during review
ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/27 18:04:43

Modified files:
	usr.sbin/syslogd: syslogd.c 

Log message:
fix semicolon after if statement in currently uncalled code
ok bluhm@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/27 18:08:39

Modified files:
	usr.sbin/makefs/msdos: mkfs_msdos.c 

Log message:
add missing braces around a multi line if statement
ok patrick@ deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/27 22:04:52

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 
	                 errata48.html errata49.html errata50.html 
	                 errata51.html errata52.html errata53.html 
	                 errata54.html errata55.html errata56.html 
	                 errata57.html errata58.html 

Log message:
tweak bottom text for unsupported releases; requested by deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/03/27 22:54:44

Modified files:
	sys/dev/pci    : azalia_codec.c 

Log message:
Add quirk for MacBook Pro 5,5. From Manav Rathi <mnvrth at gmail.com>.
Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/27 23:04:09

Modified files:
	usr.sbin/bgpd  : kroute.c 

Log message:
For IPv6 pass prefix not nexthop as network for connected nexthops back to
the RDE so that the code actually works.
Problem found and reported by Pier Carlo Chiodi (pierky at pierky com)
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/03/27 23:20:22

Modified files:
	sys/dev        : audio.c 

Log message:
Simplify rate/channels/bits bounds checking code. From
Michael W. Bombardieri <mb at ii.net>. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2017/03/27 23:23:15

Modified files:
	sys/dev/pci    : envy.c 

Log message:
Make set_params() return the rate the device is using. Fixes
a wrong rate being reported when a unsupported rate was requested.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/28 00:41:18

Modified files:
	.              : 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 

Log message:
fix a ton of broken or incorrect man links by normalizing them.
fix invalid html to make the w3c validator happy.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 01:05:05

Modified files:
	comms/chirp    : Makefile distinfo 
	comms/chirp/pkg: PLIST 

Log message:
Update to chirp-20170311.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2017/03/28 01:24:40

Log message:
    KtikZ is a small application helping you to create TikZ (from the LaTeX
    pgf package) diagrams for your publications.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	pirofti
    Release Tags:	pirofti_20170328
    
    N ports/editors/ktikz/Makefile
    N ports/editors/ktikz/distinfo
    N ports/editors/ktikz/patches/patch-app_app_pro
    N ports/editors/ktikz/patches/patch-qtikz_pro
    N ports/editors/ktikz/pkg/DESCR
    N ports/editors/ktikz/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 01:34:09

Modified files:
	devel/p5-Class-C3-XS: Makefile distinfo 

Log message:
Update to p5-Class-C3-XS-0.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 01:44:04

Modified files:
	net/p5-SNMP-Info: Makefile distinfo 
	net/p5-SNMP-Info/pkg: PLIST 

Log message:
Update to p5-SNMP-Info-3.34.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/28 01:54:46

Modified files:
	x11/gnome/documents: Makefile distinfo 

Log message:
Update to gnome-documents-3.22.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/28 02:12:52

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.5.30.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/28 02:13:07

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.67.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/28 02:15:15

Modified files:
	security/cvechecker: Makefile distinfo 

Log message:
Update to cvechecker-3.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 02:53:39

Modified files:
	graphics/pecl-imagick: Makefile distinfo 
	graphics/pecl-imagick/pkg: PLIST 

Log message:
Update to pecl-imagick-3.4.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 02:59:42

Modified files:
	productivity/p5-Business-Tax-VAT-Validation: Makefile distinfo 

Log message:
Update to p5-Business-Tax-VAT-Validation-1.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 03:06:02

Modified files:
	devel/p5-Test-Expect: Makefile distinfo 

Log message:
Update to p5-Test-Expect-0.34.


CVSROOT:	/cvs
Module name:	src
Changes by:	natano@cvs.openbsd.org	2017/03/28 03:14:43

Modified files:
	usr.bin/mail   : edit.c 

Log message:
Prevent edit'ing a message from corrupting the mailbox. In an mbox file
every message is terminated by an empty line, so we have to make sure it
is preserved. Otherwise the message is combined with the next one.

joint effort with deraadt and millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 03:51:19

Modified files:
	net/pear-Net-DNS2: Makefile distinfo 
	net/pear-Net-DNS2/pkg: PLIST 

Log message:
Update to pear-Net-DNS2-1.4.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/28 04:51:37

Modified files:
	graphics/ImageMagick: Makefile distinfo 
	graphics/ImageMagick/pkg: PLIST 

Log message:
update to ImageMagick 6.9.8-3


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 04:52:06

Modified files:
	math/p5-Math-MatrixReal: Makefile distinfo 
	math/p5-Math-MatrixReal/pkg: PLIST 

Log message:
Update to p5-Math-MatrixReal-2.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/28 04:57:51

Modified files:
	textproc/calibre: Makefile distinfo 
	textproc/calibre/patches: patch-setup___init___py 
	                          patch-setup_build_py 
	                          patch-src_calibre_constants_py 
	textproc/calibre/pkg: PLIST 

Log message:
update to calibre-2.82.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 05:02:47

Modified files:
	security/p5-Crypt-OpenSSL-DSA: Makefile distinfo 
	security/p5-Crypt-OpenSSL-DSA/patches: patch-DSA_xs 

Log message:
Update to p5-Crypt-OpenSSL-DSA-0.19.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 05:11:46

Modified files:
	textproc/p5-Font-TTF: Makefile distinfo 

Log message:
Update to p5-Font-TTF-1.06.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 05:51:40

Modified files:
	textproc/p5-Lingua-EN-Fathom: Makefile distinfo 

Log message:
Update to p5-Lingua-EN-Fathom-1.19.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 05:56:04

Modified files:
	textproc/p5-Lingua-EN-Sentence: Makefile distinfo 

Log message:
Update to p5-Lingua-EN-Sentence-0.30.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 06:08:54

Modified files:
	textproc/p5-Lingua-PT-Stemmer: Makefile distinfo 

Log message:
Update to p5-Lingua-PT-Stemmer-0.02.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/28 06:13:58

Modified files:
	textproc/p5-Lingua-Stem-Ru: Makefile distinfo 

Log message:
Update to p5-Lingua-Stem-Ru-0.04.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2017/03/28 06:40:43

Modified files:
	editors        : Makefile 

Log message:
Link ktikz. Reminded by danj@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2017/03/28 06:43:37

Modified files:
	graphics/cstitch: Makefile distinfo 

Log message:
Update graphics/cstitch to 0.9.8

OK sthen@

Upstream bumped the version number post tagging the actual
release hence the 'About' menu still shows version 0.9.7.83 instead of 0.9.8.84

Commit post tagging:
https://github.com/kleintom/Cstitch/commit/d9a8b1fbc9b66de3ce5990cebdde26acea8b1a3f

Upstream changelog:
---
Beta version 0.9.8 released on March 20, 2017:
* Added options during pattern saving for specifying the width of a color border
around each symbol in the pdf pattern, and for specifying how often the
bold/heavier lines should appear in the pdf pattern grid.
* DMC/Anchor color codes and names are now displayed in the main windows
(instead
of RGB).
* Added the ability to specify fabric of a particular squares per inch/cm in the
dimensions computer.
* We should now do better at finding a pdf viewer to auto-display saved pdf
patterns.
* More settings are remembered so that they don't need to be reconfigured each
time the program is run.
* Bug fixes.

This is the first version for which the downloadable executable for Windows does
not run on Windows XP.
---


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/28 07:36:31

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2-1.21.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/28 08:14:01

Modified files:
	security/openssl: Makefile 

Log message:
add portroach limit to 1.0.x


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/28 08:19:04

Modified files:
	devel/cvs-fast-export: Makefile distinfo 
	devel/cvs-fast-export/patches: patch-Makefile 

Log message:
update to cvs-fast-export-1.43


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/28 08:36:04

Modified files:
	devel/reposurgeon: Makefile distinfo 
Added files:
	devel/reposurgeon/patches: patch-test_setpython 

Log message:
update to reposurgeon-3.42
- enable tests since they're in the distfile now, some failures


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/28 09:24:59

Modified files:
	x11/gnome/gvfs : Makefile distinfo 

Log message:
Update to gvfs-1.30.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/28 10:03:31

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Allow the multicast ttl/hops and loop options with the mcast pledge.
from Matthias Pitzl; OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/28 10:07:07

Modified files:
	lib/libc/sys   : pledge.2 

Log message:
Document the mcast pledge(2) as an addition to inet.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/28 10:12:45

Log message:
    Call get/setsockopt(2) with various sockets and check which options
    cause aborts due to pledge(2) restrictions.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20170328
    
    N src/regress/sys/kern/pledge/sockopt/Makefile
    N src/regress/sys/kern/pledge/sockopt/sockopt.c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/28 10:15:33

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Returning -1 in an imsg handler like ikev2_dispatch_cert aborts iked.

-1 means "I didn't handle or know this imsg", it should not be used to
indicate an application error in this context.

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/28 10:16:30

Modified files:
	regress/sys/kern/pledge: Makefile 

Log message:
Link pledge sockopt regression tests to build.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/28 10:25:21

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Don't send informational responses before we're having the key material.

iked starts sending keepalive messages after authentication and after
successfully completing the handshake.  Other implementations, like
we've seen on Microsoft Azure, start sending keepalive messages right
after receiving the first SA_INIT message when they set up the key
material, even before we received the SA_INIT response to complete the
DH exchange.  The solution is to ignore early keepalive messages
before we're ready to encrypt our response, in the transition between
SA_INIT and AUTH.  The peer should still accept one or more missed
keepalives.

OK mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/28 10:56:39

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
small cleanup & optimization; ok deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/28 10:56:39

Modified files:
	sbin/iked      : parse.y 

Log message:
Remove RSA from the list of keywords, lookup is now done in a table.

This lets us configure explicit old-style RSA again.

OK mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/28 11:02:01

Modified files:
	net/mosquitto  : Makefile distinfo 
	net/mosquitto/patches: patch-lib_CMakeLists_txt 
	                       patch-src_CMakeLists_txt 
Added files:
	net/mosquitto/patches: patch-config_h 
	                       patch-lib_mosquitto_internal_h 
	                       patch-src_mosquitto_passwd_c 
	                       patch-src_security_default_c 

Log message:
update to mosquitto-1.4.11

ok edd@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/28 11:28:35

Modified files:
	sys/arch/i386/i386: cpu.c 

Log message:
Reset ci_curmap to kernel_pmap() in cpu_hatch().  Otherwise the lazy pmap
switching code might think the old pmap is still active after a resume
which could lead to a page fault in the kernel.

ok stsp@, mlarkin@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/28 11:41:56

Modified files:
	regress/sys/kern/pledge/sockopt: Makefile 

Log message:
Make the test also work with obj directory.
from semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/28 12:19:53

Modified files:
	lib/libssl/man : SSL_renegotiate.3 

Log message:
After i wrote SSL_renegotiate(3) from scratch, OpenSSL also
documented the function.  Merge the more detailed descriptions
and the additional documentation of SSL_renegotiate_abbreviated(3)
and SSL_renegotiate_pending(3).
From Matt Caswell, OpenSSL commit 39820637.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2017/03/28 12:21:55

Modified files:
	lib/libssl/man : SSL_get_peer_cert_chain.3 

Log message:
Fix typo in function name;
from Markus Triska <triska at metalevel dot at>
via OpenSSL commit 1f164c6f.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/28 12:23:53

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Previous W^X diff only changed the access permissions in the bootstrap page
tables.  We need to set them in the final kernel page tables as well.

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/28 12:49:53

Modified files:
	net/mosh       : Makefile distinfo 
Added files:
	net/mosh/patches: patch-src_tests_e2e-test 
	                  patch-src_tests_e2e-test-subrs 

Log message:
Update to mosh-1.3.0

Among other improvements and bugfixes, add pledge support and allow
regress tests to run.  Tested by a few since -rc2, ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2017/03/28 13:52:03

Modified files:
	sbin/iked      : ca.c 

Log message:
Add helpful debug messages to tell us why public key authentication failed.

This is currently only visible in debug mode (eg. iked -dvv), some
debug messages will be turned into regular warnings later.

OK claudio@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/28 14:06:41

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Bugfix update to firefox-esr 52.0.2.

See https://www.mozilla.org/en-US/firefox/52.0.2esr/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2017/03/28 14:07:27

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Bugfix update to firefox 52.0.2.

See https://www.mozilla.org/en-US/firefox/52.0.2/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2017/03/28 14:43:40

Modified files:
	misc/mc        : Makefile distinfo 
	misc/mc/patches: patch-configure 
	misc/mc/pkg    : PLIST 

Log message:
Update mc to 4.8.19 and switch HOMEPAGE to use HTTPS.

OK shadchin@, robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/28 15:36:27

Modified files:
	sys/arch/amd64/amd64: identcpu.c 
	sys/arch/amd64/include: specialreg.h 

Log message:
add RDTSCP flags to identcpu.c

ok guenther, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2017/03/28 15:38:44

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Properly handle VMX entry controls governing guest processor mode.

Before seabios, this didn't matter much but now it does since various
bootloaders/kernels need such treatment.

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/03/28 16:16:37

Modified files:
	net/openvpn    : Makefile distinfo 
	net/openvpn/patches: patch-configure patch-include_Makefile_in 
	                     patch-src_openvpn_route_c 
	                     patch-src_openvpn_tun_c 
	net/openvpn/pkg: PLIST README 
Removed files:
	net/openvpn/patches: patch-src_openvpn_ssl_openssl_c 

Log message:
Update to openvpn-2.4.1

ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/28 17:16:42

Modified files:
	emulators/dosbox: Makefile 

Log message:
Remove USE_WXNEEDED, disable the feature that wants W+X instead. Researched by
Hiltjo Posthuma and tsg@. Works for Benjamin Baier, ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/28 17:36:48

ports/www/ruby-rainbows/patches

Update of /cvs/ports/www/ruby-rainbows/patches
In directory cvs.openbsd.org:/tmp/cvs-serv84933/patches

Log Message:
Directory /cvs/ports/www/ruby-rainbows/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2017/03/28 17:38:05

Modified files:
	www/ruby-rainbows: Makefile 
Added files:
	www/ruby-rainbows/patches: patch-_metadata 

Log message:
Fix build after unicorn update by allowing prerelease unicorn version.

Found the hard way by kili@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/28 17:47:17

Modified files:
	sys/arch/arm64/arm64: vfp.c 

Log message:
Add an instruction synchronisation barrier instruction after changing
the vfp state via cpacr_el1.  This matches the advice given in the
"Synchronization requirements for system registers" section of the ARMv8
ARM.

Without this an overdrive 1000 with A1120 (Cortex A57 r1p2) reliably
triggers "panic: VFP exception in the kernel" when init(8) is run.

ok drahn@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2017/03/28 17:56:44

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.81
patches have been applied upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/28 18:18:51

Modified files:
	sys/dev/usb    : usb.h umodem.c 

Log message:
Match on class communications subclass abstract control model protocol
0 "No class specific protocol required" in addition to the existing
protocol 1 "AT Commands: V.250 etc" match.

This lets umodem(4) attach to the serial console on the overdrive 1000
which is a usb type-b socket on the back of the box not a db9 like the
overdrive 3000.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2017/03/28 18:24:42

Modified files:
	lib/libssl/man : SSL_renegotiate.3 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/28 18:27:55

Modified files:
	faq            : faq10.html faq14.html index.html 

Log message:
move "duplicating filesystems" to the main disk/filesystem page and reorder
table of contents for clarity. no text change.

discussed with tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/28 19:18:15

Modified files:
	faq            : faq10.html index.html 

Log message:
rename "the rc system startup script" section to "system daemons."
thin out text; in particular remove a recommendation to start pkg
scripts with rc.local (why?) and a few redundant (re-)explanations.

ok tb


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/28 19:25:28

Modified files:
	faq            : faq10.html faq14.html index.html 

Log message:
move disk quotas section to disk/filesystem page.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2017/03/28 19:27:40

Modified files:
	sys/dev/usb    : umodem.c 

Log message:
Remove quirks for two devices that are known to be CDC ACM protocol 0
that are now covered by the generic class matching.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/28 19:39:27

Modified files:
	sys/conf       : newvers.sh 

Log message:
move to 6.1 release, drop -beta tag


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2017/03/28 21:04:40

Modified files:
	.              : 61.html 

Log message:
Mention Loongson 3A support.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/28 21:11:22

Modified files:
	sys/conf       : GENERIC 

Log message:
POOL_DEBUG off for release


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/29 01:11:50

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.5.31.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/29 01:12:05

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.11.68.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2017/03/29 01:46:12

Modified files:
	devel/p5-Config-Any: Makefile distinfo 

Log message:
Update to p5-Config-Any-0.30.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/29 01:49:42

Modified files:
	productivity/gnucash: Makefile distinfo 
	productivity/gnucash/pkg: PLIST 

Log message:
Update to gnucash-2.6.16.


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2017/03/29 02:15:56

Modified files:
	.              : 61.html 

Log message:
tyop


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2017/03/29 02:19:13

Modified files:
	usr.sbin/ikectl: ikeca.c 

Log message:
set REQ_EXT to x509v3_CA, fixing "ikectl ca XX create" inadvertently broken
in r1.41.  ok reyk deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/29 02:24:21

Modified files:
	net/smokeping  : Makefile 

Log message:
smokeping needs p5-CGI-Fast following perl 5.24 update; from Caspar Schutijser


CVSROOT:	/cvs
Module name:	ports
Changes by:	dcoppa@cvs.openbsd.org	2017/03/29 02:51:24

Modified files:
	x11/windowmaker: Makefile distinfo 
	x11/windowmaker/patches: patch-WINGs_Makefile_in 
	                         patch-WPrefs_app_Makefile_in 
	                         patch-WindowMaker_Defaults_Makefile_in 
	                         patch-configure 
	x11/windowmaker/pkg: PLIST-main 
Added files:
	x11/windowmaker/patches: patch-WindowMaker_Makefile_in 
	                         patch-WindowMaker_plmenu_in 
Removed files:
	x11/windowmaker/patches: patch-WindowMaker_menu 
	                         patch-WindowMaker_plmenu 
	                         patch-src_WindowMaker_h 
	                         patch-src_actions_c patch-src_appicon_c 
	                         patch-src_cycling_c patch-src_dock_c 
	                         patch-src_icon_c patch-src_icon_h 
	                         patch-src_switchmenu_c 
	                         patch-src_switchpanel_c 
	                         patch-src_window_c patch-src_wmspec_c 
	                         patch-util_getstyle_c 
	                         patch-util_wmmenugen_c 

Log message:
Update to windowmaker-0.95.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/29 07:10:04

Modified files:
	sysutils/terraform: Makefile distinfo 

Log message:
Update to terraform-0.9.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2017/03/29 07:17:38

Modified files:
	sysutils/anacron: Makefile 
	sysutils/anacron/pkg: README 

Log message:
README fixes, make anacrontab(5) more similar to crontab(5)
initial diff from Andreas Kusalananda Kahari with some tweaks


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/29 07:25:53

Modified files:
	www/webkitgtk4 : Makefile distinfo 
	www/webkitgtk4/patches: patch-CMakeLists_txt 
	                        patch-Source_JavaScriptCore_CMakeLists_txt 
	                        patch-Source_JavaScriptCore_assembler_MacroAssemblerX86Common_h 
	                        patch-Source_JavaScriptCore_dfg_DFGOpInfo_h 
	                        patch-Source_JavaScriptCore_heap_MachineStackMarker_cpp 
	                        patch-Source_JavaScriptCore_jit_ExecutableAllocator_h 
	                        patch-Source_WTF_wtf_Platform_h 
	                        patch-Source_cmake_OptionsCommon_cmake 
	                        patch-Source_cmake_WebKitCommon_cmake 
	www/webkitgtk4/pkg: PLIST 
Added files:
	www/webkitgtk4/patches: 
	                        patch-Source_WebCore_bindings_scripts_generate-bindings-all_pl 
	                        patch-Source_WebKit2_gtk_webkit2gtk-web-extension_pc_in 
	                        patch-Source_WebKit2_gtk_webkit2gtk_pc_in 
Removed files:
	www/webkitgtk4/patches: 
	                        patch-Source_WebKit2_webkit2gtk-web-extension_pc_in 
	                        patch-Source_WebKit2_webkit2gtk_pc_in 

Log message:
Update to WebKitGTK4 2.16.0. This will allow us to properly keep it updated
during the stable cycle for once \o/


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/29 07:27:12

Modified files:
	databases/evolution-data-server: Makefile 
	graphics/shotwell: Makefile 
	mail/evolution-ews: Makefile 
	mail/evolution-rss: Makefile 
	www/epiphany   : Makefile 
	www/liferea    : Makefile 
	x11/gnome/anjuta: Makefile 
	x11/gnome/builder: Makefile 
	x11/gnome/devhelp: Makefile 
	x11/gnome/documents: Makefile 
	x11/gnome/initial-setup: Makefile 
	x11/gnome/libgepub: Makefile 
	x11/gnome/online-accounts: Makefile 
	x11/gnome/yelp : Makefile 

Log message:
Sync WANTLIB after recent www/webkitgtk4 update.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/29 10:29:02

Modified files:
	lib/libc/sys   : Makefile.inc 

Log message:
The hppa version of as(1) requires whitespace before a .file directive,
it may not be in column 0.  This kind of thing is very common in GNU
and Linux software because the software was written from the start to
be 'compatible replacements' of vendor software.
ok jsing guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2017/03/29 10:42:25

Modified files:
	sys/dev/pci    : if_iwi.c 

Log message:
Fix iwi(4) regressions. WPA was broken since 6.0 errata 018.
Also, the firmware was rejecting RTS frames so iwi(4) didn't work against
an OpenBSD athn(4) hostap anymore; fix the config sent to firmware.
Prompted by report from bg2200 at jamesjerkinscomputer on misc@
ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/29 10:52:14

Modified files:
	faq/ports      : index.html 

Log message:
no need to list faq15's table of contents here.

ok sthen


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/29 10:57:37

Modified files:
	faq            : faq4.html 

Log message:
fix broken link; spotted by corsah


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2017/03/29 11:16:24

Modified files:
	usr.sbin/acme-client: acme-client.conf.5 

Log message:
account key needs to be in quotes.

ok benno deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2017/03/29 11:38:37

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
rephrase more enumerations of functions


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2017/03/29 12:01:52

Modified files:
	usr.sbin/radiusd: log.c 

Log message:
Bring radiusd log.c copyright in line with other program's log.c
and other radiusd source files.  Remove the LOSS OF MIND clause.
OK henning@ yasuoka@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/29 13:07:55

Modified files:
	x11/gnome/calendar: Makefile distinfo 

Log message:
update to gnome-calendar-3.22.4, addressing an issue with the 'year' overview


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2017/03/29 13:08:32

Modified files:
	geo/geoclue2   : Makefile distinfo 

Log message:
update to geoclue2-2.4.6, extends application whitelist and other bugfixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2017/03/29 13:58:54

Modified files:
	productivity/when: Makefile distinfo 

Log message:
update to 1.1.36 to unbreak with Perl 5.24, from Caspar Schutijser


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2017/03/29 14:09:27

Modified files:
	etc/root       : root.mail 

Log message:
sync the version of the example package; ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/29 14:50:51

Modified files:
	print/cups     : Makefile distinfo 
	print/cups/patches: patch-backend_ipp_c 
Removed files:
	print/cups/patches: patch-scheduler_client_c 
	                    patch-scheduler_conf_c 

Log message:
Update to cups-2.2.3.
naddy agrees about the commit; it'll hopefully lower the amount of emails
I get about "my printer does not work" during a release cycle.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/29 16:32:04

Modified files:
	.              : mail.html 

Log message:
mention that it's acceptable to send a "ping" email requesting follow-up
if your diff accidentally fell through the cracks.

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2017/03/29 16:40:15

Modified files:
	bin/kill       : kill.c 

Log message:
Use strtonum(3) instead of strtol(3).  OK deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/29 16:51:47

Modified files:
	.              : mail.html 

Log message:
remove "do not cross-post or repeat post" section; discussed with deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/29 17:05:05

Modified files:
	share/man/man9 : mbuf.9 

Log message:
m_devget() lost its ipf pointer argument, update man page.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/29 17:05:47

Modified files:
	faq            : faq6.html 

Log message:
fix broken link; from edgar pettijohn


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2017/03/29 21:39:35

Modified files:
	usr.sbin/vmctl : vmctl.c 

Log message:
Set interface flag to VMIFF_UP when using -i option. This way vmd will make
sure the interfaces are up on startup.
OK deraadt@, reky@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/03/29 21:56:42

Modified files:
	.              : mail.html 

Log message:
remove a line missed in the previous commit; spotted by bentley


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2017/03/30 01:23:50

Modified files:
	sys/dev/usb    : if_ure.c 

Log message:
Use m_devget(9) to replace code that does more or less the same but assumes
the received packet fits in a single mbuf cluster, which isn't necessarily
the case.  This might fix the pool corruption seen by jcs@.

ok jcs@, jmatthew@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2017/03/30 04:45:50

Added files:
	etc/signify    : openbsd-61-syspatch.pub openbsd-62-syspatch.pub 

Log message:
add signify public keys for syspatch for the current and next release


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/30 08:44:36

Modified files:
	sys/dev/usb    : ehci.c 

Log message:
these free() size choices appear to be wrong.  joel has a diff that fixes
them, but for release let's be conservative and use 0.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2017/03/30 09:03:48

Modified files:
	faq            : faq10.html 

Log message:
the new 'system daemons' title didn't match the beginning of the section
very well. rewrite the latter a bit to improve this.

pointed out by raf czlonka, diff by tj


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/30 09:19:58

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/30 09:22:07

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
correct NBPFILTER #ifdef's
from sthen and others


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2017/03/30 09:41:04

Modified files:
	usr.sbin/smtpd : ssl.c 

Log message:
Disable client-initiated renegotiation.

ok gilles@ eric@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2017/03/30 09:48:30

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Only close the SA if an error happens before ikev2_msg_init() was called
to make sure we do not run ikev2_msg_cleanup() on an unitialized stack
variable.

ok deraadt@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/30 10:04:36

Modified files:
	share/man/man4 : Makefile acpibat.4 
Added files:
	share/man/man4 : acpisbs.4 

Log message:
add a manpage for acpisbs, remove caveat from acpibat


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/30 10:05:40

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2017/03/30 10:06:55

Modified files:
	share/man/man4 : acpi.4 

Log message:
Xr acpisbs


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/03/30 11:29:17

Modified files:
	distrib/alpha  : Makefile 

Log message:
skip floppyB until more space is found


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2017/03/30 11:54:24

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: 
	                      patch-chrome_browser_chrome_browser_main_cc 
	                      patch-chrome_browser_ui_task_manager_task_manager_table_model_cc 

Log message:
update to 57.0.2987.133


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/30 12:46:20

Added files:
	lang/rust/patches: patch-src_bootstrap_step_rs 

Log message:
fix a build race: patch rustbuild to ensure that the documentation
requires rustdoc as dependency; from Sebastien Marie


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/30 23:18:31

Modified files:
	.              : arm64.html 

Log message:
add OverDrive 1000


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/30 23:41:42

Modified files:
	.              : 61.html 

Log message:
add arm64 to the how to install section


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/30 23:49:53

Modified files:
	.              : 61.html 

Log message:
Update chromium and firefox versions and mention clang under base components.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2017/03/31 10:02:31

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Be quiet in case /var/syspatch/ is empty and that there's no remote sig
file yet (i.e. when we are in release mode but not released yet).

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/03/31 11:06:47

Modified files:
	.              : INDEX 

Log message:
sync, 9893


CVSROOT:	/cvs
Module name:	src
Changes by:	rpe@cvs.openbsd.org	2017/03/31 12:36:49

Modified files:
	distrib/miniroot: install.sub 

Log message:
The default for the "Server directory?" question can possibly come
from either what information is extracted from the cgi server or
from installurl(5). Otherwise a sane default is used.

Based on what server (HTTP_SERVER) is provided by the user decide
on what source to choose from for the default.

At the end of install_http() use the url from the cgi server as the
base for what's written to /etc/installurl if an official mirror was
used. Otherwise trim _url_base and remove the architecture and
snapshots or version part.

This fixes the problem reported by phessler@ which exposed how
fragile the current logic for this was after recent changes.

At this time of the release cycle the kernel presents itself as
release kernel, but we're still pre-release and the sets are still
in the snapshots directory on the mirrors. This was confusing the
installer script.

Thanks to phessler@ for finding this and testing.
Special thanks to tb@ who imposed on himself to try to understand
and review the diffs.

OK tb@, phessler@ (on a similar diff)
'commit when your are happy' deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/03/31 18:22:00

Modified files:
	.              : 61.html 

Log message:
Fix a link.  Spotted by tj.


CVSROOT:	/cvs
Module name:	www
Changes by:	lteo@cvs.openbsd.org	2017/03/31 20:03:39

Modified files:
	.              : 61.html 

Log message:
Update Node.js and Ruby versions.


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2017/04/01 01:01:01

Modified files:
	.              : 61.html 

Log message:
Mention support for RTL8153 and Kaby Lake Ethernet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2017/04/01 05:37:39

Modified files:
	net/samba      : Makefile distinfo 

Log message:
Update to samba-4.5.8

Fix regression with "follow symlinks = no".  ok Ian sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2017/04/01 12:11:05

Modified files:
	emulators/vice : Makefile 

Log message:
vice would autodetect an installed portaudio, thus leading to either a build
failure or a broken package with missing dependencies.
convince autoconf portaudio is not there, and bump so that we know it's
not broken.

okay naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2017/04/01 13:14:28

Modified files:
	.              : INDEX 

Log message:
sync, 9893 for 6.1


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2017/04/01 13:17:22

Modified files:
	etc/root       : root.mail 

Log message:
MDT...


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2017/04/01 13:32:27

Modified files:
	faq            : faq10.html faq15.html 

Log message:
minor wording changes to reduce my 6.1 diff.


CVSROOT:	/cvs
Module name:	www
Changes by:	krw@cvs.openbsd.org	2017/04/01 16:20:48

Modified files:
	.              : 61.html 

Log message:
Mention dhclient vis/unvis fix.